From 1411c8b81ffc09c79dc31b2b1037a282c90d65e0 Mon Sep 17 00:00:00 2001 From: ninevra Date: Sat, 14 Nov 2020 14:40:28 -0800 Subject: [PATCH 1/7] Add tests for attributes not in meta-item form --- corpus/declarations.txt | 87 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) diff --git a/corpus/declarations.txt b/corpus/declarations.txt index 3c7a2074..7128b64e 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -996,6 +996,93 @@ mod macos_only { (identifier) value: (string_literal)))))))) +================================================================================ +Attribute macros +================================================================================ + +foo(#[attr(=> arbitrary tokens <=)] x, y); + +foo(#[bar(some tokens are special in other contexts: $/';()*()+.)] x); + +-------------------------------------------------------------------------------- + +(source_file + (expression_statement + (call_expression + function: (identifier) + arguments: (arguments + (attribute_item (attr_item + (identifier) + arguments: (delim_token_tree (identifier) (identifier)))) + (identifier) + (identifier)))) + (expression_statement + (call_expression + function: (identifier) + arguments: (arguments + (attribute_item (attr_item + (identifier) + arguments: (delim_token_tree + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (delim_token_tree) + (delim_token_tree)))) + (identifier))))) + +================================================================================ +Derive macro helper attributes +================================================================================ + +use thiserror::Error; + +#[derive(Error, Debug)] +pub enum Error { + #[error("first letter must be lowercase but was {:?}", first_char(.0))] + WrongCase(String), + #[error("invalid index {idx}, expected at least {} and at most {}", .limits.lo, .limits.hi)] + OutOfBounds { idx: usize, limits: Limits }, +} + +-------------------------------------------------------------------------------- + +(source_file + (use_declaration + (scoped_identifier (identifier) (identifier))) + (attribute_item + (meta_item (identifier) + (meta_arguments + (meta_item (identifier)) + (meta_item (identifier))))) + (enum_item + (visibility_modifier) + (type_identifier) + (enum_variant_list + (attribute_item (attr_item + (identifier) + (delim_token_tree + (string_literal) + (identifier) + (delim_token_tree (integer_literal))))) + (enum_variant (identifier) + (ordered_field_declaration_list (type_identifier))) + (attribute_item (attr_item + (identifier) + (delim_token_tree + (string_literal) + (identifier) + (identifier) + (identifier) + (identifier)))) + (enum_variant (identifier) + (field_declaration_list + (field_declaration (field_identifier) (primitive_type)) + (field_declaration (field_identifier) (type_identifier))))))) + ================================================================================ Attributes and Expressions ================================================================================ From a609d14b034056ad928fd9359719fa6d58cd7277 Mon Sep 17 00:00:00 2001 From: ninevra Date: Sat, 14 Nov 2020 15:31:13 -0800 Subject: [PATCH 2/7] Handle non-built-in attrs as attr-items --- grammar.js | 77 +- src/grammar.json | 531 +- src/node-types.json | 107 + src/parser.c | 138451 +++++++++++++++++++++-------------------- 4 files changed, 70894 insertions(+), 68272 deletions(-) diff --git a/grammar.js b/grammar.js index 53ff0b80..3747a16c 100644 --- a/grammar.js +++ b/grammar.js @@ -35,6 +35,54 @@ const numeric_types = [ const primitive_types = numeric_types.concat(['bool', 'str', 'char']) +const built_in_attributes = [ + 'cfg', + 'cfg_attr', + 'test', + 'ignore', + 'should_panic', + 'derive', + 'automatically_derived', + 'macro_export', + 'macro_use', + 'proc_macro', + 'proc_macro_derive', + 'proc_macro_attribute', + 'allow', + 'warn', + 'deny', + 'forbid', + 'deprecated', + 'must_use', + 'link', + 'link_name', + 'no_link', + 'repr', + 'crate_type', + 'no_main', + 'export_name', + 'link_section', + 'no_mangle', + 'used', + 'crate_name', + 'inline', + 'cold', + 'no_builtins', + 'target_feature', + 'track_caller', + 'doc', + 'no_std', + 'no_implicit_prelude', + 'path', + 'recursion_limit', + 'type_length_limit', + 'panic_handler', + 'global_allocator', + 'windows_subsystem', + 'feature', + 'non_exhaustive' +] + module.exports = grammar({ name: 'rust', @@ -210,7 +258,7 @@ module.exports = grammar({ attribute_item: $ => seq( '#', '[', - $.meta_item, + $._attr, ']' ), @@ -218,10 +266,35 @@ module.exports = grammar({ '#', '!', '[', - $.meta_item, + $._attr, ']' ), + _attr: $ => choice( + alias($.built_in_attr, $.meta_item), + alias($.custom_attr, $.attr_item), + ), + + custom_attr: $ => seq( + $._path, + optional(choice( + seq('=', field('value', $._literal)), + field('arguments', $.delim_token_tree) + )) + ), + + built_in_attr: $ => seq( + $._built_in_attr_path, + optional(choice( + seq('=', field('value', $._literal)), + field('arguments', $.meta_arguments) + )) + ), + + _built_in_attr_path: $ => choice( + ...built_in_attributes.map(name => alias(name, $.identifier)) + ), + meta_item: $ => seq( $._path, optional(choice( diff --git a/src/grammar.json b/src/grammar.json index 6e3ffde4..04ecd975 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -897,7 +897,7 @@ }, { "type": "SYMBOL", - "name": "meta_item" + "name": "_attr" }, { "type": "STRING", @@ -922,7 +922,7 @@ }, { "type": "SYMBOL", - "name": "meta_item" + "name": "_attr" }, { "type": "STRING", @@ -930,6 +930,533 @@ } ] }, + "_attr": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "built_in_attr" + }, + "named": true, + "value": "meta_item" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "custom_attr" + }, + "named": true, + "value": "attr_item" + } + ] + }, + "custom_attr": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_path" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_literal" + } + } + ] + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "delim_token_tree" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "built_in_attr": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_built_in_attr_path" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_literal" + } + } + ] + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "meta_arguments" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_built_in_attr_path": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "cfg" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "cfg_attr" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "test" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "ignore" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "should_panic" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "derive" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "automatically_derived" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "macro_export" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "macro_use" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "proc_macro" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "proc_macro_derive" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "proc_macro_attribute" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "allow" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "warn" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "deny" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "forbid" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "deprecated" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "must_use" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "link" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "link_name" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "no_link" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "repr" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "crate_type" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "no_main" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "export_name" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "link_section" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "no_mangle" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "used" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "crate_name" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "inline" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "cold" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "no_builtins" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "target_feature" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "track_caller" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "doc" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "no_std" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "no_implicit_prelude" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "path" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "recursion_limit" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "type_length_limit" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "panic_handler" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "global_allocator" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "windows_subsystem" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "feature" + }, + "named": true, + "value": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "non_exhaustive" + }, + "named": true, + "value": "identifier" + } + ] + }, "meta_item": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index e53cfd79..6975e66e 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -639,6 +639,62 @@ ] } }, + { + "type": "attr_item", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": false, + "types": [ + { + "type": "delim_token_tree", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_literal", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "crate", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "metavariable", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "self", + "named": true + }, + { + "type": "super", + "named": true + } + ] + } + }, { "type": "attribute_item", "named": true, @@ -647,6 +703,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "attr_item", + "named": true + }, { "type": "meta_item", "named": true @@ -1341,6 +1401,49 @@ ] } }, + { + "type": "delim_token_tree", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_literal", + "named": true + }, + { + "type": "crate", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "mutable_specifier", + "named": true + }, + { + "type": "primitive_type", + "named": true + }, + { + "type": "self", + "named": true + }, + { + "type": "super", + "named": true + }, + { + "type": "token_tree", + "named": true + } + ] + } + }, { "type": "dynamic_type", "named": true, @@ -2379,6 +2482,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "attr_item", + "named": true + }, { "type": "meta_item", "named": true diff --git a/src/parser.c b/src/parser.c index 2b569952..1fb65a8e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2567 -#define LARGE_STATE_COUNT 647 -#define SYMBOL_COUNT 320 +#define STATE_COUNT 2583 +#define LARGE_STATE_COUNT 655 +#define SYMBOL_COUNT 368 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 139 +#define TOKEN_COUNT 183 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 243 +#define PRODUCTION_ID_COUNT 244 enum { sym_identifier = 1, @@ -95,250 +95,298 @@ enum { anon_sym_POUND = 76, anon_sym_BANG = 77, anon_sym_EQ = 78, - anon_sym_COMMA = 79, - anon_sym_extern = 80, - anon_sym_ref = 81, - anon_sym_DASH_GT = 82, - anon_sym_LT = 83, - anon_sym_GT = 84, - anon_sym_COLON_COLON = 85, - anon_sym__ = 86, - anon_sym_AMP = 87, - anon_sym_DOT_DOT_DOT = 88, - anon_sym_in = 89, - anon_sym_LT2 = 90, - anon_sym_dyn = 91, - sym_mutable_specifier = 92, - anon_sym_DOT_DOT = 93, - anon_sym_DOT_DOT_EQ = 94, - anon_sym_DASH = 95, - anon_sym_AMP_AMP = 96, - anon_sym_PIPE_PIPE = 97, - anon_sym_PIPE = 98, - anon_sym_CARET = 99, - anon_sym_EQ_EQ = 100, - anon_sym_BANG_EQ = 101, - anon_sym_LT_EQ = 102, - anon_sym_GT_EQ = 103, - anon_sym_LT_LT = 104, - anon_sym_GT_GT = 105, - anon_sym_SLASH = 106, - anon_sym_PERCENT = 107, - anon_sym_PLUS_EQ = 108, - anon_sym_DASH_EQ = 109, - anon_sym_STAR_EQ = 110, - anon_sym_SLASH_EQ = 111, - anon_sym_PERCENT_EQ = 112, - anon_sym_AMP_EQ = 113, - anon_sym_PIPE_EQ = 114, - anon_sym_CARET_EQ = 115, - anon_sym_LT_LT_EQ = 116, - anon_sym_GT_GT_EQ = 117, - anon_sym_yield = 118, - anon_sym_else = 119, - anon_sym_move = 120, - anon_sym_DOT = 121, - anon_sym_AT = 122, - sym_integer_literal = 123, - aux_sym_string_literal_token1 = 124, - anon_sym_DQUOTE = 125, - sym_char_literal = 126, - sym_escape_sequence = 127, - anon_sym_true = 128, - anon_sym_false = 129, - sym_line_comment = 130, - sym_self = 131, - sym_super = 132, - sym_crate = 133, - sym_metavariable = 134, - sym__string_content = 135, - sym_raw_string_literal = 136, - sym_float_literal = 137, - sym_block_comment = 138, - sym_source_file = 139, - sym__statement = 140, - sym_empty_statement = 141, - sym_expression_statement = 142, - sym_macro_definition = 143, - sym_macro_rule = 144, - sym__token_pattern = 145, - sym_token_tree_pattern = 146, - sym_token_binding_pattern = 147, - sym_token_repetition_pattern = 148, - sym_fragment_specifier = 149, - sym_token_tree = 150, - sym_token_repetition = 151, - sym_attribute_item = 152, - sym_inner_attribute_item = 153, - sym_meta_item = 154, - sym_meta_arguments = 155, - sym_mod_item = 156, - sym_foreign_mod_item = 157, - sym_declaration_list = 158, - sym_struct_item = 159, - sym_union_item = 160, - sym_enum_item = 161, - sym_enum_variant_list = 162, - sym_enum_variant = 163, - sym_field_declaration_list = 164, - sym_field_declaration = 165, - sym_ordered_field_declaration_list = 166, - sym_extern_crate_declaration = 167, - sym_const_item = 168, - sym_static_item = 169, - sym_type_item = 170, - sym_function_item = 171, - sym_function_signature_item = 172, - sym_function_modifiers = 173, - sym_where_clause = 174, - sym_where_predicate = 175, - sym_impl_item = 176, - sym_trait_item = 177, - sym_associated_type = 178, - sym_trait_bounds = 179, - sym_higher_ranked_trait_bound = 180, - sym_removed_trait_bound = 181, - sym_type_parameters = 182, - sym_const_parameter = 183, - sym_constrained_type_parameter = 184, - sym_optional_type_parameter = 185, - sym_let_declaration = 186, - sym_use_declaration = 187, - sym__use_clause = 188, - sym_scoped_use_list = 189, - sym_use_list = 190, - sym_use_as_clause = 191, - sym_use_wildcard = 192, - sym_parameters = 193, - sym_self_parameter = 194, - sym_variadic_parameter = 195, - sym_parameter = 196, - sym_extern_modifier = 197, - sym_visibility_modifier = 198, - sym__type = 199, - sym_bracketed_type = 200, - sym_qualified_type = 201, - sym_lifetime = 202, - sym_array_type = 203, - sym_for_lifetimes = 204, - sym_function_type = 205, - sym_tuple_type = 206, - sym_unit_type = 207, - sym_generic_function = 208, - sym_generic_type = 209, - sym_generic_type_with_turbofish = 210, - sym_bounded_type = 211, - sym_type_arguments = 212, - sym_type_binding = 213, - sym_reference_type = 214, - sym_pointer_type = 215, - sym_empty_type = 216, - sym_abstract_type = 217, - sym_dynamic_type = 218, - sym__expression_except_range = 219, - sym__expression = 220, - sym_macro_invocation = 221, - sym_delim_token_tree = 222, - sym__delim_tokens = 223, - sym__non_delim_token = 224, - sym_scoped_identifier = 225, - sym_scoped_type_identifier_in_expression_position = 226, - sym_scoped_type_identifier = 227, - sym_range_expression = 228, - sym_unary_expression = 229, - sym_try_expression = 230, - sym_reference_expression = 231, - sym_binary_expression = 232, - sym_assignment_expression = 233, - sym_compound_assignment_expr = 234, - sym_type_cast_expression = 235, - sym_return_expression = 236, - sym_yield_expression = 237, - sym_call_expression = 238, - sym_arguments = 239, - sym_array_expression = 240, - sym_parenthesized_expression = 241, - sym_tuple_expression = 242, - sym_unit_expression = 243, - sym_struct_expression = 244, - sym_field_initializer_list = 245, - sym_shorthand_field_initializer = 246, - sym_field_initializer = 247, - sym_base_field_initializer = 248, - sym_if_expression = 249, - sym_if_let_expression = 250, - sym_else_clause = 251, - sym_match_expression = 252, - sym_match_block = 253, - sym_match_arm = 254, - sym_last_match_arm = 255, - sym_match_pattern = 256, - sym_while_expression = 257, - sym_while_let_expression = 258, - sym_loop_expression = 259, - sym_for_expression = 260, - sym_const_block = 261, - sym_closure_expression = 262, - sym_closure_parameters = 263, - sym_loop_label = 264, - sym_break_expression = 265, - sym_continue_expression = 266, - sym_index_expression = 267, - sym_await_expression = 268, - sym_field_expression = 269, - sym_unsafe_block = 270, - sym_async_block = 271, - sym_block = 272, - sym__pattern = 273, - sym_tuple_pattern = 274, - sym_slice_pattern = 275, - sym_tuple_struct_pattern = 276, - sym_struct_pattern = 277, - sym_field_pattern = 278, - sym_remaining_field_pattern = 279, - sym_mut_pattern = 280, - sym_range_pattern = 281, - sym_ref_pattern = 282, - sym_captured_pattern = 283, - sym_reference_pattern = 284, - sym_or_pattern = 285, - sym__literal = 286, - sym__literal_pattern = 287, - sym_negative_literal = 288, - sym_string_literal = 289, - sym_boolean_literal = 290, - aux_sym_source_file_repeat1 = 291, - aux_sym_macro_definition_repeat1 = 292, - aux_sym_token_tree_pattern_repeat1 = 293, - aux_sym_token_tree_repeat1 = 294, - aux_sym_meta_arguments_repeat1 = 295, - aux_sym_declaration_list_repeat1 = 296, - aux_sym_enum_variant_list_repeat1 = 297, - aux_sym_enum_variant_list_repeat2 = 298, - aux_sym_field_declaration_list_repeat1 = 299, - aux_sym_ordered_field_declaration_list_repeat1 = 300, - aux_sym_function_modifiers_repeat1 = 301, - aux_sym_where_clause_repeat1 = 302, - aux_sym_trait_bounds_repeat1 = 303, - aux_sym_type_parameters_repeat1 = 304, - aux_sym_use_list_repeat1 = 305, - aux_sym_parameters_repeat1 = 306, - aux_sym_for_lifetimes_repeat1 = 307, - aux_sym_tuple_type_repeat1 = 308, - aux_sym_type_arguments_repeat1 = 309, - aux_sym_delim_token_tree_repeat1 = 310, - aux_sym_arguments_repeat1 = 311, - aux_sym_array_expression_repeat1 = 312, - aux_sym_tuple_expression_repeat1 = 313, - aux_sym_field_initializer_list_repeat1 = 314, - aux_sym_match_block_repeat1 = 315, - aux_sym_closure_parameters_repeat1 = 316, - aux_sym_tuple_pattern_repeat1 = 317, - aux_sym_struct_pattern_repeat1 = 318, - aux_sym_string_literal_repeat1 = 319, - alias_sym_field_identifier = 320, - alias_sym_shorthand_field_identifier = 321, - alias_sym_type_identifier = 322, + anon_sym_cfg = 79, + anon_sym_cfg_attr = 80, + anon_sym_test = 81, + anon_sym_ignore = 82, + anon_sym_should_panic = 83, + anon_sym_derive = 84, + anon_sym_automatically_derived = 85, + anon_sym_macro_export = 86, + anon_sym_macro_use = 87, + anon_sym_proc_macro = 88, + anon_sym_proc_macro_derive = 89, + anon_sym_proc_macro_attribute = 90, + anon_sym_allow = 91, + anon_sym_warn = 92, + anon_sym_deny = 93, + anon_sym_forbid = 94, + anon_sym_deprecated = 95, + anon_sym_must_use = 96, + anon_sym_link = 97, + anon_sym_link_name = 98, + anon_sym_no_link = 99, + anon_sym_repr = 100, + anon_sym_crate_type = 101, + anon_sym_no_main = 102, + anon_sym_export_name = 103, + anon_sym_link_section = 104, + anon_sym_no_mangle = 105, + anon_sym_used = 106, + anon_sym_crate_name = 107, + anon_sym_inline = 108, + anon_sym_cold = 109, + anon_sym_no_builtins = 110, + anon_sym_target_feature = 111, + anon_sym_track_caller = 112, + anon_sym_doc = 113, + anon_sym_no_std = 114, + anon_sym_no_implicit_prelude = 115, + anon_sym_recursion_limit = 116, + anon_sym_type_length_limit = 117, + anon_sym_panic_handler = 118, + anon_sym_global_allocator = 119, + anon_sym_windows_subsystem = 120, + anon_sym_feature = 121, + anon_sym_non_exhaustive = 122, + anon_sym_COMMA = 123, + anon_sym_extern = 124, + anon_sym_ref = 125, + anon_sym_DASH_GT = 126, + anon_sym_LT = 127, + anon_sym_GT = 128, + anon_sym_COLON_COLON = 129, + anon_sym__ = 130, + anon_sym_AMP = 131, + anon_sym_DOT_DOT_DOT = 132, + anon_sym_in = 133, + anon_sym_LT2 = 134, + anon_sym_dyn = 135, + sym_mutable_specifier = 136, + anon_sym_DOT_DOT = 137, + anon_sym_DOT_DOT_EQ = 138, + anon_sym_DASH = 139, + anon_sym_AMP_AMP = 140, + anon_sym_PIPE_PIPE = 141, + anon_sym_PIPE = 142, + anon_sym_CARET = 143, + anon_sym_EQ_EQ = 144, + anon_sym_BANG_EQ = 145, + anon_sym_LT_EQ = 146, + anon_sym_GT_EQ = 147, + anon_sym_LT_LT = 148, + anon_sym_GT_GT = 149, + anon_sym_SLASH = 150, + anon_sym_PERCENT = 151, + anon_sym_PLUS_EQ = 152, + anon_sym_DASH_EQ = 153, + anon_sym_STAR_EQ = 154, + anon_sym_SLASH_EQ = 155, + anon_sym_PERCENT_EQ = 156, + anon_sym_AMP_EQ = 157, + anon_sym_PIPE_EQ = 158, + anon_sym_CARET_EQ = 159, + anon_sym_LT_LT_EQ = 160, + anon_sym_GT_GT_EQ = 161, + anon_sym_yield = 162, + anon_sym_else = 163, + anon_sym_move = 164, + anon_sym_DOT = 165, + anon_sym_AT = 166, + sym_integer_literal = 167, + aux_sym_string_literal_token1 = 168, + anon_sym_DQUOTE = 169, + sym_char_literal = 170, + sym_escape_sequence = 171, + anon_sym_true = 172, + anon_sym_false = 173, + sym_line_comment = 174, + sym_self = 175, + sym_super = 176, + sym_crate = 177, + sym_metavariable = 178, + sym__string_content = 179, + sym_raw_string_literal = 180, + sym_float_literal = 181, + sym_block_comment = 182, + sym_source_file = 183, + sym__statement = 184, + sym_empty_statement = 185, + sym_expression_statement = 186, + sym_macro_definition = 187, + sym_macro_rule = 188, + sym__token_pattern = 189, + sym_token_tree_pattern = 190, + sym_token_binding_pattern = 191, + sym_token_repetition_pattern = 192, + sym_fragment_specifier = 193, + sym_token_tree = 194, + sym_token_repetition = 195, + sym_attribute_item = 196, + sym_inner_attribute_item = 197, + sym__attr = 198, + sym_custom_attr = 199, + sym_built_in_attr = 200, + sym__built_in_attr_path = 201, + sym_meta_item = 202, + sym_meta_arguments = 203, + sym_mod_item = 204, + sym_foreign_mod_item = 205, + sym_declaration_list = 206, + sym_struct_item = 207, + sym_union_item = 208, + sym_enum_item = 209, + sym_enum_variant_list = 210, + sym_enum_variant = 211, + sym_field_declaration_list = 212, + sym_field_declaration = 213, + sym_ordered_field_declaration_list = 214, + sym_extern_crate_declaration = 215, + sym_const_item = 216, + sym_static_item = 217, + sym_type_item = 218, + sym_function_item = 219, + sym_function_signature_item = 220, + sym_function_modifiers = 221, + sym_where_clause = 222, + sym_where_predicate = 223, + sym_impl_item = 224, + sym_trait_item = 225, + sym_associated_type = 226, + sym_trait_bounds = 227, + sym_higher_ranked_trait_bound = 228, + sym_removed_trait_bound = 229, + sym_type_parameters = 230, + sym_const_parameter = 231, + sym_constrained_type_parameter = 232, + sym_optional_type_parameter = 233, + sym_let_declaration = 234, + sym_use_declaration = 235, + sym__use_clause = 236, + sym_scoped_use_list = 237, + sym_use_list = 238, + sym_use_as_clause = 239, + sym_use_wildcard = 240, + sym_parameters = 241, + sym_self_parameter = 242, + sym_variadic_parameter = 243, + sym_parameter = 244, + sym_extern_modifier = 245, + sym_visibility_modifier = 246, + sym__type = 247, + sym_bracketed_type = 248, + sym_qualified_type = 249, + sym_lifetime = 250, + sym_array_type = 251, + sym_for_lifetimes = 252, + sym_function_type = 253, + sym_tuple_type = 254, + sym_unit_type = 255, + sym_generic_function = 256, + sym_generic_type = 257, + sym_generic_type_with_turbofish = 258, + sym_bounded_type = 259, + sym_type_arguments = 260, + sym_type_binding = 261, + sym_reference_type = 262, + sym_pointer_type = 263, + sym_empty_type = 264, + sym_abstract_type = 265, + sym_dynamic_type = 266, + sym__expression_except_range = 267, + sym__expression = 268, + sym_macro_invocation = 269, + sym_delim_token_tree = 270, + sym__delim_tokens = 271, + sym__non_delim_token = 272, + sym_scoped_identifier = 273, + sym_scoped_type_identifier_in_expression_position = 274, + sym_scoped_type_identifier = 275, + sym_range_expression = 276, + sym_unary_expression = 277, + sym_try_expression = 278, + sym_reference_expression = 279, + sym_binary_expression = 280, + sym_assignment_expression = 281, + sym_compound_assignment_expr = 282, + sym_type_cast_expression = 283, + sym_return_expression = 284, + sym_yield_expression = 285, + sym_call_expression = 286, + sym_arguments = 287, + sym_array_expression = 288, + sym_parenthesized_expression = 289, + sym_tuple_expression = 290, + sym_unit_expression = 291, + sym_struct_expression = 292, + sym_field_initializer_list = 293, + sym_shorthand_field_initializer = 294, + sym_field_initializer = 295, + sym_base_field_initializer = 296, + sym_if_expression = 297, + sym_if_let_expression = 298, + sym_else_clause = 299, + sym_match_expression = 300, + sym_match_block = 301, + sym_match_arm = 302, + sym_last_match_arm = 303, + sym_match_pattern = 304, + sym_while_expression = 305, + sym_while_let_expression = 306, + sym_loop_expression = 307, + sym_for_expression = 308, + sym_const_block = 309, + sym_closure_expression = 310, + sym_closure_parameters = 311, + sym_loop_label = 312, + sym_break_expression = 313, + sym_continue_expression = 314, + sym_index_expression = 315, + sym_await_expression = 316, + sym_field_expression = 317, + sym_unsafe_block = 318, + sym_async_block = 319, + sym_block = 320, + sym__pattern = 321, + sym_tuple_pattern = 322, + sym_slice_pattern = 323, + sym_tuple_struct_pattern = 324, + sym_struct_pattern = 325, + sym_field_pattern = 326, + sym_remaining_field_pattern = 327, + sym_mut_pattern = 328, + sym_range_pattern = 329, + sym_ref_pattern = 330, + sym_captured_pattern = 331, + sym_reference_pattern = 332, + sym_or_pattern = 333, + sym__literal = 334, + sym__literal_pattern = 335, + sym_negative_literal = 336, + sym_string_literal = 337, + sym_boolean_literal = 338, + aux_sym_source_file_repeat1 = 339, + aux_sym_macro_definition_repeat1 = 340, + aux_sym_token_tree_pattern_repeat1 = 341, + aux_sym_token_tree_repeat1 = 342, + aux_sym_meta_arguments_repeat1 = 343, + aux_sym_declaration_list_repeat1 = 344, + aux_sym_enum_variant_list_repeat1 = 345, + aux_sym_enum_variant_list_repeat2 = 346, + aux_sym_field_declaration_list_repeat1 = 347, + aux_sym_ordered_field_declaration_list_repeat1 = 348, + aux_sym_function_modifiers_repeat1 = 349, + aux_sym_where_clause_repeat1 = 350, + aux_sym_trait_bounds_repeat1 = 351, + aux_sym_type_parameters_repeat1 = 352, + aux_sym_use_list_repeat1 = 353, + aux_sym_parameters_repeat1 = 354, + aux_sym_for_lifetimes_repeat1 = 355, + aux_sym_tuple_type_repeat1 = 356, + aux_sym_type_arguments_repeat1 = 357, + aux_sym_delim_token_tree_repeat1 = 358, + aux_sym_arguments_repeat1 = 359, + aux_sym_array_expression_repeat1 = 360, + aux_sym_tuple_expression_repeat1 = 361, + aux_sym_field_initializer_list_repeat1 = 362, + aux_sym_match_block_repeat1 = 363, + aux_sym_closure_parameters_repeat1 = 364, + aux_sym_tuple_pattern_repeat1 = 365, + aux_sym_struct_pattern_repeat1 = 366, + aux_sym_string_literal_repeat1 = 367, + alias_sym_field_identifier = 368, + alias_sym_shorthand_field_identifier = 369, + alias_sym_type_identifier = 370, }; static const char * const ts_symbol_names[] = { @@ -421,6 +469,50 @@ static const char * const ts_symbol_names[] = { [anon_sym_POUND] = "#", [anon_sym_BANG] = "!", [anon_sym_EQ] = "=", + [anon_sym_cfg] = "identifier", + [anon_sym_cfg_attr] = "identifier", + [anon_sym_test] = "identifier", + [anon_sym_ignore] = "identifier", + [anon_sym_should_panic] = "identifier", + [anon_sym_derive] = "identifier", + [anon_sym_automatically_derived] = "identifier", + [anon_sym_macro_export] = "identifier", + [anon_sym_macro_use] = "identifier", + [anon_sym_proc_macro] = "identifier", + [anon_sym_proc_macro_derive] = "identifier", + [anon_sym_proc_macro_attribute] = "identifier", + [anon_sym_allow] = "identifier", + [anon_sym_warn] = "identifier", + [anon_sym_deny] = "identifier", + [anon_sym_forbid] = "identifier", + [anon_sym_deprecated] = "identifier", + [anon_sym_must_use] = "identifier", + [anon_sym_link] = "identifier", + [anon_sym_link_name] = "identifier", + [anon_sym_no_link] = "identifier", + [anon_sym_repr] = "identifier", + [anon_sym_crate_type] = "identifier", + [anon_sym_no_main] = "identifier", + [anon_sym_export_name] = "identifier", + [anon_sym_link_section] = "identifier", + [anon_sym_no_mangle] = "identifier", + [anon_sym_used] = "identifier", + [anon_sym_crate_name] = "identifier", + [anon_sym_inline] = "identifier", + [anon_sym_cold] = "identifier", + [anon_sym_no_builtins] = "identifier", + [anon_sym_target_feature] = "identifier", + [anon_sym_track_caller] = "identifier", + [anon_sym_doc] = "identifier", + [anon_sym_no_std] = "identifier", + [anon_sym_no_implicit_prelude] = "identifier", + [anon_sym_recursion_limit] = "identifier", + [anon_sym_type_length_limit] = "identifier", + [anon_sym_panic_handler] = "identifier", + [anon_sym_global_allocator] = "identifier", + [anon_sym_windows_subsystem] = "identifier", + [anon_sym_feature] = "identifier", + [anon_sym_non_exhaustive] = "identifier", [anon_sym_COMMA] = ",", [anon_sym_extern] = "extern", [anon_sym_ref] = "ref", @@ -496,6 +588,10 @@ static const char * const ts_symbol_names[] = { [sym_token_repetition] = "token_repetition", [sym_attribute_item] = "attribute_item", [sym_inner_attribute_item] = "inner_attribute_item", + [sym__attr] = "_attr", + [sym_custom_attr] = "attr_item", + [sym_built_in_attr] = "meta_item", + [sym__built_in_attr_path] = "_built_in_attr_path", [sym_meta_item] = "meta_item", [sym_meta_arguments] = "meta_arguments", [sym_mod_item] = "mod_item", @@ -564,7 +660,7 @@ static const char * const ts_symbol_names[] = { [sym__expression_except_range] = "_expression_except_range", [sym__expression] = "_expression", [sym_macro_invocation] = "macro_invocation", - [sym_delim_token_tree] = "token_tree", + [sym_delim_token_tree] = "delim_token_tree", [sym__delim_tokens] = "_delim_tokens", [sym__non_delim_token] = "_non_delim_token", [sym_scoped_identifier] = "scoped_identifier", @@ -747,6 +843,50 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_POUND] = anon_sym_POUND, [anon_sym_BANG] = anon_sym_BANG, [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_cfg] = sym_identifier, + [anon_sym_cfg_attr] = sym_identifier, + [anon_sym_test] = sym_identifier, + [anon_sym_ignore] = sym_identifier, + [anon_sym_should_panic] = sym_identifier, + [anon_sym_derive] = sym_identifier, + [anon_sym_automatically_derived] = sym_identifier, + [anon_sym_macro_export] = sym_identifier, + [anon_sym_macro_use] = sym_identifier, + [anon_sym_proc_macro] = sym_identifier, + [anon_sym_proc_macro_derive] = sym_identifier, + [anon_sym_proc_macro_attribute] = sym_identifier, + [anon_sym_allow] = sym_identifier, + [anon_sym_warn] = sym_identifier, + [anon_sym_deny] = sym_identifier, + [anon_sym_forbid] = sym_identifier, + [anon_sym_deprecated] = sym_identifier, + [anon_sym_must_use] = sym_identifier, + [anon_sym_link] = sym_identifier, + [anon_sym_link_name] = sym_identifier, + [anon_sym_no_link] = sym_identifier, + [anon_sym_repr] = sym_identifier, + [anon_sym_crate_type] = sym_identifier, + [anon_sym_no_main] = sym_identifier, + [anon_sym_export_name] = sym_identifier, + [anon_sym_link_section] = sym_identifier, + [anon_sym_no_mangle] = sym_identifier, + [anon_sym_used] = sym_identifier, + [anon_sym_crate_name] = sym_identifier, + [anon_sym_inline] = sym_identifier, + [anon_sym_cold] = sym_identifier, + [anon_sym_no_builtins] = sym_identifier, + [anon_sym_target_feature] = sym_identifier, + [anon_sym_track_caller] = sym_identifier, + [anon_sym_doc] = sym_identifier, + [anon_sym_no_std] = sym_identifier, + [anon_sym_no_implicit_prelude] = sym_identifier, + [anon_sym_recursion_limit] = sym_identifier, + [anon_sym_type_length_limit] = sym_identifier, + [anon_sym_panic_handler] = sym_identifier, + [anon_sym_global_allocator] = sym_identifier, + [anon_sym_windows_subsystem] = sym_identifier, + [anon_sym_feature] = sym_identifier, + [anon_sym_non_exhaustive] = sym_identifier, [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_extern] = anon_sym_extern, [anon_sym_ref] = anon_sym_ref, @@ -822,6 +962,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_token_repetition] = sym_token_repetition, [sym_attribute_item] = sym_attribute_item, [sym_inner_attribute_item] = sym_inner_attribute_item, + [sym__attr] = sym__attr, + [sym_custom_attr] = sym_custom_attr, + [sym_built_in_attr] = sym_meta_item, + [sym__built_in_attr_path] = sym__built_in_attr_path, [sym_meta_item] = sym_meta_item, [sym_meta_arguments] = sym_meta_arguments, [sym_mod_item] = sym_mod_item, @@ -890,7 +1034,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__expression_except_range] = sym__expression_except_range, [sym__expression] = sym__expression, [sym_macro_invocation] = sym_macro_invocation, - [sym_delim_token_tree] = sym_token_tree, + [sym_delim_token_tree] = sym_delim_token_tree, [sym__delim_tokens] = sym__delim_tokens, [sym__non_delim_token] = sym__non_delim_token, [sym_scoped_identifier] = sym_scoped_identifier, @@ -1310,6 +1454,182 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_cfg] = { + .visible = true, + .named = true, + }, + [anon_sym_cfg_attr] = { + .visible = true, + .named = true, + }, + [anon_sym_test] = { + .visible = true, + .named = true, + }, + [anon_sym_ignore] = { + .visible = true, + .named = true, + }, + [anon_sym_should_panic] = { + .visible = true, + .named = true, + }, + [anon_sym_derive] = { + .visible = true, + .named = true, + }, + [anon_sym_automatically_derived] = { + .visible = true, + .named = true, + }, + [anon_sym_macro_export] = { + .visible = true, + .named = true, + }, + [anon_sym_macro_use] = { + .visible = true, + .named = true, + }, + [anon_sym_proc_macro] = { + .visible = true, + .named = true, + }, + [anon_sym_proc_macro_derive] = { + .visible = true, + .named = true, + }, + [anon_sym_proc_macro_attribute] = { + .visible = true, + .named = true, + }, + [anon_sym_allow] = { + .visible = true, + .named = true, + }, + [anon_sym_warn] = { + .visible = true, + .named = true, + }, + [anon_sym_deny] = { + .visible = true, + .named = true, + }, + [anon_sym_forbid] = { + .visible = true, + .named = true, + }, + [anon_sym_deprecated] = { + .visible = true, + .named = true, + }, + [anon_sym_must_use] = { + .visible = true, + .named = true, + }, + [anon_sym_link] = { + .visible = true, + .named = true, + }, + [anon_sym_link_name] = { + .visible = true, + .named = true, + }, + [anon_sym_no_link] = { + .visible = true, + .named = true, + }, + [anon_sym_repr] = { + .visible = true, + .named = true, + }, + [anon_sym_crate_type] = { + .visible = true, + .named = true, + }, + [anon_sym_no_main] = { + .visible = true, + .named = true, + }, + [anon_sym_export_name] = { + .visible = true, + .named = true, + }, + [anon_sym_link_section] = { + .visible = true, + .named = true, + }, + [anon_sym_no_mangle] = { + .visible = true, + .named = true, + }, + [anon_sym_used] = { + .visible = true, + .named = true, + }, + [anon_sym_crate_name] = { + .visible = true, + .named = true, + }, + [anon_sym_inline] = { + .visible = true, + .named = true, + }, + [anon_sym_cold] = { + .visible = true, + .named = true, + }, + [anon_sym_no_builtins] = { + .visible = true, + .named = true, + }, + [anon_sym_target_feature] = { + .visible = true, + .named = true, + }, + [anon_sym_track_caller] = { + .visible = true, + .named = true, + }, + [anon_sym_doc] = { + .visible = true, + .named = true, + }, + [anon_sym_no_std] = { + .visible = true, + .named = true, + }, + [anon_sym_no_implicit_prelude] = { + .visible = true, + .named = true, + }, + [anon_sym_recursion_limit] = { + .visible = true, + .named = true, + }, + [anon_sym_type_length_limit] = { + .visible = true, + .named = true, + }, + [anon_sym_panic_handler] = { + .visible = true, + .named = true, + }, + [anon_sym_global_allocator] = { + .visible = true, + .named = true, + }, + [anon_sym_windows_subsystem] = { + .visible = true, + .named = true, + }, + [anon_sym_feature] = { + .visible = true, + .named = true, + }, + [anon_sym_non_exhaustive] = { + .visible = true, + .named = true, + }, [anon_sym_COMMA] = { .visible = true, .named = false, @@ -1610,6 +1930,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__attr] = { + .visible = false, + .named = true, + }, + [sym_custom_attr] = { + .visible = true, + .named = true, + }, + [sym_built_in_attr] = { + .visible = true, + .named = true, + }, + [sym__built_in_attr_path] = { + .visible = false, + .named = true, + }, [sym_meta_item] = { .visible = true, .named = true, @@ -2402,197 +2738,197 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [45] = {.index = 47, .length = 2}, [46] = {.index = 37, .length = 2}, [47] = {.index = 1, .length = 1}, - [48] = {.index = 49, .length = 1}, - [49] = {.index = 50, .length = 2}, - [50] = {.index = 52, .length = 3}, - [51] = {.index = 55, .length = 2}, - [52] = {.index = 57, .length = 3}, - [54] = {.index = 60, .length = 1}, + [49] = {.index = 49, .length = 1}, + [50] = {.index = 50, .length = 2}, + [51] = {.index = 52, .length = 3}, + [52] = {.index = 55, .length = 2}, + [53] = {.index = 57, .length = 3}, [55] = {.index = 60, .length = 1}, - [56] = {.index = 49, .length = 1}, - [58] = {.index = 61, .length = 3}, - [59] = {.index = 64, .length = 1}, - [60] = {.index = 65, .length = 1}, - [62] = {.index = 66, .length = 2}, + [56] = {.index = 60, .length = 1}, + [57] = {.index = 49, .length = 1}, + [59] = {.index = 61, .length = 3}, + [60] = {.index = 64, .length = 1}, + [61] = {.index = 65, .length = 1}, [63] = {.index = 66, .length = 2}, - [64] = {.index = 68, .length = 1}, - [65] = {.index = 69, .length = 2}, - [66] = {.index = 71, .length = 3}, - [67] = {.index = 74, .length = 2}, - [68] = {.index = 76, .length = 2}, + [64] = {.index = 66, .length = 2}, + [65] = {.index = 68, .length = 1}, + [66] = {.index = 69, .length = 2}, + [67] = {.index = 71, .length = 3}, + [68] = {.index = 74, .length = 2}, [69] = {.index = 76, .length = 2}, - [70] = {.index = 78, .length = 1}, - [71] = {.index = 79, .length = 2}, - [72] = {.index = 81, .length = 3}, - [73] = {.index = 84, .length = 2}, - [74] = {.index = 86, .length = 2}, - [75] = {.index = 88, .length = 2}, - [76] = {.index = 90, .length = 2}, - [77] = {.index = 92, .length = 2}, - [78] = {.index = 90, .length = 2}, - [79] = {.index = 92, .length = 2}, - [80] = {.index = 94, .length = 1}, + [70] = {.index = 76, .length = 2}, + [71] = {.index = 78, .length = 1}, + [72] = {.index = 79, .length = 2}, + [73] = {.index = 81, .length = 3}, + [74] = {.index = 84, .length = 2}, + [75] = {.index = 86, .length = 2}, + [76] = {.index = 88, .length = 2}, + [77] = {.index = 90, .length = 2}, + [78] = {.index = 92, .length = 2}, + [79] = {.index = 90, .length = 2}, + [80] = {.index = 92, .length = 2}, [81] = {.index = 94, .length = 1}, - [82] = {.index = 95, .length = 1}, - [83] = {.index = 96, .length = 2}, - [84] = {.index = 98, .length = 2}, + [82] = {.index = 94, .length = 1}, + [83] = {.index = 95, .length = 1}, + [84] = {.index = 96, .length = 2}, [85] = {.index = 98, .length = 2}, - [86] = {.index = 88, .length = 2}, - [87] = {.index = 95, .length = 1}, - [88] = {.index = 100, .length = 1}, - [89] = {.index = 101, .length = 3}, - [90] = {.index = 104, .length = 1}, - [91] = {.index = 105, .length = 1}, - [92] = {.index = 106, .length = 2}, - [93] = {.index = 108, .length = 3}, - [94] = {.index = 111, .length = 3}, - [95] = {.index = 114, .length = 4}, - [96] = {.index = 118, .length = 3}, - [97] = {.index = 1, .length = 1}, - [98] = {.index = 121, .length = 3}, - [99] = {.index = 124, .length = 2}, - [100] = {.index = 126, .length = 2}, + [86] = {.index = 98, .length = 2}, + [87] = {.index = 88, .length = 2}, + [88] = {.index = 95, .length = 1}, + [89] = {.index = 100, .length = 1}, + [90] = {.index = 101, .length = 3}, + [91] = {.index = 104, .length = 1}, + [92] = {.index = 105, .length = 1}, + [93] = {.index = 106, .length = 2}, + [94] = {.index = 108, .length = 3}, + [95] = {.index = 111, .length = 3}, + [96] = {.index = 114, .length = 4}, + [97] = {.index = 118, .length = 3}, + [98] = {.index = 1, .length = 1}, + [99] = {.index = 121, .length = 3}, + [100] = {.index = 124, .length = 2}, [101] = {.index = 126, .length = 2}, - [102] = {.index = 128, .length = 1}, - [103] = {.index = 129, .length = 2}, - [104] = {.index = 131, .length = 3}, - [105] = {.index = 134, .length = 3}, - [106] = {.index = 137, .length = 3}, - [107] = {.index = 140, .length = 1}, - [108] = {.index = 129, .length = 2}, - [109] = {.index = 131, .length = 3}, - [110] = {.index = 134, .length = 3}, - [111] = {.index = 141, .length = 2}, - [112] = {.index = 143, .length = 2}, - [114] = {.index = 145, .length = 3}, - [115] = {.index = 148, .length = 4}, - [116] = {.index = 106, .length = 2}, - [117] = {.index = 152, .length = 3}, - [118] = {.index = 155, .length = 2}, - [119] = {.index = 157, .length = 3}, - [120] = {.index = 160, .length = 2}, - [121] = {.index = 162, .length = 2}, - [122] = {.index = 164, .length = 3}, - [123] = {.index = 167, .length = 3}, - [124] = {.index = 32, .length = 1}, - [125] = {.index = 141, .length = 2}, - [126] = {.index = 170, .length = 3}, - [127] = {.index = 173, .length = 2}, - [128] = {.index = 175, .length = 2}, - [129] = {.index = 177, .length = 3}, - [130] = {.index = 180, .length = 2}, - [131] = {.index = 182, .length = 2}, - [132] = {.index = 184, .length = 1}, - [133] = {.index = 185, .length = 2}, - [134] = {.index = 187, .length = 1}, - [135] = {.index = 173, .length = 2}, - [136] = {.index = 188, .length = 4}, - [137] = {.index = 192, .length = 3}, - [138] = {.index = 195, .length = 4}, - [139] = {.index = 95, .length = 1}, - [140] = {.index = 199, .length = 2}, - [141] = {.index = 201, .length = 2}, - [142] = {.index = 203, .length = 3}, - [143] = {.index = 206, .length = 2}, - [144] = {.index = 208, .length = 3}, - [145] = {.index = 211, .length = 2}, - [146] = {.index = 213, .length = 3}, - [147] = {.index = 216, .length = 4}, - [148] = {.index = 213, .length = 3}, - [149] = {.index = 216, .length = 4}, - [150] = {.index = 220, .length = 3}, + [102] = {.index = 126, .length = 2}, + [103] = {.index = 128, .length = 1}, + [104] = {.index = 129, .length = 2}, + [105] = {.index = 131, .length = 3}, + [106] = {.index = 134, .length = 3}, + [107] = {.index = 137, .length = 3}, + [108] = {.index = 140, .length = 1}, + [109] = {.index = 129, .length = 2}, + [110] = {.index = 131, .length = 3}, + [111] = {.index = 134, .length = 3}, + [112] = {.index = 141, .length = 2}, + [113] = {.index = 143, .length = 2}, + [115] = {.index = 145, .length = 3}, + [116] = {.index = 148, .length = 4}, + [117] = {.index = 106, .length = 2}, + [118] = {.index = 152, .length = 3}, + [119] = {.index = 155, .length = 2}, + [120] = {.index = 157, .length = 3}, + [121] = {.index = 160, .length = 2}, + [122] = {.index = 162, .length = 2}, + [123] = {.index = 164, .length = 3}, + [124] = {.index = 167, .length = 3}, + [125] = {.index = 32, .length = 1}, + [126] = {.index = 141, .length = 2}, + [127] = {.index = 170, .length = 3}, + [128] = {.index = 173, .length = 2}, + [129] = {.index = 175, .length = 2}, + [130] = {.index = 177, .length = 3}, + [131] = {.index = 180, .length = 2}, + [132] = {.index = 182, .length = 2}, + [133] = {.index = 184, .length = 1}, + [134] = {.index = 185, .length = 2}, + [135] = {.index = 187, .length = 1}, + [136] = {.index = 173, .length = 2}, + [137] = {.index = 188, .length = 4}, + [138] = {.index = 192, .length = 3}, + [139] = {.index = 195, .length = 4}, + [140] = {.index = 95, .length = 1}, + [141] = {.index = 199, .length = 2}, + [142] = {.index = 201, .length = 2}, + [143] = {.index = 203, .length = 3}, + [144] = {.index = 206, .length = 2}, + [145] = {.index = 208, .length = 3}, + [146] = {.index = 211, .length = 2}, + [147] = {.index = 213, .length = 3}, + [148] = {.index = 216, .length = 4}, + [149] = {.index = 213, .length = 3}, + [150] = {.index = 216, .length = 4}, [151] = {.index = 220, .length = 3}, - [152] = {.index = 208, .length = 3}, - [153] = {.index = 223, .length = 2}, - [154] = {.index = 225, .length = 2}, - [155] = {.index = 227, .length = 2}, - [156] = {.index = 229, .length = 1}, - [157] = {.index = 230, .length = 2}, - [158] = {.index = 232, .length = 2}, - [159] = {.index = 234, .length = 2}, - [160] = {.index = 201, .length = 2}, - [161] = {.index = 236, .length = 4}, - [162] = {.index = 240, .length = 3}, - [163] = {.index = 243, .length = 2}, - [164] = {.index = 245, .length = 3}, - [165] = {.index = 248, .length = 3}, - [166] = {.index = 243, .length = 2}, - [167] = {.index = 245, .length = 3}, - [168] = {.index = 251, .length = 3}, - [169] = {.index = 254, .length = 3}, - [170] = {.index = 257, .length = 4}, - [171] = {.index = 261, .length = 3}, - [172] = {.index = 264, .length = 2}, - [173] = {.index = 266, .length = 2}, - [174] = {.index = 268, .length = 3}, - [175] = {.index = 271, .length = 4}, - [176] = {.index = 275, .length = 3}, - [177] = {.index = 230, .length = 2}, - [178] = {.index = 278, .length = 2}, - [179] = {.index = 280, .length = 3}, - [180] = {.index = 283, .length = 3}, - [181] = {.index = 286, .length = 2}, - [182] = {.index = 288, .length = 3}, - [183] = {.index = 201, .length = 2}, - [184] = {.index = 291, .length = 3}, - [185] = {.index = 294, .length = 3}, - [186] = {.index = 266, .length = 2}, - [187] = {.index = 297, .length = 4}, - [188] = {.index = 301, .length = 5}, - [189] = {.index = 306, .length = 4}, - [190] = {.index = 310, .length = 2}, - [191] = {.index = 312, .length = 3}, - [192] = {.index = 315, .length = 4}, - [193] = {.index = 319, .length = 4}, + [152] = {.index = 220, .length = 3}, + [153] = {.index = 208, .length = 3}, + [154] = {.index = 223, .length = 2}, + [155] = {.index = 225, .length = 2}, + [156] = {.index = 227, .length = 2}, + [157] = {.index = 229, .length = 1}, + [158] = {.index = 230, .length = 2}, + [159] = {.index = 232, .length = 2}, + [160] = {.index = 234, .length = 2}, + [161] = {.index = 201, .length = 2}, + [162] = {.index = 236, .length = 4}, + [163] = {.index = 240, .length = 3}, + [164] = {.index = 243, .length = 2}, + [165] = {.index = 245, .length = 3}, + [166] = {.index = 248, .length = 3}, + [167] = {.index = 243, .length = 2}, + [168] = {.index = 245, .length = 3}, + [169] = {.index = 251, .length = 3}, + [170] = {.index = 254, .length = 3}, + [171] = {.index = 257, .length = 4}, + [172] = {.index = 261, .length = 3}, + [173] = {.index = 264, .length = 2}, + [174] = {.index = 266, .length = 2}, + [175] = {.index = 268, .length = 3}, + [176] = {.index = 271, .length = 4}, + [177] = {.index = 275, .length = 3}, + [178] = {.index = 230, .length = 2}, + [179] = {.index = 278, .length = 2}, + [180] = {.index = 280, .length = 3}, + [181] = {.index = 283, .length = 3}, + [182] = {.index = 286, .length = 2}, + [183] = {.index = 288, .length = 3}, + [184] = {.index = 201, .length = 2}, + [185] = {.index = 291, .length = 3}, + [186] = {.index = 294, .length = 3}, + [187] = {.index = 266, .length = 2}, + [188] = {.index = 297, .length = 4}, + [189] = {.index = 301, .length = 5}, + [190] = {.index = 306, .length = 4}, + [191] = {.index = 310, .length = 2}, + [192] = {.index = 312, .length = 3}, + [193] = {.index = 315, .length = 4}, [194] = {.index = 319, .length = 4}, - [195] = {.index = 323, .length = 2}, - [196] = {.index = 325, .length = 3}, - [197] = {.index = 328, .length = 2}, - [198] = {.index = 330, .length = 2}, - [199] = {.index = 106, .length = 2}, - [200] = {.index = 332, .length = 3}, - [201] = {.index = 335, .length = 3}, - [202] = {.index = 338, .length = 4}, - [203] = {.index = 335, .length = 3}, - [204] = {.index = 338, .length = 4}, - [205] = {.index = 332, .length = 3}, - [206] = {.index = 342, .length = 4}, - [207] = {.index = 346, .length = 4}, - [208] = {.index = 350, .length = 3}, - [209] = {.index = 353, .length = 4}, - [210] = {.index = 357, .length = 3}, - [211] = {.index = 360, .length = 3}, - [212] = {.index = 363, .length = 3}, - [213] = {.index = 366, .length = 4}, - [214] = {.index = 370, .length = 2}, - [215] = {.index = 372, .length = 3}, - [216] = {.index = 375, .length = 4}, - [217] = {.index = 379, .length = 3}, - [218] = {.index = 382, .length = 3}, - [219] = {.index = 385, .length = 3}, - [220] = {.index = 388, .length = 5}, - [221] = {.index = 393, .length = 2}, - [222] = {.index = 395, .length = 3}, - [223] = {.index = 398, .length = 3}, - [224] = {.index = 401, .length = 2}, - [225] = {.index = 403, .length = 4}, + [195] = {.index = 319, .length = 4}, + [196] = {.index = 323, .length = 2}, + [197] = {.index = 325, .length = 3}, + [198] = {.index = 328, .length = 2}, + [199] = {.index = 330, .length = 2}, + [200] = {.index = 106, .length = 2}, + [201] = {.index = 332, .length = 3}, + [202] = {.index = 335, .length = 3}, + [203] = {.index = 338, .length = 4}, + [204] = {.index = 335, .length = 3}, + [205] = {.index = 338, .length = 4}, + [206] = {.index = 332, .length = 3}, + [207] = {.index = 342, .length = 4}, + [208] = {.index = 346, .length = 4}, + [209] = {.index = 350, .length = 3}, + [210] = {.index = 353, .length = 4}, + [211] = {.index = 357, .length = 3}, + [212] = {.index = 360, .length = 3}, + [213] = {.index = 363, .length = 3}, + [214] = {.index = 366, .length = 4}, + [215] = {.index = 370, .length = 2}, + [216] = {.index = 372, .length = 3}, + [217] = {.index = 375, .length = 4}, + [218] = {.index = 379, .length = 3}, + [219] = {.index = 382, .length = 3}, + [220] = {.index = 385, .length = 3}, + [221] = {.index = 388, .length = 5}, + [222] = {.index = 393, .length = 2}, + [223] = {.index = 395, .length = 3}, + [224] = {.index = 398, .length = 3}, + [225] = {.index = 401, .length = 2}, [226] = {.index = 403, .length = 4}, - [227] = {.index = 407, .length = 4}, - [228] = {.index = 411, .length = 5}, - [229] = {.index = 416, .length = 4}, - [230] = {.index = 420, .length = 2}, - [231] = {.index = 422, .length = 4}, - [232] = {.index = 426, .length = 4}, - [233] = {.index = 430, .length = 3}, - [234] = {.index = 433, .length = 4}, - [235] = {.index = 437, .length = 3}, - [236] = {.index = 440, .length = 3}, - [237] = {.index = 443, .length = 5}, - [238] = {.index = 448, .length = 4}, - [239] = {.index = 452, .length = 5}, - [240] = {.index = 457, .length = 4}, - [241] = {.index = 461, .length = 3}, - [242] = {.index = 464, .length = 5}, + [227] = {.index = 403, .length = 4}, + [228] = {.index = 407, .length = 4}, + [229] = {.index = 411, .length = 5}, + [230] = {.index = 416, .length = 4}, + [231] = {.index = 420, .length = 2}, + [232] = {.index = 422, .length = 4}, + [233] = {.index = 426, .length = 4}, + [234] = {.index = 430, .length = 3}, + [235] = {.index = 433, .length = 4}, + [236] = {.index = 437, .length = 3}, + [237] = {.index = 440, .length = 3}, + [238] = {.index = 443, .length = 5}, + [239] = {.index = 448, .length = 4}, + [240] = {.index = 452, .length = 5}, + [241] = {.index = 457, .length = 4}, + [242] = {.index = 461, .length = 3}, + [243] = {.index = 464, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3275,6 +3611,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE }, [13] = { [0] = sym_identifier, + [2] = sym_token_tree, }, [14] = { [1] = alias_sym_type_identifier, @@ -3288,6 +3625,9 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [22] = { [0] = alias_sym_type_identifier, }, + [33] = { + [2] = sym_token_tree, + }, [35] = { [2] = alias_sym_type_identifier, }, @@ -3307,35 +3647,35 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [47] = { [1] = sym_identifier, }, - [49] = { - [1] = alias_sym_type_identifier, + [48] = { + [0] = sym_token_tree, }, [50] = { [1] = alias_sym_type_identifier, }, - [53] = { + [51] = { + [1] = alias_sym_type_identifier, + }, + [54] = { [0] = sym_identifier, [2] = sym_identifier, }, - [55] = { + [56] = { [0] = alias_sym_type_identifier, }, - [56] = { + [57] = { [0] = alias_sym_shorthand_field_identifier, }, - [57] = { + [58] = { [2] = sym_identifier, }, - [61] = { + [62] = { [1] = alias_sym_type_identifier, }, - [62] = { + [63] = { [0] = alias_sym_type_identifier, }, - [68] = { - [1] = alias_sym_type_identifier, - }, - [71] = { + [69] = { [1] = alias_sym_type_identifier, }, [72] = { @@ -3344,47 +3684,47 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [73] = { [1] = alias_sym_type_identifier, }, - [75] = { - [2] = alias_sym_type_identifier, + [74] = { + [1] = alias_sym_type_identifier, }, [76] = { - [0] = sym_identifier, + [2] = alias_sym_type_identifier, }, [77] = { [0] = sym_identifier, }, - [80] = { + [78] = { [0] = sym_identifier, }, - [84] = { + [81] = { [0] = sym_identifier, }, - [87] = { + [85] = { + [0] = sym_identifier, + }, + [88] = { [2] = alias_sym_type_identifier, }, - [93] = { + [94] = { [1] = alias_sym_type_identifier, }, - [97] = { + [98] = { [1] = alias_sym_shorthand_field_identifier, }, - [100] = { + [101] = { [0] = alias_sym_type_identifier, }, - [103] = { - [1] = alias_sym_type_identifier, - }, [104] = { [1] = alias_sym_type_identifier, }, [105] = { - [0] = alias_sym_type_identifier, + [1] = alias_sym_type_identifier, }, - [113] = { - [3] = sym_identifier, + [106] = { + [0] = alias_sym_type_identifier, }, [114] = { - [1] = alias_sym_type_identifier, + [3] = sym_identifier, }, [115] = { [1] = alias_sym_type_identifier, @@ -3395,8 +3735,8 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [117] = { [1] = alias_sym_type_identifier, }, - [121] = { - [2] = alias_sym_type_identifier, + [118] = { + [1] = alias_sym_type_identifier, }, [122] = { [2] = alias_sym_type_identifier, @@ -3405,57 +3745,57 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = alias_sym_type_identifier, }, [124] = { - [0] = sym_identifier, + [2] = alias_sym_type_identifier, }, [125] = { + [0] = sym_identifier, + }, + [126] = { [1] = sym_identifier, }, - [127] = { + [128] = { [0] = alias_sym_field_identifier, }, - [130] = { + [131] = { [2] = alias_sym_type_identifier, }, - [131] = { + [132] = { [3] = alias_sym_type_identifier, }, - [139] = { + [140] = { [2] = alias_sym_shorthand_field_identifier, }, - [140] = { + [141] = { [0] = alias_sym_field_identifier, }, - [141] = { + [142] = { [0] = alias_sym_type_identifier, }, - [144] = { + [145] = { [1] = alias_sym_type_identifier, }, - [146] = { + [147] = { [2] = alias_sym_type_identifier, }, - [147] = { + [148] = { [2] = alias_sym_type_identifier, }, - [150] = { + [151] = { [1] = alias_sym_type_identifier, }, - [160] = { - [0] = alias_sym_field_identifier, - }, [161] = { - [1] = alias_sym_type_identifier, + [0] = alias_sym_field_identifier, }, [162] = { [1] = alias_sym_type_identifier, }, [163] = { - [2] = alias_sym_type_identifier, + [1] = alias_sym_type_identifier, }, [164] = { [2] = alias_sym_type_identifier, }, - [168] = { + [165] = { [2] = alias_sym_type_identifier, }, [169] = { @@ -3464,14 +3804,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [170] = { [2] = alias_sym_type_identifier, }, - [173] = { - [1] = alias_sym_field_identifier, - }, - [177] = { + [171] = { [2] = alias_sym_type_identifier, }, + [174] = { + [1] = alias_sym_field_identifier, + }, [178] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [179] = { [3] = alias_sym_type_identifier, @@ -3479,35 +3819,35 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [180] = { [3] = alias_sym_type_identifier, }, - [190] = { - [1] = alias_sym_field_identifier, + [181] = { + [3] = alias_sym_type_identifier, }, [191] = { + [1] = alias_sym_field_identifier, + }, + [192] = { [0] = alias_sym_type_identifier, }, - [193] = { + [194] = { [2] = alias_sym_type_identifier, }, - [199] = { - [1] = alias_sym_field_identifier, - }, [200] = { - [2] = alias_sym_type_identifier, + [1] = alias_sym_field_identifier, }, [201] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [202] = { [3] = alias_sym_type_identifier, }, - [206] = { - [2] = alias_sym_type_identifier, + [203] = { + [3] = alias_sym_type_identifier, }, - [210] = { + [207] = { [2] = alias_sym_type_identifier, }, [211] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [212] = { [3] = alias_sym_type_identifier, @@ -3515,13 +3855,16 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [213] = { [3] = alias_sym_type_identifier, }, - [221] = { + [214] = { + [3] = alias_sym_type_identifier, + }, + [222] = { [2] = alias_sym_field_identifier, }, - [225] = { + [226] = { [3] = alias_sym_type_identifier, }, - [231] = { + [232] = { [3] = alias_sym_type_identifier, }, }; @@ -3530,6 +3873,9 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym_generic_type_with_turbofish, 2, sym_generic_type_with_turbofish, sym_generic_type, + sym_delim_token_tree, 2, + sym_delim_token_tree, + sym_token_tree, 0, }; @@ -10159,28 +10505,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '"') ADVANCE(150); if (lookahead == '#') ADVANCE(89); if (lookahead == '$') ADVANCE(54); + if (lookahead == '&') ADVANCE(103); if (lookahead == '\'') ADVANCE(87); if (lookahead == '(') ADVANCE(62); if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(80); if (lookahead == '+') ADVANCE(78); if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(33); if (lookahead == '.') ADVANCE(23); if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(144); if (lookahead == ':') ADVANCE(70); if (lookahead == ';') ADVANCE(60); if (lookahead == '<') ADVANCE(98); - if (lookahead == '=') ADVANCE(92); + if (lookahead == '=') ADVANCE(95); if (lookahead == '>') ADVANCE(100); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '[') ADVANCE(67); if (lookahead == '\\') ADVANCE(36); if (lookahead == ']') ADVANCE(68); - if (lookahead == 'm') ADVANCE(159); if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); if (lookahead == '|') ADVANCE(117); if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(8) + lookahead == ' ') SKIP(7) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 5: @@ -10277,33 +10630,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(90); - if (lookahead == '#') ADVANCE(89); - if (lookahead == '$') ADVANCE(54); - if (lookahead == '\'') ADVANCE(87); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '+') ADVANCE(78); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '.') ADVANCE(23); - if (lookahead == '/') ADVANCE(24); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(60); - if (lookahead == '<') ADVANCE(98); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(100); - if (lookahead == ']') ADVANCE(68); - if (lookahead == 'm') ADVANCE(159); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '|') ADVANCE(117); - if (lookahead == '}') ADVANCE(65); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); - END_STATE(); - case 9: if (lookahead == '!') ADVANCE(90); if (lookahead == '(') ADVANCE(62); if (lookahead == ')') ADVANCE(63); @@ -10325,10 +10651,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(9) + lookahead == ' ') SKIP(8) if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); - case 10: + case 9: if (lookahead == '!') ADVANCE(32); if (lookahead == '%') ADVANCE(127); if (lookahead == '&') ADVANCE(104); @@ -10356,10 +10682,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(10) + lookahead == ' ') SKIP(9) if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); - case 11: + case 10: if (lookahead == '"') ADVANCE(149); if (lookahead == '$') ADVANCE(73); if (lookahead == '\'') ADVANCE(88); @@ -10378,14 +10704,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(11) + lookahead == ' ') SKIP(10) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); if (('!' <= lookahead && lookahead <= '@') || lookahead == '^' || ('|' <= lookahead && lookahead <= '~')) ADVANCE(85); if (sym_identifier_character_set_3(lookahead)) ADVANCE(168); END_STATE(); - case 12: + case 11: if (lookahead == '"') ADVANCE(149); if (lookahead == '$') ADVANCE(73); if (lookahead == '\'') ADVANCE(88); @@ -10403,14 +10729,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(12) + lookahead == ' ') SKIP(11) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); if (('!' <= lookahead && lookahead <= '@') || lookahead == '^' || ('|' <= lookahead && lookahead <= '~')) ADVANCE(85); if (sym_identifier_character_set_3(lookahead)) ADVANCE(168); END_STATE(); - case 13: + case 12: if (lookahead == '"') ADVANCE(149); if (lookahead == '$') ADVANCE(72); if (lookahead == '\'') ADVANCE(88); @@ -10428,14 +10754,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(13) + lookahead == ' ') SKIP(12) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); if (('!' <= lookahead && lookahead <= '@') || lookahead == '^' || ('|' <= lookahead && lookahead <= '~')) ADVANCE(85); if (sym_identifier_character_set_3(lookahead)) ADVANCE(168); END_STATE(); - case 14: + case 13: if (lookahead == '"') ADVANCE(149); if (lookahead == '/') ADVANCE(24); if (lookahead == ':') ADVANCE(69); @@ -10445,6 +10771,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'b') ADVANCE(156); if (lookahead == 'r') ADVANCE(157); if (lookahead == '{') ADVANCE(64); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(13) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + END_STATE(); + case 14: + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '/') ADVANCE(24); + if (lookahead == ':') ADVANCE(31); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '=') ADVANCE(92); + if (lookahead == 'm') ADVANCE(159); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -11337,17 +11681,19 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'd') ADVANCE(5); if (lookahead == 'e') ADVANCE(6); if (lookahead == 'f') ADVANCE(7); - if (lookahead == 'i') ADVANCE(8); - if (lookahead == 'l') ADVANCE(9); - if (lookahead == 'm') ADVANCE(10); - if (lookahead == 'p') ADVANCE(11); - if (lookahead == 'r') ADVANCE(12); - if (lookahead == 's') ADVANCE(13); - if (lookahead == 't') ADVANCE(14); - if (lookahead == 'u') ADVANCE(15); - if (lookahead == 'v') ADVANCE(16); - if (lookahead == 'w') ADVANCE(17); - if (lookahead == 'y') ADVANCE(18); + if (lookahead == 'g') ADVANCE(8); + if (lookahead == 'i') ADVANCE(9); + if (lookahead == 'l') ADVANCE(10); + if (lookahead == 'm') ADVANCE(11); + if (lookahead == 'n') ADVANCE(12); + if (lookahead == 'p') ADVANCE(13); + if (lookahead == 'r') ADVANCE(14); + if (lookahead == 's') ADVANCE(15); + if (lookahead == 't') ADVANCE(16); + if (lookahead == 'u') ADVANCE(17); + if (lookahead == 'v') ADVANCE(18); + if (lookahead == 'w') ADVANCE(19); + if (lookahead == 'y') ADVANCE(20); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -11357,804 +11703,1767 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym__); END_STATE(); case 2: - if (lookahead == 's') ADVANCE(19); - if (lookahead == 'w') ADVANCE(20); + if (lookahead == 'l') ADVANCE(21); + if (lookahead == 's') ADVANCE(22); + if (lookahead == 'u') ADVANCE(23); + if (lookahead == 'w') ADVANCE(24); END_STATE(); case 3: - if (lookahead == 'l') ADVANCE(21); - if (lookahead == 'o') ADVANCE(22); - if (lookahead == 'r') ADVANCE(23); + if (lookahead == 'l') ADVANCE(25); + if (lookahead == 'o') ADVANCE(26); + if (lookahead == 'r') ADVANCE(27); END_STATE(); case 4: - if (lookahead == 'h') ADVANCE(24); - if (lookahead == 'o') ADVANCE(25); - if (lookahead == 'r') ADVANCE(26); + if (lookahead == 'f') ADVANCE(28); + if (lookahead == 'h') ADVANCE(29); + if (lookahead == 'o') ADVANCE(30); + if (lookahead == 'r') ADVANCE(31); END_STATE(); case 5: - if (lookahead == 'e') ADVANCE(27); - if (lookahead == 'y') ADVANCE(28); + if (lookahead == 'e') ADVANCE(32); + if (lookahead == 'o') ADVANCE(33); + if (lookahead == 'y') ADVANCE(34); END_STATE(); case 6: - if (lookahead == 'l') ADVANCE(29); - if (lookahead == 'n') ADVANCE(30); - if (lookahead == 'x') ADVANCE(31); + if (lookahead == 'l') ADVANCE(35); + if (lookahead == 'n') ADVANCE(36); + if (lookahead == 'x') ADVANCE(37); END_STATE(); case 7: - if (lookahead == '3') ADVANCE(32); - if (lookahead == '6') ADVANCE(33); - if (lookahead == 'a') ADVANCE(34); - if (lookahead == 'n') ADVANCE(35); - if (lookahead == 'o') ADVANCE(36); - END_STATE(); - case 8: - if (lookahead == '1') ADVANCE(37); if (lookahead == '3') ADVANCE(38); if (lookahead == '6') ADVANCE(39); - if (lookahead == '8') ADVANCE(40); - if (lookahead == 'd') ADVANCE(41); - if (lookahead == 'f') ADVANCE(42); - if (lookahead == 'm') ADVANCE(43); - if (lookahead == 'n') ADVANCE(44); - if (lookahead == 's') ADVANCE(45); - if (lookahead == 't') ADVANCE(46); + if (lookahead == 'a') ADVANCE(40); + if (lookahead == 'e') ADVANCE(41); + if (lookahead == 'n') ADVANCE(42); + if (lookahead == 'o') ADVANCE(43); + END_STATE(); + case 8: + if (lookahead == 'l') ADVANCE(44); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(47); - if (lookahead == 'i') ADVANCE(48); - if (lookahead == 'o') ADVANCE(49); + if (lookahead == '1') ADVANCE(45); + if (lookahead == '3') ADVANCE(46); + if (lookahead == '6') ADVANCE(47); + if (lookahead == '8') ADVANCE(48); + if (lookahead == 'd') ADVANCE(49); + if (lookahead == 'f') ADVANCE(50); + if (lookahead == 'g') ADVANCE(51); + if (lookahead == 'm') ADVANCE(52); + if (lookahead == 'n') ADVANCE(53); + if (lookahead == 's') ADVANCE(54); + if (lookahead == 't') ADVANCE(55); END_STATE(); case 10: - if (lookahead == 'a') ADVANCE(50); - if (lookahead == 'e') ADVANCE(51); - if (lookahead == 'o') ADVANCE(52); - if (lookahead == 'u') ADVANCE(53); + if (lookahead == 'e') ADVANCE(56); + if (lookahead == 'i') ADVANCE(57); + if (lookahead == 'o') ADVANCE(58); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(54); - if (lookahead == 'u') ADVANCE(55); + if (lookahead == 'a') ADVANCE(59); + if (lookahead == 'e') ADVANCE(60); + if (lookahead == 'o') ADVANCE(61); + if (lookahead == 'u') ADVANCE(62); END_STATE(); case 12: - if (lookahead == 'e') ADVANCE(56); + if (lookahead == 'o') ADVANCE(63); END_STATE(); case 13: - if (lookahead == 'e') ADVANCE(57); - if (lookahead == 't') ADVANCE(58); - if (lookahead == 'u') ADVANCE(59); + if (lookahead == 'a') ADVANCE(64); + if (lookahead == 'r') ADVANCE(65); + if (lookahead == 'u') ADVANCE(66); END_STATE(); case 14: - if (lookahead == 'r') ADVANCE(60); - if (lookahead == 't') ADVANCE(61); - if (lookahead == 'y') ADVANCE(62); + if (lookahead == 'e') ADVANCE(67); END_STATE(); case 15: - if (lookahead == '1') ADVANCE(63); - if (lookahead == '3') ADVANCE(64); - if (lookahead == '6') ADVANCE(65); - if (lookahead == '8') ADVANCE(66); - if (lookahead == 'n') ADVANCE(67); - if (lookahead == 's') ADVANCE(68); + if (lookahead == 'e') ADVANCE(68); + if (lookahead == 'h') ADVANCE(69); + if (lookahead == 't') ADVANCE(70); + if (lookahead == 'u') ADVANCE(71); END_STATE(); case 16: - if (lookahead == 'i') ADVANCE(69); + if (lookahead == 'a') ADVANCE(72); + if (lookahead == 'e') ADVANCE(73); + if (lookahead == 'r') ADVANCE(74); + if (lookahead == 't') ADVANCE(75); + if (lookahead == 'y') ADVANCE(76); END_STATE(); case 17: - if (lookahead == 'h') ADVANCE(70); + if (lookahead == '1') ADVANCE(77); + if (lookahead == '3') ADVANCE(78); + if (lookahead == '6') ADVANCE(79); + if (lookahead == '8') ADVANCE(80); + if (lookahead == 'n') ADVANCE(81); + if (lookahead == 's') ADVANCE(82); END_STATE(); case 18: - if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'i') ADVANCE(83); END_STATE(); case 19: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(72); + if (lookahead == 'a') ADVANCE(84); + if (lookahead == 'h') ADVANCE(85); + if (lookahead == 'i') ADVANCE(86); END_STATE(); case 20: - if (lookahead == 'a') ADVANCE(73); + if (lookahead == 'i') ADVANCE(87); END_STATE(); case 21: - if (lookahead == 'o') ADVANCE(74); + if (lookahead == 'l') ADVANCE(88); END_STATE(); case 22: - if (lookahead == 'o') ADVANCE(75); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(89); END_STATE(); case 23: - if (lookahead == 'e') ADVANCE(76); + if (lookahead == 't') ADVANCE(90); END_STATE(); case 24: - if (lookahead == 'a') ADVANCE(77); + if (lookahead == 'a') ADVANCE(91); END_STATE(); case 25: - if (lookahead == 'n') ADVANCE(78); + if (lookahead == 'o') ADVANCE(92); END_STATE(); case 26: - if (lookahead == 'a') ADVANCE(79); + if (lookahead == 'o') ADVANCE(93); END_STATE(); case 27: - if (lookahead == 'f') ADVANCE(80); + if (lookahead == 'e') ADVANCE(94); END_STATE(); case 28: - if (lookahead == 'n') ADVANCE(81); + if (lookahead == 'g') ADVANCE(95); END_STATE(); case 29: - if (lookahead == 's') ADVANCE(82); + if (lookahead == 'a') ADVANCE(96); END_STATE(); case 30: - if (lookahead == 'u') ADVANCE(83); + if (lookahead == 'l') ADVANCE(97); + if (lookahead == 'n') ADVANCE(98); END_STATE(); case 31: - if (lookahead == 'p') ADVANCE(84); - if (lookahead == 't') ADVANCE(85); + if (lookahead == 'a') ADVANCE(99); END_STATE(); case 32: - if (lookahead == '2') ADVANCE(86); + if (lookahead == 'f') ADVANCE(100); + if (lookahead == 'n') ADVANCE(101); + if (lookahead == 'p') ADVANCE(102); + if (lookahead == 'r') ADVANCE(103); END_STATE(); case 33: - if (lookahead == '4') ADVANCE(87); + if (lookahead == 'c') ADVANCE(104); END_STATE(); case 34: - if (lookahead == 'l') ADVANCE(88); + if (lookahead == 'n') ADVANCE(105); END_STATE(); case 35: - ACCEPT_TOKEN(anon_sym_fn); + if (lookahead == 's') ADVANCE(106); END_STATE(); case 36: - if (lookahead == 'r') ADVANCE(89); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 37: - if (lookahead == '2') ADVANCE(90); - if (lookahead == '6') ADVANCE(91); + if (lookahead == 'p') ADVANCE(108); + if (lookahead == 't') ADVANCE(109); END_STATE(); case 38: - if (lookahead == '2') ADVANCE(92); + if (lookahead == '2') ADVANCE(110); END_STATE(); case 39: - if (lookahead == '4') ADVANCE(93); + if (lookahead == '4') ADVANCE(111); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_i8); + if (lookahead == 'l') ADVANCE(112); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(94); + if (lookahead == 'a') ADVANCE(113); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_fn); END_STATE(); case 43: - if (lookahead == 'p') ADVANCE(95); + if (lookahead == 'r') ADVANCE(114); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'o') ADVANCE(115); END_STATE(); case 45: - if (lookahead == 'i') ADVANCE(96); + if (lookahead == '2') ADVANCE(116); + if (lookahead == '6') ADVANCE(117); END_STATE(); case 46: - if (lookahead == 'e') ADVANCE(97); + if (lookahead == '2') ADVANCE(118); END_STATE(); case 47: - if (lookahead == 't') ADVANCE(98); + if (lookahead == '4') ADVANCE(119); END_STATE(); case 48: - if (lookahead == 'f') ADVANCE(99); - if (lookahead == 't') ADVANCE(100); + ACCEPT_TOKEN(anon_sym_i8); END_STATE(); case 49: - if (lookahead == 'o') ADVANCE(101); + if (lookahead == 'e') ADVANCE(120); END_STATE(); case 50: - if (lookahead == 't') ADVANCE(102); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 51: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 'n') ADVANCE(121); END_STATE(); case 52: - if (lookahead == 'd') ADVANCE(104); - if (lookahead == 'v') ADVANCE(105); + if (lookahead == 'p') ADVANCE(122); END_STATE(); case 53: - if (lookahead == 't') ADVANCE(106); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'l') ADVANCE(123); END_STATE(); case 54: - if (lookahead == 't') ADVANCE(107); + if (lookahead == 'i') ADVANCE(124); END_STATE(); case 55: - if (lookahead == 'b') ADVANCE(108); + if (lookahead == 'e') ADVANCE(125); END_STATE(); case 56: - if (lookahead == 'f') ADVANCE(109); - if (lookahead == 't') ADVANCE(110); + if (lookahead == 't') ADVANCE(126); END_STATE(); case 57: - if (lookahead == 'l') ADVANCE(111); + if (lookahead == 'f') ADVANCE(127); + if (lookahead == 'n') ADVANCE(128); + if (lookahead == 't') ADVANCE(129); END_STATE(); case 58: - if (lookahead == 'a') ADVANCE(112); - if (lookahead == 'm') ADVANCE(113); - if (lookahead == 'r') ADVANCE(114); + if (lookahead == 'o') ADVANCE(130); END_STATE(); case 59: - if (lookahead == 'p') ADVANCE(115); + if (lookahead == 'c') ADVANCE(131); + if (lookahead == 't') ADVANCE(132); END_STATE(); case 60: - if (lookahead == 'a') ADVANCE(116); - if (lookahead == 'u') ADVANCE(117); + if (lookahead == 't') ADVANCE(133); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_tt); + if (lookahead == 'd') ADVANCE(134); + if (lookahead == 'v') ADVANCE(135); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_ty); - if (lookahead == 'p') ADVANCE(118); + if (lookahead == 's') ADVANCE(136); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 63: - if (lookahead == '2') ADVANCE(119); - if (lookahead == '6') ADVANCE(120); + if (lookahead == '_') ADVANCE(138); + if (lookahead == 'n') ADVANCE(139); END_STATE(); case 64: - if (lookahead == '2') ADVANCE(121); + if (lookahead == 'n') ADVANCE(140); + if (lookahead == 't') ADVANCE(141); END_STATE(); case 65: - if (lookahead == '4') ADVANCE(122); + if (lookahead == 'o') ADVANCE(142); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_u8); + if (lookahead == 'b') ADVANCE(143); END_STATE(); case 67: - if (lookahead == 'i') ADVANCE(123); - if (lookahead == 's') ADVANCE(124); + if (lookahead == 'c') ADVANCE(144); + if (lookahead == 'f') ADVANCE(145); + if (lookahead == 'p') ADVANCE(146); + if (lookahead == 't') ADVANCE(147); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(125); - if (lookahead == 'i') ADVANCE(126); + if (lookahead == 'l') ADVANCE(148); END_STATE(); case 69: - if (lookahead == 's') ADVANCE(127); + if (lookahead == 'o') ADVANCE(149); END_STATE(); case 70: - if (lookahead == 'e') ADVANCE(128); - if (lookahead == 'i') ADVANCE(129); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'm') ADVANCE(151); + if (lookahead == 'r') ADVANCE(152); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(130); + if (lookahead == 'p') ADVANCE(153); END_STATE(); case 72: - if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'r') ADVANCE(154); END_STATE(); case 73: - if (lookahead == 'i') ADVANCE(132); + if (lookahead == 's') ADVANCE(155); END_STATE(); case 74: - if (lookahead == 'c') ADVANCE(133); + if (lookahead == 'a') ADVANCE(156); + if (lookahead == 'u') ADVANCE(157); END_STATE(); case 75: - if (lookahead == 'l') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_tt); END_STATE(); case 76: - if (lookahead == 'a') ADVANCE(135); + ACCEPT_TOKEN(anon_sym_ty); + if (lookahead == 'p') ADVANCE(158); END_STATE(); case 77: - if (lookahead == 'r') ADVANCE(136); + if (lookahead == '2') ADVANCE(159); + if (lookahead == '6') ADVANCE(160); END_STATE(); case 78: - if (lookahead == 's') ADVANCE(137); - if (lookahead == 't') ADVANCE(138); + if (lookahead == '2') ADVANCE(161); END_STATE(); case 79: - if (lookahead == 't') ADVANCE(139); + if (lookahead == '4') ADVANCE(162); END_STATE(); case 80: - if (lookahead == 'a') ADVANCE(140); + ACCEPT_TOKEN(anon_sym_u8); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_dyn); + if (lookahead == 'i') ADVANCE(163); + if (lookahead == 's') ADVANCE(164); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(141); + if (lookahead == 'e') ADVANCE(165); + if (lookahead == 'i') ADVANCE(166); END_STATE(); case 83: - if (lookahead == 'm') ADVANCE(142); + if (lookahead == 's') ADVANCE(167); END_STATE(); case 84: - if (lookahead == 'r') ADVANCE(143); + if (lookahead == 'r') ADVANCE(168); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'e') ADVANCE(169); + if (lookahead == 'i') ADVANCE(170); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_f32); + if (lookahead == 'n') ADVANCE(171); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_f64); + if (lookahead == 'e') ADVANCE(172); END_STATE(); case 88: - if (lookahead == 's') ADVANCE(145); + if (lookahead == 'o') ADVANCE(173); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'n') ADVANCE(174); END_STATE(); case 90: - if (lookahead == '8') ADVANCE(146); + if (lookahead == 'o') ADVANCE(175); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_i16); + if (lookahead == 'i') ADVANCE(176); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_i32); + if (lookahead == 'c') ADVANCE(177); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_i64); + if (lookahead == 'l') ADVANCE(178); END_STATE(); case 94: - if (lookahead == 'n') ADVANCE(147); + if (lookahead == 'a') ADVANCE(179); END_STATE(); case 95: - if (lookahead == 'l') ADVANCE(148); + ACCEPT_TOKEN(anon_sym_cfg); + if (lookahead == '_') ADVANCE(180); END_STATE(); case 96: - if (lookahead == 'z') ADVANCE(149); + if (lookahead == 'r') ADVANCE(181); END_STATE(); case 97: - if (lookahead == 'm') ADVANCE(150); + if (lookahead == 'd') ADVANCE(182); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 's') ADVANCE(183); + if (lookahead == 't') ADVANCE(184); END_STATE(); case 99: - if (lookahead == 'e') ADVANCE(151); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 100: - if (lookahead == 'e') ADVANCE(152); + if (lookahead == 'a') ADVANCE(186); END_STATE(); case 101: - if (lookahead == 'p') ADVANCE(153); + if (lookahead == 'y') ADVANCE(187); END_STATE(); case 102: - if (lookahead == 'c') ADVANCE(154); + if (lookahead == 'r') ADVANCE(188); END_STATE(); case 103: - if (lookahead == 'a') ADVANCE(155); + if (lookahead == 'i') ADVANCE(189); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_doc); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(156); + ACCEPT_TOKEN(anon_sym_dyn); END_STATE(); case 106: - ACCEPT_TOKEN(sym_mutable_specifier); + if (lookahead == 'e') ADVANCE(190); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_pat); - if (lookahead == 'h') ADVANCE(157); + if (lookahead == 'm') ADVANCE(191); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_pub); + if (lookahead == 'o') ADVANCE(192); + if (lookahead == 'r') ADVANCE(193); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_ref); + if (lookahead == 'e') ADVANCE(194); END_STATE(); case 110: - if (lookahead == 'u') ADVANCE(158); + ACCEPT_TOKEN(anon_sym_f32); END_STATE(); case 111: - if (lookahead == 'f') ADVANCE(159); + ACCEPT_TOKEN(anon_sym_f64); END_STATE(); case 112: - if (lookahead == 't') ADVANCE(160); + if (lookahead == 's') ADVANCE(195); END_STATE(); case 113: - if (lookahead == 't') ADVANCE(161); + if (lookahead == 't') ADVANCE(196); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(162); + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'b') ADVANCE(197); END_STATE(); case 115: - if (lookahead == 'e') ADVANCE(163); + if (lookahead == 'b') ADVANCE(198); END_STATE(); case 116: - if (lookahead == 'i') ADVANCE(164); + if (lookahead == '8') ADVANCE(199); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(165); + ACCEPT_TOKEN(anon_sym_i16); END_STATE(); case 118: - if (lookahead == 'e') ADVANCE(166); + ACCEPT_TOKEN(anon_sym_i32); END_STATE(); case 119: - if (lookahead == '8') ADVANCE(167); + ACCEPT_TOKEN(anon_sym_i64); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_u16); + if (lookahead == 'n') ADVANCE(200); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_u32); + if (lookahead == 'o') ADVANCE(201); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_u64); + if (lookahead == 'l') ADVANCE(202); END_STATE(); case 123: - if (lookahead == 'o') ADVANCE(168); + if (lookahead == 'i') ADVANCE(203); END_STATE(); case 124: - if (lookahead == 'a') ADVANCE(169); + if (lookahead == 'z') ADVANCE(204); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_use); + if (lookahead == 'm') ADVANCE(205); END_STATE(); case 126: - if (lookahead == 'z') ADVANCE(170); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_vis); + if (lookahead == 'e') ADVANCE(206); END_STATE(); case 128: - if (lookahead == 'r') ADVANCE(171); + if (lookahead == 'k') ADVANCE(207); END_STATE(); case 129: - if (lookahead == 'l') ADVANCE(172); + if (lookahead == 'e') ADVANCE(208); END_STATE(); case 130: - if (lookahead == 'l') ADVANCE(173); + if (lookahead == 'p') ADVANCE(209); END_STATE(); case 131: - if (lookahead == 'c') ADVANCE(174); + if (lookahead == 'r') ADVANCE(210); END_STATE(); case 132: - if (lookahead == 't') ADVANCE(175); + if (lookahead == 'c') ADVANCE(211); END_STATE(); case 133: - if (lookahead == 'k') ADVANCE(176); + if (lookahead == 'a') ADVANCE(212); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_bool); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 135: - if (lookahead == 'k') ADVANCE(177); + if (lookahead == 'e') ADVANCE(213); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_char); + if (lookahead == 't') ADVANCE(214); END_STATE(); case 137: - if (lookahead == 't') ADVANCE(178); + ACCEPT_TOKEN(sym_mutable_specifier); END_STATE(); case 138: - if (lookahead == 'i') ADVANCE(179); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'i') ADVANCE(216); + if (lookahead == 'l') ADVANCE(217); + if (lookahead == 'm') ADVANCE(218); + if (lookahead == 's') ADVANCE(219); END_STATE(); case 139: - if (lookahead == 'e') ADVANCE(180); + if (lookahead == '_') ADVANCE(220); END_STATE(); case 140: - if (lookahead == 'u') ADVANCE(181); + if (lookahead == 'i') ADVANCE(221); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_pat); + if (lookahead == 'h') ADVANCE(222); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'c') ADVANCE(223); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_expr); + ACCEPT_TOKEN(anon_sym_pub); END_STATE(); case 144: - if (lookahead == 'r') ADVANCE(182); + if (lookahead == 'u') ADVANCE(224); END_STATE(); case 145: - if (lookahead == 'e') ADVANCE(183); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_i128); + if (lookahead == 'r') ADVANCE(225); END_STATE(); case 147: - if (lookahead == 't') ADVANCE(184); + if (lookahead == 'u') ADVANCE(226); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_impl); + if (lookahead == 'f') ADVANCE(227); END_STATE(); case 149: - if (lookahead == 'e') ADVANCE(185); + if (lookahead == 'u') ADVANCE(228); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_item); + if (lookahead == 't') ADVANCE(229); END_STATE(); case 151: - if (lookahead == 't') ADVANCE(186); + if (lookahead == 't') ADVANCE(230); END_STATE(); case 152: - if (lookahead == 'r') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(231); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_loop); + if (lookahead == 'e') ADVANCE(232); END_STATE(); case 154: - if (lookahead == 'h') ADVANCE(188); + if (lookahead == 'g') ADVANCE(233); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_meta); + if (lookahead == 't') ADVANCE(234); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_move); + if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'i') ADVANCE(236); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_path); + if (lookahead == 'e') ADVANCE(237); END_STATE(); case 158: - if (lookahead == 'r') ADVANCE(189); + if (lookahead == 'e') ADVANCE(238); END_STATE(); case 159: - ACCEPT_TOKEN(sym_self); + if (lookahead == '8') ADVANCE(239); END_STATE(); case 160: - if (lookahead == 'i') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_u16); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_stmt); + ACCEPT_TOKEN(anon_sym_u32); END_STATE(); case 162: - if (lookahead == 'c') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_u64); END_STATE(); case 163: - if (lookahead == 'r') ADVANCE(192); + if (lookahead == 'o') ADVANCE(240); END_STATE(); case 164: - if (lookahead == 't') ADVANCE(193); + if (lookahead == 'a') ADVANCE(241); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_use); + if (lookahead == 'd') ADVANCE(242); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'z') ADVANCE(243); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_u128); + ACCEPT_TOKEN(anon_sym_vis); END_STATE(); case 168: - if (lookahead == 'n') ADVANCE(194); + if (lookahead == 'n') ADVANCE(244); END_STATE(); case 169: - if (lookahead == 'f') ADVANCE(195); + if (lookahead == 'r') ADVANCE(245); END_STATE(); case 170: - if (lookahead == 'e') ADVANCE(196); + if (lookahead == 'l') ADVANCE(246); END_STATE(); case 171: - if (lookahead == 'e') ADVANCE(197); + if (lookahead == 'd') ADVANCE(247); END_STATE(); case 172: - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'l') ADVANCE(248); END_STATE(); case 173: - if (lookahead == 'd') ADVANCE(199); + if (lookahead == 'w') ADVANCE(249); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 'c') ADVANCE(250); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 'm') ADVANCE(251); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_block); + if (lookahead == 't') ADVANCE(252); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'k') ADVANCE(253); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 179: - if (lookahead == 'n') ADVANCE(200); + if (lookahead == 'k') ADVANCE(254); END_STATE(); case 180: - ACCEPT_TOKEN(sym_crate); + if (lookahead == 'a') ADVANCE(255); END_STATE(); case 181: - if (lookahead == 'l') ADVANCE(201); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 182: - if (lookahead == 'n') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_cold); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_false); + if (lookahead == 't') ADVANCE(256); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_ident); + if (lookahead == 'i') ADVANCE(257); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_isize); + if (lookahead == 'e') ADVANCE(258); END_STATE(); case 186: - if (lookahead == 'i') ADVANCE(203); + if (lookahead == 'u') ADVANCE(259); END_STATE(); case 187: - if (lookahead == 'a') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_deny); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_match); + if (lookahead == 'e') ADVANCE(260); END_STATE(); case 189: - if (lookahead == 'n') ADVANCE(205); + if (lookahead == 'v') ADVANCE(261); END_STATE(); case 190: - if (lookahead == 'c') ADVANCE(206); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 191: - if (lookahead == 't') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 192: - ACCEPT_TOKEN(sym_super); + if (lookahead == 'r') ADVANCE(262); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_trait); + ACCEPT_TOKEN(anon_sym_expr); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 'r') ADVANCE(263); END_STATE(); case 195: - if (lookahead == 'e') ADVANCE(208); + if (lookahead == 'e') ADVANCE(264); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_usize); + if (lookahead == 'u') ADVANCE(265); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_where); + if (lookahead == 'i') ADVANCE(266); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'a') ADVANCE(267); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_i128); END_STATE(); case 200: - if (lookahead == 'u') ADVANCE(209); + if (lookahead == 't') ADVANCE(268); END_STATE(); case 201: - if (lookahead == 't') ADVANCE(210); + if (lookahead == 'r') ADVANCE(269); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_impl); END_STATE(); case 203: - if (lookahead == 'm') ADVANCE(211); + if (lookahead == 'n') ADVANCE(270); END_STATE(); case 204: - if (lookahead == 'l') ADVANCE(212); + if (lookahead == 'e') ADVANCE(271); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_return); + ACCEPT_TOKEN(anon_sym_item); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 't') ADVANCE(272); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_link); + if (lookahead == '_') ADVANCE(273); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_unsafe); + if (lookahead == 'r') ADVANCE(274); END_STATE(); case 209: - if (lookahead == 'e') ADVANCE(213); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'o') ADVANCE(275); END_STATE(); case 211: - if (lookahead == 'e') ADVANCE(214); + if (lookahead == 'h') ADVANCE(276); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_literal); + ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_move); END_STATE(); case 214: + if (lookahead == '_') ADVANCE(277); + END_STATE(); + case 215: + if (lookahead == 'u') ADVANCE(278); + END_STATE(); + case 216: + if (lookahead == 'm') ADVANCE(279); + END_STATE(); + case 217: + if (lookahead == 'i') ADVANCE(280); + END_STATE(); + case 218: + if (lookahead == 'a') ADVANCE(281); + END_STATE(); + case 219: + if (lookahead == 't') ADVANCE(282); + END_STATE(); + case 220: + if (lookahead == 'e') ADVANCE(283); + END_STATE(); + case 221: + if (lookahead == 'c') ADVANCE(284); + END_STATE(); + case 222: + ACCEPT_TOKEN(anon_sym_path); + END_STATE(); + case 223: + if (lookahead == '_') ADVANCE(285); + END_STATE(); + case 224: + if (lookahead == 'r') ADVANCE(286); + END_STATE(); + case 225: + ACCEPT_TOKEN(anon_sym_repr); + END_STATE(); + case 226: + if (lookahead == 'r') ADVANCE(287); + END_STATE(); + case 227: + ACCEPT_TOKEN(sym_self); + END_STATE(); + case 228: + if (lookahead == 'l') ADVANCE(288); + END_STATE(); + case 229: + if (lookahead == 'i') ADVANCE(289); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_stmt); + END_STATE(); + case 231: + if (lookahead == 'c') ADVANCE(290); + END_STATE(); + case 232: + if (lookahead == 'r') ADVANCE(291); + END_STATE(); + case 233: + if (lookahead == 'e') ADVANCE(292); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_test); + END_STATE(); + case 235: + if (lookahead == 'k') ADVANCE(293); + END_STATE(); + case 236: + if (lookahead == 't') ADVANCE(294); + END_STATE(); + case 237: + ACCEPT_TOKEN(anon_sym_true); + END_STATE(); + case 238: + ACCEPT_TOKEN(anon_sym_type); + if (lookahead == '_') ADVANCE(295); + END_STATE(); + case 239: + ACCEPT_TOKEN(anon_sym_u128); + END_STATE(); + case 240: + if (lookahead == 'n') ADVANCE(296); + END_STATE(); + case 241: + if (lookahead == 'f') ADVANCE(297); + END_STATE(); + case 242: + ACCEPT_TOKEN(anon_sym_used); + END_STATE(); + case 243: + if (lookahead == 'e') ADVANCE(298); + END_STATE(); + case 244: + ACCEPT_TOKEN(anon_sym_warn); + END_STATE(); + case 245: + if (lookahead == 'e') ADVANCE(299); + END_STATE(); + case 246: + if (lookahead == 'e') ADVANCE(300); + END_STATE(); + case 247: + if (lookahead == 'o') ADVANCE(301); + END_STATE(); + case 248: + if (lookahead == 'd') ADVANCE(302); + END_STATE(); + case 249: + ACCEPT_TOKEN(anon_sym_allow); + END_STATE(); + case 250: + ACCEPT_TOKEN(anon_sym_async); + END_STATE(); + case 251: + if (lookahead == 'a') ADVANCE(303); + END_STATE(); + case 252: + ACCEPT_TOKEN(anon_sym_await); + END_STATE(); + case 253: + ACCEPT_TOKEN(anon_sym_block); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 255: + if (lookahead == 't') ADVANCE(304); + END_STATE(); + case 256: + ACCEPT_TOKEN(anon_sym_const); + END_STATE(); + case 257: + if (lookahead == 'n') ADVANCE(305); + END_STATE(); + case 258: + ACCEPT_TOKEN(sym_crate); + if (lookahead == '_') ADVANCE(306); + END_STATE(); + case 259: + if (lookahead == 'l') ADVANCE(307); + END_STATE(); + case 260: + if (lookahead == 'c') ADVANCE(308); + END_STATE(); + case 261: + if (lookahead == 'e') ADVANCE(309); + END_STATE(); + case 262: + if (lookahead == 't') ADVANCE(310); + END_STATE(); + case 263: + if (lookahead == 'n') ADVANCE(311); + END_STATE(); + case 264: + ACCEPT_TOKEN(anon_sym_false); + END_STATE(); + case 265: + if (lookahead == 'r') ADVANCE(312); + END_STATE(); + case 266: + if (lookahead == 'd') ADVANCE(313); + END_STATE(); + case 267: + if (lookahead == 'l') ADVANCE(314); + END_STATE(); + case 268: + ACCEPT_TOKEN(anon_sym_ident); + END_STATE(); + case 269: + if (lookahead == 'e') ADVANCE(315); + END_STATE(); + case 270: + if (lookahead == 'e') ADVANCE(316); + END_STATE(); + case 271: + ACCEPT_TOKEN(anon_sym_isize); + END_STATE(); + case 272: + if (lookahead == 'i') ADVANCE(317); + END_STATE(); + case 273: + if (lookahead == 'n') ADVANCE(318); + if (lookahead == 's') ADVANCE(319); + END_STATE(); + case 274: + if (lookahead == 'a') ADVANCE(320); + END_STATE(); + case 275: + if (lookahead == '_') ADVANCE(321); + END_STATE(); + case 276: + ACCEPT_TOKEN(anon_sym_match); + END_STATE(); + case 277: + if (lookahead == 'u') ADVANCE(322); + END_STATE(); + case 278: + if (lookahead == 'i') ADVANCE(323); + END_STATE(); + case 279: + if (lookahead == 'p') ADVANCE(324); + END_STATE(); + case 280: + if (lookahead == 'n') ADVANCE(325); + END_STATE(); + case 281: + if (lookahead == 'i') ADVANCE(326); + if (lookahead == 'n') ADVANCE(327); + END_STATE(); + case 282: + if (lookahead == 'd') ADVANCE(328); + END_STATE(); + case 283: + if (lookahead == 'x') ADVANCE(329); + END_STATE(); + case 284: + if (lookahead == '_') ADVANCE(330); + END_STATE(); + case 285: + if (lookahead == 'm') ADVANCE(331); + END_STATE(); + case 286: + if (lookahead == 's') ADVANCE(332); + END_STATE(); + case 287: + if (lookahead == 'n') ADVANCE(333); + END_STATE(); + case 288: + if (lookahead == 'd') ADVANCE(334); + END_STATE(); + case 289: + if (lookahead == 'c') ADVANCE(335); + END_STATE(); + case 290: + if (lookahead == 't') ADVANCE(336); + END_STATE(); + case 291: + ACCEPT_TOKEN(sym_super); + END_STATE(); + case 292: + if (lookahead == 't') ADVANCE(337); + END_STATE(); + case 293: + if (lookahead == '_') ADVANCE(338); + END_STATE(); + case 294: + ACCEPT_TOKEN(anon_sym_trait); + END_STATE(); + case 295: + if (lookahead == 'l') ADVANCE(339); + END_STATE(); + case 296: + ACCEPT_TOKEN(anon_sym_union); + END_STATE(); + case 297: + if (lookahead == 'e') ADVANCE(340); + END_STATE(); + case 298: + ACCEPT_TOKEN(anon_sym_usize); + END_STATE(); + case 299: + ACCEPT_TOKEN(anon_sym_where); + END_STATE(); + case 300: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 301: + if (lookahead == 'w') ADVANCE(341); + END_STATE(); + case 302: + ACCEPT_TOKEN(anon_sym_yield); + END_STATE(); + case 303: + if (lookahead == 't') ADVANCE(342); + END_STATE(); + case 304: + if (lookahead == 't') ADVANCE(343); + END_STATE(); + case 305: + if (lookahead == 'u') ADVANCE(344); + END_STATE(); + case 306: + if (lookahead == 'n') ADVANCE(345); + if (lookahead == 't') ADVANCE(346); + END_STATE(); + case 307: + if (lookahead == 't') ADVANCE(347); + END_STATE(); + case 308: + if (lookahead == 'a') ADVANCE(348); + END_STATE(); + case 309: + ACCEPT_TOKEN(anon_sym_derive); + END_STATE(); + case 310: + if (lookahead == '_') ADVANCE(349); + END_STATE(); + case 311: + ACCEPT_TOKEN(anon_sym_extern); + END_STATE(); + case 312: + if (lookahead == 'e') ADVANCE(350); + END_STATE(); + case 313: + ACCEPT_TOKEN(anon_sym_forbid); + END_STATE(); + case 314: + if (lookahead == '_') ADVANCE(351); + END_STATE(); + case 315: + ACCEPT_TOKEN(anon_sym_ignore); + END_STATE(); + case 316: + ACCEPT_TOKEN(anon_sym_inline); + END_STATE(); + case 317: + if (lookahead == 'm') ADVANCE(352); + END_STATE(); + case 318: + if (lookahead == 'a') ADVANCE(353); + END_STATE(); + case 319: + if (lookahead == 'e') ADVANCE(354); + END_STATE(); + case 320: + if (lookahead == 'l') ADVANCE(355); + END_STATE(); + case 321: + if (lookahead == 'e') ADVANCE(356); + if (lookahead == 'u') ADVANCE(357); + END_STATE(); + case 322: + if (lookahead == 's') ADVANCE(358); + END_STATE(); + case 323: + if (lookahead == 'l') ADVANCE(359); + END_STATE(); + case 324: + if (lookahead == 'l') ADVANCE(360); + END_STATE(); + case 325: + if (lookahead == 'k') ADVANCE(361); + END_STATE(); + case 326: + if (lookahead == 'n') ADVANCE(362); + END_STATE(); + case 327: + if (lookahead == 'g') ADVANCE(363); + END_STATE(); + case 328: + ACCEPT_TOKEN(anon_sym_no_std); + END_STATE(); + case 329: + if (lookahead == 'h') ADVANCE(364); + END_STATE(); + case 330: + if (lookahead == 'h') ADVANCE(365); + END_STATE(); + case 331: + if (lookahead == 'a') ADVANCE(366); + END_STATE(); + case 332: + if (lookahead == 'i') ADVANCE(367); + END_STATE(); + case 333: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 334: + if (lookahead == '_') ADVANCE(368); + END_STATE(); + case 335: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 336: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 337: + if (lookahead == '_') ADVANCE(369); + END_STATE(); + case 338: + if (lookahead == 'c') ADVANCE(370); + END_STATE(); + case 339: + if (lookahead == 'e') ADVANCE(371); + END_STATE(); + case 340: + ACCEPT_TOKEN(anon_sym_unsafe); + END_STATE(); + case 341: + if (lookahead == 's') ADVANCE(372); + END_STATE(); + case 342: + if (lookahead == 'i') ADVANCE(373); + END_STATE(); + case 343: + if (lookahead == 'r') ADVANCE(374); + END_STATE(); + case 344: + if (lookahead == 'e') ADVANCE(375); + END_STATE(); + case 345: + if (lookahead == 'a') ADVANCE(376); + END_STATE(); + case 346: + if (lookahead == 'y') ADVANCE(377); + END_STATE(); + case 347: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 348: + if (lookahead == 't') ADVANCE(378); + END_STATE(); + case 349: + if (lookahead == 'n') ADVANCE(379); + END_STATE(); + case 350: + ACCEPT_TOKEN(anon_sym_feature); + END_STATE(); + case 351: + if (lookahead == 'a') ADVANCE(380); + END_STATE(); + case 352: + if (lookahead == 'e') ADVANCE(381); + END_STATE(); + case 353: + if (lookahead == 'm') ADVANCE(382); + END_STATE(); + case 354: + if (lookahead == 'c') ADVANCE(383); + END_STATE(); + case 355: + ACCEPT_TOKEN(anon_sym_literal); + END_STATE(); + case 356: + if (lookahead == 'x') ADVANCE(384); + END_STATE(); + case 357: + if (lookahead == 's') ADVANCE(385); + END_STATE(); + case 358: + if (lookahead == 'e') ADVANCE(386); + END_STATE(); + case 359: + if (lookahead == 't') ADVANCE(387); + END_STATE(); + case 360: + if (lookahead == 'i') ADVANCE(388); + END_STATE(); + case 361: + ACCEPT_TOKEN(anon_sym_no_link); + END_STATE(); + case 362: + ACCEPT_TOKEN(anon_sym_no_main); + END_STATE(); + case 363: + if (lookahead == 'l') ADVANCE(389); + END_STATE(); + case 364: + if (lookahead == 'a') ADVANCE(390); + END_STATE(); + case 365: + if (lookahead == 'a') ADVANCE(391); + END_STATE(); + case 366: + if (lookahead == 'c') ADVANCE(392); + END_STATE(); + case 367: + if (lookahead == 'o') ADVANCE(393); + END_STATE(); + case 368: + if (lookahead == 'p') ADVANCE(394); + END_STATE(); + case 369: + if (lookahead == 'f') ADVANCE(395); + END_STATE(); + case 370: + if (lookahead == 'a') ADVANCE(396); + END_STATE(); + case 371: + if (lookahead == 'n') ADVANCE(397); + END_STATE(); + case 372: + if (lookahead == '_') ADVANCE(398); + END_STATE(); + case 373: + if (lookahead == 'c') ADVANCE(399); + END_STATE(); + case 374: + ACCEPT_TOKEN(anon_sym_cfg_attr); + END_STATE(); + case 375: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 376: + if (lookahead == 'm') ADVANCE(400); + END_STATE(); + case 377: + if (lookahead == 'p') ADVANCE(401); + END_STATE(); + case 378: + if (lookahead == 'e') ADVANCE(402); + END_STATE(); + case 379: + if (lookahead == 'a') ADVANCE(403); + END_STATE(); + case 380: + if (lookahead == 'l') ADVANCE(404); + END_STATE(); + case 381: ACCEPT_TOKEN(anon_sym_lifetime); END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 58, .external_lex_state = 2}, - [2] = {.lex_state = 58, .external_lex_state = 2}, - [3] = {.lex_state = 58, .external_lex_state = 2}, - [4] = {.lex_state = 58, .external_lex_state = 2}, - [5] = {.lex_state = 58, .external_lex_state = 2}, - [6] = {.lex_state = 58, .external_lex_state = 2}, - [7] = {.lex_state = 58, .external_lex_state = 2}, - [8] = {.lex_state = 58, .external_lex_state = 2}, - [9] = {.lex_state = 58, .external_lex_state = 2}, - [10] = {.lex_state = 58, .external_lex_state = 2}, - [11] = {.lex_state = 58, .external_lex_state = 2}, - [12] = {.lex_state = 58, .external_lex_state = 2}, - [13] = {.lex_state = 58, .external_lex_state = 2}, - [14] = {.lex_state = 58, .external_lex_state = 2}, - [15] = {.lex_state = 58, .external_lex_state = 2}, - [16] = {.lex_state = 58, .external_lex_state = 2}, - [17] = {.lex_state = 1, .external_lex_state = 2}, - [18] = {.lex_state = 1, .external_lex_state = 2}, - [19] = {.lex_state = 1, .external_lex_state = 2}, - [20] = {.lex_state = 1, .external_lex_state = 2}, - [21] = {.lex_state = 1, .external_lex_state = 2}, - [22] = {.lex_state = 1, .external_lex_state = 2}, - [23] = {.lex_state = 1, .external_lex_state = 2}, - [24] = {.lex_state = 1, .external_lex_state = 2}, - [25] = {.lex_state = 1, .external_lex_state = 2}, - [26] = {.lex_state = 1, .external_lex_state = 2}, - [27] = {.lex_state = 1, .external_lex_state = 2}, - [28] = {.lex_state = 1, .external_lex_state = 2}, - [29] = {.lex_state = 1, .external_lex_state = 2}, - [30] = {.lex_state = 1, .external_lex_state = 2}, - [31] = {.lex_state = 1, .external_lex_state = 2}, - [32] = {.lex_state = 1, .external_lex_state = 2}, - [33] = {.lex_state = 5, .external_lex_state = 2}, - [34] = {.lex_state = 5, .external_lex_state = 2}, - [35] = {.lex_state = 5, .external_lex_state = 2}, - [36] = {.lex_state = 5, .external_lex_state = 2}, - [37] = {.lex_state = 5, .external_lex_state = 2}, - [38] = {.lex_state = 5, .external_lex_state = 2}, - [39] = {.lex_state = 5, .external_lex_state = 2}, - [40] = {.lex_state = 5, .external_lex_state = 2}, - [41] = {.lex_state = 5, .external_lex_state = 2}, - [42] = {.lex_state = 5, .external_lex_state = 2}, - [43] = {.lex_state = 5, .external_lex_state = 2}, - [44] = {.lex_state = 5, .external_lex_state = 2}, - [45] = {.lex_state = 5, .external_lex_state = 2}, - [46] = {.lex_state = 57, .external_lex_state = 2}, - [47] = {.lex_state = 5, .external_lex_state = 2}, - [48] = {.lex_state = 5, .external_lex_state = 2}, - [49] = {.lex_state = 5, .external_lex_state = 2}, - [50] = {.lex_state = 57, .external_lex_state = 2}, - [51] = {.lex_state = 5, .external_lex_state = 2}, - [52] = {.lex_state = 5, .external_lex_state = 2}, - [53] = {.lex_state = 5, .external_lex_state = 2}, - [54] = {.lex_state = 5, .external_lex_state = 2}, - [55] = {.lex_state = 5, .external_lex_state = 2}, - [56] = {.lex_state = 5, .external_lex_state = 2}, - [57] = {.lex_state = 57, .external_lex_state = 2}, - [58] = {.lex_state = 5, .external_lex_state = 2}, - [59] = {.lex_state = 5, .external_lex_state = 2}, - [60] = {.lex_state = 5, .external_lex_state = 2}, - [61] = {.lex_state = 5, .external_lex_state = 2}, - [62] = {.lex_state = 5, .external_lex_state = 2}, - [63] = {.lex_state = 5, .external_lex_state = 2}, - [64] = {.lex_state = 5, .external_lex_state = 2}, - [65] = {.lex_state = 57, .external_lex_state = 2}, - [66] = {.lex_state = 5, .external_lex_state = 2}, - [67] = {.lex_state = 57, .external_lex_state = 2}, - [68] = {.lex_state = 5, .external_lex_state = 2}, - [69] = {.lex_state = 5, .external_lex_state = 2}, - [70] = {.lex_state = 5, .external_lex_state = 2}, - [71] = {.lex_state = 5, .external_lex_state = 2}, - [72] = {.lex_state = 57, .external_lex_state = 2}, - [73] = {.lex_state = 5, .external_lex_state = 2}, - [74] = {.lex_state = 5, .external_lex_state = 2}, - [75] = {.lex_state = 5, .external_lex_state = 2}, - [76] = {.lex_state = 5, .external_lex_state = 2}, - [77] = {.lex_state = 5, .external_lex_state = 2}, - [78] = {.lex_state = 5, .external_lex_state = 2}, - [79] = {.lex_state = 5, .external_lex_state = 2}, - [80] = {.lex_state = 5, .external_lex_state = 2}, - [81] = {.lex_state = 5, .external_lex_state = 2}, - [82] = {.lex_state = 5, .external_lex_state = 2}, - [83] = {.lex_state = 5, .external_lex_state = 2}, - [84] = {.lex_state = 5, .external_lex_state = 2}, - [85] = {.lex_state = 5, .external_lex_state = 2}, - [86] = {.lex_state = 5, .external_lex_state = 2}, - [87] = {.lex_state = 5, .external_lex_state = 2}, - [88] = {.lex_state = 5, .external_lex_state = 2}, - [89] = {.lex_state = 5, .external_lex_state = 2}, - [90] = {.lex_state = 5, .external_lex_state = 2}, - [91] = {.lex_state = 57, .external_lex_state = 2}, - [92] = {.lex_state = 5, .external_lex_state = 2}, - [93] = {.lex_state = 5, .external_lex_state = 2}, - [94] = {.lex_state = 5, .external_lex_state = 2}, - [95] = {.lex_state = 57, .external_lex_state = 2}, - [96] = {.lex_state = 5, .external_lex_state = 2}, - [97] = {.lex_state = 57, .external_lex_state = 2}, - [98] = {.lex_state = 57, .external_lex_state = 2}, - [99] = {.lex_state = 57, .external_lex_state = 2}, - [100] = {.lex_state = 5, .external_lex_state = 2}, + case 382: + if (lookahead == 'e') ADVANCE(405); + END_STATE(); + case 383: + if (lookahead == 't') ADVANCE(406); + END_STATE(); + case 384: + if (lookahead == 'p') ADVANCE(407); + END_STATE(); + case 385: + if (lookahead == 'e') ADVANCE(408); + END_STATE(); + case 386: + ACCEPT_TOKEN(anon_sym_must_use); + END_STATE(); + case 387: + if (lookahead == 'i') ADVANCE(409); + END_STATE(); + case 388: + if (lookahead == 'c') ADVANCE(410); + END_STATE(); + case 389: + if (lookahead == 'e') ADVANCE(411); + END_STATE(); + case 390: + if (lookahead == 'u') ADVANCE(412); + END_STATE(); + case 391: + if (lookahead == 'n') ADVANCE(413); + END_STATE(); + case 392: + if (lookahead == 'r') ADVANCE(414); + END_STATE(); + case 393: + if (lookahead == 'n') ADVANCE(415); + END_STATE(); + case 394: + if (lookahead == 'a') ADVANCE(416); + END_STATE(); + case 395: + if (lookahead == 'e') ADVANCE(417); + END_STATE(); + case 396: + if (lookahead == 'l') ADVANCE(418); + END_STATE(); + case 397: + if (lookahead == 'g') ADVANCE(419); + END_STATE(); + case 398: + if (lookahead == 's') ADVANCE(420); + END_STATE(); + case 399: + if (lookahead == 'a') ADVANCE(421); + END_STATE(); + case 400: + if (lookahead == 'e') ADVANCE(422); + END_STATE(); + case 401: + if (lookahead == 'e') ADVANCE(423); + END_STATE(); + case 402: + if (lookahead == 'd') ADVANCE(424); + END_STATE(); + case 403: + if (lookahead == 'm') ADVANCE(425); + END_STATE(); + case 404: + if (lookahead == 'l') ADVANCE(426); + END_STATE(); + case 405: + ACCEPT_TOKEN(anon_sym_link_name); + END_STATE(); + case 406: + if (lookahead == 'i') ADVANCE(427); + END_STATE(); + case 407: + if (lookahead == 'o') ADVANCE(428); + END_STATE(); + case 408: + ACCEPT_TOKEN(anon_sym_macro_use); + END_STATE(); + case 409: + if (lookahead == 'n') ADVANCE(429); + END_STATE(); + case 410: + if (lookahead == 'i') ADVANCE(430); + END_STATE(); + case 411: + ACCEPT_TOKEN(anon_sym_no_mangle); + END_STATE(); + case 412: + if (lookahead == 's') ADVANCE(431); + END_STATE(); + case 413: + if (lookahead == 'd') ADVANCE(432); + END_STATE(); + case 414: + if (lookahead == 'o') ADVANCE(433); + END_STATE(); + case 415: + if (lookahead == '_') ADVANCE(434); + END_STATE(); + case 416: + if (lookahead == 'n') ADVANCE(435); + END_STATE(); + case 417: + if (lookahead == 'a') ADVANCE(436); + END_STATE(); + case 418: + if (lookahead == 'l') ADVANCE(437); + END_STATE(); + case 419: + if (lookahead == 't') ADVANCE(438); + END_STATE(); + case 420: + if (lookahead == 'u') ADVANCE(439); + END_STATE(); + case 421: + if (lookahead == 'l') ADVANCE(440); + END_STATE(); + case 422: + ACCEPT_TOKEN(anon_sym_crate_name); + END_STATE(); + case 423: + ACCEPT_TOKEN(anon_sym_crate_type); + END_STATE(); + case 424: + ACCEPT_TOKEN(anon_sym_deprecated); + END_STATE(); + case 425: + if (lookahead == 'e') ADVANCE(441); + END_STATE(); + case 426: + if (lookahead == 'o') ADVANCE(442); + END_STATE(); + case 427: + if (lookahead == 'o') ADVANCE(443); + END_STATE(); + case 428: + if (lookahead == 'r') ADVANCE(444); + END_STATE(); + case 429: + if (lookahead == 's') ADVANCE(445); + END_STATE(); + case 430: + if (lookahead == 't') ADVANCE(446); + END_STATE(); + case 431: + if (lookahead == 't') ADVANCE(447); + END_STATE(); + case 432: + if (lookahead == 'l') ADVANCE(448); + END_STATE(); + case 433: + ACCEPT_TOKEN(anon_sym_proc_macro); + if (lookahead == '_') ADVANCE(449); + END_STATE(); + case 434: + if (lookahead == 'l') ADVANCE(450); + END_STATE(); + case 435: + if (lookahead == 'i') ADVANCE(451); + END_STATE(); + case 436: + if (lookahead == 't') ADVANCE(452); + END_STATE(); + case 437: + if (lookahead == 'e') ADVANCE(453); + END_STATE(); + case 438: + if (lookahead == 'h') ADVANCE(454); + END_STATE(); + case 439: + if (lookahead == 'b') ADVANCE(455); + END_STATE(); + case 440: + if (lookahead == 'l') ADVANCE(456); + END_STATE(); + case 441: + ACCEPT_TOKEN(anon_sym_export_name); + END_STATE(); + case 442: + if (lookahead == 'c') ADVANCE(457); + END_STATE(); + case 443: + if (lookahead == 'n') ADVANCE(458); + END_STATE(); + case 444: + if (lookahead == 't') ADVANCE(459); + END_STATE(); + case 445: + ACCEPT_TOKEN(anon_sym_no_builtins); + END_STATE(); + case 446: + if (lookahead == '_') ADVANCE(460); + END_STATE(); + case 447: + if (lookahead == 'i') ADVANCE(461); + END_STATE(); + case 448: + if (lookahead == 'e') ADVANCE(462); + END_STATE(); + case 449: + if (lookahead == 'a') ADVANCE(463); + if (lookahead == 'd') ADVANCE(464); + END_STATE(); + case 450: + if (lookahead == 'i') ADVANCE(465); + END_STATE(); + case 451: + if (lookahead == 'c') ADVANCE(466); + END_STATE(); + case 452: + if (lookahead == 'u') ADVANCE(467); + END_STATE(); + case 453: + if (lookahead == 'r') ADVANCE(468); + END_STATE(); + case 454: + if (lookahead == '_') ADVANCE(469); + END_STATE(); + case 455: + if (lookahead == 's') ADVANCE(470); + END_STATE(); + case 456: + if (lookahead == 'y') ADVANCE(471); + END_STATE(); + case 457: + if (lookahead == 'a') ADVANCE(472); + END_STATE(); + case 458: + ACCEPT_TOKEN(anon_sym_link_section); + END_STATE(); + case 459: + ACCEPT_TOKEN(anon_sym_macro_export); + END_STATE(); + case 460: + if (lookahead == 'p') ADVANCE(473); + END_STATE(); + case 461: + if (lookahead == 'v') ADVANCE(474); + END_STATE(); + case 462: + if (lookahead == 'r') ADVANCE(475); + END_STATE(); + case 463: + if (lookahead == 't') ADVANCE(476); + END_STATE(); + case 464: + if (lookahead == 'e') ADVANCE(477); + END_STATE(); + case 465: + if (lookahead == 'm') ADVANCE(478); + END_STATE(); + case 466: + ACCEPT_TOKEN(anon_sym_should_panic); + END_STATE(); + case 467: + if (lookahead == 'r') ADVANCE(479); + END_STATE(); + case 468: + ACCEPT_TOKEN(anon_sym_track_caller); + END_STATE(); + case 469: + if (lookahead == 'l') ADVANCE(480); + END_STATE(); + case 470: + if (lookahead == 'y') ADVANCE(481); + END_STATE(); + case 471: + if (lookahead == '_') ADVANCE(482); + END_STATE(); + case 472: + if (lookahead == 't') ADVANCE(483); + END_STATE(); + case 473: + if (lookahead == 'r') ADVANCE(484); + END_STATE(); + case 474: + if (lookahead == 'e') ADVANCE(485); + END_STATE(); + case 475: + ACCEPT_TOKEN(anon_sym_panic_handler); + END_STATE(); + case 476: + if (lookahead == 't') ADVANCE(486); + END_STATE(); + case 477: + if (lookahead == 'r') ADVANCE(487); + END_STATE(); + case 478: + if (lookahead == 'i') ADVANCE(488); + END_STATE(); + case 479: + if (lookahead == 'e') ADVANCE(489); + END_STATE(); + case 480: + if (lookahead == 'i') ADVANCE(490); + END_STATE(); + case 481: + if (lookahead == 's') ADVANCE(491); + END_STATE(); + case 482: + if (lookahead == 'd') ADVANCE(492); + END_STATE(); + case 483: + if (lookahead == 'o') ADVANCE(493); + END_STATE(); + case 484: + if (lookahead == 'e') ADVANCE(494); + END_STATE(); + case 485: + ACCEPT_TOKEN(anon_sym_non_exhaustive); + END_STATE(); + case 486: + if (lookahead == 'r') ADVANCE(495); + END_STATE(); + case 487: + if (lookahead == 'i') ADVANCE(496); + END_STATE(); + case 488: + if (lookahead == 't') ADVANCE(497); + END_STATE(); + case 489: + ACCEPT_TOKEN(anon_sym_target_feature); + END_STATE(); + case 490: + if (lookahead == 'm') ADVANCE(498); + END_STATE(); + case 491: + if (lookahead == 't') ADVANCE(499); + END_STATE(); + case 492: + if (lookahead == 'e') ADVANCE(500); + END_STATE(); + case 493: + if (lookahead == 'r') ADVANCE(501); + END_STATE(); + case 494: + if (lookahead == 'l') ADVANCE(502); + END_STATE(); + case 495: + if (lookahead == 'i') ADVANCE(503); + END_STATE(); + case 496: + if (lookahead == 'v') ADVANCE(504); + END_STATE(); + case 497: + ACCEPT_TOKEN(anon_sym_recursion_limit); + END_STATE(); + case 498: + if (lookahead == 'i') ADVANCE(505); + END_STATE(); + case 499: + if (lookahead == 'e') ADVANCE(506); + END_STATE(); + case 500: + if (lookahead == 'r') ADVANCE(507); + END_STATE(); + case 501: + ACCEPT_TOKEN(anon_sym_global_allocator); + END_STATE(); + case 502: + if (lookahead == 'u') ADVANCE(508); + END_STATE(); + case 503: + if (lookahead == 'b') ADVANCE(509); + END_STATE(); + case 504: + if (lookahead == 'e') ADVANCE(510); + END_STATE(); + case 505: + if (lookahead == 't') ADVANCE(511); + END_STATE(); + case 506: + if (lookahead == 'm') ADVANCE(512); + END_STATE(); + case 507: + if (lookahead == 'i') ADVANCE(513); + END_STATE(); + case 508: + if (lookahead == 'd') ADVANCE(514); + END_STATE(); + case 509: + if (lookahead == 'u') ADVANCE(515); + END_STATE(); + case 510: + ACCEPT_TOKEN(anon_sym_proc_macro_derive); + END_STATE(); + case 511: + ACCEPT_TOKEN(anon_sym_type_length_limit); + END_STATE(); + case 512: + ACCEPT_TOKEN(anon_sym_windows_subsystem); + END_STATE(); + case 513: + if (lookahead == 'v') ADVANCE(516); + END_STATE(); + case 514: + if (lookahead == 'e') ADVANCE(517); + END_STATE(); + case 515: + if (lookahead == 't') ADVANCE(518); + END_STATE(); + case 516: + if (lookahead == 'e') ADVANCE(519); + END_STATE(); + case 517: + ACCEPT_TOKEN(anon_sym_no_implicit_prelude); + END_STATE(); + case 518: + if (lookahead == 'e') ADVANCE(520); + END_STATE(); + case 519: + if (lookahead == 'd') ADVANCE(521); + END_STATE(); + case 520: + ACCEPT_TOKEN(anon_sym_proc_macro_attribute); + END_STATE(); + case 521: + ACCEPT_TOKEN(anon_sym_automatically_derived); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 58, .external_lex_state = 2}, + [2] = {.lex_state = 58, .external_lex_state = 2}, + [3] = {.lex_state = 58, .external_lex_state = 2}, + [4] = {.lex_state = 58, .external_lex_state = 2}, + [5] = {.lex_state = 58, .external_lex_state = 2}, + [6] = {.lex_state = 58, .external_lex_state = 2}, + [7] = {.lex_state = 58, .external_lex_state = 2}, + [8] = {.lex_state = 58, .external_lex_state = 2}, + [9] = {.lex_state = 58, .external_lex_state = 2}, + [10] = {.lex_state = 58, .external_lex_state = 2}, + [11] = {.lex_state = 58, .external_lex_state = 2}, + [12] = {.lex_state = 58, .external_lex_state = 2}, + [13] = {.lex_state = 58, .external_lex_state = 2}, + [14] = {.lex_state = 58, .external_lex_state = 2}, + [15] = {.lex_state = 58, .external_lex_state = 2}, + [16] = {.lex_state = 58, .external_lex_state = 2}, + [17] = {.lex_state = 1, .external_lex_state = 2}, + [18] = {.lex_state = 1, .external_lex_state = 2}, + [19] = {.lex_state = 1, .external_lex_state = 2}, + [20] = {.lex_state = 1, .external_lex_state = 2}, + [21] = {.lex_state = 1, .external_lex_state = 2}, + [22] = {.lex_state = 1, .external_lex_state = 2}, + [23] = {.lex_state = 1, .external_lex_state = 2}, + [24] = {.lex_state = 1, .external_lex_state = 2}, + [25] = {.lex_state = 1, .external_lex_state = 2}, + [26] = {.lex_state = 1, .external_lex_state = 2}, + [27] = {.lex_state = 1, .external_lex_state = 2}, + [28] = {.lex_state = 1, .external_lex_state = 2}, + [29] = {.lex_state = 1, .external_lex_state = 2}, + [30] = {.lex_state = 1, .external_lex_state = 2}, + [31] = {.lex_state = 1, .external_lex_state = 2}, + [32] = {.lex_state = 1, .external_lex_state = 2}, + [33] = {.lex_state = 5, .external_lex_state = 2}, + [34] = {.lex_state = 5, .external_lex_state = 2}, + [35] = {.lex_state = 5, .external_lex_state = 2}, + [36] = {.lex_state = 5, .external_lex_state = 2}, + [37] = {.lex_state = 5, .external_lex_state = 2}, + [38] = {.lex_state = 5, .external_lex_state = 2}, + [39] = {.lex_state = 5, .external_lex_state = 2}, + [40] = {.lex_state = 5, .external_lex_state = 2}, + [41] = {.lex_state = 5, .external_lex_state = 2}, + [42] = {.lex_state = 5, .external_lex_state = 2}, + [43] = {.lex_state = 5, .external_lex_state = 2}, + [44] = {.lex_state = 5, .external_lex_state = 2}, + [45] = {.lex_state = 57, .external_lex_state = 2}, + [46] = {.lex_state = 5, .external_lex_state = 2}, + [47] = {.lex_state = 5, .external_lex_state = 2}, + [48] = {.lex_state = 5, .external_lex_state = 2}, + [49] = {.lex_state = 57, .external_lex_state = 2}, + [50] = {.lex_state = 5, .external_lex_state = 2}, + [51] = {.lex_state = 5, .external_lex_state = 2}, + [52] = {.lex_state = 5, .external_lex_state = 2}, + [53] = {.lex_state = 5, .external_lex_state = 2}, + [54] = {.lex_state = 5, .external_lex_state = 2}, + [55] = {.lex_state = 5, .external_lex_state = 2}, + [56] = {.lex_state = 5, .external_lex_state = 2}, + [57] = {.lex_state = 5, .external_lex_state = 2}, + [58] = {.lex_state = 5, .external_lex_state = 2}, + [59] = {.lex_state = 5, .external_lex_state = 2}, + [60] = {.lex_state = 5, .external_lex_state = 2}, + [61] = {.lex_state = 5, .external_lex_state = 2}, + [62] = {.lex_state = 5, .external_lex_state = 2}, + [63] = {.lex_state = 5, .external_lex_state = 2}, + [64] = {.lex_state = 57, .external_lex_state = 2}, + [65] = {.lex_state = 5, .external_lex_state = 2}, + [66] = {.lex_state = 5, .external_lex_state = 2}, + [67] = {.lex_state = 5, .external_lex_state = 2}, + [68] = {.lex_state = 5, .external_lex_state = 2}, + [69] = {.lex_state = 5, .external_lex_state = 2}, + [70] = {.lex_state = 57, .external_lex_state = 2}, + [71] = {.lex_state = 57, .external_lex_state = 2}, + [72] = {.lex_state = 5, .external_lex_state = 2}, + [73] = {.lex_state = 5, .external_lex_state = 2}, + [74] = {.lex_state = 5, .external_lex_state = 2}, + [75] = {.lex_state = 5, .external_lex_state = 2}, + [76] = {.lex_state = 5, .external_lex_state = 2}, + [77] = {.lex_state = 57, .external_lex_state = 2}, + [78] = {.lex_state = 57, .external_lex_state = 2}, + [79] = {.lex_state = 5, .external_lex_state = 2}, + [80] = {.lex_state = 5, .external_lex_state = 2}, + [81] = {.lex_state = 5, .external_lex_state = 2}, + [82] = {.lex_state = 5, .external_lex_state = 2}, + [83] = {.lex_state = 5, .external_lex_state = 2}, + [84] = {.lex_state = 57, .external_lex_state = 2}, + [85] = {.lex_state = 5, .external_lex_state = 2}, + [86] = {.lex_state = 5, .external_lex_state = 2}, + [87] = {.lex_state = 5, .external_lex_state = 2}, + [88] = {.lex_state = 5, .external_lex_state = 2}, + [89] = {.lex_state = 5, .external_lex_state = 2}, + [90] = {.lex_state = 5, .external_lex_state = 2}, + [91] = {.lex_state = 5, .external_lex_state = 2}, + [92] = {.lex_state = 5, .external_lex_state = 2}, + [93] = {.lex_state = 5, .external_lex_state = 2}, + [94] = {.lex_state = 5, .external_lex_state = 2}, + [95] = {.lex_state = 57, .external_lex_state = 2}, + [96] = {.lex_state = 5, .external_lex_state = 2}, + [97] = {.lex_state = 5, .external_lex_state = 2}, + [98] = {.lex_state = 57, .external_lex_state = 2}, + [99] = {.lex_state = 5, .external_lex_state = 2}, + [100] = {.lex_state = 5, .external_lex_state = 2}, [101] = {.lex_state = 5, .external_lex_state = 2}, [102] = {.lex_state = 5, .external_lex_state = 2}, [103] = {.lex_state = 5, .external_lex_state = 2}, @@ -12162,81 +13471,81 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [105] = {.lex_state = 5, .external_lex_state = 2}, [106] = {.lex_state = 5, .external_lex_state = 2}, [107] = {.lex_state = 5, .external_lex_state = 2}, - [108] = {.lex_state = 5, .external_lex_state = 2}, - [109] = {.lex_state = 57, .external_lex_state = 2}, + [108] = {.lex_state = 57, .external_lex_state = 2}, + [109] = {.lex_state = 5, .external_lex_state = 2}, [110] = {.lex_state = 5, .external_lex_state = 2}, [111] = {.lex_state = 5, .external_lex_state = 2}, - [112] = {.lex_state = 57, .external_lex_state = 2}, - [113] = {.lex_state = 57, .external_lex_state = 2}, + [112] = {.lex_state = 5, .external_lex_state = 2}, + [113] = {.lex_state = 5, .external_lex_state = 2}, [114] = {.lex_state = 5, .external_lex_state = 2}, - [115] = {.lex_state = 57, .external_lex_state = 2}, + [115] = {.lex_state = 5, .external_lex_state = 2}, [116] = {.lex_state = 5, .external_lex_state = 2}, - [117] = {.lex_state = 5, .external_lex_state = 2}, + [117] = {.lex_state = 57, .external_lex_state = 2}, [118] = {.lex_state = 5, .external_lex_state = 2}, [119] = {.lex_state = 5, .external_lex_state = 2}, [120] = {.lex_state = 5, .external_lex_state = 2}, [121] = {.lex_state = 5, .external_lex_state = 2}, - [122] = {.lex_state = 5, .external_lex_state = 2}, + [122] = {.lex_state = 57, .external_lex_state = 2}, [123] = {.lex_state = 5, .external_lex_state = 2}, - [124] = {.lex_state = 57, .external_lex_state = 2}, + [124] = {.lex_state = 5, .external_lex_state = 2}, [125] = {.lex_state = 5, .external_lex_state = 2}, [126] = {.lex_state = 5, .external_lex_state = 2}, [127] = {.lex_state = 5, .external_lex_state = 2}, [128] = {.lex_state = 5, .external_lex_state = 2}, - [129] = {.lex_state = 57, .external_lex_state = 2}, + [129] = {.lex_state = 5, .external_lex_state = 2}, [130] = {.lex_state = 57, .external_lex_state = 2}, [131] = {.lex_state = 5, .external_lex_state = 2}, - [132] = {.lex_state = 5, .external_lex_state = 2}, - [133] = {.lex_state = 5, .external_lex_state = 2}, - [134] = {.lex_state = 5, .external_lex_state = 2}, + [132] = {.lex_state = 57, .external_lex_state = 2}, + [133] = {.lex_state = 57, .external_lex_state = 2}, + [134] = {.lex_state = 57, .external_lex_state = 2}, [135] = {.lex_state = 5, .external_lex_state = 2}, - [136] = {.lex_state = 5, .external_lex_state = 2}, + [136] = {.lex_state = 57, .external_lex_state = 2}, [137] = {.lex_state = 57, .external_lex_state = 2}, [138] = {.lex_state = 5, .external_lex_state = 2}, [139] = {.lex_state = 5, .external_lex_state = 2}, [140] = {.lex_state = 5, .external_lex_state = 2}, - [141] = {.lex_state = 57, .external_lex_state = 2}, + [141] = {.lex_state = 5, .external_lex_state = 2}, [142] = {.lex_state = 5, .external_lex_state = 2}, [143] = {.lex_state = 5, .external_lex_state = 2}, [144] = {.lex_state = 5, .external_lex_state = 2}, [145] = {.lex_state = 5, .external_lex_state = 2}, [146] = {.lex_state = 5, .external_lex_state = 2}, - [147] = {.lex_state = 5, .external_lex_state = 2}, + [147] = {.lex_state = 57, .external_lex_state = 2}, [148] = {.lex_state = 5, .external_lex_state = 2}, [149] = {.lex_state = 57, .external_lex_state = 2}, - [150] = {.lex_state = 57, .external_lex_state = 2}, + [150] = {.lex_state = 5, .external_lex_state = 2}, [151] = {.lex_state = 5, .external_lex_state = 2}, [152] = {.lex_state = 5, .external_lex_state = 2}, [153] = {.lex_state = 5, .external_lex_state = 2}, - [154] = {.lex_state = 57, .external_lex_state = 2}, + [154] = {.lex_state = 5, .external_lex_state = 2}, [155] = {.lex_state = 5, .external_lex_state = 2}, [156] = {.lex_state = 5, .external_lex_state = 2}, [157] = {.lex_state = 5, .external_lex_state = 2}, - [158] = {.lex_state = 57, .external_lex_state = 2}, - [159] = {.lex_state = 57, .external_lex_state = 2}, + [158] = {.lex_state = 5, .external_lex_state = 2}, + [159] = {.lex_state = 5, .external_lex_state = 2}, [160] = {.lex_state = 5, .external_lex_state = 2}, [161] = {.lex_state = 5, .external_lex_state = 2}, - [162] = {.lex_state = 5, .external_lex_state = 2}, - [163] = {.lex_state = 57, .external_lex_state = 2}, + [162] = {.lex_state = 57, .external_lex_state = 2}, + [163] = {.lex_state = 5, .external_lex_state = 2}, [164] = {.lex_state = 57, .external_lex_state = 2}, [165] = {.lex_state = 5, .external_lex_state = 2}, [166] = {.lex_state = 5, .external_lex_state = 2}, [167] = {.lex_state = 57, .external_lex_state = 2}, - [168] = {.lex_state = 57, .external_lex_state = 2}, - [169] = {.lex_state = 5, .external_lex_state = 2}, + [168] = {.lex_state = 5, .external_lex_state = 2}, + [169] = {.lex_state = 57, .external_lex_state = 2}, [170] = {.lex_state = 5, .external_lex_state = 2}, [171] = {.lex_state = 5, .external_lex_state = 2}, - [172] = {.lex_state = 5, .external_lex_state = 2}, + [172] = {.lex_state = 57, .external_lex_state = 2}, [173] = {.lex_state = 5, .external_lex_state = 2}, [174] = {.lex_state = 5, .external_lex_state = 2}, [175] = {.lex_state = 5, .external_lex_state = 2}, - [176] = {.lex_state = 57, .external_lex_state = 2}, - [177] = {.lex_state = 5, .external_lex_state = 2}, - [178] = {.lex_state = 5, .external_lex_state = 2}, + [176] = {.lex_state = 5, .external_lex_state = 2}, + [177] = {.lex_state = 57, .external_lex_state = 2}, + [178] = {.lex_state = 57, .external_lex_state = 2}, [179] = {.lex_state = 5, .external_lex_state = 2}, [180] = {.lex_state = 5, .external_lex_state = 2}, - [181] = {.lex_state = 5, .external_lex_state = 2}, - [182] = {.lex_state = 5, .external_lex_state = 2}, + [181] = {.lex_state = 57, .external_lex_state = 2}, + [182] = {.lex_state = 57, .external_lex_state = 2}, [183] = {.lex_state = 57, .external_lex_state = 2}, [184] = {.lex_state = 6, .external_lex_state = 2}, [185] = {.lex_state = 6, .external_lex_state = 2}, @@ -12269,52 +13578,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [212] = {.lex_state = 5, .external_lex_state = 2}, [213] = {.lex_state = 5, .external_lex_state = 2}, [214] = {.lex_state = 5, .external_lex_state = 2}, - [215] = {.lex_state = 1, .external_lex_state = 2}, + [215] = {.lex_state = 4, .external_lex_state = 3}, [216] = {.lex_state = 1, .external_lex_state = 2}, - [217] = {.lex_state = 1, .external_lex_state = 2}, - [218] = {.lex_state = 1, .external_lex_state = 2}, - [219] = {.lex_state = 1, .external_lex_state = 2}, + [217] = {.lex_state = 4, .external_lex_state = 3}, + [218] = {.lex_state = 4, .external_lex_state = 3}, + [219] = {.lex_state = 4, .external_lex_state = 3}, [220] = {.lex_state = 1, .external_lex_state = 2}, - [221] = {.lex_state = 1, .external_lex_state = 2}, - [222] = {.lex_state = 5, .external_lex_state = 2}, - [223] = {.lex_state = 5, .external_lex_state = 2}, + [221] = {.lex_state = 4, .external_lex_state = 3}, + [222] = {.lex_state = 4, .external_lex_state = 3}, + [223] = {.lex_state = 4, .external_lex_state = 3}, [224] = {.lex_state = 1, .external_lex_state = 2}, [225] = {.lex_state = 1, .external_lex_state = 2}, [226] = {.lex_state = 1, .external_lex_state = 2}, [227] = {.lex_state = 1, .external_lex_state = 2}, - [228] = {.lex_state = 5, .external_lex_state = 2}, + [228] = {.lex_state = 1, .external_lex_state = 2}, [229] = {.lex_state = 1, .external_lex_state = 2}, - [230] = {.lex_state = 1, .external_lex_state = 2}, + [230] = {.lex_state = 5, .external_lex_state = 2}, [231] = {.lex_state = 1, .external_lex_state = 2}, - [232] = {.lex_state = 1, .external_lex_state = 2}, - [233] = {.lex_state = 1, .external_lex_state = 2}, + [232] = {.lex_state = 5, .external_lex_state = 2}, + [233] = {.lex_state = 5, .external_lex_state = 2}, [234] = {.lex_state = 1, .external_lex_state = 2}, [235] = {.lex_state = 1, .external_lex_state = 2}, [236] = {.lex_state = 1, .external_lex_state = 2}, [237] = {.lex_state = 1, .external_lex_state = 2}, - [238] = {.lex_state = 1, .external_lex_state = 2}, + [238] = {.lex_state = 5, .external_lex_state = 2}, [239] = {.lex_state = 1, .external_lex_state = 2}, [240] = {.lex_state = 1, .external_lex_state = 2}, [241] = {.lex_state = 1, .external_lex_state = 2}, [242] = {.lex_state = 1, .external_lex_state = 2}, - [243] = {.lex_state = 5, .external_lex_state = 2}, + [243] = {.lex_state = 1, .external_lex_state = 2}, [244] = {.lex_state = 1, .external_lex_state = 2}, - [245] = {.lex_state = 5, .external_lex_state = 2}, - [246] = {.lex_state = 5, .external_lex_state = 2}, - [247] = {.lex_state = 5, .external_lex_state = 2}, - [248] = {.lex_state = 4, .external_lex_state = 3}, - [249] = {.lex_state = 12, .external_lex_state = 2}, - [250] = {.lex_state = 4, .external_lex_state = 3}, - [251] = {.lex_state = 4, .external_lex_state = 3}, - [252] = {.lex_state = 4, .external_lex_state = 3}, - [253] = {.lex_state = 4, .external_lex_state = 3}, - [254] = {.lex_state = 58, .external_lex_state = 2}, - [255] = {.lex_state = 58, .external_lex_state = 2}, - [256] = {.lex_state = 58, .external_lex_state = 2}, - [257] = {.lex_state = 58, .external_lex_state = 2}, - [258] = {.lex_state = 58, .external_lex_state = 2}, - [259] = {.lex_state = 58, .external_lex_state = 2}, - [260] = {.lex_state = 58, .external_lex_state = 2}, + [245] = {.lex_state = 1, .external_lex_state = 2}, + [246] = {.lex_state = 1, .external_lex_state = 2}, + [247] = {.lex_state = 1, .external_lex_state = 2}, + [248] = {.lex_state = 1, .external_lex_state = 2}, + [249] = {.lex_state = 1, .external_lex_state = 2}, + [250] = {.lex_state = 1, .external_lex_state = 2}, + [251] = {.lex_state = 1, .external_lex_state = 2}, + [252] = {.lex_state = 5, .external_lex_state = 2}, + [253] = {.lex_state = 5, .external_lex_state = 2}, + [254] = {.lex_state = 5, .external_lex_state = 2}, + [255] = {.lex_state = 14, .external_lex_state = 3}, + [256] = {.lex_state = 14, .external_lex_state = 3}, + [257] = {.lex_state = 14, .external_lex_state = 3}, + [258] = {.lex_state = 14, .external_lex_state = 3}, + [259] = {.lex_state = 14, .external_lex_state = 3}, + [260] = {.lex_state = 11, .external_lex_state = 2}, [261] = {.lex_state = 58, .external_lex_state = 2}, [262] = {.lex_state = 58, .external_lex_state = 2}, [263] = {.lex_state = 58, .external_lex_state = 2}, @@ -12325,9 +13634,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [268] = {.lex_state = 58, .external_lex_state = 2}, [269] = {.lex_state = 58, .external_lex_state = 2}, [270] = {.lex_state = 58, .external_lex_state = 2}, - [271] = {.lex_state = 5, .external_lex_state = 2}, + [271] = {.lex_state = 58, .external_lex_state = 2}, [272] = {.lex_state = 58, .external_lex_state = 2}, - [273] = {.lex_state = 58, .external_lex_state = 2}, + [273] = {.lex_state = 5, .external_lex_state = 2}, [274] = {.lex_state = 58, .external_lex_state = 2}, [275] = {.lex_state = 58, .external_lex_state = 2}, [276] = {.lex_state = 58, .external_lex_state = 2}, @@ -12536,131 +13845,131 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [479] = {.lex_state = 58, .external_lex_state = 2}, [480] = {.lex_state = 58, .external_lex_state = 2}, [481] = {.lex_state = 58, .external_lex_state = 2}, - [482] = {.lex_state = 5, .external_lex_state = 2}, - [483] = {.lex_state = 12, .external_lex_state = 2}, - [484] = {.lex_state = 12, .external_lex_state = 2}, - [485] = {.lex_state = 12, .external_lex_state = 2}, - [486] = {.lex_state = 12, .external_lex_state = 2}, - [487] = {.lex_state = 5, .external_lex_state = 2}, - [488] = {.lex_state = 12, .external_lex_state = 2}, - [489] = {.lex_state = 12, .external_lex_state = 2}, - [490] = {.lex_state = 12, .external_lex_state = 2}, + [482] = {.lex_state = 58, .external_lex_state = 2}, + [483] = {.lex_state = 58, .external_lex_state = 2}, + [484] = {.lex_state = 58, .external_lex_state = 2}, + [485] = {.lex_state = 58, .external_lex_state = 2}, + [486] = {.lex_state = 58, .external_lex_state = 2}, + [487] = {.lex_state = 58, .external_lex_state = 2}, + [488] = {.lex_state = 58, .external_lex_state = 2}, + [489] = {.lex_state = 11, .external_lex_state = 2}, + [490] = {.lex_state = 11, .external_lex_state = 2}, [491] = {.lex_state = 5, .external_lex_state = 2}, - [492] = {.lex_state = 13, .external_lex_state = 2}, - [493] = {.lex_state = 12, .external_lex_state = 2}, - [494] = {.lex_state = 12, .external_lex_state = 2}, - [495] = {.lex_state = 12, .external_lex_state = 2}, - [496] = {.lex_state = 12, .external_lex_state = 2}, - [497] = {.lex_state = 12, .external_lex_state = 2}, - [498] = {.lex_state = 12, .external_lex_state = 2}, - [499] = {.lex_state = 12, .external_lex_state = 2}, - [500] = {.lex_state = 12, .external_lex_state = 2}, - [501] = {.lex_state = 5, .external_lex_state = 2}, - [502] = {.lex_state = 13, .external_lex_state = 2}, - [503] = {.lex_state = 13, .external_lex_state = 2}, - [504] = {.lex_state = 13, .external_lex_state = 2}, - [505] = {.lex_state = 13, .external_lex_state = 2}, - [506] = {.lex_state = 13, .external_lex_state = 2}, - [507] = {.lex_state = 12, .external_lex_state = 2}, - [508] = {.lex_state = 13, .external_lex_state = 2}, - [509] = {.lex_state = 13, .external_lex_state = 2}, + [492] = {.lex_state = 11, .external_lex_state = 2}, + [493] = {.lex_state = 11, .external_lex_state = 2}, + [494] = {.lex_state = 11, .external_lex_state = 2}, + [495] = {.lex_state = 11, .external_lex_state = 2}, + [496] = {.lex_state = 11, .external_lex_state = 2}, + [497] = {.lex_state = 11, .external_lex_state = 2}, + [498] = {.lex_state = 11, .external_lex_state = 2}, + [499] = {.lex_state = 11, .external_lex_state = 2}, + [500] = {.lex_state = 11, .external_lex_state = 2}, + [501] = {.lex_state = 11, .external_lex_state = 2}, + [502] = {.lex_state = 11, .external_lex_state = 2}, + [503] = {.lex_state = 12, .external_lex_state = 2}, + [504] = {.lex_state = 5, .external_lex_state = 2}, + [505] = {.lex_state = 5, .external_lex_state = 2}, + [506] = {.lex_state = 11, .external_lex_state = 2}, + [507] = {.lex_state = 11, .external_lex_state = 2}, + [508] = {.lex_state = 5, .external_lex_state = 2}, + [509] = {.lex_state = 12, .external_lex_state = 2}, [510] = {.lex_state = 12, .external_lex_state = 2}, [511] = {.lex_state = 12, .external_lex_state = 2}, - [512] = {.lex_state = 13, .external_lex_state = 2}, - [513] = {.lex_state = 13, .external_lex_state = 2}, - [514] = {.lex_state = 12, .external_lex_state = 2}, - [515] = {.lex_state = 13, .external_lex_state = 2}, - [516] = {.lex_state = 13, .external_lex_state = 2}, + [512] = {.lex_state = 11, .external_lex_state = 2}, + [513] = {.lex_state = 11, .external_lex_state = 2}, + [514] = {.lex_state = 11, .external_lex_state = 2}, + [515] = {.lex_state = 11, .external_lex_state = 2}, + [516] = {.lex_state = 12, .external_lex_state = 2}, [517] = {.lex_state = 12, .external_lex_state = 2}, [518] = {.lex_state = 12, .external_lex_state = 2}, [519] = {.lex_state = 12, .external_lex_state = 2}, [520] = {.lex_state = 12, .external_lex_state = 2}, - [521] = {.lex_state = 13, .external_lex_state = 2}, - [522] = {.lex_state = 13, .external_lex_state = 2}, - [523] = {.lex_state = 13, .external_lex_state = 2}, - [524] = {.lex_state = 13, .external_lex_state = 2}, - [525] = {.lex_state = 13, .external_lex_state = 2}, - [526] = {.lex_state = 13, .external_lex_state = 2}, - [527] = {.lex_state = 13, .external_lex_state = 2}, - [528] = {.lex_state = 13, .external_lex_state = 2}, - [529] = {.lex_state = 13, .external_lex_state = 2}, - [530] = {.lex_state = 13, .external_lex_state = 2}, - [531] = {.lex_state = 13, .external_lex_state = 2}, - [532] = {.lex_state = 13, .external_lex_state = 2}, - [533] = {.lex_state = 13, .external_lex_state = 2}, - [534] = {.lex_state = 13, .external_lex_state = 2}, - [535] = {.lex_state = 13, .external_lex_state = 2}, - [536] = {.lex_state = 13, .external_lex_state = 2}, - [537] = {.lex_state = 12, .external_lex_state = 2}, + [521] = {.lex_state = 12, .external_lex_state = 2}, + [522] = {.lex_state = 12, .external_lex_state = 2}, + [523] = {.lex_state = 12, .external_lex_state = 2}, + [524] = {.lex_state = 12, .external_lex_state = 2}, + [525] = {.lex_state = 12, .external_lex_state = 2}, + [526] = {.lex_state = 11, .external_lex_state = 2}, + [527] = {.lex_state = 12, .external_lex_state = 2}, + [528] = {.lex_state = 12, .external_lex_state = 2}, + [529] = {.lex_state = 12, .external_lex_state = 2}, + [530] = {.lex_state = 12, .external_lex_state = 2}, + [531] = {.lex_state = 12, .external_lex_state = 2}, + [532] = {.lex_state = 12, .external_lex_state = 2}, + [533] = {.lex_state = 12, .external_lex_state = 2}, + [534] = {.lex_state = 11, .external_lex_state = 2}, + [535] = {.lex_state = 12, .external_lex_state = 2}, + [536] = {.lex_state = 11, .external_lex_state = 2}, + [537] = {.lex_state = 11, .external_lex_state = 2}, [538] = {.lex_state = 12, .external_lex_state = 2}, [539] = {.lex_state = 12, .external_lex_state = 2}, [540] = {.lex_state = 12, .external_lex_state = 2}, - [541] = {.lex_state = 13, .external_lex_state = 2}, + [541] = {.lex_state = 12, .external_lex_state = 2}, [542] = {.lex_state = 12, .external_lex_state = 2}, - [543] = {.lex_state = 13, .external_lex_state = 2}, - [544] = {.lex_state = 13, .external_lex_state = 2}, - [545] = {.lex_state = 12, .external_lex_state = 2}, - [546] = {.lex_state = 7, .external_lex_state = 3}, - [547] = {.lex_state = 5, .external_lex_state = 2}, - [548] = {.lex_state = 5, .external_lex_state = 2}, - [549] = {.lex_state = 7, .external_lex_state = 3}, - [550] = {.lex_state = 7, .external_lex_state = 3}, - [551] = {.lex_state = 7, .external_lex_state = 3}, - [552] = {.lex_state = 7, .external_lex_state = 3}, - [553] = {.lex_state = 7, .external_lex_state = 3}, - [554] = {.lex_state = 7, .external_lex_state = 3}, - [555] = {.lex_state = 7, .external_lex_state = 3}, - [556] = {.lex_state = 11, .external_lex_state = 2}, - [557] = {.lex_state = 7, .external_lex_state = 3}, - [558] = {.lex_state = 7, .external_lex_state = 3}, - [559] = {.lex_state = 12, .external_lex_state = 2}, - [560] = {.lex_state = 5, .external_lex_state = 2}, - [561] = {.lex_state = 12, .external_lex_state = 2}, - [562] = {.lex_state = 5, .external_lex_state = 2}, - [563] = {.lex_state = 7, .external_lex_state = 3}, - [564] = {.lex_state = 12, .external_lex_state = 2}, - [565] = {.lex_state = 12, .external_lex_state = 2}, - [566] = {.lex_state = 12, .external_lex_state = 2}, - [567] = {.lex_state = 12, .external_lex_state = 2}, - [568] = {.lex_state = 12, .external_lex_state = 2}, - [569] = {.lex_state = 12, .external_lex_state = 2}, - [570] = {.lex_state = 12, .external_lex_state = 2}, - [571] = {.lex_state = 12, .external_lex_state = 2}, - [572] = {.lex_state = 12, .external_lex_state = 2}, - [573] = {.lex_state = 12, .external_lex_state = 2}, - [574] = {.lex_state = 12, .external_lex_state = 2}, - [575] = {.lex_state = 12, .external_lex_state = 2}, - [576] = {.lex_state = 12, .external_lex_state = 2}, - [577] = {.lex_state = 5, .external_lex_state = 2}, - [578] = {.lex_state = 5, .external_lex_state = 2}, - [579] = {.lex_state = 12, .external_lex_state = 2}, - [580] = {.lex_state = 13, .external_lex_state = 2}, - [581] = {.lex_state = 5, .external_lex_state = 2}, - [582] = {.lex_state = 13, .external_lex_state = 2}, - [583] = {.lex_state = 13, .external_lex_state = 2}, - [584] = {.lex_state = 7, .external_lex_state = 3}, - [585] = {.lex_state = 7, .external_lex_state = 3}, - [586] = {.lex_state = 5, .external_lex_state = 2}, - [587] = {.lex_state = 5, .external_lex_state = 2}, - [588] = {.lex_state = 7, .external_lex_state = 3}, - [589] = {.lex_state = 5, .external_lex_state = 2}, - [590] = {.lex_state = 7, .external_lex_state = 3}, - [591] = {.lex_state = 13, .external_lex_state = 2}, - [592] = {.lex_state = 5, .external_lex_state = 2}, - [593] = {.lex_state = 5, .external_lex_state = 2}, - [594] = {.lex_state = 13, .external_lex_state = 2}, - [595] = {.lex_state = 5, .external_lex_state = 2}, - [596] = {.lex_state = 13, .external_lex_state = 2}, + [543] = {.lex_state = 12, .external_lex_state = 2}, + [544] = {.lex_state = 11, .external_lex_state = 2}, + [545] = {.lex_state = 11, .external_lex_state = 2}, + [546] = {.lex_state = 12, .external_lex_state = 2}, + [547] = {.lex_state = 12, .external_lex_state = 2}, + [548] = {.lex_state = 11, .external_lex_state = 2}, + [549] = {.lex_state = 11, .external_lex_state = 2}, + [550] = {.lex_state = 11, .external_lex_state = 2}, + [551] = {.lex_state = 12, .external_lex_state = 2}, + [552] = {.lex_state = 11, .external_lex_state = 2}, + [553] = {.lex_state = 5, .external_lex_state = 2}, + [554] = {.lex_state = 5, .external_lex_state = 2}, + [555] = {.lex_state = 4, .external_lex_state = 3}, + [556] = {.lex_state = 4, .external_lex_state = 3}, + [557] = {.lex_state = 4, .external_lex_state = 3}, + [558] = {.lex_state = 4, .external_lex_state = 3}, + [559] = {.lex_state = 4, .external_lex_state = 3}, + [560] = {.lex_state = 4, .external_lex_state = 3}, + [561] = {.lex_state = 4, .external_lex_state = 3}, + [562] = {.lex_state = 4, .external_lex_state = 3}, + [563] = {.lex_state = 4, .external_lex_state = 3}, + [564] = {.lex_state = 4, .external_lex_state = 3}, + [565] = {.lex_state = 10, .external_lex_state = 2}, + [566] = {.lex_state = 11, .external_lex_state = 2}, + [567] = {.lex_state = 11, .external_lex_state = 2}, + [568] = {.lex_state = 11, .external_lex_state = 2}, + [569] = {.lex_state = 11, .external_lex_state = 2}, + [570] = {.lex_state = 5, .external_lex_state = 2}, + [571] = {.lex_state = 5, .external_lex_state = 2}, + [572] = {.lex_state = 11, .external_lex_state = 2}, + [573] = {.lex_state = 11, .external_lex_state = 2}, + [574] = {.lex_state = 5, .external_lex_state = 2}, + [575] = {.lex_state = 5, .external_lex_state = 2}, + [576] = {.lex_state = 11, .external_lex_state = 2}, + [577] = {.lex_state = 11, .external_lex_state = 2}, + [578] = {.lex_state = 11, .external_lex_state = 2}, + [579] = {.lex_state = 11, .external_lex_state = 2}, + [580] = {.lex_state = 11, .external_lex_state = 2}, + [581] = {.lex_state = 11, .external_lex_state = 2}, + [582] = {.lex_state = 11, .external_lex_state = 2}, + [583] = {.lex_state = 4, .external_lex_state = 3}, + [584] = {.lex_state = 11, .external_lex_state = 2}, + [585] = {.lex_state = 11, .external_lex_state = 2}, + [586] = {.lex_state = 11, .external_lex_state = 2}, + [587] = {.lex_state = 12, .external_lex_state = 2}, + [588] = {.lex_state = 5, .external_lex_state = 2}, + [589] = {.lex_state = 12, .external_lex_state = 2}, + [590] = {.lex_state = 12, .external_lex_state = 2}, + [591] = {.lex_state = 12, .external_lex_state = 2}, + [592] = {.lex_state = 4, .external_lex_state = 3}, + [593] = {.lex_state = 12, .external_lex_state = 2}, + [594] = {.lex_state = 4, .external_lex_state = 3}, + [595] = {.lex_state = 12, .external_lex_state = 2}, + [596] = {.lex_state = 5, .external_lex_state = 2}, [597] = {.lex_state = 5, .external_lex_state = 2}, [598] = {.lex_state = 5, .external_lex_state = 2}, - [599] = {.lex_state = 7, .external_lex_state = 3}, - [600] = {.lex_state = 7, .external_lex_state = 3}, - [601] = {.lex_state = 7, .external_lex_state = 3}, - [602] = {.lex_state = 5, .external_lex_state = 2}, + [599] = {.lex_state = 5, .external_lex_state = 2}, + [600] = {.lex_state = 5, .external_lex_state = 2}, + [601] = {.lex_state = 12, .external_lex_state = 2}, + [602] = {.lex_state = 4, .external_lex_state = 3}, [603] = {.lex_state = 5, .external_lex_state = 2}, - [604] = {.lex_state = 5, .external_lex_state = 2}, + [604] = {.lex_state = 4, .external_lex_state = 3}, [605] = {.lex_state = 5, .external_lex_state = 2}, - [606] = {.lex_state = 5, .external_lex_state = 2}, + [606] = {.lex_state = 4, .external_lex_state = 3}, [607] = {.lex_state = 5, .external_lex_state = 2}, [608] = {.lex_state = 5, .external_lex_state = 2}, [609] = {.lex_state = 5, .external_lex_state = 2}, @@ -12672,441 +13981,441 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [615] = {.lex_state = 5, .external_lex_state = 2}, [616] = {.lex_state = 5, .external_lex_state = 2}, [617] = {.lex_state = 5, .external_lex_state = 2}, - [618] = {.lex_state = 5, .external_lex_state = 2}, + [618] = {.lex_state = 4, .external_lex_state = 3}, [619] = {.lex_state = 5, .external_lex_state = 2}, - [620] = {.lex_state = 5, .external_lex_state = 2}, + [620] = {.lex_state = 4, .external_lex_state = 3}, [621] = {.lex_state = 5, .external_lex_state = 2}, [622] = {.lex_state = 5, .external_lex_state = 2}, - [623] = {.lex_state = 7, .external_lex_state = 3}, + [623] = {.lex_state = 5, .external_lex_state = 2}, [624] = {.lex_state = 5, .external_lex_state = 2}, [625] = {.lex_state = 5, .external_lex_state = 2}, [626] = {.lex_state = 5, .external_lex_state = 2}, [627] = {.lex_state = 5, .external_lex_state = 2}, [628] = {.lex_state = 5, .external_lex_state = 2}, - [629] = {.lex_state = 5, .external_lex_state = 2}, + [629] = {.lex_state = 4, .external_lex_state = 3}, [630] = {.lex_state = 5, .external_lex_state = 2}, [631] = {.lex_state = 5, .external_lex_state = 2}, [632] = {.lex_state = 5, .external_lex_state = 2}, - [633] = {.lex_state = 7, .external_lex_state = 3}, - [634] = {.lex_state = 7, .external_lex_state = 3}, - [635] = {.lex_state = 7, .external_lex_state = 3}, - [636] = {.lex_state = 7, .external_lex_state = 3}, - [637] = {.lex_state = 7, .external_lex_state = 3}, - [638] = {.lex_state = 7, .external_lex_state = 3}, - [639] = {.lex_state = 7, .external_lex_state = 3}, - [640] = {.lex_state = 7, .external_lex_state = 3}, - [641] = {.lex_state = 7, .external_lex_state = 3}, - [642] = {.lex_state = 7, .external_lex_state = 3}, - [643] = {.lex_state = 7, .external_lex_state = 3}, - [644] = {.lex_state = 7, .external_lex_state = 3}, - [645] = {.lex_state = 7, .external_lex_state = 3}, - [646] = {.lex_state = 7, .external_lex_state = 3}, - [647] = {.lex_state = 7, .external_lex_state = 3}, - [648] = {.lex_state = 7, .external_lex_state = 3}, - [649] = {.lex_state = 7, .external_lex_state = 3}, - [650] = {.lex_state = 7, .external_lex_state = 3}, - [651] = {.lex_state = 7, .external_lex_state = 3}, - [652] = {.lex_state = 7, .external_lex_state = 3}, - [653] = {.lex_state = 7, .external_lex_state = 3}, - [654] = {.lex_state = 7, .external_lex_state = 3}, - [655] = {.lex_state = 7, .external_lex_state = 3}, - [656] = {.lex_state = 7, .external_lex_state = 3}, - [657] = {.lex_state = 7, .external_lex_state = 3}, - [658] = {.lex_state = 7, .external_lex_state = 3}, - [659] = {.lex_state = 7, .external_lex_state = 3}, - [660] = {.lex_state = 7, .external_lex_state = 3}, - [661] = {.lex_state = 7, .external_lex_state = 3}, - [662] = {.lex_state = 7, .external_lex_state = 3}, - [663] = {.lex_state = 7, .external_lex_state = 3}, - [664] = {.lex_state = 7, .external_lex_state = 3}, - [665] = {.lex_state = 7, .external_lex_state = 3}, - [666] = {.lex_state = 7, .external_lex_state = 3}, - [667] = {.lex_state = 7, .external_lex_state = 3}, - [668] = {.lex_state = 7, .external_lex_state = 3}, - [669] = {.lex_state = 7, .external_lex_state = 3}, - [670] = {.lex_state = 7, .external_lex_state = 3}, - [671] = {.lex_state = 7, .external_lex_state = 3}, - [672] = {.lex_state = 7, .external_lex_state = 3}, - [673] = {.lex_state = 7, .external_lex_state = 3}, - [674] = {.lex_state = 7, .external_lex_state = 3}, - [675] = {.lex_state = 7, .external_lex_state = 3}, - [676] = {.lex_state = 7, .external_lex_state = 3}, - [677] = {.lex_state = 7, .external_lex_state = 3}, - [678] = {.lex_state = 7, .external_lex_state = 3}, - [679] = {.lex_state = 7, .external_lex_state = 3}, - [680] = {.lex_state = 7, .external_lex_state = 3}, - [681] = {.lex_state = 7, .external_lex_state = 3}, - [682] = {.lex_state = 5, .external_lex_state = 2}, - [683] = {.lex_state = 7, .external_lex_state = 3}, - [684] = {.lex_state = 7, .external_lex_state = 3}, - [685] = {.lex_state = 7, .external_lex_state = 3}, - [686] = {.lex_state = 7, .external_lex_state = 3}, - [687] = {.lex_state = 7, .external_lex_state = 3}, - [688] = {.lex_state = 7, .external_lex_state = 3}, - [689] = {.lex_state = 7, .external_lex_state = 3}, - [690] = {.lex_state = 7, .external_lex_state = 3}, - [691] = {.lex_state = 7, .external_lex_state = 3}, - [692] = {.lex_state = 7, .external_lex_state = 3}, - [693] = {.lex_state = 7, .external_lex_state = 3}, - [694] = {.lex_state = 7, .external_lex_state = 3}, - [695] = {.lex_state = 7, .external_lex_state = 3}, - [696] = {.lex_state = 7, .external_lex_state = 3}, - [697] = {.lex_state = 7, .external_lex_state = 3}, - [698] = {.lex_state = 7, .external_lex_state = 3}, - [699] = {.lex_state = 7, .external_lex_state = 3}, - [700] = {.lex_state = 7, .external_lex_state = 3}, - [701] = {.lex_state = 7, .external_lex_state = 3}, - [702] = {.lex_state = 7, .external_lex_state = 3}, - [703] = {.lex_state = 7, .external_lex_state = 3}, - [704] = {.lex_state = 7, .external_lex_state = 3}, - [705] = {.lex_state = 7, .external_lex_state = 3}, - [706] = {.lex_state = 7, .external_lex_state = 3}, - [707] = {.lex_state = 7, .external_lex_state = 3}, - [708] = {.lex_state = 7, .external_lex_state = 3}, - [709] = {.lex_state = 7, .external_lex_state = 3}, - [710] = {.lex_state = 7, .external_lex_state = 3}, - [711] = {.lex_state = 7, .external_lex_state = 3}, - [712] = {.lex_state = 7, .external_lex_state = 3}, - [713] = {.lex_state = 7, .external_lex_state = 3}, - [714] = {.lex_state = 7, .external_lex_state = 3}, - [715] = {.lex_state = 7, .external_lex_state = 3}, - [716] = {.lex_state = 7, .external_lex_state = 3}, - [717] = {.lex_state = 7, .external_lex_state = 3}, - [718] = {.lex_state = 7, .external_lex_state = 3}, - [719] = {.lex_state = 7, .external_lex_state = 3}, - [720] = {.lex_state = 7, .external_lex_state = 3}, - [721] = {.lex_state = 7, .external_lex_state = 3}, - [722] = {.lex_state = 7, .external_lex_state = 3}, - [723] = {.lex_state = 7, .external_lex_state = 3}, - [724] = {.lex_state = 7, .external_lex_state = 3}, - [725] = {.lex_state = 7, .external_lex_state = 3}, - [726] = {.lex_state = 7, .external_lex_state = 3}, - [727] = {.lex_state = 7, .external_lex_state = 3}, - [728] = {.lex_state = 7, .external_lex_state = 3}, - [729] = {.lex_state = 7, .external_lex_state = 3}, - [730] = {.lex_state = 7, .external_lex_state = 3}, - [731] = {.lex_state = 7, .external_lex_state = 3}, - [732] = {.lex_state = 7, .external_lex_state = 3}, - [733] = {.lex_state = 7, .external_lex_state = 3}, - [734] = {.lex_state = 7, .external_lex_state = 3}, - [735] = {.lex_state = 7, .external_lex_state = 3}, - [736] = {.lex_state = 7, .external_lex_state = 3}, - [737] = {.lex_state = 7, .external_lex_state = 3}, - [738] = {.lex_state = 7, .external_lex_state = 3}, - [739] = {.lex_state = 7, .external_lex_state = 3}, - [740] = {.lex_state = 7, .external_lex_state = 3}, - [741] = {.lex_state = 7, .external_lex_state = 3}, - [742] = {.lex_state = 7, .external_lex_state = 3}, - [743] = {.lex_state = 7, .external_lex_state = 3}, - [744] = {.lex_state = 7, .external_lex_state = 3}, - [745] = {.lex_state = 7, .external_lex_state = 3}, - [746] = {.lex_state = 7, .external_lex_state = 3}, - [747] = {.lex_state = 7, .external_lex_state = 3}, - [748] = {.lex_state = 7, .external_lex_state = 3}, - [749] = {.lex_state = 7, .external_lex_state = 3}, - [750] = {.lex_state = 7, .external_lex_state = 3}, - [751] = {.lex_state = 7, .external_lex_state = 3}, - [752] = {.lex_state = 7, .external_lex_state = 3}, - [753] = {.lex_state = 7, .external_lex_state = 3}, - [754] = {.lex_state = 7, .external_lex_state = 3}, - [755] = {.lex_state = 7, .external_lex_state = 3}, - [756] = {.lex_state = 7, .external_lex_state = 3}, - [757] = {.lex_state = 5, .external_lex_state = 2}, - [758] = {.lex_state = 5, .external_lex_state = 2}, - [759] = {.lex_state = 5, .external_lex_state = 2}, - [760] = {.lex_state = 5, .external_lex_state = 2}, - [761] = {.lex_state = 6, .external_lex_state = 2}, - [762] = {.lex_state = 3, .external_lex_state = 3}, - [763] = {.lex_state = 3, .external_lex_state = 3}, - [764] = {.lex_state = 3, .external_lex_state = 3}, - [765] = {.lex_state = 4, .external_lex_state = 3}, - [766] = {.lex_state = 3, .external_lex_state = 3}, - [767] = {.lex_state = 4, .external_lex_state = 3}, - [768] = {.lex_state = 2, .external_lex_state = 3}, - [769] = {.lex_state = 4, .external_lex_state = 3}, + [633] = {.lex_state = 5, .external_lex_state = 2}, + [634] = {.lex_state = 5, .external_lex_state = 2}, + [635] = {.lex_state = 5, .external_lex_state = 2}, + [636] = {.lex_state = 5, .external_lex_state = 2}, + [637] = {.lex_state = 5, .external_lex_state = 2}, + [638] = {.lex_state = 5, .external_lex_state = 2}, + [639] = {.lex_state = 5, .external_lex_state = 2}, + [640] = {.lex_state = 5, .external_lex_state = 2}, + [641] = {.lex_state = 4, .external_lex_state = 3}, + [642] = {.lex_state = 4, .external_lex_state = 3}, + [643] = {.lex_state = 4, .external_lex_state = 3}, + [644] = {.lex_state = 4, .external_lex_state = 3}, + [645] = {.lex_state = 4, .external_lex_state = 3}, + [646] = {.lex_state = 4, .external_lex_state = 3}, + [647] = {.lex_state = 4, .external_lex_state = 3}, + [648] = {.lex_state = 4, .external_lex_state = 3}, + [649] = {.lex_state = 4, .external_lex_state = 3}, + [650] = {.lex_state = 4, .external_lex_state = 3}, + [651] = {.lex_state = 4, .external_lex_state = 3}, + [652] = {.lex_state = 4, .external_lex_state = 3}, + [653] = {.lex_state = 4, .external_lex_state = 3}, + [654] = {.lex_state = 4, .external_lex_state = 3}, + [655] = {.lex_state = 4, .external_lex_state = 3}, + [656] = {.lex_state = 4, .external_lex_state = 3}, + [657] = {.lex_state = 4, .external_lex_state = 3}, + [658] = {.lex_state = 4, .external_lex_state = 3}, + [659] = {.lex_state = 4, .external_lex_state = 3}, + [660] = {.lex_state = 4, .external_lex_state = 3}, + [661] = {.lex_state = 4, .external_lex_state = 3}, + [662] = {.lex_state = 4, .external_lex_state = 3}, + [663] = {.lex_state = 4, .external_lex_state = 3}, + [664] = {.lex_state = 4, .external_lex_state = 3}, + [665] = {.lex_state = 4, .external_lex_state = 3}, + [666] = {.lex_state = 4, .external_lex_state = 3}, + [667] = {.lex_state = 4, .external_lex_state = 3}, + [668] = {.lex_state = 4, .external_lex_state = 3}, + [669] = {.lex_state = 4, .external_lex_state = 3}, + [670] = {.lex_state = 4, .external_lex_state = 3}, + [671] = {.lex_state = 4, .external_lex_state = 3}, + [672] = {.lex_state = 4, .external_lex_state = 3}, + [673] = {.lex_state = 4, .external_lex_state = 3}, + [674] = {.lex_state = 4, .external_lex_state = 3}, + [675] = {.lex_state = 4, .external_lex_state = 3}, + [676] = {.lex_state = 4, .external_lex_state = 3}, + [677] = {.lex_state = 4, .external_lex_state = 3}, + [678] = {.lex_state = 4, .external_lex_state = 3}, + [679] = {.lex_state = 4, .external_lex_state = 3}, + [680] = {.lex_state = 4, .external_lex_state = 3}, + [681] = {.lex_state = 4, .external_lex_state = 3}, + [682] = {.lex_state = 4, .external_lex_state = 3}, + [683] = {.lex_state = 4, .external_lex_state = 3}, + [684] = {.lex_state = 4, .external_lex_state = 3}, + [685] = {.lex_state = 4, .external_lex_state = 3}, + [686] = {.lex_state = 4, .external_lex_state = 3}, + [687] = {.lex_state = 4, .external_lex_state = 3}, + [688] = {.lex_state = 4, .external_lex_state = 3}, + [689] = {.lex_state = 4, .external_lex_state = 3}, + [690] = {.lex_state = 4, .external_lex_state = 3}, + [691] = {.lex_state = 4, .external_lex_state = 3}, + [692] = {.lex_state = 4, .external_lex_state = 3}, + [693] = {.lex_state = 4, .external_lex_state = 3}, + [694] = {.lex_state = 4, .external_lex_state = 3}, + [695] = {.lex_state = 4, .external_lex_state = 3}, + [696] = {.lex_state = 4, .external_lex_state = 3}, + [697] = {.lex_state = 4, .external_lex_state = 3}, + [698] = {.lex_state = 4, .external_lex_state = 3}, + [699] = {.lex_state = 4, .external_lex_state = 3}, + [700] = {.lex_state = 4, .external_lex_state = 3}, + [701] = {.lex_state = 4, .external_lex_state = 3}, + [702] = {.lex_state = 4, .external_lex_state = 3}, + [703] = {.lex_state = 4, .external_lex_state = 3}, + [704] = {.lex_state = 4, .external_lex_state = 3}, + [705] = {.lex_state = 4, .external_lex_state = 3}, + [706] = {.lex_state = 4, .external_lex_state = 3}, + [707] = {.lex_state = 4, .external_lex_state = 3}, + [708] = {.lex_state = 4, .external_lex_state = 3}, + [709] = {.lex_state = 4, .external_lex_state = 3}, + [710] = {.lex_state = 4, .external_lex_state = 3}, + [711] = {.lex_state = 4, .external_lex_state = 3}, + [712] = {.lex_state = 4, .external_lex_state = 3}, + [713] = {.lex_state = 4, .external_lex_state = 3}, + [714] = {.lex_state = 4, .external_lex_state = 3}, + [715] = {.lex_state = 5, .external_lex_state = 2}, + [716] = {.lex_state = 4, .external_lex_state = 3}, + [717] = {.lex_state = 4, .external_lex_state = 3}, + [718] = {.lex_state = 4, .external_lex_state = 3}, + [719] = {.lex_state = 4, .external_lex_state = 3}, + [720] = {.lex_state = 4, .external_lex_state = 3}, + [721] = {.lex_state = 4, .external_lex_state = 3}, + [722] = {.lex_state = 4, .external_lex_state = 3}, + [723] = {.lex_state = 4, .external_lex_state = 3}, + [724] = {.lex_state = 4, .external_lex_state = 3}, + [725] = {.lex_state = 4, .external_lex_state = 3}, + [726] = {.lex_state = 4, .external_lex_state = 3}, + [727] = {.lex_state = 4, .external_lex_state = 3}, + [728] = {.lex_state = 4, .external_lex_state = 3}, + [729] = {.lex_state = 4, .external_lex_state = 3}, + [730] = {.lex_state = 4, .external_lex_state = 3}, + [731] = {.lex_state = 4, .external_lex_state = 3}, + [732] = {.lex_state = 4, .external_lex_state = 3}, + [733] = {.lex_state = 4, .external_lex_state = 3}, + [734] = {.lex_state = 4, .external_lex_state = 3}, + [735] = {.lex_state = 4, .external_lex_state = 3}, + [736] = {.lex_state = 4, .external_lex_state = 3}, + [737] = {.lex_state = 4, .external_lex_state = 3}, + [738] = {.lex_state = 4, .external_lex_state = 3}, + [739] = {.lex_state = 4, .external_lex_state = 3}, + [740] = {.lex_state = 4, .external_lex_state = 3}, + [741] = {.lex_state = 4, .external_lex_state = 3}, + [742] = {.lex_state = 4, .external_lex_state = 3}, + [743] = {.lex_state = 4, .external_lex_state = 3}, + [744] = {.lex_state = 4, .external_lex_state = 3}, + [745] = {.lex_state = 4, .external_lex_state = 3}, + [746] = {.lex_state = 4, .external_lex_state = 3}, + [747] = {.lex_state = 4, .external_lex_state = 3}, + [748] = {.lex_state = 4, .external_lex_state = 3}, + [749] = {.lex_state = 4, .external_lex_state = 3}, + [750] = {.lex_state = 4, .external_lex_state = 3}, + [751] = {.lex_state = 4, .external_lex_state = 3}, + [752] = {.lex_state = 4, .external_lex_state = 3}, + [753] = {.lex_state = 4, .external_lex_state = 3}, + [754] = {.lex_state = 4, .external_lex_state = 3}, + [755] = {.lex_state = 4, .external_lex_state = 3}, + [756] = {.lex_state = 4, .external_lex_state = 3}, + [757] = {.lex_state = 4, .external_lex_state = 3}, + [758] = {.lex_state = 4, .external_lex_state = 3}, + [759] = {.lex_state = 4, .external_lex_state = 3}, + [760] = {.lex_state = 4, .external_lex_state = 3}, + [761] = {.lex_state = 4, .external_lex_state = 3}, + [762] = {.lex_state = 4, .external_lex_state = 3}, + [763] = {.lex_state = 4, .external_lex_state = 3}, + [764] = {.lex_state = 4, .external_lex_state = 3}, + [765] = {.lex_state = 5, .external_lex_state = 2}, + [766] = {.lex_state = 5, .external_lex_state = 2}, + [767] = {.lex_state = 5, .external_lex_state = 2}, + [768] = {.lex_state = 5, .external_lex_state = 2}, + [769] = {.lex_state = 6, .external_lex_state = 2}, [770] = {.lex_state = 3, .external_lex_state = 3}, [771] = {.lex_state = 3, .external_lex_state = 3}, [772] = {.lex_state = 3, .external_lex_state = 3}, [773] = {.lex_state = 3, .external_lex_state = 3}, - [774] = {.lex_state = 4, .external_lex_state = 3}, - [775] = {.lex_state = 3, .external_lex_state = 3}, + [774] = {.lex_state = 3, .external_lex_state = 3}, + [775] = {.lex_state = 14, .external_lex_state = 3}, [776] = {.lex_state = 3, .external_lex_state = 3}, - [777] = {.lex_state = 4, .external_lex_state = 3}, - [778] = {.lex_state = 2, .external_lex_state = 3}, - [779] = {.lex_state = 2, .external_lex_state = 3}, - [780] = {.lex_state = 2, .external_lex_state = 3}, + [777] = {.lex_state = 3, .external_lex_state = 3}, + [778] = {.lex_state = 14, .external_lex_state = 3}, + [779] = {.lex_state = 14, .external_lex_state = 3}, + [780] = {.lex_state = 3, .external_lex_state = 3}, [781] = {.lex_state = 2, .external_lex_state = 3}, - [782] = {.lex_state = 2, .external_lex_state = 3}, - [783] = {.lex_state = 2, .external_lex_state = 3}, - [784] = {.lex_state = 2, .external_lex_state = 3}, + [782] = {.lex_state = 14, .external_lex_state = 3}, + [783] = {.lex_state = 14, .external_lex_state = 3}, + [784] = {.lex_state = 3, .external_lex_state = 3}, [785] = {.lex_state = 2, .external_lex_state = 3}, - [786] = {.lex_state = 2, .external_lex_state = 3}, - [787] = {.lex_state = 4, .external_lex_state = 3}, - [788] = {.lex_state = 4, .external_lex_state = 3}, - [789] = {.lex_state = 4, .external_lex_state = 3}, - [790] = {.lex_state = 4, .external_lex_state = 3}, - [791] = {.lex_state = 4, .external_lex_state = 3}, - [792] = {.lex_state = 4, .external_lex_state = 3}, - [793] = {.lex_state = 4, .external_lex_state = 3}, - [794] = {.lex_state = 4, .external_lex_state = 3}, - [795] = {.lex_state = 4, .external_lex_state = 3}, - [796] = {.lex_state = 4, .external_lex_state = 3}, - [797] = {.lex_state = 4, .external_lex_state = 3}, - [798] = {.lex_state = 2, .external_lex_state = 3}, - [799] = {.lex_state = 4, .external_lex_state = 3}, - [800] = {.lex_state = 4, .external_lex_state = 3}, - [801] = {.lex_state = 4, .external_lex_state = 3}, - [802] = {.lex_state = 2, .external_lex_state = 3}, - [803] = {.lex_state = 4, .external_lex_state = 3}, - [804] = {.lex_state = 4, .external_lex_state = 3}, - [805] = {.lex_state = 4, .external_lex_state = 3}, - [806] = {.lex_state = 4, .external_lex_state = 3}, - [807] = {.lex_state = 4, .external_lex_state = 3}, - [808] = {.lex_state = 4, .external_lex_state = 3}, - [809] = {.lex_state = 4, .external_lex_state = 3}, - [810] = {.lex_state = 4, .external_lex_state = 3}, - [811] = {.lex_state = 4, .external_lex_state = 3}, - [812] = {.lex_state = 4, .external_lex_state = 3}, - [813] = {.lex_state = 2, .external_lex_state = 3}, - [814] = {.lex_state = 2, .external_lex_state = 3}, - [815] = {.lex_state = 4, .external_lex_state = 3}, - [816] = {.lex_state = 4, .external_lex_state = 3}, - [817] = {.lex_state = 4, .external_lex_state = 3}, - [818] = {.lex_state = 4, .external_lex_state = 3}, - [819] = {.lex_state = 4, .external_lex_state = 3}, - [820] = {.lex_state = 4, .external_lex_state = 3}, - [821] = {.lex_state = 4, .external_lex_state = 3}, - [822] = {.lex_state = 4, .external_lex_state = 3}, - [823] = {.lex_state = 4, .external_lex_state = 3}, - [824] = {.lex_state = 4, .external_lex_state = 3}, - [825] = {.lex_state = 4, .external_lex_state = 3}, - [826] = {.lex_state = 4, .external_lex_state = 3}, - [827] = {.lex_state = 2, .external_lex_state = 3}, - [828] = {.lex_state = 4, .external_lex_state = 3}, - [829] = {.lex_state = 4, .external_lex_state = 3}, - [830] = {.lex_state = 2, .external_lex_state = 3}, - [831] = {.lex_state = 4, .external_lex_state = 3}, - [832] = {.lex_state = 2, .external_lex_state = 3}, - [833] = {.lex_state = 4, .external_lex_state = 3}, - [834] = {.lex_state = 4, .external_lex_state = 3}, - [835] = {.lex_state = 4, .external_lex_state = 3}, - [836] = {.lex_state = 4, .external_lex_state = 3}, - [837] = {.lex_state = 2, .external_lex_state = 3}, - [838] = {.lex_state = 4, .external_lex_state = 3}, + [786] = {.lex_state = 3, .external_lex_state = 3}, + [787] = {.lex_state = 2, .external_lex_state = 3}, + [788] = {.lex_state = 2, .external_lex_state = 3}, + [789] = {.lex_state = 2, .external_lex_state = 3}, + [790] = {.lex_state = 2, .external_lex_state = 3}, + [791] = {.lex_state = 2, .external_lex_state = 3}, + [792] = {.lex_state = 2, .external_lex_state = 3}, + [793] = {.lex_state = 2, .external_lex_state = 3}, + [794] = {.lex_state = 2, .external_lex_state = 3}, + [795] = {.lex_state = 14, .external_lex_state = 3}, + [796] = {.lex_state = 14, .external_lex_state = 3}, + [797] = {.lex_state = 14, .external_lex_state = 3}, + [798] = {.lex_state = 14, .external_lex_state = 3}, + [799] = {.lex_state = 14, .external_lex_state = 3}, + [800] = {.lex_state = 2, .external_lex_state = 3}, + [801] = {.lex_state = 14, .external_lex_state = 3}, + [802] = {.lex_state = 14, .external_lex_state = 3}, + [803] = {.lex_state = 2, .external_lex_state = 3}, + [804] = {.lex_state = 2, .external_lex_state = 3}, + [805] = {.lex_state = 14, .external_lex_state = 3}, + [806] = {.lex_state = 9, .external_lex_state = 3}, + [807] = {.lex_state = 2, .external_lex_state = 3}, + [808] = {.lex_state = 14, .external_lex_state = 3}, + [809] = {.lex_state = 14, .external_lex_state = 3}, + [810] = {.lex_state = 14, .external_lex_state = 3}, + [811] = {.lex_state = 14, .external_lex_state = 3}, + [812] = {.lex_state = 14, .external_lex_state = 3}, + [813] = {.lex_state = 14, .external_lex_state = 3}, + [814] = {.lex_state = 14, .external_lex_state = 3}, + [815] = {.lex_state = 14, .external_lex_state = 3}, + [816] = {.lex_state = 14, .external_lex_state = 3}, + [817] = {.lex_state = 14, .external_lex_state = 3}, + [818] = {.lex_state = 14, .external_lex_state = 3}, + [819] = {.lex_state = 14, .external_lex_state = 3}, + [820] = {.lex_state = 14, .external_lex_state = 3}, + [821] = {.lex_state = 14, .external_lex_state = 3}, + [822] = {.lex_state = 14, .external_lex_state = 3}, + [823] = {.lex_state = 14, .external_lex_state = 3}, + [824] = {.lex_state = 14, .external_lex_state = 3}, + [825] = {.lex_state = 14, .external_lex_state = 3}, + [826] = {.lex_state = 14, .external_lex_state = 3}, + [827] = {.lex_state = 14, .external_lex_state = 3}, + [828] = {.lex_state = 14, .external_lex_state = 3}, + [829] = {.lex_state = 14, .external_lex_state = 3}, + [830] = {.lex_state = 14, .external_lex_state = 3}, + [831] = {.lex_state = 14, .external_lex_state = 3}, + [832] = {.lex_state = 14, .external_lex_state = 3}, + [833] = {.lex_state = 14, .external_lex_state = 3}, + [834] = {.lex_state = 14, .external_lex_state = 3}, + [835] = {.lex_state = 14, .external_lex_state = 3}, + [836] = {.lex_state = 2, .external_lex_state = 3}, + [837] = {.lex_state = 14, .external_lex_state = 3}, + [838] = {.lex_state = 2, .external_lex_state = 3}, [839] = {.lex_state = 2, .external_lex_state = 3}, - [840] = {.lex_state = 4, .external_lex_state = 3}, - [841] = {.lex_state = 4, .external_lex_state = 3}, - [842] = {.lex_state = 4, .external_lex_state = 3}, - [843] = {.lex_state = 4, .external_lex_state = 3}, - [844] = {.lex_state = 4, .external_lex_state = 3}, - [845] = {.lex_state = 4, .external_lex_state = 3}, - [846] = {.lex_state = 4, .external_lex_state = 3}, - [847] = {.lex_state = 4, .external_lex_state = 3}, - [848] = {.lex_state = 2, .external_lex_state = 3}, - [849] = {.lex_state = 4, .external_lex_state = 3}, - [850] = {.lex_state = 2, .external_lex_state = 3}, - [851] = {.lex_state = 4, .external_lex_state = 3}, - [852] = {.lex_state = 4, .external_lex_state = 3}, - [853] = {.lex_state = 4, .external_lex_state = 3}, + [840] = {.lex_state = 14, .external_lex_state = 3}, + [841] = {.lex_state = 14, .external_lex_state = 3}, + [842] = {.lex_state = 14, .external_lex_state = 3}, + [843] = {.lex_state = 14, .external_lex_state = 3}, + [844] = {.lex_state = 14, .external_lex_state = 3}, + [845] = {.lex_state = 2, .external_lex_state = 3}, + [846] = {.lex_state = 14, .external_lex_state = 3}, + [847] = {.lex_state = 14, .external_lex_state = 3}, + [848] = {.lex_state = 14, .external_lex_state = 3}, + [849] = {.lex_state = 2, .external_lex_state = 3}, + [850] = {.lex_state = 14, .external_lex_state = 3}, + [851] = {.lex_state = 14, .external_lex_state = 3}, + [852] = {.lex_state = 14, .external_lex_state = 3}, + [853] = {.lex_state = 14, .external_lex_state = 3}, [854] = {.lex_state = 2, .external_lex_state = 3}, - [855] = {.lex_state = 4, .external_lex_state = 3}, - [856] = {.lex_state = 4, .external_lex_state = 3}, - [857] = {.lex_state = 4, .external_lex_state = 3}, - [858] = {.lex_state = 2, .external_lex_state = 3}, - [859] = {.lex_state = 4, .external_lex_state = 3}, - [860] = {.lex_state = 4, .external_lex_state = 3}, - [861] = {.lex_state = 4, .external_lex_state = 3}, - [862] = {.lex_state = 4, .external_lex_state = 3}, - [863] = {.lex_state = 4, .external_lex_state = 3}, - [864] = {.lex_state = 4, .external_lex_state = 3}, - [865] = {.lex_state = 10, .external_lex_state = 3}, - [866] = {.lex_state = 2, .external_lex_state = 3}, - [867] = {.lex_state = 4, .external_lex_state = 3}, - [868] = {.lex_state = 4, .external_lex_state = 3}, - [869] = {.lex_state = 4, .external_lex_state = 3}, - [870] = {.lex_state = 4, .external_lex_state = 3}, - [871] = {.lex_state = 4, .external_lex_state = 3}, - [872] = {.lex_state = 4, .external_lex_state = 3}, - [873] = {.lex_state = 4, .external_lex_state = 3}, - [874] = {.lex_state = 4, .external_lex_state = 3}, - [875] = {.lex_state = 2, .external_lex_state = 3}, - [876] = {.lex_state = 4, .external_lex_state = 3}, - [877] = {.lex_state = 4, .external_lex_state = 3}, - [878] = {.lex_state = 4, .external_lex_state = 3}, - [879] = {.lex_state = 4, .external_lex_state = 3}, - [880] = {.lex_state = 4, .external_lex_state = 3}, - [881] = {.lex_state = 4, .external_lex_state = 3}, - [882] = {.lex_state = 4, .external_lex_state = 3}, - [883] = {.lex_state = 4, .external_lex_state = 3}, + [855] = {.lex_state = 2, .external_lex_state = 3}, + [856] = {.lex_state = 2, .external_lex_state = 3}, + [857] = {.lex_state = 2, .external_lex_state = 3}, + [858] = {.lex_state = 14, .external_lex_state = 3}, + [859] = {.lex_state = 14, .external_lex_state = 3}, + [860] = {.lex_state = 2, .external_lex_state = 3}, + [861] = {.lex_state = 14, .external_lex_state = 3}, + [862] = {.lex_state = 14, .external_lex_state = 3}, + [863] = {.lex_state = 14, .external_lex_state = 3}, + [864] = {.lex_state = 14, .external_lex_state = 3}, + [865] = {.lex_state = 14, .external_lex_state = 3}, + [866] = {.lex_state = 14, .external_lex_state = 3}, + [867] = {.lex_state = 14, .external_lex_state = 3}, + [868] = {.lex_state = 14, .external_lex_state = 3}, + [869] = {.lex_state = 14, .external_lex_state = 3}, + [870] = {.lex_state = 14, .external_lex_state = 3}, + [871] = {.lex_state = 2, .external_lex_state = 3}, + [872] = {.lex_state = 14, .external_lex_state = 3}, + [873] = {.lex_state = 2, .external_lex_state = 3}, + [874] = {.lex_state = 14, .external_lex_state = 3}, + [875] = {.lex_state = 14, .external_lex_state = 3}, + [876] = {.lex_state = 14, .external_lex_state = 3}, + [877] = {.lex_state = 14, .external_lex_state = 3}, + [878] = {.lex_state = 14, .external_lex_state = 3}, + [879] = {.lex_state = 14, .external_lex_state = 3}, + [880] = {.lex_state = 14, .external_lex_state = 3}, + [881] = {.lex_state = 14, .external_lex_state = 3}, + [882] = {.lex_state = 14, .external_lex_state = 3}, + [883] = {.lex_state = 2, .external_lex_state = 3}, [884] = {.lex_state = 2, .external_lex_state = 3}, - [885] = {.lex_state = 4, .external_lex_state = 3}, - [886] = {.lex_state = 4, .external_lex_state = 3}, - [887] = {.lex_state = 4, .external_lex_state = 3}, - [888] = {.lex_state = 4, .external_lex_state = 3}, - [889] = {.lex_state = 4, .external_lex_state = 3}, - [890] = {.lex_state = 4, .external_lex_state = 3}, - [891] = {.lex_state = 4, .external_lex_state = 3}, - [892] = {.lex_state = 4, .external_lex_state = 3}, - [893] = {.lex_state = 4, .external_lex_state = 3}, - [894] = {.lex_state = 4, .external_lex_state = 3}, - [895] = {.lex_state = 4, .external_lex_state = 3}, - [896] = {.lex_state = 4, .external_lex_state = 3}, - [897] = {.lex_state = 4, .external_lex_state = 3}, - [898] = {.lex_state = 4, .external_lex_state = 3}, - [899] = {.lex_state = 4, .external_lex_state = 3}, - [900] = {.lex_state = 4, .external_lex_state = 3}, - [901] = {.lex_state = 4, .external_lex_state = 3}, - [902] = {.lex_state = 4, .external_lex_state = 3}, - [903] = {.lex_state = 4, .external_lex_state = 3}, - [904] = {.lex_state = 4, .external_lex_state = 3}, - [905] = {.lex_state = 2, .external_lex_state = 3}, - [906] = {.lex_state = 4, .external_lex_state = 3}, - [907] = {.lex_state = 4, .external_lex_state = 3}, - [908] = {.lex_state = 2, .external_lex_state = 3}, - [909] = {.lex_state = 4, .external_lex_state = 3}, - [910] = {.lex_state = 4, .external_lex_state = 3}, - [911] = {.lex_state = 4, .external_lex_state = 3}, - [912] = {.lex_state = 2, .external_lex_state = 3}, - [913] = {.lex_state = 4, .external_lex_state = 3}, - [914] = {.lex_state = 4, .external_lex_state = 3}, - [915] = {.lex_state = 4, .external_lex_state = 3}, - [916] = {.lex_state = 4, .external_lex_state = 3}, - [917] = {.lex_state = 4, .external_lex_state = 3}, - [918] = {.lex_state = 4, .external_lex_state = 3}, - [919] = {.lex_state = 2, .external_lex_state = 3}, - [920] = {.lex_state = 4, .external_lex_state = 3}, - [921] = {.lex_state = 4, .external_lex_state = 3}, - [922] = {.lex_state = 4, .external_lex_state = 3}, - [923] = {.lex_state = 4, .external_lex_state = 3}, - [924] = {.lex_state = 4, .external_lex_state = 3}, - [925] = {.lex_state = 4, .external_lex_state = 3}, - [926] = {.lex_state = 4, .external_lex_state = 3}, - [927] = {.lex_state = 4, .external_lex_state = 3}, - [928] = {.lex_state = 4, .external_lex_state = 3}, - [929] = {.lex_state = 4, .external_lex_state = 3}, - [930] = {.lex_state = 4, .external_lex_state = 3}, - [931] = {.lex_state = 4, .external_lex_state = 3}, - [932] = {.lex_state = 4, .external_lex_state = 3}, - [933] = {.lex_state = 2, .external_lex_state = 3}, - [934] = {.lex_state = 4, .external_lex_state = 3}, - [935] = {.lex_state = 4, .external_lex_state = 3}, - [936] = {.lex_state = 4, .external_lex_state = 3}, - [937] = {.lex_state = 4, .external_lex_state = 3}, - [938] = {.lex_state = 4, .external_lex_state = 3}, - [939] = {.lex_state = 4, .external_lex_state = 3}, - [940] = {.lex_state = 4, .external_lex_state = 3}, - [941] = {.lex_state = 4, .external_lex_state = 3}, - [942] = {.lex_state = 4, .external_lex_state = 3}, - [943] = {.lex_state = 4, .external_lex_state = 3}, - [944] = {.lex_state = 4, .external_lex_state = 3}, - [945] = {.lex_state = 4, .external_lex_state = 3}, - [946] = {.lex_state = 4, .external_lex_state = 3}, - [947] = {.lex_state = 2, .external_lex_state = 3}, - [948] = {.lex_state = 4, .external_lex_state = 3}, - [949] = {.lex_state = 4, .external_lex_state = 3}, - [950] = {.lex_state = 2, .external_lex_state = 3}, - [951] = {.lex_state = 4, .external_lex_state = 3}, - [952] = {.lex_state = 4, .external_lex_state = 3}, - [953] = {.lex_state = 4, .external_lex_state = 3}, - [954] = {.lex_state = 4, .external_lex_state = 3}, - [955] = {.lex_state = 4, .external_lex_state = 3}, - [956] = {.lex_state = 4, .external_lex_state = 3}, - [957] = {.lex_state = 2, .external_lex_state = 3}, - [958] = {.lex_state = 4, .external_lex_state = 3}, - [959] = {.lex_state = 4, .external_lex_state = 3}, + [885] = {.lex_state = 14, .external_lex_state = 3}, + [886] = {.lex_state = 14, .external_lex_state = 3}, + [887] = {.lex_state = 14, .external_lex_state = 3}, + [888] = {.lex_state = 14, .external_lex_state = 3}, + [889] = {.lex_state = 14, .external_lex_state = 3}, + [890] = {.lex_state = 14, .external_lex_state = 3}, + [891] = {.lex_state = 14, .external_lex_state = 3}, + [892] = {.lex_state = 14, .external_lex_state = 3}, + [893] = {.lex_state = 14, .external_lex_state = 3}, + [894] = {.lex_state = 14, .external_lex_state = 3}, + [895] = {.lex_state = 14, .external_lex_state = 3}, + [896] = {.lex_state = 14, .external_lex_state = 3}, + [897] = {.lex_state = 14, .external_lex_state = 3}, + [898] = {.lex_state = 14, .external_lex_state = 3}, + [899] = {.lex_state = 14, .external_lex_state = 3}, + [900] = {.lex_state = 14, .external_lex_state = 3}, + [901] = {.lex_state = 14, .external_lex_state = 3}, + [902] = {.lex_state = 14, .external_lex_state = 3}, + [903] = {.lex_state = 14, .external_lex_state = 3}, + [904] = {.lex_state = 14, .external_lex_state = 3}, + [905] = {.lex_state = 14, .external_lex_state = 3}, + [906] = {.lex_state = 14, .external_lex_state = 3}, + [907] = {.lex_state = 14, .external_lex_state = 3}, + [908] = {.lex_state = 14, .external_lex_state = 3}, + [909] = {.lex_state = 14, .external_lex_state = 3}, + [910] = {.lex_state = 14, .external_lex_state = 3}, + [911] = {.lex_state = 14, .external_lex_state = 3}, + [912] = {.lex_state = 14, .external_lex_state = 3}, + [913] = {.lex_state = 2, .external_lex_state = 3}, + [914] = {.lex_state = 14, .external_lex_state = 3}, + [915] = {.lex_state = 14, .external_lex_state = 3}, + [916] = {.lex_state = 14, .external_lex_state = 3}, + [917] = {.lex_state = 14, .external_lex_state = 3}, + [918] = {.lex_state = 14, .external_lex_state = 3}, + [919] = {.lex_state = 14, .external_lex_state = 3}, + [920] = {.lex_state = 14, .external_lex_state = 3}, + [921] = {.lex_state = 14, .external_lex_state = 3}, + [922] = {.lex_state = 14, .external_lex_state = 3}, + [923] = {.lex_state = 14, .external_lex_state = 3}, + [924] = {.lex_state = 14, .external_lex_state = 3}, + [925] = {.lex_state = 14, .external_lex_state = 3}, + [926] = {.lex_state = 14, .external_lex_state = 3}, + [927] = {.lex_state = 14, .external_lex_state = 3}, + [928] = {.lex_state = 14, .external_lex_state = 3}, + [929] = {.lex_state = 14, .external_lex_state = 3}, + [930] = {.lex_state = 14, .external_lex_state = 3}, + [931] = {.lex_state = 14, .external_lex_state = 3}, + [932] = {.lex_state = 14, .external_lex_state = 3}, + [933] = {.lex_state = 14, .external_lex_state = 3}, + [934] = {.lex_state = 14, .external_lex_state = 3}, + [935] = {.lex_state = 14, .external_lex_state = 3}, + [936] = {.lex_state = 14, .external_lex_state = 3}, + [937] = {.lex_state = 14, .external_lex_state = 3}, + [938] = {.lex_state = 14, .external_lex_state = 3}, + [939] = {.lex_state = 14, .external_lex_state = 3}, + [940] = {.lex_state = 14, .external_lex_state = 3}, + [941] = {.lex_state = 14, .external_lex_state = 3}, + [942] = {.lex_state = 14, .external_lex_state = 3}, + [943] = {.lex_state = 14, .external_lex_state = 3}, + [944] = {.lex_state = 14, .external_lex_state = 3}, + [945] = {.lex_state = 2, .external_lex_state = 3}, + [946] = {.lex_state = 14, .external_lex_state = 3}, + [947] = {.lex_state = 14, .external_lex_state = 3}, + [948] = {.lex_state = 14, .external_lex_state = 3}, + [949] = {.lex_state = 14, .external_lex_state = 3}, + [950] = {.lex_state = 14, .external_lex_state = 3}, + [951] = {.lex_state = 14, .external_lex_state = 3}, + [952] = {.lex_state = 14, .external_lex_state = 3}, + [953] = {.lex_state = 14, .external_lex_state = 3}, + [954] = {.lex_state = 14, .external_lex_state = 3}, + [955] = {.lex_state = 2, .external_lex_state = 3}, + [956] = {.lex_state = 14, .external_lex_state = 3}, + [957] = {.lex_state = 14, .external_lex_state = 3}, + [958] = {.lex_state = 2, .external_lex_state = 3}, + [959] = {.lex_state = 14, .external_lex_state = 3}, [960] = {.lex_state = 2, .external_lex_state = 3}, - [961] = {.lex_state = 4, .external_lex_state = 3}, - [962] = {.lex_state = 2, .external_lex_state = 3}, - [963] = {.lex_state = 4, .external_lex_state = 3}, - [964] = {.lex_state = 4, .external_lex_state = 3}, - [965] = {.lex_state = 4, .external_lex_state = 3}, - [966] = {.lex_state = 4, .external_lex_state = 3}, - [967] = {.lex_state = 4, .external_lex_state = 3}, - [968] = {.lex_state = 4, .external_lex_state = 3}, - [969] = {.lex_state = 4, .external_lex_state = 3}, - [970] = {.lex_state = 4, .external_lex_state = 3}, - [971] = {.lex_state = 4, .external_lex_state = 3}, - [972] = {.lex_state = 4, .external_lex_state = 3}, - [973] = {.lex_state = 4, .external_lex_state = 3}, - [974] = {.lex_state = 4, .external_lex_state = 3}, - [975] = {.lex_state = 2, .external_lex_state = 3}, - [976] = {.lex_state = 4, .external_lex_state = 3}, - [977] = {.lex_state = 4, .external_lex_state = 3}, - [978] = {.lex_state = 4, .external_lex_state = 3}, - [979] = {.lex_state = 4, .external_lex_state = 3}, - [980] = {.lex_state = 4, .external_lex_state = 3}, - [981] = {.lex_state = 4, .external_lex_state = 3}, - [982] = {.lex_state = 4, .external_lex_state = 3}, - [983] = {.lex_state = 4, .external_lex_state = 3}, - [984] = {.lex_state = 4, .external_lex_state = 3}, - [985] = {.lex_state = 4, .external_lex_state = 3}, - [986] = {.lex_state = 4, .external_lex_state = 3}, - [987] = {.lex_state = 4, .external_lex_state = 3}, - [988] = {.lex_state = 4, .external_lex_state = 3}, - [989] = {.lex_state = 4, .external_lex_state = 3}, - [990] = {.lex_state = 4, .external_lex_state = 3}, - [991] = {.lex_state = 4, .external_lex_state = 3}, - [992] = {.lex_state = 4, .external_lex_state = 3}, - [993] = {.lex_state = 4, .external_lex_state = 3}, - [994] = {.lex_state = 4, .external_lex_state = 3}, - [995] = {.lex_state = 4, .external_lex_state = 3}, - [996] = {.lex_state = 4, .external_lex_state = 3}, - [997] = {.lex_state = 4, .external_lex_state = 3}, - [998] = {.lex_state = 4, .external_lex_state = 3}, - [999] = {.lex_state = 4, .external_lex_state = 3}, - [1000] = {.lex_state = 4, .external_lex_state = 3}, - [1001] = {.lex_state = 4, .external_lex_state = 3}, - [1002] = {.lex_state = 4, .external_lex_state = 3}, - [1003] = {.lex_state = 3, .external_lex_state = 3}, - [1004] = {.lex_state = 4, .external_lex_state = 3}, - [1005] = {.lex_state = 4, .external_lex_state = 3}, - [1006] = {.lex_state = 4, .external_lex_state = 3}, - [1007] = {.lex_state = 2, .external_lex_state = 3}, - [1008] = {.lex_state = 4, .external_lex_state = 3}, - [1009] = {.lex_state = 4, .external_lex_state = 3}, - [1010] = {.lex_state = 4, .external_lex_state = 3}, - [1011] = {.lex_state = 4, .external_lex_state = 3}, + [961] = {.lex_state = 14, .external_lex_state = 3}, + [962] = {.lex_state = 14, .external_lex_state = 3}, + [963] = {.lex_state = 14, .external_lex_state = 3}, + [964] = {.lex_state = 14, .external_lex_state = 3}, + [965] = {.lex_state = 14, .external_lex_state = 3}, + [966] = {.lex_state = 14, .external_lex_state = 3}, + [967] = {.lex_state = 2, .external_lex_state = 3}, + [968] = {.lex_state = 14, .external_lex_state = 3}, + [969] = {.lex_state = 14, .external_lex_state = 3}, + [970] = {.lex_state = 14, .external_lex_state = 3}, + [971] = {.lex_state = 14, .external_lex_state = 3}, + [972] = {.lex_state = 14, .external_lex_state = 3}, + [973] = {.lex_state = 2, .external_lex_state = 3}, + [974] = {.lex_state = 14, .external_lex_state = 3}, + [975] = {.lex_state = 14, .external_lex_state = 3}, + [976] = {.lex_state = 14, .external_lex_state = 3}, + [977] = {.lex_state = 14, .external_lex_state = 3}, + [978] = {.lex_state = 14, .external_lex_state = 3}, + [979] = {.lex_state = 14, .external_lex_state = 3}, + [980] = {.lex_state = 14, .external_lex_state = 3}, + [981] = {.lex_state = 14, .external_lex_state = 3}, + [982] = {.lex_state = 2, .external_lex_state = 3}, + [983] = {.lex_state = 14, .external_lex_state = 3}, + [984] = {.lex_state = 14, .external_lex_state = 3}, + [985] = {.lex_state = 14, .external_lex_state = 3}, + [986] = {.lex_state = 14, .external_lex_state = 3}, + [987] = {.lex_state = 14, .external_lex_state = 3}, + [988] = {.lex_state = 2, .external_lex_state = 3}, + [989] = {.lex_state = 14, .external_lex_state = 3}, + [990] = {.lex_state = 14, .external_lex_state = 3}, + [991] = {.lex_state = 14, .external_lex_state = 3}, + [992] = {.lex_state = 14, .external_lex_state = 3}, + [993] = {.lex_state = 2, .external_lex_state = 3}, + [994] = {.lex_state = 14, .external_lex_state = 3}, + [995] = {.lex_state = 14, .external_lex_state = 3}, + [996] = {.lex_state = 14, .external_lex_state = 3}, + [997] = {.lex_state = 14, .external_lex_state = 3}, + [998] = {.lex_state = 14, .external_lex_state = 3}, + [999] = {.lex_state = 14, .external_lex_state = 3}, + [1000] = {.lex_state = 2, .external_lex_state = 3}, + [1001] = {.lex_state = 3, .external_lex_state = 3}, + [1002] = {.lex_state = 2, .external_lex_state = 3}, + [1003] = {.lex_state = 14, .external_lex_state = 3}, + [1004] = {.lex_state = 14, .external_lex_state = 3}, + [1005] = {.lex_state = 14, .external_lex_state = 3}, + [1006] = {.lex_state = 14, .external_lex_state = 3}, + [1007] = {.lex_state = 14, .external_lex_state = 3}, + [1008] = {.lex_state = 14, .external_lex_state = 3}, + [1009] = {.lex_state = 14, .external_lex_state = 3}, + [1010] = {.lex_state = 14, .external_lex_state = 3}, + [1011] = {.lex_state = 14, .external_lex_state = 3}, [1012] = {.lex_state = 2, .external_lex_state = 3}, - [1013] = {.lex_state = 4, .external_lex_state = 3}, - [1014] = {.lex_state = 4, .external_lex_state = 3}, - [1015] = {.lex_state = 4, .external_lex_state = 3}, - [1016] = {.lex_state = 4, .external_lex_state = 3}, - [1017] = {.lex_state = 4, .external_lex_state = 3}, + [1013] = {.lex_state = 2, .external_lex_state = 3}, + [1014] = {.lex_state = 14, .external_lex_state = 3}, + [1015] = {.lex_state = 14, .external_lex_state = 3}, + [1016] = {.lex_state = 14, .external_lex_state = 3}, + [1017] = {.lex_state = 14, .external_lex_state = 3}, [1018] = {.lex_state = 2, .external_lex_state = 3}, - [1019] = {.lex_state = 2, .external_lex_state = 3}, - [1020] = {.lex_state = 4, .external_lex_state = 3}, - [1021] = {.lex_state = 2, .external_lex_state = 3}, - [1022] = {.lex_state = 4, .external_lex_state = 3}, - [1023] = {.lex_state = 2, .external_lex_state = 3}, - [1024] = {.lex_state = 4, .external_lex_state = 3}, - [1025] = {.lex_state = 4, .external_lex_state = 3}, - [1026] = {.lex_state = 4, .external_lex_state = 3}, - [1027] = {.lex_state = 4, .external_lex_state = 3}, - [1028] = {.lex_state = 4, .external_lex_state = 3}, - [1029] = {.lex_state = 4, .external_lex_state = 3}, - [1030] = {.lex_state = 4, .external_lex_state = 3}, - [1031] = {.lex_state = 4, .external_lex_state = 3}, - [1032] = {.lex_state = 4, .external_lex_state = 3}, - [1033] = {.lex_state = 4, .external_lex_state = 3}, - [1034] = {.lex_state = 4, .external_lex_state = 3}, - [1035] = {.lex_state = 4, .external_lex_state = 3}, - [1036] = {.lex_state = 4, .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 = 4, .external_lex_state = 3}, - [1042] = {.lex_state = 4, .external_lex_state = 3}, - [1043] = {.lex_state = 4, .external_lex_state = 3}, - [1044] = {.lex_state = 4, .external_lex_state = 3}, - [1045] = {.lex_state = 2, .external_lex_state = 3}, - [1046] = {.lex_state = 2, .external_lex_state = 3}, - [1047] = {.lex_state = 2, .external_lex_state = 3}, - [1048] = {.lex_state = 2, .external_lex_state = 3}, - [1049] = {.lex_state = 2, .external_lex_state = 3}, - [1050] = {.lex_state = 2, .external_lex_state = 3}, - [1051] = {.lex_state = 2, .external_lex_state = 3}, - [1052] = {.lex_state = 2, .external_lex_state = 3}, + [1019] = {.lex_state = 14, .external_lex_state = 3}, + [1020] = {.lex_state = 14, .external_lex_state = 3}, + [1021] = {.lex_state = 14, .external_lex_state = 3}, + [1022] = {.lex_state = 14, .external_lex_state = 3}, + [1023] = {.lex_state = 14, .external_lex_state = 3}, + [1024] = {.lex_state = 14, .external_lex_state = 3}, + [1025] = {.lex_state = 14, .external_lex_state = 3}, + [1026] = {.lex_state = 14, .external_lex_state = 3}, + [1027] = {.lex_state = 14, .external_lex_state = 3}, + [1028] = {.lex_state = 14, .external_lex_state = 3}, + [1029] = {.lex_state = 14, .external_lex_state = 3}, + [1030] = {.lex_state = 14, .external_lex_state = 3}, + [1031] = {.lex_state = 14, .external_lex_state = 3}, + [1032] = {.lex_state = 14, .external_lex_state = 3}, + [1033] = {.lex_state = 14, .external_lex_state = 3}, + [1034] = {.lex_state = 14, .external_lex_state = 3}, + [1035] = {.lex_state = 14, .external_lex_state = 3}, + [1036] = {.lex_state = 14, .external_lex_state = 3}, + [1037] = {.lex_state = 14, .external_lex_state = 3}, + [1038] = {.lex_state = 14, .external_lex_state = 3}, + [1039] = {.lex_state = 14, .external_lex_state = 3}, + [1040] = {.lex_state = 14, .external_lex_state = 3}, + [1041] = {.lex_state = 14, .external_lex_state = 3}, + [1042] = {.lex_state = 14, .external_lex_state = 3}, + [1043] = {.lex_state = 14, .external_lex_state = 3}, + [1044] = {.lex_state = 14, .external_lex_state = 3}, + [1045] = {.lex_state = 14, .external_lex_state = 3}, + [1046] = {.lex_state = 14, .external_lex_state = 3}, + [1047] = {.lex_state = 14, .external_lex_state = 3}, + [1048] = {.lex_state = 14, .external_lex_state = 3}, + [1049] = {.lex_state = 14, .external_lex_state = 3}, + [1050] = {.lex_state = 14, .external_lex_state = 3}, + [1051] = {.lex_state = 14, .external_lex_state = 3}, + [1052] = {.lex_state = 14, .external_lex_state = 3}, [1053] = {.lex_state = 2, .external_lex_state = 3}, [1054] = {.lex_state = 2, .external_lex_state = 3}, [1055] = {.lex_state = 2, .external_lex_state = 3}, @@ -13119,15 +14428,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1062] = {.lex_state = 2, .external_lex_state = 3}, [1063] = {.lex_state = 2, .external_lex_state = 3}, [1064] = {.lex_state = 2, .external_lex_state = 3}, - [1065] = {.lex_state = 7, .external_lex_state = 3}, + [1065] = {.lex_state = 2, .external_lex_state = 3}, [1066] = {.lex_state = 2, .external_lex_state = 3}, [1067] = {.lex_state = 2, .external_lex_state = 3}, [1068] = {.lex_state = 2, .external_lex_state = 3}, [1069] = {.lex_state = 2, .external_lex_state = 3}, - [1070] = {.lex_state = 2, .external_lex_state = 3}, + [1070] = {.lex_state = 5, .external_lex_state = 2}, [1071] = {.lex_state = 2, .external_lex_state = 3}, - [1072] = {.lex_state = 2, .external_lex_state = 3}, - [1073] = {.lex_state = 7, .external_lex_state = 3}, + [1072] = {.lex_state = 5, .external_lex_state = 2}, + [1073] = {.lex_state = 2, .external_lex_state = 3}, [1074] = {.lex_state = 2, .external_lex_state = 3}, [1075] = {.lex_state = 2, .external_lex_state = 3}, [1076] = {.lex_state = 2, .external_lex_state = 3}, @@ -13136,8 +14445,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1079] = {.lex_state = 2, .external_lex_state = 3}, [1080] = {.lex_state = 2, .external_lex_state = 3}, [1081] = {.lex_state = 2, .external_lex_state = 3}, - [1082] = {.lex_state = 7, .external_lex_state = 3}, - [1083] = {.lex_state = 7, .external_lex_state = 3}, + [1082] = {.lex_state = 2, .external_lex_state = 3}, + [1083] = {.lex_state = 2, .external_lex_state = 3}, [1084] = {.lex_state = 2, .external_lex_state = 3}, [1085] = {.lex_state = 2, .external_lex_state = 3}, [1086] = {.lex_state = 2, .external_lex_state = 3}, @@ -13148,25 +14457,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1091] = {.lex_state = 2, .external_lex_state = 3}, [1092] = {.lex_state = 2, .external_lex_state = 3}, [1093] = {.lex_state = 2, .external_lex_state = 3}, - [1094] = {.lex_state = 7, .external_lex_state = 3}, + [1094] = {.lex_state = 2, .external_lex_state = 3}, [1095] = {.lex_state = 2, .external_lex_state = 3}, [1096] = {.lex_state = 2, .external_lex_state = 3}, [1097] = {.lex_state = 2, .external_lex_state = 3}, [1098] = {.lex_state = 2, .external_lex_state = 3}, - [1099] = {.lex_state = 2, .external_lex_state = 3}, + [1099] = {.lex_state = 4, .external_lex_state = 3}, [1100] = {.lex_state = 2, .external_lex_state = 3}, - [1101] = {.lex_state = 2, .external_lex_state = 3}, + [1101] = {.lex_state = 4, .external_lex_state = 3}, [1102] = {.lex_state = 2, .external_lex_state = 3}, [1103] = {.lex_state = 2, .external_lex_state = 3}, - [1104] = {.lex_state = 2, .external_lex_state = 3}, + [1104] = {.lex_state = 4, .external_lex_state = 3}, [1105] = {.lex_state = 2, .external_lex_state = 3}, [1106] = {.lex_state = 2, .external_lex_state = 3}, [1107] = {.lex_state = 2, .external_lex_state = 3}, - [1108] = {.lex_state = 7, .external_lex_state = 3}, + [1108] = {.lex_state = 2, .external_lex_state = 3}, [1109] = {.lex_state = 2, .external_lex_state = 3}, [1110] = {.lex_state = 2, .external_lex_state = 3}, [1111] = {.lex_state = 2, .external_lex_state = 3}, - [1112] = {.lex_state = 2, .external_lex_state = 3}, + [1112] = {.lex_state = 4, .external_lex_state = 3}, [1113] = {.lex_state = 2, .external_lex_state = 3}, [1114] = {.lex_state = 2, .external_lex_state = 3}, [1115] = {.lex_state = 2, .external_lex_state = 3}, @@ -13181,33 +14490,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1124] = {.lex_state = 2, .external_lex_state = 3}, [1125] = {.lex_state = 2, .external_lex_state = 3}, [1126] = {.lex_state = 2, .external_lex_state = 3}, - [1127] = {.lex_state = 5, .external_lex_state = 2}, + [1127] = {.lex_state = 2, .external_lex_state = 3}, [1128] = {.lex_state = 2, .external_lex_state = 3}, [1129] = {.lex_state = 2, .external_lex_state = 3}, [1130] = {.lex_state = 2, .external_lex_state = 3}, [1131] = {.lex_state = 2, .external_lex_state = 3}, - [1132] = {.lex_state = 2, .external_lex_state = 3}, + [1132] = {.lex_state = 4, .external_lex_state = 3}, [1133] = {.lex_state = 2, .external_lex_state = 3}, - [1134] = {.lex_state = 2, .external_lex_state = 3}, - [1135] = {.lex_state = 7, .external_lex_state = 3}, + [1134] = {.lex_state = 4, .external_lex_state = 3}, + [1135] = {.lex_state = 2, .external_lex_state = 3}, [1136] = {.lex_state = 2, .external_lex_state = 3}, [1137] = {.lex_state = 2, .external_lex_state = 3}, - [1138] = {.lex_state = 2, .external_lex_state = 3}, + [1138] = {.lex_state = 4, .external_lex_state = 3}, [1139] = {.lex_state = 2, .external_lex_state = 3}, - [1140] = {.lex_state = 7, .external_lex_state = 3}, - [1141] = {.lex_state = 2, .external_lex_state = 3}, - [1142] = {.lex_state = 5, .external_lex_state = 2}, - [1143] = {.lex_state = 2, .external_lex_state = 3}, - [1144] = {.lex_state = 7, .external_lex_state = 3}, + [1140] = {.lex_state = 2, .external_lex_state = 3}, + [1141] = {.lex_state = 4, .external_lex_state = 3}, + [1142] = {.lex_state = 2, .external_lex_state = 3}, + [1143] = {.lex_state = 4, .external_lex_state = 3}, + [1144] = {.lex_state = 2, .external_lex_state = 3}, [1145] = {.lex_state = 2, .external_lex_state = 3}, [1146] = {.lex_state = 2, .external_lex_state = 3}, [1147] = {.lex_state = 2, .external_lex_state = 3}, - [1148] = {.lex_state = 5, .external_lex_state = 2}, - [1149] = {.lex_state = 5, .external_lex_state = 2}, + [1148] = {.lex_state = 2, .external_lex_state = 3}, + [1149] = {.lex_state = 2, .external_lex_state = 3}, [1150] = {.lex_state = 2, .external_lex_state = 3}, [1151] = {.lex_state = 2, .external_lex_state = 3}, [1152] = {.lex_state = 2, .external_lex_state = 3}, - [1153] = {.lex_state = 2, .external_lex_state = 3}, + [1153] = {.lex_state = 5, .external_lex_state = 2}, [1154] = {.lex_state = 2, .external_lex_state = 3}, [1155] = {.lex_state = 2, .external_lex_state = 3}, [1156] = {.lex_state = 2, .external_lex_state = 3}, @@ -13222,58 +14531,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1165] = {.lex_state = 2, .external_lex_state = 3}, [1166] = {.lex_state = 2, .external_lex_state = 3}, [1167] = {.lex_state = 2, .external_lex_state = 3}, - [1168] = {.lex_state = 7, .external_lex_state = 3}, - [1169] = {.lex_state = 7, .external_lex_state = 3}, - [1170] = {.lex_state = 7, .external_lex_state = 3}, + [1168] = {.lex_state = 5, .external_lex_state = 2}, + [1169] = {.lex_state = 2, .external_lex_state = 3}, + [1170] = {.lex_state = 2, .external_lex_state = 3}, [1171] = {.lex_state = 2, .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 = 5, .external_lex_state = 2}, - [1177] = {.lex_state = 7, .external_lex_state = 3}, - [1178] = {.lex_state = 5, .external_lex_state = 2}, - [1179] = {.lex_state = 5, .external_lex_state = 2}, - [1180] = {.lex_state = 2, .external_lex_state = 3}, - [1181] = {.lex_state = 5, .external_lex_state = 2}, - [1182] = {.lex_state = 2, .external_lex_state = 3}, - [1183] = {.lex_state = 5, .external_lex_state = 2}, + [1172] = {.lex_state = 2, .external_lex_state = 3}, + [1173] = {.lex_state = 2, .external_lex_state = 3}, + [1174] = {.lex_state = 2, .external_lex_state = 3}, + [1175] = {.lex_state = 2, .external_lex_state = 3}, + [1176] = {.lex_state = 4, .external_lex_state = 3}, + [1177] = {.lex_state = 4, .external_lex_state = 3}, + [1178] = {.lex_state = 4, .external_lex_state = 3}, + [1179] = {.lex_state = 4, .external_lex_state = 3}, + [1180] = {.lex_state = 4, .external_lex_state = 3}, + [1181] = {.lex_state = 4, .external_lex_state = 3}, + [1182] = {.lex_state = 4, .external_lex_state = 3}, + [1183] = {.lex_state = 4, .external_lex_state = 3}, [1184] = {.lex_state = 2, .external_lex_state = 3}, - [1185] = {.lex_state = 2, .external_lex_state = 3}, + [1185] = {.lex_state = 5, .external_lex_state = 2}, [1186] = {.lex_state = 5, .external_lex_state = 2}, [1187] = {.lex_state = 2, .external_lex_state = 3}, - [1188] = {.lex_state = 7, .external_lex_state = 3}, - [1189] = {.lex_state = 7, .external_lex_state = 3}, - [1190] = {.lex_state = 2, .external_lex_state = 3}, - [1191] = {.lex_state = 7, .external_lex_state = 3}, - [1192] = {.lex_state = 7, .external_lex_state = 3}, + [1188] = {.lex_state = 5, .external_lex_state = 2}, + [1189] = {.lex_state = 5, .external_lex_state = 2}, + [1190] = {.lex_state = 5, .external_lex_state = 2}, + [1191] = {.lex_state = 2, .external_lex_state = 3}, + [1192] = {.lex_state = 4, .external_lex_state = 3}, [1193] = {.lex_state = 2, .external_lex_state = 3}, - [1194] = {.lex_state = 2, .external_lex_state = 3}, + [1194] = {.lex_state = 4, .external_lex_state = 3}, [1195] = {.lex_state = 2, .external_lex_state = 3}, - [1196] = {.lex_state = 7, .external_lex_state = 3}, - [1197] = {.lex_state = 2, .external_lex_state = 3}, - [1198] = {.lex_state = 7, .external_lex_state = 3}, - [1199] = {.lex_state = 7, .external_lex_state = 3}, - [1200] = {.lex_state = 2, .external_lex_state = 3}, - [1201] = {.lex_state = 7, .external_lex_state = 3}, + [1196] = {.lex_state = 4, .external_lex_state = 3}, + [1197] = {.lex_state = 5, .external_lex_state = 2}, + [1198] = {.lex_state = 2, .external_lex_state = 3}, + [1199] = {.lex_state = 4, .external_lex_state = 3}, + [1200] = {.lex_state = 4, .external_lex_state = 3}, + [1201] = {.lex_state = 4, .external_lex_state = 3}, [1202] = {.lex_state = 2, .external_lex_state = 3}, [1203] = {.lex_state = 2, .external_lex_state = 3}, [1204] = {.lex_state = 2, .external_lex_state = 3}, - [1205] = {.lex_state = 2, .external_lex_state = 3}, + [1205] = {.lex_state = 4, .external_lex_state = 3}, [1206] = {.lex_state = 2, .external_lex_state = 3}, - [1207] = {.lex_state = 7, .external_lex_state = 3}, + [1207] = {.lex_state = 2, .external_lex_state = 3}, [1208] = {.lex_state = 2, .external_lex_state = 3}, [1209] = {.lex_state = 2, .external_lex_state = 3}, [1210] = {.lex_state = 2, .external_lex_state = 3}, - [1211] = {.lex_state = 2, .external_lex_state = 3}, - [1212] = {.lex_state = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 4, .external_lex_state = 3}, + [1212] = {.lex_state = 4, .external_lex_state = 3}, [1213] = {.lex_state = 2, .external_lex_state = 3}, [1214] = {.lex_state = 2, .external_lex_state = 3}, [1215] = {.lex_state = 2, .external_lex_state = 3}, [1216] = {.lex_state = 2, .external_lex_state = 3}, [1217] = {.lex_state = 2, .external_lex_state = 3}, [1218] = {.lex_state = 2, .external_lex_state = 3}, - [1219] = {.lex_state = 7, .external_lex_state = 3}, + [1219] = {.lex_state = 2, .external_lex_state = 3}, [1220] = {.lex_state = 2, .external_lex_state = 3}, [1221] = {.lex_state = 2, .external_lex_state = 3}, [1222] = {.lex_state = 2, .external_lex_state = 3}, @@ -13314,7 +14623,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1257] = {.lex_state = 2, .external_lex_state = 3}, [1258] = {.lex_state = 2, .external_lex_state = 3}, [1259] = {.lex_state = 2, .external_lex_state = 3}, - [1260] = {.lex_state = 2, .external_lex_state = 3}, + [1260] = {.lex_state = 4, .external_lex_state = 3}, [1261] = {.lex_state = 2, .external_lex_state = 3}, [1262] = {.lex_state = 2, .external_lex_state = 3}, [1263] = {.lex_state = 2, .external_lex_state = 3}, @@ -13344,7 +14653,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1287] = {.lex_state = 2, .external_lex_state = 3}, [1288] = {.lex_state = 2, .external_lex_state = 3}, [1289] = {.lex_state = 2, .external_lex_state = 3}, - [1290] = {.lex_state = 7, .external_lex_state = 3}, + [1290] = {.lex_state = 2, .external_lex_state = 3}, [1291] = {.lex_state = 2, .external_lex_state = 3}, [1292] = {.lex_state = 2, .external_lex_state = 3}, [1293] = {.lex_state = 2, .external_lex_state = 3}, @@ -13370,94 +14679,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1313] = {.lex_state = 2, .external_lex_state = 3}, [1314] = {.lex_state = 2, .external_lex_state = 3}, [1315] = {.lex_state = 2, .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 = 7, .external_lex_state = 3}, - [1322] = {.lex_state = 7, .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 = 7, .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 = 18, .external_lex_state = 3}, + [1316] = {.lex_state = 2, .external_lex_state = 3}, + [1317] = {.lex_state = 2, .external_lex_state = 3}, + [1318] = {.lex_state = 2, .external_lex_state = 3}, + [1319] = {.lex_state = 2, .external_lex_state = 3}, + [1320] = {.lex_state = 4, .external_lex_state = 3}, + [1321] = {.lex_state = 2, .external_lex_state = 3}, + [1322] = {.lex_state = 2, .external_lex_state = 3}, + [1323] = {.lex_state = 4, .external_lex_state = 3}, + [1324] = {.lex_state = 2, .external_lex_state = 3}, + [1325] = {.lex_state = 4, .external_lex_state = 3}, + [1326] = {.lex_state = 4, .external_lex_state = 3}, + [1327] = {.lex_state = 4, .external_lex_state = 3}, + [1328] = {.lex_state = 4, .external_lex_state = 3}, + [1329] = {.lex_state = 4, .external_lex_state = 3}, + [1330] = {.lex_state = 4, .external_lex_state = 3}, + [1331] = {.lex_state = 4, .external_lex_state = 3}, + [1332] = {.lex_state = 4, .external_lex_state = 3}, + [1333] = {.lex_state = 4, .external_lex_state = 3}, + [1334] = {.lex_state = 4, .external_lex_state = 3}, [1335] = {.lex_state = 18, .external_lex_state = 3}, - [1336] = {.lex_state = 9, .external_lex_state = 3}, - [1337] = {.lex_state = 9, .external_lex_state = 3}, - [1338] = {.lex_state = 9, .external_lex_state = 3}, - [1339] = {.lex_state = 9, .external_lex_state = 3}, - [1340] = {.lex_state = 9, .external_lex_state = 3}, - [1341] = {.lex_state = 9, .external_lex_state = 3}, - [1342] = {.lex_state = 9, .external_lex_state = 3}, - [1343] = {.lex_state = 9, .external_lex_state = 3}, - [1344] = {.lex_state = 9, .external_lex_state = 3}, - [1345] = {.lex_state = 9, .external_lex_state = 3}, - [1346] = {.lex_state = 9, .external_lex_state = 3}, - [1347] = {.lex_state = 9, .external_lex_state = 3}, - [1348] = {.lex_state = 18, .external_lex_state = 3}, + [1336] = {.lex_state = 18, .external_lex_state = 3}, + [1337] = {.lex_state = 8, .external_lex_state = 3}, + [1338] = {.lex_state = 8, .external_lex_state = 3}, + [1339] = {.lex_state = 8, .external_lex_state = 3}, + [1340] = {.lex_state = 8, .external_lex_state = 3}, + [1341] = {.lex_state = 8, .external_lex_state = 3}, + [1342] = {.lex_state = 8, .external_lex_state = 3}, + [1343] = {.lex_state = 8, .external_lex_state = 3}, + [1344] = {.lex_state = 8, .external_lex_state = 3}, + [1345] = {.lex_state = 8, .external_lex_state = 3}, + [1346] = {.lex_state = 8, .external_lex_state = 3}, + [1347] = {.lex_state = 8, .external_lex_state = 3}, + [1348] = {.lex_state = 8, .external_lex_state = 3}, [1349] = {.lex_state = 18, .external_lex_state = 3}, - [1350] = {.lex_state = 7, .external_lex_state = 3}, - [1351] = {.lex_state = 7, .external_lex_state = 3}, - [1352] = {.lex_state = 18, .external_lex_state = 3}, - [1353] = {.lex_state = 18, .external_lex_state = 3}, - [1354] = {.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 = 18, .external_lex_state = 3}, - [1356] = {.lex_state = 7, .external_lex_state = 3}, - [1357] = {.lex_state = 7, .external_lex_state = 3}, - [1358] = {.lex_state = 7, .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 = 9, .external_lex_state = 3}, - [1364] = {.lex_state = 7, .external_lex_state = 3}, - [1365] = {.lex_state = 7, .external_lex_state = 3}, - [1366] = {.lex_state = 7, .external_lex_state = 3}, - [1367] = {.lex_state = 9, .external_lex_state = 3}, - [1368] = {.lex_state = 7, .external_lex_state = 3}, - [1369] = {.lex_state = 7, .external_lex_state = 3}, - [1370] = {.lex_state = 7, .external_lex_state = 3}, - [1371] = {.lex_state = 9, .external_lex_state = 3}, - [1372] = {.lex_state = 7, .external_lex_state = 3}, - [1373] = {.lex_state = 7, .external_lex_state = 3}, + [1356] = {.lex_state = 18, .external_lex_state = 3}, + [1357] = {.lex_state = 4, .external_lex_state = 3}, + [1358] = {.lex_state = 18, .external_lex_state = 3}, + [1359] = {.lex_state = 8, .external_lex_state = 3}, + [1360] = {.lex_state = 8, .external_lex_state = 3}, + [1361] = {.lex_state = 4, .external_lex_state = 3}, + [1362] = {.lex_state = 8, .external_lex_state = 3}, + [1363] = {.lex_state = 18, .external_lex_state = 3}, + [1364] = {.lex_state = 4, .external_lex_state = 3}, + [1365] = {.lex_state = 4, .external_lex_state = 3}, + [1366] = {.lex_state = 4, .external_lex_state = 3}, + [1367] = {.lex_state = 4, .external_lex_state = 3}, + [1368] = {.lex_state = 4, .external_lex_state = 3}, + [1369] = {.lex_state = 4, .external_lex_state = 3}, + [1370] = {.lex_state = 4, .external_lex_state = 3}, + [1371] = {.lex_state = 4, .external_lex_state = 3}, + [1372] = {.lex_state = 4, .external_lex_state = 3}, + [1373] = {.lex_state = 4, .external_lex_state = 3}, [1374] = {.lex_state = 18, .external_lex_state = 3}, - [1375] = {.lex_state = 7, .external_lex_state = 3}, - [1376] = {.lex_state = 9, .external_lex_state = 3}, + [1375] = {.lex_state = 18, .external_lex_state = 3}, + [1376] = {.lex_state = 4, .external_lex_state = 3}, [1377] = {.lex_state = 18, .external_lex_state = 3}, [1378] = {.lex_state = 18, .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 = 18, .external_lex_state = 3}, + [1379] = {.lex_state = 18, .external_lex_state = 3}, + [1380] = {.lex_state = 18, .external_lex_state = 3}, + [1381] = {.lex_state = 18, .external_lex_state = 3}, + [1382] = {.lex_state = 4, .external_lex_state = 3}, [1383] = {.lex_state = 18, .external_lex_state = 3}, [1384] = {.lex_state = 18, .external_lex_state = 3}, - [1385] = {.lex_state = 18, .external_lex_state = 3}, - [1386] = {.lex_state = 18, .external_lex_state = 3}, + [1385] = {.lex_state = 4, .external_lex_state = 3}, + [1386] = {.lex_state = 4, .external_lex_state = 3}, [1387] = {.lex_state = 18, .external_lex_state = 3}, [1388] = {.lex_state = 18, .external_lex_state = 3}, - [1389] = {.lex_state = 7, .external_lex_state = 3}, - [1390] = {.lex_state = 18, .external_lex_state = 3}, - [1391] = {.lex_state = 18, .external_lex_state = 3}, - [1392] = {.lex_state = 18, .external_lex_state = 3}, - [1393] = {.lex_state = 7, .external_lex_state = 3}, + [1389] = {.lex_state = 4, .external_lex_state = 3}, + [1390] = {.lex_state = 8, .external_lex_state = 3}, + [1391] = {.lex_state = 4, .external_lex_state = 3}, + [1392] = {.lex_state = 4, .external_lex_state = 3}, + [1393] = {.lex_state = 18, .external_lex_state = 3}, [1394] = {.lex_state = 18, .external_lex_state = 3}, [1395] = {.lex_state = 18, .external_lex_state = 3}, [1396] = {.lex_state = 18, .external_lex_state = 3}, [1397] = {.lex_state = 18, .external_lex_state = 3}, [1398] = {.lex_state = 18, .external_lex_state = 3}, [1399] = {.lex_state = 18, .external_lex_state = 3}, - [1400] = {.lex_state = 18, .external_lex_state = 3}, + [1400] = {.lex_state = 4, .external_lex_state = 3}, [1401] = {.lex_state = 18, .external_lex_state = 3}, [1402] = {.lex_state = 18, .external_lex_state = 3}, - [1403] = {.lex_state = 7, .external_lex_state = 3}, + [1403] = {.lex_state = 18, .external_lex_state = 3}, [1404] = {.lex_state = 18, .external_lex_state = 3}, [1405] = {.lex_state = 18, .external_lex_state = 3}, [1406] = {.lex_state = 18, .external_lex_state = 3}, @@ -13479,732 +14788,732 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1422] = {.lex_state = 18, .external_lex_state = 3}, [1423] = {.lex_state = 18, .external_lex_state = 3}, [1424] = {.lex_state = 18, .external_lex_state = 3}, - [1425] = {.lex_state = 9, .external_lex_state = 3}, - [1426] = {.lex_state = 18, .external_lex_state = 3}, - [1427] = {.lex_state = 9, .external_lex_state = 3}, - [1428] = {.lex_state = 9, .external_lex_state = 3}, - [1429] = {.lex_state = 9, .external_lex_state = 3}, - [1430] = {.lex_state = 9, .external_lex_state = 3}, - [1431] = {.lex_state = 9, .external_lex_state = 3}, - [1432] = {.lex_state = 9, .external_lex_state = 3}, - [1433] = {.lex_state = 9, .external_lex_state = 3}, - [1434] = {.lex_state = 9, .external_lex_state = 3}, - [1435] = {.lex_state = 9, .external_lex_state = 3}, - [1436] = {.lex_state = 18, .external_lex_state = 3}, - [1437] = {.lex_state = 18, .external_lex_state = 3}, - [1438] = {.lex_state = 9, .external_lex_state = 3}, - [1439] = {.lex_state = 9, .external_lex_state = 3}, - [1440] = {.lex_state = 7, .external_lex_state = 3}, - [1441] = {.lex_state = 9, .external_lex_state = 3}, - [1442] = {.lex_state = 7, .external_lex_state = 3}, - [1443] = {.lex_state = 7, .external_lex_state = 3}, - [1444] = {.lex_state = 7, .external_lex_state = 3}, - [1445] = {.lex_state = 7, .external_lex_state = 3}, - [1446] = {.lex_state = 7, .external_lex_state = 3}, - [1447] = {.lex_state = 7, .external_lex_state = 3}, - [1448] = {.lex_state = 7, .external_lex_state = 3}, - [1449] = {.lex_state = 9, .external_lex_state = 3}, + [1425] = {.lex_state = 18, .external_lex_state = 3}, + [1426] = {.lex_state = 8, .external_lex_state = 3}, + [1427] = {.lex_state = 4, .external_lex_state = 3}, + [1428] = {.lex_state = 4, .external_lex_state = 3}, + [1429] = {.lex_state = 4, .external_lex_state = 3}, + [1430] = {.lex_state = 8, .external_lex_state = 3}, + [1431] = {.lex_state = 8, .external_lex_state = 3}, + [1432] = {.lex_state = 8, .external_lex_state = 3}, + [1433] = {.lex_state = 8, .external_lex_state = 3}, + [1434] = {.lex_state = 8, .external_lex_state = 3}, + [1435] = {.lex_state = 8, .external_lex_state = 3}, + [1436] = {.lex_state = 4, .external_lex_state = 3}, + [1437] = {.lex_state = 8, .external_lex_state = 3}, + [1438] = {.lex_state = 8, .external_lex_state = 3}, + [1439] = {.lex_state = 8, .external_lex_state = 3}, + [1440] = {.lex_state = 18, .external_lex_state = 3}, + [1441] = {.lex_state = 4, .external_lex_state = 3}, + [1442] = {.lex_state = 8, .external_lex_state = 3}, + [1443] = {.lex_state = 18, .external_lex_state = 3}, + [1444] = {.lex_state = 4, .external_lex_state = 3}, + [1445] = {.lex_state = 18, .external_lex_state = 3}, + [1446] = {.lex_state = 4, .external_lex_state = 3}, + [1447] = {.lex_state = 8, .external_lex_state = 3}, + [1448] = {.lex_state = 4, .external_lex_state = 3}, + [1449] = {.lex_state = 8, .external_lex_state = 3}, [1450] = {.lex_state = 18, .external_lex_state = 3}, [1451] = {.lex_state = 18, .external_lex_state = 3}, - [1452] = {.lex_state = 9, .external_lex_state = 3}, + [1452] = {.lex_state = 18, .external_lex_state = 3}, [1453] = {.lex_state = 18, .external_lex_state = 3}, - [1454] = {.lex_state = 9, .external_lex_state = 3}, - [1455] = {.lex_state = 9, .external_lex_state = 3}, - [1456] = {.lex_state = 18, .external_lex_state = 3}, - [1457] = {.lex_state = 18, .external_lex_state = 3}, + [1454] = {.lex_state = 18, .external_lex_state = 3}, + [1455] = {.lex_state = 18, .external_lex_state = 3}, + [1456] = {.lex_state = 8, .external_lex_state = 3}, + [1457] = {.lex_state = 8, .external_lex_state = 3}, [1458] = {.lex_state = 18, .external_lex_state = 3}, [1459] = {.lex_state = 18, .external_lex_state = 3}, [1460] = {.lex_state = 18, .external_lex_state = 3}, - [1461] = {.lex_state = 9, .external_lex_state = 3}, + [1461] = {.lex_state = 18, .external_lex_state = 3}, [1462] = {.lex_state = 18, .external_lex_state = 3}, [1463] = {.lex_state = 18, .external_lex_state = 3}, [1464] = {.lex_state = 18, .external_lex_state = 3}, - [1465] = {.lex_state = 9, .external_lex_state = 3}, + [1465] = {.lex_state = 4, .external_lex_state = 3}, [1466] = {.lex_state = 18, .external_lex_state = 3}, - [1467] = {.lex_state = 7, .external_lex_state = 3}, + [1467] = {.lex_state = 4, .external_lex_state = 3}, [1468] = {.lex_state = 18, .external_lex_state = 3}, - [1469] = {.lex_state = 18, .external_lex_state = 3}, + [1469] = {.lex_state = 8, .external_lex_state = 3}, [1470] = {.lex_state = 18, .external_lex_state = 3}, - [1471] = {.lex_state = 18, .external_lex_state = 3}, - [1472] = {.lex_state = 14, .external_lex_state = 3}, + [1471] = {.lex_state = 8, .external_lex_state = 3}, + [1472] = {.lex_state = 18, .external_lex_state = 3}, [1473] = {.lex_state = 18, .external_lex_state = 3}, - [1474] = {.lex_state = 18, .external_lex_state = 3}, - [1475] = {.lex_state = 7, .external_lex_state = 3}, - [1476] = {.lex_state = 18, .external_lex_state = 3}, - [1477] = {.lex_state = 18, .external_lex_state = 3}, + [1474] = {.lex_state = 8, .external_lex_state = 3}, + [1475] = {.lex_state = 18, .external_lex_state = 3}, + [1476] = {.lex_state = 8, .external_lex_state = 3}, + [1477] = {.lex_state = 13, .external_lex_state = 3}, [1478] = {.lex_state = 18, .external_lex_state = 3}, - [1479] = {.lex_state = 14, .external_lex_state = 3}, + [1479] = {.lex_state = 18, .external_lex_state = 3}, [1480] = {.lex_state = 18, .external_lex_state = 3}, [1481] = {.lex_state = 18, .external_lex_state = 3}, - [1482] = {.lex_state = 18, .external_lex_state = 3}, - [1483] = {.lex_state = 14, .external_lex_state = 3}, - [1484] = {.lex_state = 18, .external_lex_state = 3}, - [1485] = {.lex_state = 14, .external_lex_state = 3}, - [1486] = {.lex_state = 9, .external_lex_state = 3}, + [1482] = {.lex_state = 8, .external_lex_state = 3}, + [1483] = {.lex_state = 13, .external_lex_state = 3}, + [1484] = {.lex_state = 13, .external_lex_state = 3}, + [1485] = {.lex_state = 18, .external_lex_state = 3}, + [1486] = {.lex_state = 18, .external_lex_state = 3}, [1487] = {.lex_state = 18, .external_lex_state = 3}, - [1488] = {.lex_state = 18, .external_lex_state = 3}, - [1489] = {.lex_state = 18, .external_lex_state = 3}, + [1488] = {.lex_state = 8, .external_lex_state = 3}, + [1489] = {.lex_state = 13, .external_lex_state = 3}, [1490] = {.lex_state = 18, .external_lex_state = 3}, [1491] = {.lex_state = 18, .external_lex_state = 3}, [1492] = {.lex_state = 18, .external_lex_state = 3}, - [1493] = {.lex_state = 9, .external_lex_state = 3}, - [1494] = {.lex_state = 7, .external_lex_state = 3}, - [1495] = {.lex_state = 7, .external_lex_state = 3}, - [1496] = {.lex_state = 7, .external_lex_state = 3}, - [1497] = {.lex_state = 7, .external_lex_state = 3}, - [1498] = {.lex_state = 7, .external_lex_state = 3}, - [1499] = {.lex_state = 9, .external_lex_state = 3}, - [1500] = {.lex_state = 18, .external_lex_state = 3}, - [1501] = {.lex_state = 7, .external_lex_state = 3}, - [1502] = {.lex_state = 7, .external_lex_state = 3}, + [1493] = {.lex_state = 18, .external_lex_state = 3}, + [1494] = {.lex_state = 18, .external_lex_state = 3}, + [1495] = {.lex_state = 1, .external_lex_state = 2}, + [1496] = {.lex_state = 4, .external_lex_state = 3}, + [1497] = {.lex_state = 18, .external_lex_state = 3}, + [1498] = {.lex_state = 15, .external_lex_state = 3}, + [1499] = {.lex_state = 1, .external_lex_state = 2}, + [1500] = {.lex_state = 1, .external_lex_state = 2}, + [1501] = {.lex_state = 4, .external_lex_state = 3}, + [1502] = {.lex_state = 8, .external_lex_state = 3}, [1503] = {.lex_state = 1, .external_lex_state = 2}, - [1504] = {.lex_state = 1, .external_lex_state = 2}, - [1505] = {.lex_state = 15, .external_lex_state = 3}, - [1506] = {.lex_state = 7, .external_lex_state = 3}, - [1507] = {.lex_state = 7, .external_lex_state = 3}, - [1508] = {.lex_state = 7, .external_lex_state = 3}, - [1509] = {.lex_state = 7, .external_lex_state = 3}, - [1510] = {.lex_state = 7, .external_lex_state = 3}, - [1511] = {.lex_state = 7, .external_lex_state = 3}, - [1512] = {.lex_state = 7, .external_lex_state = 3}, - [1513] = {.lex_state = 7, .external_lex_state = 3}, - [1514] = {.lex_state = 7, .external_lex_state = 3}, - [1515] = {.lex_state = 15, .external_lex_state = 3}, - [1516] = {.lex_state = 7, .external_lex_state = 3}, - [1517] = {.lex_state = 18, .external_lex_state = 3}, - [1518] = {.lex_state = 15, .external_lex_state = 3}, + [1504] = {.lex_state = 4, .external_lex_state = 3}, + [1505] = {.lex_state = 4, .external_lex_state = 3}, + [1506] = {.lex_state = 4, .external_lex_state = 3}, + [1507] = {.lex_state = 1, .external_lex_state = 2}, + [1508] = {.lex_state = 4, .external_lex_state = 3}, + [1509] = {.lex_state = 4, .external_lex_state = 3}, + [1510] = {.lex_state = 4, .external_lex_state = 3}, + [1511] = {.lex_state = 4, .external_lex_state = 3}, + [1512] = {.lex_state = 4, .external_lex_state = 3}, + [1513] = {.lex_state = 18, .external_lex_state = 3}, + [1514] = {.lex_state = 4, .external_lex_state = 3}, + [1515] = {.lex_state = 4, .external_lex_state = 3}, + [1516] = {.lex_state = 4, .external_lex_state = 3}, + [1517] = {.lex_state = 4, .external_lex_state = 3}, + [1518] = {.lex_state = 4, .external_lex_state = 3}, [1519] = {.lex_state = 4, .external_lex_state = 3}, - [1520] = {.lex_state = 7, .external_lex_state = 3}, - [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 7, .external_lex_state = 3}, - [1523] = {.lex_state = 7, .external_lex_state = 3}, - [1524] = {.lex_state = 18, .external_lex_state = 3}, - [1525] = {.lex_state = 7, .external_lex_state = 3}, - [1526] = {.lex_state = 18, .external_lex_state = 3}, - [1527] = {.lex_state = 7, .external_lex_state = 3}, - [1528] = {.lex_state = 7, .external_lex_state = 3}, - [1529] = {.lex_state = 18, .external_lex_state = 3}, - [1530] = {.lex_state = 7, .external_lex_state = 3}, - [1531] = {.lex_state = 7, .external_lex_state = 3}, - [1532] = {.lex_state = 7, .external_lex_state = 3}, - [1533] = {.lex_state = 7, .external_lex_state = 3}, - [1534] = {.lex_state = 7, .external_lex_state = 3}, - [1535] = {.lex_state = 7, .external_lex_state = 3}, - [1536] = {.lex_state = 7, .external_lex_state = 3}, - [1537] = {.lex_state = 7, .external_lex_state = 3}, - [1538] = {.lex_state = 18, .external_lex_state = 3}, + [1520] = {.lex_state = 18, .external_lex_state = 3}, + [1521] = {.lex_state = 4, .external_lex_state = 3}, + [1522] = {.lex_state = 4, .external_lex_state = 3}, + [1523] = {.lex_state = 4, .external_lex_state = 3}, + [1524] = {.lex_state = 4, .external_lex_state = 3}, + [1525] = {.lex_state = 4, .external_lex_state = 3}, + [1526] = {.lex_state = 4, .external_lex_state = 3}, + [1527] = {.lex_state = 18, .external_lex_state = 3}, + [1528] = {.lex_state = 4, .external_lex_state = 3}, + [1529] = {.lex_state = 4, .external_lex_state = 3}, + [1530] = {.lex_state = 15, .external_lex_state = 3}, + [1531] = {.lex_state = 18, .external_lex_state = 3}, + [1532] = {.lex_state = 4, .external_lex_state = 3}, + [1533] = {.lex_state = 4, .external_lex_state = 3}, + [1534] = {.lex_state = 4, .external_lex_state = 3}, + [1535] = {.lex_state = 4, .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 = 18, .external_lex_state = 3}, - [1540] = {.lex_state = 7, .external_lex_state = 3}, - [1541] = {.lex_state = 7, .external_lex_state = 3}, - [1542] = {.lex_state = 7, .external_lex_state = 3}, - [1543] = {.lex_state = 18, .external_lex_state = 3}, - [1544] = {.lex_state = 7, .external_lex_state = 3}, - [1545] = {.lex_state = 7, .external_lex_state = 3}, + [1540] = {.lex_state = 4, .external_lex_state = 3}, + [1541] = {.lex_state = 4, .external_lex_state = 3}, + [1542] = {.lex_state = 4, .external_lex_state = 3}, + [1543] = {.lex_state = 4, .external_lex_state = 3}, + [1544] = {.lex_state = 4, .external_lex_state = 3}, + [1545] = {.lex_state = 4, .external_lex_state = 3}, [1546] = {.lex_state = 18, .external_lex_state = 3}, - [1547] = {.lex_state = 7, .external_lex_state = 3}, - [1548] = {.lex_state = 7, .external_lex_state = 3}, + [1547] = {.lex_state = 4, .external_lex_state = 3}, + [1548] = {.lex_state = 4, .external_lex_state = 3}, [1549] = {.lex_state = 4, .external_lex_state = 3}, - [1550] = {.lex_state = 0, .external_lex_state = 3}, - [1551] = {.lex_state = 7, .external_lex_state = 3}, - [1552] = {.lex_state = 4, .external_lex_state = 3}, - [1553] = {.lex_state = 14, .external_lex_state = 3}, - [1554] = {.lex_state = 7, .external_lex_state = 3}, - [1555] = {.lex_state = 7, .external_lex_state = 3}, - [1556] = {.lex_state = 7, .external_lex_state = 3}, - [1557] = {.lex_state = 7, .external_lex_state = 3}, - [1558] = {.lex_state = 15, .external_lex_state = 3}, - [1559] = {.lex_state = 15, .external_lex_state = 3}, - [1560] = {.lex_state = 7, .external_lex_state = 3}, - [1561] = {.lex_state = 15, .external_lex_state = 3}, - [1562] = {.lex_state = 7, .external_lex_state = 3}, - [1563] = {.lex_state = 7, .external_lex_state = 3}, - [1564] = {.lex_state = 7, .external_lex_state = 3}, - [1565] = {.lex_state = 15, .external_lex_state = 3}, - [1566] = {.lex_state = 7, .external_lex_state = 3}, - [1567] = {.lex_state = 15, .external_lex_state = 3}, - [1568] = {.lex_state = 7, .external_lex_state = 3}, - [1569] = {.lex_state = 7, .external_lex_state = 3}, - [1570] = {.lex_state = 7, .external_lex_state = 3}, - [1571] = {.lex_state = 4, .external_lex_state = 3}, - [1572] = {.lex_state = 15, .external_lex_state = 3}, - [1573] = {.lex_state = 15, .external_lex_state = 3}, - [1574] = {.lex_state = 7, .external_lex_state = 3}, - [1575] = {.lex_state = 7, .external_lex_state = 3}, - [1576] = {.lex_state = 7, .external_lex_state = 3}, - [1577] = {.lex_state = 15, .external_lex_state = 3}, - [1578] = {.lex_state = 7, .external_lex_state = 3}, + [1550] = {.lex_state = 15, .external_lex_state = 3}, + [1551] = {.lex_state = 18, .external_lex_state = 3}, + [1552] = {.lex_state = 18, .external_lex_state = 3}, + [1553] = {.lex_state = 4, .external_lex_state = 3}, + [1554] = {.lex_state = 4, .external_lex_state = 3}, + [1555] = {.lex_state = 13, .external_lex_state = 3}, + [1556] = {.lex_state = 4, .external_lex_state = 3}, + [1557] = {.lex_state = 4, .external_lex_state = 3}, + [1558] = {.lex_state = 4, .external_lex_state = 3}, + [1559] = {.lex_state = 4, .external_lex_state = 3}, + [1560] = {.lex_state = 4, .external_lex_state = 3}, + [1561] = {.lex_state = 4, .external_lex_state = 3}, + [1562] = {.lex_state = 4, .external_lex_state = 3}, + [1563] = {.lex_state = 4, .external_lex_state = 3}, + [1564] = {.lex_state = 15, .external_lex_state = 3}, + [1565] = {.lex_state = 4, .external_lex_state = 3}, + [1566] = {.lex_state = 4, .external_lex_state = 3}, + [1567] = {.lex_state = 4, .external_lex_state = 3}, + [1568] = {.lex_state = 15, .external_lex_state = 3}, + [1569] = {.lex_state = 15, .external_lex_state = 3}, + [1570] = {.lex_state = 4, .external_lex_state = 3}, + [1571] = {.lex_state = 15, .external_lex_state = 3}, + [1572] = {.lex_state = 4, .external_lex_state = 3}, + [1573] = {.lex_state = 4, .external_lex_state = 3}, + [1574] = {.lex_state = 4, .external_lex_state = 3}, + [1575] = {.lex_state = 4, .external_lex_state = 3}, + [1576] = {.lex_state = 4, .external_lex_state = 3}, + [1577] = {.lex_state = 4, .external_lex_state = 3}, + [1578] = {.lex_state = 4, .external_lex_state = 3}, [1579] = {.lex_state = 4, .external_lex_state = 3}, - [1580] = {.lex_state = 7, .external_lex_state = 3}, - [1581] = {.lex_state = 7, .external_lex_state = 3}, - [1582] = {.lex_state = 7, .external_lex_state = 3}, - [1583] = {.lex_state = 7, .external_lex_state = 3}, - [1584] = {.lex_state = 15, .external_lex_state = 3}, - [1585] = {.lex_state = 7, .external_lex_state = 3}, - [1586] = {.lex_state = 7, .external_lex_state = 3}, - [1587] = {.lex_state = 7, .external_lex_state = 3}, - [1588] = {.lex_state = 7, .external_lex_state = 3}, - [1589] = {.lex_state = 7, .external_lex_state = 3}, - [1590] = {.lex_state = 15, .external_lex_state = 3}, - [1591] = {.lex_state = 0, .external_lex_state = 3}, - [1592] = {.lex_state = 0, .external_lex_state = 3}, - [1593] = {.lex_state = 0, .external_lex_state = 3}, + [1580] = {.lex_state = 15, .external_lex_state = 3}, + [1581] = {.lex_state = 15, .external_lex_state = 3}, + [1582] = {.lex_state = 4, .external_lex_state = 3}, + [1583] = {.lex_state = 4, .external_lex_state = 3}, + [1584] = {.lex_state = 4, .external_lex_state = 3}, + [1585] = {.lex_state = 15, .external_lex_state = 3}, + [1586] = {.lex_state = 4, .external_lex_state = 3}, + [1587] = {.lex_state = 4, .external_lex_state = 3}, + [1588] = {.lex_state = 15, .external_lex_state = 3}, + [1589] = {.lex_state = 0, .external_lex_state = 3}, + [1590] = {.lex_state = 4, .external_lex_state = 3}, + [1591] = {.lex_state = 4, .external_lex_state = 3}, + [1592] = {.lex_state = 15, .external_lex_state = 3}, + [1593] = {.lex_state = 4, .external_lex_state = 3}, [1594] = {.lex_state = 0, .external_lex_state = 3}, - [1595] = {.lex_state = 0, .external_lex_state = 3}, + [1595] = {.lex_state = 15, .external_lex_state = 3}, [1596] = {.lex_state = 0, .external_lex_state = 3}, - [1597] = {.lex_state = 0, .external_lex_state = 3}, - [1598] = {.lex_state = 0, .external_lex_state = 3}, - [1599] = {.lex_state = 0, .external_lex_state = 3}, - [1600] = {.lex_state = 0, .external_lex_state = 3}, - [1601] = {.lex_state = 7, .external_lex_state = 3}, - [1602] = {.lex_state = 7, .external_lex_state = 3}, - [1603] = {.lex_state = 15, .external_lex_state = 3}, + [1597] = {.lex_state = 4, .external_lex_state = 3}, + [1598] = {.lex_state = 4, .external_lex_state = 3}, + [1599] = {.lex_state = 4, .external_lex_state = 3}, + [1600] = {.lex_state = 4, .external_lex_state = 3}, + [1601] = {.lex_state = 4, .external_lex_state = 3}, + [1602] = {.lex_state = 4, .external_lex_state = 3}, + [1603] = {.lex_state = 4, .external_lex_state = 3}, [1604] = {.lex_state = 0, .external_lex_state = 3}, [1605] = {.lex_state = 0, .external_lex_state = 3}, - [1606] = {.lex_state = 7, .external_lex_state = 3}, - [1607] = {.lex_state = 0, .external_lex_state = 3}, - [1608] = {.lex_state = 0, .external_lex_state = 3}, - [1609] = {.lex_state = 7, .external_lex_state = 3}, + [1606] = {.lex_state = 4, .external_lex_state = 3}, + [1607] = {.lex_state = 4, .external_lex_state = 3}, + [1608] = {.lex_state = 4, .external_lex_state = 3}, + [1609] = {.lex_state = 0, .external_lex_state = 3}, [1610] = {.lex_state = 0, .external_lex_state = 3}, [1611] = {.lex_state = 0, .external_lex_state = 3}, - [1612] = {.lex_state = 4, .external_lex_state = 3}, - [1613] = {.lex_state = 7, .external_lex_state = 3}, - [1614] = {.lex_state = 0, .external_lex_state = 3}, + [1612] = {.lex_state = 0, .external_lex_state = 3}, + [1613] = {.lex_state = 4, .external_lex_state = 3}, + [1614] = {.lex_state = 4, .external_lex_state = 3}, [1615] = {.lex_state = 0, .external_lex_state = 3}, - [1616] = {.lex_state = 7, .external_lex_state = 3}, - [1617] = {.lex_state = 7, .external_lex_state = 3}, + [1616] = {.lex_state = 0, .external_lex_state = 3}, + [1617] = {.lex_state = 0, .external_lex_state = 3}, [1618] = {.lex_state = 0, .external_lex_state = 3}, - [1619] = {.lex_state = 0, .external_lex_state = 3}, - [1620] = {.lex_state = 15, .external_lex_state = 3}, + [1619] = {.lex_state = 4, .external_lex_state = 3}, + [1620] = {.lex_state = 0, .external_lex_state = 3}, [1621] = {.lex_state = 0, .external_lex_state = 3}, - [1622] = {.lex_state = 7, .external_lex_state = 3}, - [1623] = {.lex_state = 7, .external_lex_state = 3}, - [1624] = {.lex_state = 7, .external_lex_state = 3}, - [1625] = {.lex_state = 7, .external_lex_state = 3}, - [1626] = {.lex_state = 7, .external_lex_state = 3}, - [1627] = {.lex_state = 7, .external_lex_state = 3}, - [1628] = {.lex_state = 7, .external_lex_state = 3}, - [1629] = {.lex_state = 7, .external_lex_state = 3}, - [1630] = {.lex_state = 7, .external_lex_state = 3}, - [1631] = {.lex_state = 15, .external_lex_state = 3}, - [1632] = {.lex_state = 7, .external_lex_state = 3}, - [1633] = {.lex_state = 7, .external_lex_state = 3}, - [1634] = {.lex_state = 0, .external_lex_state = 3}, - [1635] = {.lex_state = 7, .external_lex_state = 3}, + [1622] = {.lex_state = 0, .external_lex_state = 3}, + [1623] = {.lex_state = 0, .external_lex_state = 3}, + [1624] = {.lex_state = 15, .external_lex_state = 3}, + [1625] = {.lex_state = 4, .external_lex_state = 3}, + [1626] = {.lex_state = 4, .external_lex_state = 3}, + [1627] = {.lex_state = 4, .external_lex_state = 3}, + [1628] = {.lex_state = 0, .external_lex_state = 3}, + [1629] = {.lex_state = 4, .external_lex_state = 3}, + [1630] = {.lex_state = 4, .external_lex_state = 3}, + [1631] = {.lex_state = 0, .external_lex_state = 3}, + [1632] = {.lex_state = 0, .external_lex_state = 3}, + [1633] = {.lex_state = 4, .external_lex_state = 3}, + [1634] = {.lex_state = 15, .external_lex_state = 3}, + [1635] = {.lex_state = 0, .external_lex_state = 3}, [1636] = {.lex_state = 0, .external_lex_state = 3}, - [1637] = {.lex_state = 7, .external_lex_state = 3}, - [1638] = {.lex_state = 7, .external_lex_state = 3}, - [1639] = {.lex_state = 4, .external_lex_state = 3}, - [1640] = {.lex_state = 7, .external_lex_state = 3}, - [1641] = {.lex_state = 7, .external_lex_state = 3}, - [1642] = {.lex_state = 18, .external_lex_state = 3}, - [1643] = {.lex_state = 7, .external_lex_state = 3}, - [1644] = {.lex_state = 10, .external_lex_state = 3}, - [1645] = {.lex_state = 18, .external_lex_state = 3}, - [1646] = {.lex_state = 7, .external_lex_state = 3}, - [1647] = {.lex_state = 7, .external_lex_state = 3}, - [1648] = {.lex_state = 7, .external_lex_state = 3}, - [1649] = {.lex_state = 7, .external_lex_state = 3}, - [1650] = {.lex_state = 7, .external_lex_state = 3}, - [1651] = {.lex_state = 7, .external_lex_state = 3}, - [1652] = {.lex_state = 10, .external_lex_state = 3}, - [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 7, .external_lex_state = 3}, - [1655] = {.lex_state = 7, .external_lex_state = 3}, - [1656] = {.lex_state = 7, .external_lex_state = 3}, - [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 7, .external_lex_state = 3}, - [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 7, .external_lex_state = 3}, - [1661] = {.lex_state = 7, .external_lex_state = 3}, - [1662] = {.lex_state = 7, .external_lex_state = 3}, - [1663] = {.lex_state = 7, .external_lex_state = 3}, - [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 18, .external_lex_state = 3}, - [1666] = {.lex_state = 0, .external_lex_state = 3}, - [1667] = {.lex_state = 7, .external_lex_state = 3}, - [1668] = {.lex_state = 18, .external_lex_state = 3}, - [1669] = {.lex_state = 10, .external_lex_state = 3}, - [1670] = {.lex_state = 7, .external_lex_state = 3}, - [1671] = {.lex_state = 7, .external_lex_state = 3}, - [1672] = {.lex_state = 15, .external_lex_state = 3}, - [1673] = {.lex_state = 7, .external_lex_state = 3}, - [1674] = {.lex_state = 7, .external_lex_state = 3}, - [1675] = {.lex_state = 7, .external_lex_state = 3}, - [1676] = {.lex_state = 7, .external_lex_state = 3}, - [1677] = {.lex_state = 7, .external_lex_state = 3}, - [1678] = {.lex_state = 7, .external_lex_state = 3}, - [1679] = {.lex_state = 7, .external_lex_state = 3}, - [1680] = {.lex_state = 7, .external_lex_state = 3}, - [1681] = {.lex_state = 7, .external_lex_state = 3}, - [1682] = {.lex_state = 18, .external_lex_state = 3}, - [1683] = {.lex_state = 7, .external_lex_state = 3}, - [1684] = {.lex_state = 4, .external_lex_state = 3}, - [1685] = {.lex_state = 7, .external_lex_state = 3}, - [1686] = {.lex_state = 0, .external_lex_state = 3}, - [1687] = {.lex_state = 7, .external_lex_state = 3}, - [1688] = {.lex_state = 18, .external_lex_state = 3}, - [1689] = {.lex_state = 58, .external_lex_state = 3}, - [1690] = {.lex_state = 58, .external_lex_state = 3}, - [1691] = {.lex_state = 7, .external_lex_state = 3}, - [1692] = {.lex_state = 10, .external_lex_state = 3}, - [1693] = {.lex_state = 7, .external_lex_state = 3}, - [1694] = {.lex_state = 7, .external_lex_state = 3}, - [1695] = {.lex_state = 7, .external_lex_state = 3}, - [1696] = {.lex_state = 7, .external_lex_state = 3}, - [1697] = {.lex_state = 7, .external_lex_state = 3}, - [1698] = {.lex_state = 7, .external_lex_state = 3}, - [1699] = {.lex_state = 7, .external_lex_state = 3}, - [1700] = {.lex_state = 7, .external_lex_state = 3}, - [1701] = {.lex_state = 7, .external_lex_state = 3}, - [1702] = {.lex_state = 14, .external_lex_state = 3}, - [1703] = {.lex_state = 7, .external_lex_state = 3}, - [1704] = {.lex_state = 7, .external_lex_state = 3}, - [1705] = {.lex_state = 7, .external_lex_state = 3}, - [1706] = {.lex_state = 18, .external_lex_state = 3}, - [1707] = {.lex_state = 7, .external_lex_state = 3}, - [1708] = {.lex_state = 7, .external_lex_state = 3}, - [1709] = {.lex_state = 7, .external_lex_state = 3}, - [1710] = {.lex_state = 18, .external_lex_state = 3}, - [1711] = {.lex_state = 7, .external_lex_state = 3}, - [1712] = {.lex_state = 7, .external_lex_state = 3}, - [1713] = {.lex_state = 7, .external_lex_state = 3}, + [1637] = {.lex_state = 4, .external_lex_state = 3}, + [1638] = {.lex_state = 0, .external_lex_state = 3}, + [1639] = {.lex_state = 15, .external_lex_state = 3}, + [1640] = {.lex_state = 4, .external_lex_state = 3}, + [1641] = {.lex_state = 9, .external_lex_state = 3}, + [1642] = {.lex_state = 4, .external_lex_state = 3}, + [1643] = {.lex_state = 18, .external_lex_state = 3}, + [1644] = {.lex_state = 4, .external_lex_state = 3}, + [1645] = {.lex_state = 9, .external_lex_state = 3}, + [1646] = {.lex_state = 4, .external_lex_state = 3}, + [1647] = {.lex_state = 9, .external_lex_state = 3}, + [1648] = {.lex_state = 4, .external_lex_state = 3}, + [1649] = {.lex_state = 4, .external_lex_state = 3}, + [1650] = {.lex_state = 4, .external_lex_state = 3}, + [1651] = {.lex_state = 4, .external_lex_state = 3}, + [1652] = {.lex_state = 4, .external_lex_state = 3}, + [1653] = {.lex_state = 4, .external_lex_state = 3}, + [1654] = {.lex_state = 4, .external_lex_state = 3}, + [1655] = {.lex_state = 4, .external_lex_state = 3}, + [1656] = {.lex_state = 4, .external_lex_state = 3}, + [1657] = {.lex_state = 4, .external_lex_state = 3}, + [1658] = {.lex_state = 4, .external_lex_state = 3}, + [1659] = {.lex_state = 4, .external_lex_state = 3}, + [1660] = {.lex_state = 4, .external_lex_state = 3}, + [1661] = {.lex_state = 13, .external_lex_state = 3}, + [1662] = {.lex_state = 4, .external_lex_state = 3}, + [1663] = {.lex_state = 4, .external_lex_state = 3}, + [1664] = {.lex_state = 9, .external_lex_state = 3}, + [1665] = {.lex_state = 4, .external_lex_state = 3}, + [1666] = {.lex_state = 18, .external_lex_state = 3}, + [1667] = {.lex_state = 18, .external_lex_state = 3}, + [1668] = {.lex_state = 4, .external_lex_state = 3}, + [1669] = {.lex_state = 4, .external_lex_state = 3}, + [1670] = {.lex_state = 4, .external_lex_state = 3}, + [1671] = {.lex_state = 4, .external_lex_state = 3}, + [1672] = {.lex_state = 4, .external_lex_state = 3}, + [1673] = {.lex_state = 4, .external_lex_state = 3}, + [1674] = {.lex_state = 4, .external_lex_state = 3}, + [1675] = {.lex_state = 4, .external_lex_state = 3}, + [1676] = {.lex_state = 4, .external_lex_state = 3}, + [1677] = {.lex_state = 15, .external_lex_state = 3}, + [1678] = {.lex_state = 0, .external_lex_state = 3}, + [1679] = {.lex_state = 4, .external_lex_state = 3}, + [1680] = {.lex_state = 4, .external_lex_state = 3}, + [1681] = {.lex_state = 18, .external_lex_state = 3}, + [1682] = {.lex_state = 4, .external_lex_state = 3}, + [1683] = {.lex_state = 4, .external_lex_state = 3}, + [1684] = {.lex_state = 18, .external_lex_state = 3}, + [1685] = {.lex_state = 18, .external_lex_state = 3}, + [1686] = {.lex_state = 4, .external_lex_state = 3}, + [1687] = {.lex_state = 4, .external_lex_state = 3}, + [1688] = {.lex_state = 4, .external_lex_state = 3}, + [1689] = {.lex_state = 4, .external_lex_state = 3}, + [1690] = {.lex_state = 9, .external_lex_state = 3}, + [1691] = {.lex_state = 4, .external_lex_state = 3}, + [1692] = {.lex_state = 4, .external_lex_state = 3}, + [1693] = {.lex_state = 4, .external_lex_state = 3}, + [1694] = {.lex_state = 13, .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 = 4, .external_lex_state = 3}, + [1699] = {.lex_state = 4, .external_lex_state = 3}, + [1700] = {.lex_state = 4, .external_lex_state = 3}, + [1701] = {.lex_state = 4, .external_lex_state = 3}, + [1702] = {.lex_state = 0, .external_lex_state = 3}, + [1703] = {.lex_state = 9, .external_lex_state = 3}, + [1704] = {.lex_state = 4, .external_lex_state = 3}, + [1705] = {.lex_state = 0, .external_lex_state = 3}, + [1706] = {.lex_state = 0, .external_lex_state = 3}, + [1707] = {.lex_state = 58, .external_lex_state = 3}, + [1708] = {.lex_state = 4, .external_lex_state = 3}, + [1709] = {.lex_state = 58, .external_lex_state = 3}, + [1710] = {.lex_state = 4, .external_lex_state = 3}, + [1711] = {.lex_state = 0, .external_lex_state = 3}, + [1712] = {.lex_state = 0, .external_lex_state = 3}, + [1713] = {.lex_state = 4, .external_lex_state = 3}, [1714] = {.lex_state = 4, .external_lex_state = 3}, - [1715] = {.lex_state = 10, .external_lex_state = 3}, - [1716] = {.lex_state = 10, .external_lex_state = 3}, - [1717] = {.lex_state = 7, .external_lex_state = 3}, - [1718] = {.lex_state = 18, .external_lex_state = 3}, - [1719] = {.lex_state = 18, .external_lex_state = 3}, - [1720] = {.lex_state = 7, .external_lex_state = 3}, - [1721] = {.lex_state = 14, .external_lex_state = 3}, - [1722] = {.lex_state = 7, .external_lex_state = 3}, - [1723] = {.lex_state = 7, .external_lex_state = 3}, - [1724] = {.lex_state = 7, .external_lex_state = 3}, - [1725] = {.lex_state = 7, .external_lex_state = 3}, - [1726] = {.lex_state = 7, .external_lex_state = 3}, - [1727] = {.lex_state = 7, .external_lex_state = 3}, - [1728] = {.lex_state = 7, .external_lex_state = 3}, + [1715] = {.lex_state = 18, .external_lex_state = 3}, + [1716] = {.lex_state = 4, .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 = 4, .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 = 18, .external_lex_state = 3}, [1729] = {.lex_state = 4, .external_lex_state = 3}, - [1730] = {.lex_state = 18, .external_lex_state = 3}, - [1731] = {.lex_state = 7, .external_lex_state = 3}, - [1732] = {.lex_state = 7, .external_lex_state = 3}, - [1733] = {.lex_state = 7, .external_lex_state = 3}, - [1734] = {.lex_state = 7, .external_lex_state = 3}, - [1735] = {.lex_state = 7, .external_lex_state = 3}, - [1736] = {.lex_state = 58, .external_lex_state = 3}, - [1737] = {.lex_state = 7, .external_lex_state = 3}, - [1738] = {.lex_state = 10, .external_lex_state = 3}, - [1739] = {.lex_state = 10, .external_lex_state = 3}, - [1740] = {.lex_state = 0, .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 = 18, .external_lex_state = 3}, + [1734] = {.lex_state = 0, .external_lex_state = 3}, + [1735] = {.lex_state = 18, .external_lex_state = 3}, + [1736] = {.lex_state = 9, .external_lex_state = 3}, + [1737] = {.lex_state = 58, .external_lex_state = 3}, + [1738] = {.lex_state = 18, .external_lex_state = 3}, + [1739] = {.lex_state = 4, .external_lex_state = 3}, + [1740] = {.lex_state = 4, .external_lex_state = 3}, [1741] = {.lex_state = 18, .external_lex_state = 3}, [1742] = {.lex_state = 0, .external_lex_state = 3}, - [1743] = {.lex_state = 18, .external_lex_state = 3}, - [1744] = {.lex_state = 7, .external_lex_state = 3}, - [1745] = {.lex_state = 10, .external_lex_state = 3}, - [1746] = {.lex_state = 10, .external_lex_state = 3}, - [1747] = {.lex_state = 18, .external_lex_state = 3}, - [1748] = {.lex_state = 7, .external_lex_state = 3}, - [1749] = {.lex_state = 7, .external_lex_state = 3}, - [1750] = {.lex_state = 4, .external_lex_state = 3}, - [1751] = {.lex_state = 7, .external_lex_state = 3}, + [1743] = {.lex_state = 58, .external_lex_state = 3}, + [1744] = {.lex_state = 9, .external_lex_state = 3}, + [1745] = {.lex_state = 9, .external_lex_state = 3}, + [1746] = {.lex_state = 0, .external_lex_state = 3}, + [1747] = {.lex_state = 0, .external_lex_state = 3}, + [1748] = {.lex_state = 18, .external_lex_state = 3}, + [1749] = {.lex_state = 18, .external_lex_state = 3}, + [1750] = {.lex_state = 18, .external_lex_state = 3}, + [1751] = {.lex_state = 4, .external_lex_state = 3}, [1752] = {.lex_state = 18, .external_lex_state = 3}, [1753] = {.lex_state = 0, .external_lex_state = 3}, - [1754] = {.lex_state = 58, .external_lex_state = 3}, - [1755] = {.lex_state = 18, .external_lex_state = 3}, - [1756] = {.lex_state = 7, .external_lex_state = 3}, - [1757] = {.lex_state = 0, .external_lex_state = 3}, + [1754] = {.lex_state = 18, .external_lex_state = 3}, + [1755] = {.lex_state = 9, .external_lex_state = 3}, + [1756] = {.lex_state = 18, .external_lex_state = 3}, + [1757] = {.lex_state = 4, .external_lex_state = 3}, [1758] = {.lex_state = 0, .external_lex_state = 3}, - [1759] = {.lex_state = 18, .external_lex_state = 3}, - [1760] = {.lex_state = 10, .external_lex_state = 3}, - [1761] = {.lex_state = 10, .external_lex_state = 3}, - [1762] = {.lex_state = 18, .external_lex_state = 3}, - [1763] = {.lex_state = 0, .external_lex_state = 3}, - [1764] = {.lex_state = 18, .external_lex_state = 3}, - [1765] = {.lex_state = 7, .external_lex_state = 3}, - [1766] = {.lex_state = 7, .external_lex_state = 3}, - [1767] = {.lex_state = 7, .external_lex_state = 3}, - [1768] = {.lex_state = 18, .external_lex_state = 3}, - [1769] = {.lex_state = 0, .external_lex_state = 3}, - [1770] = {.lex_state = 7, .external_lex_state = 3}, - [1771] = {.lex_state = 0, .external_lex_state = 3}, - [1772] = {.lex_state = 18, .external_lex_state = 3}, - [1773] = {.lex_state = 7, .external_lex_state = 3}, - [1774] = {.lex_state = 7, .external_lex_state = 3}, - [1775] = {.lex_state = 7, .external_lex_state = 3}, - [1776] = {.lex_state = 7, .external_lex_state = 3}, - [1777] = {.lex_state = 7, .external_lex_state = 3}, - [1778] = {.lex_state = 7, .external_lex_state = 3}, - [1779] = {.lex_state = 18, .external_lex_state = 3}, - [1780] = {.lex_state = 58, .external_lex_state = 3}, - [1781] = {.lex_state = 0, .external_lex_state = 3}, + [1759] = {.lex_state = 0, .external_lex_state = 3}, + [1760] = {.lex_state = 18, .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 = 9, .external_lex_state = 3}, + [1766] = {.lex_state = 4, .external_lex_state = 3}, + [1767] = {.lex_state = 0, .external_lex_state = 3}, + [1768] = {.lex_state = 4, .external_lex_state = 3}, + [1769] = {.lex_state = 4, .external_lex_state = 3}, + [1770] = {.lex_state = 4, .external_lex_state = 3}, + [1771] = {.lex_state = 4, .external_lex_state = 3}, + [1772] = {.lex_state = 4, .external_lex_state = 3}, + [1773] = {.lex_state = 4, .external_lex_state = 3}, + [1774] = {.lex_state = 4, .external_lex_state = 3}, + [1775] = {.lex_state = 4, .external_lex_state = 3}, + [1776] = {.lex_state = 18, .external_lex_state = 3}, + [1777] = {.lex_state = 4, .external_lex_state = 3}, + [1778] = {.lex_state = 9, .external_lex_state = 3}, + [1779] = {.lex_state = 4, .external_lex_state = 3}, + [1780] = {.lex_state = 4, .external_lex_state = 3}, + [1781] = {.lex_state = 4, .external_lex_state = 3}, [1782] = {.lex_state = 18, .external_lex_state = 3}, - [1783] = {.lex_state = 4, .external_lex_state = 3}, - [1784] = {.lex_state = 58, .external_lex_state = 3}, - [1785] = {.lex_state = 58, .external_lex_state = 3}, - [1786] = {.lex_state = 19, .external_lex_state = 3}, - [1787] = {.lex_state = 7, .external_lex_state = 3}, - [1788] = {.lex_state = 58, .external_lex_state = 3}, - [1789] = {.lex_state = 19, .external_lex_state = 3}, - [1790] = {.lex_state = 7, .external_lex_state = 3}, - [1791] = {.lex_state = 7, .external_lex_state = 3}, - [1792] = {.lex_state = 0, .external_lex_state = 3}, - [1793] = {.lex_state = 7, .external_lex_state = 3}, - [1794] = {.lex_state = 10, .external_lex_state = 3}, - [1795] = {.lex_state = 7, .external_lex_state = 3}, - [1796] = {.lex_state = 18, .external_lex_state = 3}, - [1797] = {.lex_state = 0, .external_lex_state = 3}, - [1798] = {.lex_state = 10, .external_lex_state = 3}, - [1799] = {.lex_state = 58, .external_lex_state = 3}, - [1800] = {.lex_state = 58, .external_lex_state = 3}, - [1801] = {.lex_state = 7, .external_lex_state = 3}, - [1802] = {.lex_state = 0, .external_lex_state = 3}, - [1803] = {.lex_state = 0, .external_lex_state = 3}, - [1804] = {.lex_state = 58, .external_lex_state = 3}, - [1805] = {.lex_state = 19, .external_lex_state = 3}, + [1783] = {.lex_state = 0, .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 = 4}, + [1787] = {.lex_state = 4, .external_lex_state = 3}, + [1788] = {.lex_state = 19, .external_lex_state = 3}, + [1789] = {.lex_state = 4, .external_lex_state = 3}, + [1790] = {.lex_state = 18, .external_lex_state = 3}, + [1791] = {.lex_state = 4, .external_lex_state = 3}, + [1792] = {.lex_state = 19, .external_lex_state = 3}, + [1793] = {.lex_state = 4, .external_lex_state = 4}, + [1794] = {.lex_state = 4, .external_lex_state = 3}, + [1795] = {.lex_state = 0, .external_lex_state = 3}, + [1796] = {.lex_state = 58, .external_lex_state = 3}, + [1797] = {.lex_state = 18, .external_lex_state = 3}, + [1798] = {.lex_state = 58, .external_lex_state = 3}, + [1799] = {.lex_state = 19, .external_lex_state = 3}, + [1800] = {.lex_state = 4, .external_lex_state = 3}, + [1801] = {.lex_state = 58, .external_lex_state = 3}, + [1802] = {.lex_state = 19, .external_lex_state = 3}, + [1803] = {.lex_state = 18, .external_lex_state = 3}, + [1804] = {.lex_state = 4, .external_lex_state = 3}, + [1805] = {.lex_state = 4, .external_lex_state = 3}, [1806] = {.lex_state = 58, .external_lex_state = 3}, [1807] = {.lex_state = 58, .external_lex_state = 3}, - [1808] = {.lex_state = 58, .external_lex_state = 3}, + [1808] = {.lex_state = 0, .external_lex_state = 3}, [1809] = {.lex_state = 0, .external_lex_state = 3}, - [1810] = {.lex_state = 58, .external_lex_state = 3}, + [1810] = {.lex_state = 18, .external_lex_state = 3}, [1811] = {.lex_state = 58, .external_lex_state = 3}, [1812] = {.lex_state = 4, .external_lex_state = 4}, - [1813] = {.lex_state = 58, .external_lex_state = 3}, - [1814] = {.lex_state = 7, .external_lex_state = 3}, - [1815] = {.lex_state = 58, .external_lex_state = 3}, - [1816] = {.lex_state = 18, .external_lex_state = 3}, - [1817] = {.lex_state = 18, .external_lex_state = 3}, - [1818] = {.lex_state = 4, .external_lex_state = 4}, - [1819] = {.lex_state = 19, .external_lex_state = 3}, + [1813] = {.lex_state = 0, .external_lex_state = 3}, + [1814] = {.lex_state = 0, .external_lex_state = 3}, + [1815] = {.lex_state = 4, .external_lex_state = 4}, + [1816] = {.lex_state = 0, .external_lex_state = 3}, + [1817] = {.lex_state = 4, .external_lex_state = 4}, + [1818] = {.lex_state = 4, .external_lex_state = 3}, + [1819] = {.lex_state = 0, .external_lex_state = 3}, [1820] = {.lex_state = 58, .external_lex_state = 3}, [1821] = {.lex_state = 58, .external_lex_state = 3}, - [1822] = {.lex_state = 0, .external_lex_state = 3}, - [1823] = {.lex_state = 58, .external_lex_state = 3}, - [1824] = {.lex_state = 7, .external_lex_state = 3}, + [1822] = {.lex_state = 58, .external_lex_state = 3}, + [1823] = {.lex_state = 0, .external_lex_state = 3}, + [1824] = {.lex_state = 4, .external_lex_state = 4}, [1825] = {.lex_state = 58, .external_lex_state = 3}, [1826] = {.lex_state = 18, .external_lex_state = 3}, - [1827] = {.lex_state = 7, .external_lex_state = 3}, - [1828] = {.lex_state = 0, .external_lex_state = 3}, - [1829] = {.lex_state = 7, .external_lex_state = 3}, - [1830] = {.lex_state = 0, .external_lex_state = 3}, - [1831] = {.lex_state = 7, .external_lex_state = 3}, - [1832] = {.lex_state = 4, .external_lex_state = 4}, - [1833] = {.lex_state = 7, .external_lex_state = 3}, - [1834] = {.lex_state = 58, .external_lex_state = 3}, - [1835] = {.lex_state = 0, .external_lex_state = 3}, - [1836] = {.lex_state = 4, .external_lex_state = 4}, - [1837] = {.lex_state = 4, .external_lex_state = 3}, - [1838] = {.lex_state = 4, .external_lex_state = 4}, - [1839] = {.lex_state = 0, .external_lex_state = 3}, - [1840] = {.lex_state = 58, .external_lex_state = 3}, - [1841] = {.lex_state = 7, .external_lex_state = 3}, - [1842] = {.lex_state = 0, .external_lex_state = 3}, - [1843] = {.lex_state = 58, .external_lex_state = 3}, - [1844] = {.lex_state = 0, .external_lex_state = 3}, - [1845] = {.lex_state = 7, .external_lex_state = 3}, + [1827] = {.lex_state = 0, .external_lex_state = 3}, + [1828] = {.lex_state = 4, .external_lex_state = 3}, + [1829] = {.lex_state = 58, .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 = 58, .external_lex_state = 3}, + [1834] = {.lex_state = 4, .external_lex_state = 3}, + [1835] = {.lex_state = 58, .external_lex_state = 3}, + [1836] = {.lex_state = 58, .external_lex_state = 3}, + [1837] = {.lex_state = 58, .external_lex_state = 3}, + [1838] = {.lex_state = 58, .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 = 4, .external_lex_state = 3}, + [1844] = {.lex_state = 4, .external_lex_state = 3}, + [1845] = {.lex_state = 4, .external_lex_state = 3}, [1846] = {.lex_state = 0, .external_lex_state = 3}, - [1847] = {.lex_state = 4, .external_lex_state = 3}, - [1848] = {.lex_state = 18, .external_lex_state = 3}, - [1849] = {.lex_state = 4, .external_lex_state = 4}, - [1850] = {.lex_state = 4, .external_lex_state = 3}, - [1851] = {.lex_state = 7, .external_lex_state = 3}, - [1852] = {.lex_state = 7, .external_lex_state = 3}, - [1853] = {.lex_state = 7, .external_lex_state = 3}, + [1847] = {.lex_state = 18, .external_lex_state = 3}, + [1848] = {.lex_state = 58, .external_lex_state = 3}, + [1849] = {.lex_state = 58, .external_lex_state = 3}, + [1850] = {.lex_state = 58, .external_lex_state = 3}, + [1851] = {.lex_state = 58, .external_lex_state = 3}, + [1852] = {.lex_state = 4, .external_lex_state = 3}, + [1853] = {.lex_state = 4, .external_lex_state = 3}, [1854] = {.lex_state = 58, .external_lex_state = 3}, - [1855] = {.lex_state = 18, .external_lex_state = 3}, - [1856] = {.lex_state = 58, .external_lex_state = 3}, - [1857] = {.lex_state = 7, .external_lex_state = 3}, - [1858] = {.lex_state = 58, .external_lex_state = 3}, - [1859] = {.lex_state = 0, .external_lex_state = 3}, - [1860] = {.lex_state = 4, .external_lex_state = 4}, - [1861] = {.lex_state = 7, .external_lex_state = 3}, + [1855] = {.lex_state = 9, .external_lex_state = 3}, + [1856] = {.lex_state = 4, .external_lex_state = 3}, + [1857] = {.lex_state = 18, .external_lex_state = 3}, + [1858] = {.lex_state = 0, .external_lex_state = 3}, + [1859] = {.lex_state = 18, .external_lex_state = 3}, + [1860] = {.lex_state = 9, .external_lex_state = 3}, + [1861] = {.lex_state = 58, .external_lex_state = 3}, [1862] = {.lex_state = 58, .external_lex_state = 3}, - [1863] = {.lex_state = 0, .external_lex_state = 3}, - [1864] = {.lex_state = 7, .external_lex_state = 3}, - [1865] = {.lex_state = 18, .external_lex_state = 3}, - [1866] = {.lex_state = 7, .external_lex_state = 3}, - [1867] = {.lex_state = 0, .external_lex_state = 3}, - [1868] = {.lex_state = 7, .external_lex_state = 3}, - [1869] = {.lex_state = 58, .external_lex_state = 3}, - [1870] = {.lex_state = 7, .external_lex_state = 3}, - [1871] = {.lex_state = 18, .external_lex_state = 3}, - [1872] = {.lex_state = 7, .external_lex_state = 3}, - [1873] = {.lex_state = 18, .external_lex_state = 3}, - [1874] = {.lex_state = 0, .external_lex_state = 3}, - [1875] = {.lex_state = 58, .external_lex_state = 3}, + [1863] = {.lex_state = 4, .external_lex_state = 3}, + [1864] = {.lex_state = 0, .external_lex_state = 3}, + [1865] = {.lex_state = 4, .external_lex_state = 4}, + [1866] = {.lex_state = 4, .external_lex_state = 3}, + [1867] = {.lex_state = 18, .external_lex_state = 3}, + [1868] = {.lex_state = 0, .external_lex_state = 3}, + [1869] = {.lex_state = 18, .external_lex_state = 3}, + [1870] = {.lex_state = 58, .external_lex_state = 3}, + [1871] = {.lex_state = 4, .external_lex_state = 3}, + [1872] = {.lex_state = 0, .external_lex_state = 3}, + [1873] = {.lex_state = 0, .external_lex_state = 3}, + [1874] = {.lex_state = 58, .external_lex_state = 3}, + [1875] = {.lex_state = 4, .external_lex_state = 4}, [1876] = {.lex_state = 0, .external_lex_state = 3}, - [1877] = {.lex_state = 58, .external_lex_state = 3}, - [1878] = {.lex_state = 4, .external_lex_state = 4}, + [1877] = {.lex_state = 0, .external_lex_state = 3}, + [1878] = {.lex_state = 58, .external_lex_state = 3}, [1879] = {.lex_state = 58, .external_lex_state = 3}, - [1880] = {.lex_state = 4, .external_lex_state = 4}, + [1880] = {.lex_state = 0, .external_lex_state = 3}, [1881] = {.lex_state = 0, .external_lex_state = 3}, - [1882] = {.lex_state = 58, .external_lex_state = 3}, - [1883] = {.lex_state = 10, .external_lex_state = 3}, - [1884] = {.lex_state = 58, .external_lex_state = 3}, - [1885] = {.lex_state = 0, .external_lex_state = 3}, - [1886] = {.lex_state = 7, .external_lex_state = 3}, - [1887] = {.lex_state = 3, .external_lex_state = 3}, - [1888] = {.lex_state = 7, .external_lex_state = 3}, - [1889] = {.lex_state = 0, .external_lex_state = 3}, + [1882] = {.lex_state = 18, .external_lex_state = 3}, + [1883] = {.lex_state = 4, .external_lex_state = 3}, + [1884] = {.lex_state = 0, .external_lex_state = 3}, + [1885] = {.lex_state = 4, .external_lex_state = 3}, + [1886] = {.lex_state = 58, .external_lex_state = 3}, + [1887] = {.lex_state = 58, .external_lex_state = 3}, + [1888] = {.lex_state = 4, .external_lex_state = 3}, + [1889] = {.lex_state = 4, .external_lex_state = 4}, [1890] = {.lex_state = 0, .external_lex_state = 3}, [1891] = {.lex_state = 0, .external_lex_state = 3}, - [1892] = {.lex_state = 0, .external_lex_state = 3}, - [1893] = {.lex_state = 3, .external_lex_state = 3}, - [1894] = {.lex_state = 58, .external_lex_state = 3}, - [1895] = {.lex_state = 58, .external_lex_state = 3}, - [1896] = {.lex_state = 58, .external_lex_state = 3}, - [1897] = {.lex_state = 0, .external_lex_state = 3}, - [1898] = {.lex_state = 0, .external_lex_state = 3}, + [1892] = {.lex_state = 58, .external_lex_state = 3}, + [1893] = {.lex_state = 4, .external_lex_state = 3}, + [1894] = {.lex_state = 0, .external_lex_state = 3}, + [1895] = {.lex_state = 9, .external_lex_state = 3}, + [1896] = {.lex_state = 0, .external_lex_state = 3}, + [1897] = {.lex_state = 4, .external_lex_state = 3}, + [1898] = {.lex_state = 4, .external_lex_state = 3}, [1899] = {.lex_state = 0, .external_lex_state = 3}, - [1900] = {.lex_state = 58, .external_lex_state = 3}, - [1901] = {.lex_state = 3, .external_lex_state = 3}, - [1902] = {.lex_state = 3, .external_lex_state = 3}, + [1900] = {.lex_state = 0, .external_lex_state = 3}, + [1901] = {.lex_state = 58, .external_lex_state = 3}, + [1902] = {.lex_state = 58, .external_lex_state = 3}, [1903] = {.lex_state = 0, .external_lex_state = 3}, [1904] = {.lex_state = 58, .external_lex_state = 3}, - [1905] = {.lex_state = 58, .external_lex_state = 3}, - [1906] = {.lex_state = 0, .external_lex_state = 3}, - [1907] = {.lex_state = 0, .external_lex_state = 3}, - [1908] = {.lex_state = 0, .external_lex_state = 3}, - [1909] = {.lex_state = 0, .external_lex_state = 3}, + [1905] = {.lex_state = 0, .external_lex_state = 3}, + [1906] = {.lex_state = 58, .external_lex_state = 3}, + [1907] = {.lex_state = 58, .external_lex_state = 3}, + [1908] = {.lex_state = 58, .external_lex_state = 3}, + [1909] = {.lex_state = 4, .external_lex_state = 3}, [1910] = {.lex_state = 0, .external_lex_state = 3}, - [1911] = {.lex_state = 3, .external_lex_state = 3}, - [1912] = {.lex_state = 0, .external_lex_state = 3}, - [1913] = {.lex_state = 0, .external_lex_state = 3}, - [1914] = {.lex_state = 7, .external_lex_state = 3}, - [1915] = {.lex_state = 0, .external_lex_state = 3}, - [1916] = {.lex_state = 0, .external_lex_state = 3}, - [1917] = {.lex_state = 3, .external_lex_state = 3}, - [1918] = {.lex_state = 3, .external_lex_state = 3}, - [1919] = {.lex_state = 58, .external_lex_state = 3}, + [1911] = {.lex_state = 58, .external_lex_state = 3}, + [1912] = {.lex_state = 4, .external_lex_state = 3}, + [1913] = {.lex_state = 58, .external_lex_state = 3}, + [1914] = {.lex_state = 0, .external_lex_state = 3}, + [1915] = {.lex_state = 58, .external_lex_state = 3}, + [1916] = {.lex_state = 58, .external_lex_state = 3}, + [1917] = {.lex_state = 0, .external_lex_state = 3}, + [1918] = {.lex_state = 58, .external_lex_state = 3}, + [1919] = {.lex_state = 4, .external_lex_state = 3}, [1920] = {.lex_state = 0, .external_lex_state = 3}, - [1921] = {.lex_state = 7, .external_lex_state = 3}, + [1921] = {.lex_state = 58, .external_lex_state = 3}, [1922] = {.lex_state = 0, .external_lex_state = 3}, [1923] = {.lex_state = 0, .external_lex_state = 3}, [1924] = {.lex_state = 0, .external_lex_state = 3}, - [1925] = {.lex_state = 0, .external_lex_state = 3}, + [1925] = {.lex_state = 4, .external_lex_state = 3}, [1926] = {.lex_state = 0, .external_lex_state = 3}, - [1927] = {.lex_state = 7, .external_lex_state = 3}, - [1928] = {.lex_state = 58, .external_lex_state = 3}, + [1927] = {.lex_state = 0, .external_lex_state = 3}, + [1928] = {.lex_state = 4, .external_lex_state = 3}, [1929] = {.lex_state = 0, .external_lex_state = 3}, - [1930] = {.lex_state = 58, .external_lex_state = 3}, - [1931] = {.lex_state = 58, .external_lex_state = 3}, - [1932] = {.lex_state = 7, .external_lex_state = 3}, - [1933] = {.lex_state = 0, .external_lex_state = 3}, - [1934] = {.lex_state = 7, .external_lex_state = 3}, - [1935] = {.lex_state = 4, .external_lex_state = 3}, - [1936] = {.lex_state = 0, .external_lex_state = 3}, - [1937] = {.lex_state = 3, .external_lex_state = 3}, - [1938] = {.lex_state = 3, .external_lex_state = 3}, - [1939] = {.lex_state = 58, .external_lex_state = 3}, - [1940] = {.lex_state = 0, .external_lex_state = 3}, - [1941] = {.lex_state = 7, .external_lex_state = 3}, - [1942] = {.lex_state = 0, .external_lex_state = 3}, - [1943] = {.lex_state = 0, .external_lex_state = 3}, - [1944] = {.lex_state = 0, .external_lex_state = 3}, + [1930] = {.lex_state = 0, .external_lex_state = 3}, + [1931] = {.lex_state = 0, .external_lex_state = 3}, + [1932] = {.lex_state = 58, .external_lex_state = 3}, + [1933] = {.lex_state = 58, .external_lex_state = 3}, + [1934] = {.lex_state = 58, .external_lex_state = 3}, + [1935] = {.lex_state = 0, .external_lex_state = 3}, + [1936] = {.lex_state = 9, .external_lex_state = 3}, + [1937] = {.lex_state = 0, .external_lex_state = 3}, + [1938] = {.lex_state = 0, .external_lex_state = 3}, + [1939] = {.lex_state = 0, .external_lex_state = 3}, + [1940] = {.lex_state = 4, .external_lex_state = 3}, + [1941] = {.lex_state = 0, .external_lex_state = 3}, + [1942] = {.lex_state = 58, .external_lex_state = 3}, + [1943] = {.lex_state = 18, .external_lex_state = 3}, + [1944] = {.lex_state = 58, .external_lex_state = 3}, [1945] = {.lex_state = 0, .external_lex_state = 3}, - [1946] = {.lex_state = 58, .external_lex_state = 3}, - [1947] = {.lex_state = 3, .external_lex_state = 3}, - [1948] = {.lex_state = 0, .external_lex_state = 3}, + [1946] = {.lex_state = 4, .external_lex_state = 3}, + [1947] = {.lex_state = 58, .external_lex_state = 3}, + [1948] = {.lex_state = 58, .external_lex_state = 3}, [1949] = {.lex_state = 0, .external_lex_state = 3}, [1950] = {.lex_state = 0, .external_lex_state = 3}, [1951] = {.lex_state = 0, .external_lex_state = 3}, - [1952] = {.lex_state = 7, .external_lex_state = 3}, - [1953] = {.lex_state = 7, .external_lex_state = 3}, + [1952] = {.lex_state = 58, .external_lex_state = 3}, + [1953] = {.lex_state = 0, .external_lex_state = 3}, [1954] = {.lex_state = 0, .external_lex_state = 3}, [1955] = {.lex_state = 0, .external_lex_state = 3}, - [1956] = {.lex_state = 58, .external_lex_state = 3}, + [1956] = {.lex_state = 4, .external_lex_state = 3}, [1957] = {.lex_state = 0, .external_lex_state = 3}, [1958] = {.lex_state = 0, .external_lex_state = 3}, [1959] = {.lex_state = 0, .external_lex_state = 3}, [1960] = {.lex_state = 0, .external_lex_state = 3}, - [1961] = {.lex_state = 10, .external_lex_state = 3}, + [1961] = {.lex_state = 0, .external_lex_state = 3}, [1962] = {.lex_state = 58, .external_lex_state = 3}, - [1963] = {.lex_state = 0, .external_lex_state = 3}, - [1964] = {.lex_state = 58, .external_lex_state = 3}, - [1965] = {.lex_state = 0, .external_lex_state = 3}, - [1966] = {.lex_state = 7, .external_lex_state = 3}, + [1963] = {.lex_state = 58, .external_lex_state = 3}, + [1964] = {.lex_state = 0, .external_lex_state = 3}, + [1965] = {.lex_state = 58, .external_lex_state = 3}, + [1966] = {.lex_state = 0, .external_lex_state = 3}, [1967] = {.lex_state = 0, .external_lex_state = 3}, - [1968] = {.lex_state = 0, .external_lex_state = 3}, - [1969] = {.lex_state = 0, .external_lex_state = 3}, - [1970] = {.lex_state = 0, .external_lex_state = 3}, + [1968] = {.lex_state = 4, .external_lex_state = 3}, + [1969] = {.lex_state = 58, .external_lex_state = 3}, + [1970] = {.lex_state = 4, .external_lex_state = 3}, [1971] = {.lex_state = 0, .external_lex_state = 3}, [1972] = {.lex_state = 0, .external_lex_state = 3}, [1973] = {.lex_state = 0, .external_lex_state = 3}, [1974] = {.lex_state = 0, .external_lex_state = 3}, - [1975] = {.lex_state = 10, .external_lex_state = 3}, + [1975] = {.lex_state = 0, .external_lex_state = 3}, [1976] = {.lex_state = 0, .external_lex_state = 3}, [1977] = {.lex_state = 0, .external_lex_state = 3}, - [1978] = {.lex_state = 10, .external_lex_state = 3}, - [1979] = {.lex_state = 58, .external_lex_state = 3}, + [1978] = {.lex_state = 58, .external_lex_state = 3}, + [1979] = {.lex_state = 4, .external_lex_state = 3}, [1980] = {.lex_state = 0, .external_lex_state = 3}, - [1981] = {.lex_state = 58, .external_lex_state = 3}, + [1981] = {.lex_state = 0, .external_lex_state = 3}, [1982] = {.lex_state = 58, .external_lex_state = 3}, - [1983] = {.lex_state = 0, .external_lex_state = 3}, - [1984] = {.lex_state = 58, .external_lex_state = 3}, - [1985] = {.lex_state = 0, .external_lex_state = 3}, - [1986] = {.lex_state = 58, .external_lex_state = 3}, - [1987] = {.lex_state = 0, .external_lex_state = 3}, - [1988] = {.lex_state = 3, .external_lex_state = 3}, + [1983] = {.lex_state = 58, .external_lex_state = 3}, + [1984] = {.lex_state = 0, .external_lex_state = 3}, + [1985] = {.lex_state = 4, .external_lex_state = 3}, + [1986] = {.lex_state = 3, .external_lex_state = 3}, + [1987] = {.lex_state = 3, .external_lex_state = 3}, + [1988] = {.lex_state = 0, .external_lex_state = 3}, [1989] = {.lex_state = 0, .external_lex_state = 3}, - [1990] = {.lex_state = 3, .external_lex_state = 3}, + [1990] = {.lex_state = 58, .external_lex_state = 3}, [1991] = {.lex_state = 58, .external_lex_state = 3}, - [1992] = {.lex_state = 4, .external_lex_state = 3}, - [1993] = {.lex_state = 3, .external_lex_state = 3}, - [1994] = {.lex_state = 3, .external_lex_state = 3}, + [1992] = {.lex_state = 0, .external_lex_state = 3}, + [1993] = {.lex_state = 0, .external_lex_state = 3}, + [1994] = {.lex_state = 0, .external_lex_state = 3}, [1995] = {.lex_state = 0, .external_lex_state = 3}, - [1996] = {.lex_state = 58, .external_lex_state = 3}, - [1997] = {.lex_state = 58, .external_lex_state = 3}, - [1998] = {.lex_state = 0, .external_lex_state = 3}, - [1999] = {.lex_state = 0, .external_lex_state = 3}, - [2000] = {.lex_state = 58, .external_lex_state = 3}, + [1996] = {.lex_state = 9, .external_lex_state = 3}, + [1997] = {.lex_state = 0, .external_lex_state = 3}, + [1998] = {.lex_state = 3, .external_lex_state = 3}, + [1999] = {.lex_state = 3, .external_lex_state = 3}, + [2000] = {.lex_state = 3, .external_lex_state = 3}, [2001] = {.lex_state = 0, .external_lex_state = 3}, - [2002] = {.lex_state = 0, .external_lex_state = 3}, + [2002] = {.lex_state = 3, .external_lex_state = 3}, [2003] = {.lex_state = 0, .external_lex_state = 3}, - [2004] = {.lex_state = 58, .external_lex_state = 3}, - [2005] = {.lex_state = 10, .external_lex_state = 3}, - [2006] = {.lex_state = 58, .external_lex_state = 3}, + [2004] = {.lex_state = 3, .external_lex_state = 3}, + [2005] = {.lex_state = 4, .external_lex_state = 3}, + [2006] = {.lex_state = 0, .external_lex_state = 3}, [2007] = {.lex_state = 0, .external_lex_state = 3}, [2008] = {.lex_state = 3, .external_lex_state = 3}, - [2009] = {.lex_state = 0, .external_lex_state = 3}, - [2010] = {.lex_state = 0, .external_lex_state = 3}, + [2009] = {.lex_state = 3, .external_lex_state = 3}, + [2010] = {.lex_state = 3, .external_lex_state = 3}, [2011] = {.lex_state = 0, .external_lex_state = 3}, - [2012] = {.lex_state = 3, .external_lex_state = 3}, - [2013] = {.lex_state = 0, .external_lex_state = 3}, + [2012] = {.lex_state = 0, .external_lex_state = 3}, + [2013] = {.lex_state = 58, .external_lex_state = 3}, [2014] = {.lex_state = 0, .external_lex_state = 3}, - [2015] = {.lex_state = 7, .external_lex_state = 3}, + [2015] = {.lex_state = 4, .external_lex_state = 3}, [2016] = {.lex_state = 58, .external_lex_state = 3}, - [2017] = {.lex_state = 0, .external_lex_state = 3}, - [2018] = {.lex_state = 0, .external_lex_state = 3}, + [2017] = {.lex_state = 3, .external_lex_state = 3}, + [2018] = {.lex_state = 58, .external_lex_state = 3}, [2019] = {.lex_state = 0, .external_lex_state = 3}, [2020] = {.lex_state = 0, .external_lex_state = 3}, - [2021] = {.lex_state = 58, .external_lex_state = 3}, - [2022] = {.lex_state = 0, .external_lex_state = 3}, + [2021] = {.lex_state = 3, .external_lex_state = 3}, + [2022] = {.lex_state = 58, .external_lex_state = 3}, [2023] = {.lex_state = 0, .external_lex_state = 3}, - [2024] = {.lex_state = 0, .external_lex_state = 3}, - [2025] = {.lex_state = 58, .external_lex_state = 3}, - [2026] = {.lex_state = 0, .external_lex_state = 3}, - [2027] = {.lex_state = 0, .external_lex_state = 3}, - [2028] = {.lex_state = 0, .external_lex_state = 3}, - [2029] = {.lex_state = 7, .external_lex_state = 3}, - [2030] = {.lex_state = 0, .external_lex_state = 3}, - [2031] = {.lex_state = 0, .external_lex_state = 3}, - [2032] = {.lex_state = 0, .external_lex_state = 3}, + [2024] = {.lex_state = 3, .external_lex_state = 3}, + [2025] = {.lex_state = 4, .external_lex_state = 3}, + [2026] = {.lex_state = 3, .external_lex_state = 3}, + [2027] = {.lex_state = 4, .external_lex_state = 3}, + [2028] = {.lex_state = 3, .external_lex_state = 3}, + [2029] = {.lex_state = 58, .external_lex_state = 3}, + [2030] = {.lex_state = 58, .external_lex_state = 3}, + [2031] = {.lex_state = 4, .external_lex_state = 3}, + [2032] = {.lex_state = 58, .external_lex_state = 3}, [2033] = {.lex_state = 3, .external_lex_state = 3}, - [2034] = {.lex_state = 0, .external_lex_state = 3}, - [2035] = {.lex_state = 0, .external_lex_state = 3}, - [2036] = {.lex_state = 0, .external_lex_state = 3}, + [2034] = {.lex_state = 58, .external_lex_state = 3}, + [2035] = {.lex_state = 58, .external_lex_state = 3}, + [2036] = {.lex_state = 58, .external_lex_state = 3}, [2037] = {.lex_state = 58, .external_lex_state = 3}, - [2038] = {.lex_state = 58, .external_lex_state = 3}, - [2039] = {.lex_state = 0, .external_lex_state = 3}, - [2040] = {.lex_state = 0, .external_lex_state = 3}, - [2041] = {.lex_state = 0, .external_lex_state = 3}, - [2042] = {.lex_state = 0, .external_lex_state = 3}, - [2043] = {.lex_state = 58, .external_lex_state = 3}, + [2038] = {.lex_state = 0, .external_lex_state = 3}, + [2039] = {.lex_state = 58, .external_lex_state = 3}, + [2040] = {.lex_state = 3, .external_lex_state = 3}, + [2041] = {.lex_state = 3, .external_lex_state = 3}, + [2042] = {.lex_state = 58, .external_lex_state = 3}, + [2043] = {.lex_state = 0, .external_lex_state = 3}, [2044] = {.lex_state = 58, .external_lex_state = 3}, - [2045] = {.lex_state = 58, .external_lex_state = 3}, + [2045] = {.lex_state = 4, .external_lex_state = 3}, [2046] = {.lex_state = 0, .external_lex_state = 3}, [2047] = {.lex_state = 58, .external_lex_state = 3}, [2048] = {.lex_state = 0, .external_lex_state = 3}, - [2049] = {.lex_state = 58, .external_lex_state = 3}, + [2049] = {.lex_state = 0, .external_lex_state = 3}, [2050] = {.lex_state = 0, .external_lex_state = 3}, - [2051] = {.lex_state = 0, .external_lex_state = 3}, + [2051] = {.lex_state = 58, .external_lex_state = 3}, [2052] = {.lex_state = 0, .external_lex_state = 3}, - [2053] = {.lex_state = 0, .external_lex_state = 3}, - [2054] = {.lex_state = 3, .external_lex_state = 3}, - [2055] = {.lex_state = 58, .external_lex_state = 3}, + [2053] = {.lex_state = 4, .external_lex_state = 3}, + [2054] = {.lex_state = 0, .external_lex_state = 3}, + [2055] = {.lex_state = 0, .external_lex_state = 3}, [2056] = {.lex_state = 58, .external_lex_state = 3}, - [2057] = {.lex_state = 0, .external_lex_state = 3}, + [2057] = {.lex_state = 58, .external_lex_state = 3}, [2058] = {.lex_state = 0, .external_lex_state = 3}, - [2059] = {.lex_state = 58, .external_lex_state = 3}, - [2060] = {.lex_state = 0, .external_lex_state = 3}, - [2061] = {.lex_state = 58, .external_lex_state = 3}, - [2062] = {.lex_state = 7, .external_lex_state = 3}, - [2063] = {.lex_state = 58, .external_lex_state = 3}, - [2064] = {.lex_state = 0, .external_lex_state = 3}, + [2059] = {.lex_state = 0, .external_lex_state = 3}, + [2060] = {.lex_state = 4, .external_lex_state = 3}, + [2061] = {.lex_state = 9, .external_lex_state = 3}, + [2062] = {.lex_state = 0, .external_lex_state = 3}, + [2063] = {.lex_state = 0, .external_lex_state = 3}, + [2064] = {.lex_state = 58, .external_lex_state = 3}, [2065] = {.lex_state = 0, .external_lex_state = 3}, [2066] = {.lex_state = 0, .external_lex_state = 3}, - [2067] = {.lex_state = 7, .external_lex_state = 3}, - [2068] = {.lex_state = 7, .external_lex_state = 3}, - [2069] = {.lex_state = 0, .external_lex_state = 3}, - [2070] = {.lex_state = 7, .external_lex_state = 3}, - [2071] = {.lex_state = 7, .external_lex_state = 3}, + [2067] = {.lex_state = 0, .external_lex_state = 3}, + [2068] = {.lex_state = 0, .external_lex_state = 3}, + [2069] = {.lex_state = 58, .external_lex_state = 3}, + [2070] = {.lex_state = 0, .external_lex_state = 3}, + [2071] = {.lex_state = 0, .external_lex_state = 3}, [2072] = {.lex_state = 0, .external_lex_state = 3}, [2073] = {.lex_state = 0, .external_lex_state = 3}, - [2074] = {.lex_state = 7, .external_lex_state = 3}, - [2075] = {.lex_state = 58, .external_lex_state = 3}, + [2074] = {.lex_state = 0, .external_lex_state = 3}, + [2075] = {.lex_state = 0, .external_lex_state = 3}, [2076] = {.lex_state = 58, .external_lex_state = 3}, - [2077] = {.lex_state = 0, .external_lex_state = 3}, + [2077] = {.lex_state = 58, .external_lex_state = 3}, [2078] = {.lex_state = 0, .external_lex_state = 3}, [2079] = {.lex_state = 0, .external_lex_state = 3}, - [2080] = {.lex_state = 58, .external_lex_state = 3}, - [2081] = {.lex_state = 0, .external_lex_state = 3}, - [2082] = {.lex_state = 7, .external_lex_state = 3}, - [2083] = {.lex_state = 7, .external_lex_state = 3}, + [2080] = {.lex_state = 3, .external_lex_state = 3}, + [2081] = {.lex_state = 3, .external_lex_state = 3}, + [2082] = {.lex_state = 0, .external_lex_state = 3}, + [2083] = {.lex_state = 0, .external_lex_state = 3}, [2084] = {.lex_state = 0, .external_lex_state = 3}, - [2085] = {.lex_state = 58, .external_lex_state = 3}, - [2086] = {.lex_state = 58, .external_lex_state = 3}, + [2085] = {.lex_state = 0, .external_lex_state = 3}, + [2086] = {.lex_state = 0, .external_lex_state = 3}, [2087] = {.lex_state = 0, .external_lex_state = 3}, - [2088] = {.lex_state = 58, .external_lex_state = 3}, - [2089] = {.lex_state = 58, .external_lex_state = 3}, - [2090] = {.lex_state = 58, .external_lex_state = 3}, + [2088] = {.lex_state = 0, .external_lex_state = 3}, + [2089] = {.lex_state = 0, .external_lex_state = 3}, + [2090] = {.lex_state = 0, .external_lex_state = 3}, [2091] = {.lex_state = 0, .external_lex_state = 3}, [2092] = {.lex_state = 0, .external_lex_state = 3}, - [2093] = {.lex_state = 7, .external_lex_state = 3}, - [2094] = {.lex_state = 58, .external_lex_state = 3}, + [2093] = {.lex_state = 0, .external_lex_state = 3}, + [2094] = {.lex_state = 0, .external_lex_state = 3}, [2095] = {.lex_state = 0, .external_lex_state = 3}, - [2096] = {.lex_state = 0, .external_lex_state = 3}, + [2096] = {.lex_state = 58, .external_lex_state = 3}, [2097] = {.lex_state = 0, .external_lex_state = 3}, [2098] = {.lex_state = 0, .external_lex_state = 3}, [2099] = {.lex_state = 0, .external_lex_state = 3}, [2100] = {.lex_state = 0, .external_lex_state = 3}, - [2101] = {.lex_state = 58, .external_lex_state = 3}, + [2101] = {.lex_state = 0, .external_lex_state = 3}, [2102] = {.lex_state = 58, .external_lex_state = 3}, [2103] = {.lex_state = 0, .external_lex_state = 3}, - [2104] = {.lex_state = 0, .external_lex_state = 3}, + [2104] = {.lex_state = 58, .external_lex_state = 3}, [2105] = {.lex_state = 0, .external_lex_state = 3}, - [2106] = {.lex_state = 7, .external_lex_state = 3}, + [2106] = {.lex_state = 58, .external_lex_state = 3}, [2107] = {.lex_state = 0, .external_lex_state = 3}, - [2108] = {.lex_state = 58, .external_lex_state = 3}, + [2108] = {.lex_state = 0, .external_lex_state = 3}, [2109] = {.lex_state = 0, .external_lex_state = 3}, - [2110] = {.lex_state = 0, .external_lex_state = 3}, + [2110] = {.lex_state = 58, .external_lex_state = 3}, [2111] = {.lex_state = 0, .external_lex_state = 3}, [2112] = {.lex_state = 0, .external_lex_state = 3}, - [2113] = {.lex_state = 58, .external_lex_state = 3}, + [2113] = {.lex_state = 0, .external_lex_state = 3}, [2114] = {.lex_state = 0, .external_lex_state = 3}, - [2115] = {.lex_state = 0, .external_lex_state = 3}, - [2116] = {.lex_state = 0, .external_lex_state = 3}, + [2115] = {.lex_state = 9, .external_lex_state = 3}, + [2116] = {.lex_state = 58, .external_lex_state = 3}, [2117] = {.lex_state = 0, .external_lex_state = 3}, - [2118] = {.lex_state = 0, .external_lex_state = 3}, - [2119] = {.lex_state = 58, .external_lex_state = 3}, - [2120] = {.lex_state = 58, .external_lex_state = 3}, - [2121] = {.lex_state = 7, .external_lex_state = 3}, - [2122] = {.lex_state = 3, .external_lex_state = 3}, - [2123] = {.lex_state = 7, .external_lex_state = 3}, - [2124] = {.lex_state = 0, .external_lex_state = 3}, + [2118] = {.lex_state = 58, .external_lex_state = 3}, + [2119] = {.lex_state = 0, .external_lex_state = 3}, + [2120] = {.lex_state = 0, .external_lex_state = 3}, + [2121] = {.lex_state = 0, .external_lex_state = 3}, + [2122] = {.lex_state = 4, .external_lex_state = 3}, + [2123] = {.lex_state = 4, .external_lex_state = 3}, + [2124] = {.lex_state = 58, .external_lex_state = 3}, [2125] = {.lex_state = 0, .external_lex_state = 3}, [2126] = {.lex_state = 0, .external_lex_state = 3}, - [2127] = {.lex_state = 3, .external_lex_state = 3}, + [2127] = {.lex_state = 0, .external_lex_state = 3}, [2128] = {.lex_state = 0, .external_lex_state = 3}, [2129] = {.lex_state = 0, .external_lex_state = 3}, [2130] = {.lex_state = 0, .external_lex_state = 3}, - [2131] = {.lex_state = 18, .external_lex_state = 3}, - [2132] = {.lex_state = 58, .external_lex_state = 3}, - [2133] = {.lex_state = 58, .external_lex_state = 3}, - [2134] = {.lex_state = 58, .external_lex_state = 3}, - [2135] = {.lex_state = 0, .external_lex_state = 3}, - [2136] = {.lex_state = 0, .external_lex_state = 3}, - [2137] = {.lex_state = 58, .external_lex_state = 3}, - [2138] = {.lex_state = 58, .external_lex_state = 3}, - [2139] = {.lex_state = 0, .external_lex_state = 3}, - [2140] = {.lex_state = 0, .external_lex_state = 3}, - [2141] = {.lex_state = 58, .external_lex_state = 3}, - [2142] = {.lex_state = 0, .external_lex_state = 3}, - [2143] = {.lex_state = 58, .external_lex_state = 3}, - [2144] = {.lex_state = 0, .external_lex_state = 3}, + [2131] = {.lex_state = 0, .external_lex_state = 3}, + [2132] = {.lex_state = 0, .external_lex_state = 3}, + [2133] = {.lex_state = 0, .external_lex_state = 3}, + [2134] = {.lex_state = 0, .external_lex_state = 3}, + [2135] = {.lex_state = 58, .external_lex_state = 3}, + [2136] = {.lex_state = 58, .external_lex_state = 3}, + [2137] = {.lex_state = 0, .external_lex_state = 3}, + [2138] = {.lex_state = 0, .external_lex_state = 3}, + [2139] = {.lex_state = 4, .external_lex_state = 3}, + [2140] = {.lex_state = 58, .external_lex_state = 3}, + [2141] = {.lex_state = 0, .external_lex_state = 3}, + [2142] = {.lex_state = 58, .external_lex_state = 3}, + [2143] = {.lex_state = 0, .external_lex_state = 3}, + [2144] = {.lex_state = 4, .external_lex_state = 3}, [2145] = {.lex_state = 0, .external_lex_state = 3}, [2146] = {.lex_state = 0, .external_lex_state = 3}, [2147] = {.lex_state = 0, .external_lex_state = 3}, [2148] = {.lex_state = 0, .external_lex_state = 3}, - [2149] = {.lex_state = 0, .external_lex_state = 3}, - [2150] = {.lex_state = 58, .external_lex_state = 3}, + [2149] = {.lex_state = 58, .external_lex_state = 3}, + [2150] = {.lex_state = 0, .external_lex_state = 3}, [2151] = {.lex_state = 0, .external_lex_state = 3}, [2152] = {.lex_state = 0, .external_lex_state = 3}, [2153] = {.lex_state = 0, .external_lex_state = 3}, @@ -14212,415 +15521,431 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2155] = {.lex_state = 0, .external_lex_state = 3}, [2156] = {.lex_state = 0, .external_lex_state = 3}, [2157] = {.lex_state = 0, .external_lex_state = 3}, - [2158] = {.lex_state = 7, .external_lex_state = 3}, - [2159] = {.lex_state = 7, .external_lex_state = 3}, + [2158] = {.lex_state = 0, .external_lex_state = 3}, + [2159] = {.lex_state = 4, .external_lex_state = 3}, [2160] = {.lex_state = 0, .external_lex_state = 3}, [2161] = {.lex_state = 0, .external_lex_state = 3}, [2162] = {.lex_state = 0, .external_lex_state = 3}, - [2163] = {.lex_state = 0, .external_lex_state = 3}, - [2164] = {.lex_state = 7, .external_lex_state = 3}, - [2165] = {.lex_state = 0, .external_lex_state = 3}, + [2163] = {.lex_state = 4, .external_lex_state = 3}, + [2164] = {.lex_state = 0, .external_lex_state = 3}, + [2165] = {.lex_state = 4, .external_lex_state = 3}, [2166] = {.lex_state = 0, .external_lex_state = 3}, [2167] = {.lex_state = 0, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, [2169] = {.lex_state = 4, .external_lex_state = 3}, [2170] = {.lex_state = 0, .external_lex_state = 3}, - [2171] = {.lex_state = 58, .external_lex_state = 3}, - [2172] = {.lex_state = 0, .external_lex_state = 3}, + [2171] = {.lex_state = 0, .external_lex_state = 3}, + [2172] = {.lex_state = 58, .external_lex_state = 3}, [2173] = {.lex_state = 0, .external_lex_state = 3}, [2174] = {.lex_state = 0, .external_lex_state = 3}, [2175] = {.lex_state = 0, .external_lex_state = 3}, [2176] = {.lex_state = 0, .external_lex_state = 3}, [2177] = {.lex_state = 0, .external_lex_state = 3}, - [2178] = {.lex_state = 7, .external_lex_state = 3}, - [2179] = {.lex_state = 58, .external_lex_state = 3}, - [2180] = {.lex_state = 0, .external_lex_state = 3}, - [2181] = {.lex_state = 7, .external_lex_state = 3}, + [2178] = {.lex_state = 58, .external_lex_state = 3}, + [2179] = {.lex_state = 4, .external_lex_state = 3}, + [2180] = {.lex_state = 58, .external_lex_state = 3}, + [2181] = {.lex_state = 58, .external_lex_state = 3}, [2182] = {.lex_state = 0, .external_lex_state = 3}, [2183] = {.lex_state = 0, .external_lex_state = 3}, - [2184] = {.lex_state = 58, .external_lex_state = 3}, + [2184] = {.lex_state = 4, .external_lex_state = 3}, [2185] = {.lex_state = 58, .external_lex_state = 3}, [2186] = {.lex_state = 0, .external_lex_state = 3}, [2187] = {.lex_state = 58, .external_lex_state = 3}, [2188] = {.lex_state = 0, .external_lex_state = 3}, - [2189] = {.lex_state = 0, .external_lex_state = 3}, - [2190] = {.lex_state = 7, .external_lex_state = 3}, - [2191] = {.lex_state = 58, .external_lex_state = 3}, + [2189] = {.lex_state = 4, .external_lex_state = 3}, + [2190] = {.lex_state = 58, .external_lex_state = 3}, + [2191] = {.lex_state = 0, .external_lex_state = 3}, [2192] = {.lex_state = 0, .external_lex_state = 3}, - [2193] = {.lex_state = 7, .external_lex_state = 3}, + [2193] = {.lex_state = 4, .external_lex_state = 3}, [2194] = {.lex_state = 0, .external_lex_state = 3}, [2195] = {.lex_state = 0, .external_lex_state = 3}, - [2196] = {.lex_state = 7, .external_lex_state = 3}, - [2197] = {.lex_state = 58, .external_lex_state = 3}, - [2198] = {.lex_state = 4, .external_lex_state = 3}, - [2199] = {.lex_state = 58, .external_lex_state = 3}, - [2200] = {.lex_state = 0, .external_lex_state = 3}, + [2196] = {.lex_state = 58, .external_lex_state = 3}, + [2197] = {.lex_state = 0, .external_lex_state = 3}, + [2198] = {.lex_state = 0, .external_lex_state = 3}, + [2199] = {.lex_state = 0, .external_lex_state = 3}, + [2200] = {.lex_state = 4, .external_lex_state = 3}, [2201] = {.lex_state = 0, .external_lex_state = 3}, [2202] = {.lex_state = 0, .external_lex_state = 3}, - [2203] = {.lex_state = 0, .external_lex_state = 3}, + [2203] = {.lex_state = 58, .external_lex_state = 3}, [2204] = {.lex_state = 0, .external_lex_state = 3}, - [2205] = {.lex_state = 58, .external_lex_state = 3}, - [2206] = {.lex_state = 0, .external_lex_state = 3}, + [2205] = {.lex_state = 0, .external_lex_state = 3}, + [2206] = {.lex_state = 58, .external_lex_state = 3}, [2207] = {.lex_state = 0, .external_lex_state = 3}, - [2208] = {.lex_state = 58, .external_lex_state = 3}, - [2209] = {.lex_state = 7, .external_lex_state = 3}, - [2210] = {.lex_state = 58, .external_lex_state = 3}, + [2208] = {.lex_state = 0, .external_lex_state = 3}, + [2209] = {.lex_state = 18, .external_lex_state = 3}, + [2210] = {.lex_state = 18, .external_lex_state = 3}, [2211] = {.lex_state = 0, .external_lex_state = 3}, [2212] = {.lex_state = 58, .external_lex_state = 3}, - [2213] = {.lex_state = 0, .external_lex_state = 3}, - [2214] = {.lex_state = 0, .external_lex_state = 3}, - [2215] = {.lex_state = 0, .external_lex_state = 3}, - [2216] = {.lex_state = 7, .external_lex_state = 3}, + [2213] = {.lex_state = 4, .external_lex_state = 3}, + [2214] = {.lex_state = 4, .external_lex_state = 3}, + [2215] = {.lex_state = 4, .external_lex_state = 3}, + [2216] = {.lex_state = 0, .external_lex_state = 3}, [2217] = {.lex_state = 0, .external_lex_state = 3}, [2218] = {.lex_state = 0, .external_lex_state = 3}, [2219] = {.lex_state = 0, .external_lex_state = 3}, [2220] = {.lex_state = 0, .external_lex_state = 3}, - [2221] = {.lex_state = 18, .external_lex_state = 3}, - [2222] = {.lex_state = 0, .external_lex_state = 3}, - [2223] = {.lex_state = 58, .external_lex_state = 3}, - [2224] = {.lex_state = 0, .external_lex_state = 3}, + [2221] = {.lex_state = 0, .external_lex_state = 3}, + [2222] = {.lex_state = 4, .external_lex_state = 3}, + [2223] = {.lex_state = 0, .external_lex_state = 3}, + [2224] = {.lex_state = 4, .external_lex_state = 3}, [2225] = {.lex_state = 0, .external_lex_state = 3}, - [2226] = {.lex_state = 7, .external_lex_state = 3}, - [2227] = {.lex_state = 58, .external_lex_state = 3}, - [2228] = {.lex_state = 7, .external_lex_state = 3}, - [2229] = {.lex_state = 58, .external_lex_state = 3}, - [2230] = {.lex_state = 0, .external_lex_state = 3}, - [2231] = {.lex_state = 58, .external_lex_state = 3}, - [2232] = {.lex_state = 0, .external_lex_state = 3}, - [2233] = {.lex_state = 58, .external_lex_state = 3}, - [2234] = {.lex_state = 0, .external_lex_state = 3}, + [2226] = {.lex_state = 58, .external_lex_state = 3}, + [2227] = {.lex_state = 0, .external_lex_state = 3}, + [2228] = {.lex_state = 58, .external_lex_state = 3}, + [2229] = {.lex_state = 0, .external_lex_state = 3}, + [2230] = {.lex_state = 18, .external_lex_state = 3}, + [2231] = {.lex_state = 0, .external_lex_state = 3}, + [2232] = {.lex_state = 58, .external_lex_state = 3}, + [2233] = {.lex_state = 18, .external_lex_state = 3}, + [2234] = {.lex_state = 4, .external_lex_state = 3}, [2235] = {.lex_state = 0, .external_lex_state = 3}, - [2236] = {.lex_state = 58, .external_lex_state = 3}, + [2236] = {.lex_state = 18, .external_lex_state = 3}, [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 0, .external_lex_state = 3}, - [2239] = {.lex_state = 0, .external_lex_state = 3}, + [2238] = {.lex_state = 58, .external_lex_state = 3}, + [2239] = {.lex_state = 58, .external_lex_state = 3}, [2240] = {.lex_state = 0, .external_lex_state = 3}, [2241] = {.lex_state = 0, .external_lex_state = 3}, [2242] = {.lex_state = 0, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, [2244] = {.lex_state = 0, .external_lex_state = 3}, - [2245] = {.lex_state = 7, .external_lex_state = 3}, + [2245] = {.lex_state = 58, .external_lex_state = 3}, [2246] = {.lex_state = 0, .external_lex_state = 3}, - [2247] = {.lex_state = 58, .external_lex_state = 3}, - [2248] = {.lex_state = 0, .external_lex_state = 3}, - [2249] = {.lex_state = 0, .external_lex_state = 3}, + [2247] = {.lex_state = 0, .external_lex_state = 3}, + [2248] = {.lex_state = 4, .external_lex_state = 3}, + [2249] = {.lex_state = 4, .external_lex_state = 3}, [2250] = {.lex_state = 0, .external_lex_state = 3}, [2251] = {.lex_state = 0, .external_lex_state = 3}, [2252] = {.lex_state = 0, .external_lex_state = 3}, [2253] = {.lex_state = 0, .external_lex_state = 3}, [2254] = {.lex_state = 0, .external_lex_state = 3}, - [2255] = {.lex_state = 58, .external_lex_state = 3}, + [2255] = {.lex_state = 0, .external_lex_state = 3}, [2256] = {.lex_state = 0, .external_lex_state = 3}, [2257] = {.lex_state = 0, .external_lex_state = 3}, [2258] = {.lex_state = 0, .external_lex_state = 3}, [2259] = {.lex_state = 0, .external_lex_state = 3}, - [2260] = {.lex_state = 0, .external_lex_state = 3}, - [2261] = {.lex_state = 58, .external_lex_state = 3}, + [2260] = {.lex_state = 58, .external_lex_state = 3}, + [2261] = {.lex_state = 0, .external_lex_state = 3}, [2262] = {.lex_state = 0, .external_lex_state = 3}, [2263] = {.lex_state = 0, .external_lex_state = 3}, [2264] = {.lex_state = 0, .external_lex_state = 3}, - [2265] = {.lex_state = 7, .external_lex_state = 3}, + [2265] = {.lex_state = 0, .external_lex_state = 3}, [2266] = {.lex_state = 0, .external_lex_state = 3}, [2267] = {.lex_state = 58, .external_lex_state = 3}, - [2268] = {.lex_state = 0, .external_lex_state = 5}, + [2268] = {.lex_state = 0, .external_lex_state = 3}, [2269] = {.lex_state = 0, .external_lex_state = 3}, [2270] = {.lex_state = 0, .external_lex_state = 3}, - [2271] = {.lex_state = 58, .external_lex_state = 3}, + [2271] = {.lex_state = 4, .external_lex_state = 3}, [2272] = {.lex_state = 0, .external_lex_state = 3}, - [2273] = {.lex_state = 58, .external_lex_state = 3}, - [2274] = {.lex_state = 0, .external_lex_state = 3}, - [2275] = {.lex_state = 7, .external_lex_state = 3}, - [2276] = {.lex_state = 7, .external_lex_state = 3}, + [2273] = {.lex_state = 0, .external_lex_state = 3}, + [2274] = {.lex_state = 58, .external_lex_state = 3}, + [2275] = {.lex_state = 0, .external_lex_state = 3}, + [2276] = {.lex_state = 4, .external_lex_state = 3}, [2277] = {.lex_state = 0, .external_lex_state = 3}, - [2278] = {.lex_state = 7, .external_lex_state = 3}, + [2278] = {.lex_state = 0, .external_lex_state = 3}, [2279] = {.lex_state = 0, .external_lex_state = 3}, - [2280] = {.lex_state = 58, .external_lex_state = 3}, + [2280] = {.lex_state = 0, .external_lex_state = 3}, [2281] = {.lex_state = 0, .external_lex_state = 3}, [2282] = {.lex_state = 0, .external_lex_state = 3}, [2283] = {.lex_state = 0, .external_lex_state = 3}, - [2284] = {.lex_state = 7, .external_lex_state = 3}, - [2285] = {.lex_state = 7, .external_lex_state = 3}, - [2286] = {.lex_state = 7, .external_lex_state = 3}, - [2287] = {.lex_state = 0, .external_lex_state = 3}, - [2288] = {.lex_state = 18, .external_lex_state = 3}, + [2284] = {.lex_state = 0, .external_lex_state = 3}, + [2285] = {.lex_state = 0, .external_lex_state = 3}, + [2286] = {.lex_state = 0, .external_lex_state = 3}, + [2287] = {.lex_state = 0, .external_lex_state = 5}, + [2288] = {.lex_state = 0, .external_lex_state = 3}, [2289] = {.lex_state = 0, .external_lex_state = 3}, [2290] = {.lex_state = 0, .external_lex_state = 3}, [2291] = {.lex_state = 0, .external_lex_state = 3}, [2292] = {.lex_state = 0, .external_lex_state = 3}, - [2293] = {.lex_state = 0, .external_lex_state = 3}, - [2294] = {.lex_state = 0, .external_lex_state = 3}, - [2295] = {.lex_state = 0, .external_lex_state = 3}, + [2293] = {.lex_state = 4, .external_lex_state = 3}, + [2294] = {.lex_state = 4, .external_lex_state = 3}, + [2295] = {.lex_state = 58, .external_lex_state = 3}, [2296] = {.lex_state = 0, .external_lex_state = 3}, - [2297] = {.lex_state = 18, .external_lex_state = 3}, - [2298] = {.lex_state = 18, .external_lex_state = 3}, + [2297] = {.lex_state = 58, .external_lex_state = 3}, + [2298] = {.lex_state = 0, .external_lex_state = 3}, [2299] = {.lex_state = 0, .external_lex_state = 3}, - [2300] = {.lex_state = 58, .external_lex_state = 3}, - [2301] = {.lex_state = 58, .external_lex_state = 3}, - [2302] = {.lex_state = 58, .external_lex_state = 3}, - [2303] = {.lex_state = 0, .external_lex_state = 3}, + [2300] = {.lex_state = 0, .external_lex_state = 3}, + [2301] = {.lex_state = 0, .external_lex_state = 3}, + [2302] = {.lex_state = 0, .external_lex_state = 3}, + [2303] = {.lex_state = 58, .external_lex_state = 3}, [2304] = {.lex_state = 0, .external_lex_state = 3}, [2305] = {.lex_state = 0, .external_lex_state = 3}, - [2306] = {.lex_state = 18, .external_lex_state = 3}, - [2307] = {.lex_state = 7, .external_lex_state = 3}, - [2308] = {.lex_state = 0, .external_lex_state = 3}, + [2306] = {.lex_state = 58, .external_lex_state = 3}, + [2307] = {.lex_state = 4, .external_lex_state = 3}, + [2308] = {.lex_state = 58, .external_lex_state = 3}, [2309] = {.lex_state = 0, .external_lex_state = 3}, - [2310] = {.lex_state = 58, .external_lex_state = 3}, - [2311] = {.lex_state = 0, .external_lex_state = 3}, + [2310] = {.lex_state = 0, .external_lex_state = 3}, + [2311] = {.lex_state = 58, .external_lex_state = 3}, [2312] = {.lex_state = 0, .external_lex_state = 3}, [2313] = {.lex_state = 0, .external_lex_state = 3}, [2314] = {.lex_state = 58, .external_lex_state = 3}, [2315] = {.lex_state = 58, .external_lex_state = 3}, - [2316] = {.lex_state = 10, .external_lex_state = 3}, + [2316] = {.lex_state = 58, .external_lex_state = 3}, [2317] = {.lex_state = 0, .external_lex_state = 3}, - [2318] = {.lex_state = 58, .external_lex_state = 3}, - [2319] = {.lex_state = 58, .external_lex_state = 3}, - [2320] = {.lex_state = 58, .external_lex_state = 3}, - [2321] = {.lex_state = 7, .external_lex_state = 3}, - [2322] = {.lex_state = 0, .external_lex_state = 3}, + [2318] = {.lex_state = 4, .external_lex_state = 3}, + [2319] = {.lex_state = 0, .external_lex_state = 3}, + [2320] = {.lex_state = 0, .external_lex_state = 3}, + [2321] = {.lex_state = 18, .external_lex_state = 3}, + [2322] = {.lex_state = 58, .external_lex_state = 3}, [2323] = {.lex_state = 0, .external_lex_state = 3}, - [2324] = {.lex_state = 7, .external_lex_state = 3}, + [2324] = {.lex_state = 0, .external_lex_state = 3}, [2325] = {.lex_state = 0, .external_lex_state = 3}, [2326] = {.lex_state = 0, .external_lex_state = 3}, [2327] = {.lex_state = 0, .external_lex_state = 3}, [2328] = {.lex_state = 0, .external_lex_state = 3}, [2329] = {.lex_state = 0, .external_lex_state = 3}, - [2330] = {.lex_state = 0, .external_lex_state = 3}, - [2331] = {.lex_state = 0, .external_lex_state = 3}, - [2332] = {.lex_state = 7, .external_lex_state = 3}, - [2333] = {.lex_state = 18, .external_lex_state = 3}, - [2334] = {.lex_state = 0, .external_lex_state = 3}, - [2335] = {.lex_state = 0, .external_lex_state = 3}, + [2330] = {.lex_state = 58, .external_lex_state = 3}, + [2331] = {.lex_state = 58, .external_lex_state = 3}, + [2332] = {.lex_state = 0, .external_lex_state = 3}, + [2333] = {.lex_state = 0, .external_lex_state = 3}, + [2334] = {.lex_state = 4, .external_lex_state = 3}, + [2335] = {.lex_state = 4, .external_lex_state = 3}, [2336] = {.lex_state = 0, .external_lex_state = 3}, - [2337] = {.lex_state = 7, .external_lex_state = 3}, + [2337] = {.lex_state = 9, .external_lex_state = 3}, [2338] = {.lex_state = 0, .external_lex_state = 3}, - [2339] = {.lex_state = 7, .external_lex_state = 3}, - [2340] = {.lex_state = 0, .external_lex_state = 3}, - [2341] = {.lex_state = 7, .external_lex_state = 3}, - [2342] = {.lex_state = 0, .external_lex_state = 3}, - [2343] = {.lex_state = 7, .external_lex_state = 3}, - [2344] = {.lex_state = 7, .external_lex_state = 3}, - [2345] = {.lex_state = 10, .external_lex_state = 3}, - [2346] = {.lex_state = 58, .external_lex_state = 3}, - [2347] = {.lex_state = 7, .external_lex_state = 3}, - [2348] = {.lex_state = 7, .external_lex_state = 3}, - [2349] = {.lex_state = 0, .external_lex_state = 3}, - [2350] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, - [2355] = {.lex_state = 7, .external_lex_state = 3}, - [2356] = {.lex_state = 0, .external_lex_state = 3}, - [2357] = {.lex_state = 0, .external_lex_state = 3}, - [2358] = {.lex_state = 0, .external_lex_state = 3}, - [2359] = {.lex_state = 0, .external_lex_state = 3}, - [2360] = {.lex_state = 0, .external_lex_state = 3}, - [2361] = {.lex_state = 7, .external_lex_state = 3}, - [2362] = {.lex_state = 0, .external_lex_state = 3}, + [2339] = {.lex_state = 0, .external_lex_state = 3}, + [2340] = {.lex_state = 4, .external_lex_state = 3}, + [2341] = {.lex_state = 58, .external_lex_state = 3}, + [2342] = {.lex_state = 58, .external_lex_state = 3}, + [2343] = {.lex_state = 58, .external_lex_state = 3}, + [2344] = {.lex_state = 4, .external_lex_state = 3}, + [2345] = {.lex_state = 0, .external_lex_state = 3}, + [2346] = {.lex_state = 0, .external_lex_state = 3}, + [2347] = {.lex_state = 4, .external_lex_state = 3}, + [2348] = {.lex_state = 4, .external_lex_state = 3}, + [2349] = {.lex_state = 4, .external_lex_state = 3}, + [2350] = {.lex_state = 4, .external_lex_state = 3}, + [2351] = {.lex_state = 4, .external_lex_state = 3}, + [2352] = {.lex_state = 0, .external_lex_state = 3}, + [2353] = {.lex_state = 0, .external_lex_state = 3}, + [2354] = {.lex_state = 4, .external_lex_state = 3}, + [2355] = {.lex_state = 4, .external_lex_state = 3}, + [2356] = {.lex_state = 4, .external_lex_state = 3}, + [2357] = {.lex_state = 4, .external_lex_state = 3}, + [2358] = {.lex_state = 4, .external_lex_state = 3}, + [2359] = {.lex_state = 4, .external_lex_state = 3}, + [2360] = {.lex_state = 4, .external_lex_state = 3}, + [2361] = {.lex_state = 4, .external_lex_state = 3}, + [2362] = {.lex_state = 4, .external_lex_state = 3}, [2363] = {.lex_state = 0, .external_lex_state = 3}, - [2364] = {.lex_state = 7, .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 = 10, .external_lex_state = 3}, - [2369] = {.lex_state = 0, .external_lex_state = 3}, - [2370] = {.lex_state = 0, .external_lex_state = 3}, + [2364] = {.lex_state = 4, .external_lex_state = 3}, + [2365] = {.lex_state = 4, .external_lex_state = 3}, + [2366] = {.lex_state = 0, .external_lex_state = 3}, + [2367] = {.lex_state = 0, .external_lex_state = 3}, + [2368] = {.lex_state = 4, .external_lex_state = 3}, + [2369] = {.lex_state = 4, .external_lex_state = 3}, + [2370] = {.lex_state = 9, .external_lex_state = 3}, [2371] = {.lex_state = 0, .external_lex_state = 3}, - [2372] = {.lex_state = 0, .external_lex_state = 3}, - [2373] = {.lex_state = 7, .external_lex_state = 3}, - [2374] = {.lex_state = 10, .external_lex_state = 3}, - [2375] = {.lex_state = 7, .external_lex_state = 3}, - [2376] = {.lex_state = 7, .external_lex_state = 3}, - [2377] = {.lex_state = 7, .external_lex_state = 3}, - [2378] = {.lex_state = 7, .external_lex_state = 3}, - [2379] = {.lex_state = 7, .external_lex_state = 3}, - [2380] = {.lex_state = 0, .external_lex_state = 3}, - [2381] = {.lex_state = 7, .external_lex_state = 3}, - [2382] = {.lex_state = 0, .external_lex_state = 3}, - [2383] = {.lex_state = 7, .external_lex_state = 3}, - [2384] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, - [2389] = {.lex_state = 7, .external_lex_state = 3}, - [2390] = {.lex_state = 10, .external_lex_state = 3}, - [2391] = {.lex_state = 7, .external_lex_state = 3}, - [2392] = {.lex_state = 7, .external_lex_state = 3}, + [2372] = {.lex_state = 4, .external_lex_state = 3}, + [2373] = {.lex_state = 58, .external_lex_state = 3}, + [2374] = {.lex_state = 4, .external_lex_state = 3}, + [2375] = {.lex_state = 0, .external_lex_state = 3}, + [2376] = {.lex_state = 4, .external_lex_state = 3}, + [2377] = {.lex_state = 4, .external_lex_state = 3}, + [2378] = {.lex_state = 4, .external_lex_state = 3}, + [2379] = {.lex_state = 58, .external_lex_state = 3}, + [2380] = {.lex_state = 4, .external_lex_state = 3}, + [2381] = {.lex_state = 4, .external_lex_state = 3}, + [2382] = {.lex_state = 4, .external_lex_state = 3}, + [2383] = {.lex_state = 0, .external_lex_state = 3}, + [2384] = {.lex_state = 4, .external_lex_state = 3}, + [2385] = {.lex_state = 4, .external_lex_state = 3}, + [2386] = {.lex_state = 4, .external_lex_state = 3}, + [2387] = {.lex_state = 4, .external_lex_state = 3}, + [2388] = {.lex_state = 0, .external_lex_state = 3}, + [2389] = {.lex_state = 0, .external_lex_state = 3}, + [2390] = {.lex_state = 0, .external_lex_state = 3}, + [2391] = {.lex_state = 0, .external_lex_state = 3}, + [2392] = {.lex_state = 4, .external_lex_state = 3}, [2393] = {.lex_state = 0, .external_lex_state = 3}, - [2394] = {.lex_state = 7, .external_lex_state = 3}, - [2395] = {.lex_state = 7, .external_lex_state = 3}, + [2394] = {.lex_state = 4, .external_lex_state = 3}, + [2395] = {.lex_state = 0, .external_lex_state = 3}, [2396] = {.lex_state = 0, .external_lex_state = 3}, - [2397] = {.lex_state = 7, .external_lex_state = 3}, - [2398] = {.lex_state = 7, .external_lex_state = 3}, - [2399] = {.lex_state = 0, .external_lex_state = 3}, - [2400] = {.lex_state = 7, .external_lex_state = 3}, - [2401] = {.lex_state = 0, .external_lex_state = 3}, - [2402] = {.lex_state = 0, .external_lex_state = 3}, - [2403] = {.lex_state = 7, .external_lex_state = 3}, - [2404] = {.lex_state = 7, .external_lex_state = 3}, - [2405] = {.lex_state = 0, .external_lex_state = 3}, - [2406] = {.lex_state = 7, .external_lex_state = 3}, - [2407] = {.lex_state = 7, .external_lex_state = 3}, - [2408] = {.lex_state = 0, .external_lex_state = 3}, - [2409] = {.lex_state = 58, .external_lex_state = 3}, - [2410] = {.lex_state = 0, .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}, + [2397] = {.lex_state = 4, .external_lex_state = 3}, + [2398] = {.lex_state = 4, .external_lex_state = 3}, + [2399] = {.lex_state = 4, .external_lex_state = 3}, + [2400] = {.lex_state = 4, .external_lex_state = 3}, + [2401] = {.lex_state = 4, .external_lex_state = 3}, + [2402] = {.lex_state = 9, .external_lex_state = 3}, + [2403] = {.lex_state = 4, .external_lex_state = 3}, + [2404] = {.lex_state = 4, .external_lex_state = 3}, + [2405] = {.lex_state = 4, .external_lex_state = 3}, + [2406] = {.lex_state = 4, .external_lex_state = 3}, + [2407] = {.lex_state = 4, .external_lex_state = 3}, + [2408] = {.lex_state = 4, .external_lex_state = 3}, + [2409] = {.lex_state = 9, .external_lex_state = 3}, + [2410] = {.lex_state = 4, .external_lex_state = 3}, + [2411] = {.lex_state = 4, .external_lex_state = 3}, + [2412] = {.lex_state = 4, .external_lex_state = 3}, + [2413] = {.lex_state = 4, .external_lex_state = 3}, + [2414] = {.lex_state = 0, .external_lex_state = 3}, [2415] = {.lex_state = 0, .external_lex_state = 3}, [2416] = {.lex_state = 0, .external_lex_state = 3}, [2417] = {.lex_state = 0, .external_lex_state = 3}, - [2418] = {.lex_state = 0, .external_lex_state = 3}, - [2419] = {.lex_state = 0, .external_lex_state = 3}, - [2420] = {.lex_state = 7, .external_lex_state = 3}, - [2421] = {.lex_state = 0, .external_lex_state = 3}, - [2422] = {.lex_state = 0, .external_lex_state = 3}, - [2423] = {.lex_state = 0, .external_lex_state = 3}, - [2424] = {.lex_state = 0, .external_lex_state = 3}, - [2425] = {.lex_state = 0, .external_lex_state = 3}, - [2426] = {.lex_state = 7, .external_lex_state = 3}, - [2427] = {.lex_state = 0, .external_lex_state = 3}, - [2428] = {.lex_state = 0, .external_lex_state = 3}, - [2429] = {.lex_state = 58, .external_lex_state = 3}, - [2430] = {.lex_state = 7, .external_lex_state = 3}, + [2418] = {.lex_state = 4, .external_lex_state = 3}, + [2419] = {.lex_state = 4, .external_lex_state = 3}, + [2420] = {.lex_state = 4, .external_lex_state = 3}, + [2421] = {.lex_state = 4, .external_lex_state = 3}, + [2422] = {.lex_state = 4, .external_lex_state = 3}, + [2423] = {.lex_state = 4, .external_lex_state = 3}, + [2424] = {.lex_state = 4, .external_lex_state = 3}, + [2425] = {.lex_state = 58, .external_lex_state = 3}, + [2426] = {.lex_state = 0, .external_lex_state = 3}, + [2427] = {.lex_state = 4, .external_lex_state = 3}, + [2428] = {.lex_state = 4, .external_lex_state = 3}, + [2429] = {.lex_state = 4, .external_lex_state = 3}, + [2430] = {.lex_state = 4, .external_lex_state = 3}, [2431] = {.lex_state = 0, .external_lex_state = 3}, - [2432] = {.lex_state = 7, .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 = 3}, - [2436] = {.lex_state = 7, .external_lex_state = 3}, - [2437] = {.lex_state = 7, .external_lex_state = 3}, + [2432] = {.lex_state = 4, .external_lex_state = 3}, + [2433] = {.lex_state = 4, .external_lex_state = 3}, + [2434] = {.lex_state = 0, .external_lex_state = 3}, + [2435] = {.lex_state = 0, .external_lex_state = 3}, + [2436] = {.lex_state = 0, .external_lex_state = 3}, + [2437] = {.lex_state = 0, .external_lex_state = 3}, [2438] = {.lex_state = 0, .external_lex_state = 3}, [2439] = {.lex_state = 0, .external_lex_state = 3}, [2440] = {.lex_state = 0, .external_lex_state = 3}, - [2441] = {.lex_state = 7, .external_lex_state = 3}, - [2442] = {.lex_state = 0, .external_lex_state = 3}, - [2443] = {.lex_state = 7, .external_lex_state = 3}, + [2441] = {.lex_state = 0, .external_lex_state = 3}, + [2442] = {.lex_state = 4, .external_lex_state = 3}, + [2443] = {.lex_state = 4, .external_lex_state = 3}, [2444] = {.lex_state = 0, .external_lex_state = 3}, - [2445] = {.lex_state = 0, .external_lex_state = 3}, - [2446] = {.lex_state = 7, .external_lex_state = 3}, - [2447] = {.lex_state = 7, .external_lex_state = 3}, - [2448] = {.lex_state = 0, .external_lex_state = 3}, - [2449] = {.lex_state = 0, .external_lex_state = 3}, + [2445] = {.lex_state = 58, .external_lex_state = 3}, + [2446] = {.lex_state = 0, .external_lex_state = 3}, + [2447] = {.lex_state = 0, .external_lex_state = 3}, + [2448] = {.lex_state = 4, .external_lex_state = 3}, + [2449] = {.lex_state = 4, .external_lex_state = 3}, [2450] = {.lex_state = 0, .external_lex_state = 3}, - [2451] = {.lex_state = 10, .external_lex_state = 3}, - [2452] = {.lex_state = 7, .external_lex_state = 3}, + [2451] = {.lex_state = 4, .external_lex_state = 3}, + [2452] = {.lex_state = 0, .external_lex_state = 3}, [2453] = {.lex_state = 0, .external_lex_state = 3}, [2454] = {.lex_state = 0, .external_lex_state = 3}, - [2455] = {.lex_state = 7, .external_lex_state = 3}, + [2455] = {.lex_state = 0, .external_lex_state = 3}, [2456] = {.lex_state = 0, .external_lex_state = 3}, - [2457] = {.lex_state = 7, .external_lex_state = 3}, - [2458] = {.lex_state = 10, .external_lex_state = 3}, - [2459] = {.lex_state = 7, .external_lex_state = 3}, - [2460] = {.lex_state = 7, .external_lex_state = 3}, - [2461] = {.lex_state = 7, .external_lex_state = 3}, - [2462] = {.lex_state = 7, .external_lex_state = 3}, - [2463] = {.lex_state = 7, .external_lex_state = 3}, + [2457] = {.lex_state = 4, .external_lex_state = 3}, + [2458] = {.lex_state = 4, .external_lex_state = 3}, + [2459] = {.lex_state = 0, .external_lex_state = 3}, + [2460] = {.lex_state = 0, .external_lex_state = 3}, + [2461] = {.lex_state = 0, .external_lex_state = 3}, + [2462] = {.lex_state = 0, .external_lex_state = 3}, + [2463] = {.lex_state = 4, .external_lex_state = 3}, [2464] = {.lex_state = 0, .external_lex_state = 3}, - [2465] = {.lex_state = 0, .external_lex_state = 3}, - [2466] = {.lex_state = 7, .external_lex_state = 3}, - [2467] = {.lex_state = 7, .external_lex_state = 3}, - [2468] = {.lex_state = 0, .external_lex_state = 3}, - [2469] = {.lex_state = 7, .external_lex_state = 3}, - [2470] = {.lex_state = 58, .external_lex_state = 3}, + [2465] = {.lex_state = 4, .external_lex_state = 3}, + [2466] = {.lex_state = 0, .external_lex_state = 3}, + [2467] = {.lex_state = 4, .external_lex_state = 3}, + [2468] = {.lex_state = 4, .external_lex_state = 3}, + [2469] = {.lex_state = 0, .external_lex_state = 3}, + [2470] = {.lex_state = 0, .external_lex_state = 3}, [2471] = {.lex_state = 0, .external_lex_state = 3}, - [2472] = {.lex_state = 10, .external_lex_state = 3}, - [2473] = {.lex_state = 7, .external_lex_state = 3}, - [2474] = {.lex_state = 0, .external_lex_state = 3}, - [2475] = {.lex_state = 7, .external_lex_state = 3}, - [2476] = {.lex_state = 0, .external_lex_state = 3}, - [2477] = {.lex_state = 10, .external_lex_state = 3}, + [2472] = {.lex_state = 0, .external_lex_state = 3}, + [2473] = {.lex_state = 0, .external_lex_state = 3}, + [2474] = {.lex_state = 9, .external_lex_state = 3}, + [2475] = {.lex_state = 4, .external_lex_state = 3}, + [2476] = {.lex_state = 4, .external_lex_state = 3}, + [2477] = {.lex_state = 0, .external_lex_state = 3}, [2478] = {.lex_state = 0, .external_lex_state = 3}, - [2479] = {.lex_state = 0, .external_lex_state = 3}, + [2479] = {.lex_state = 4, .external_lex_state = 3}, [2480] = {.lex_state = 0, .external_lex_state = 3}, - [2481] = {.lex_state = 7, .external_lex_state = 3}, - [2482] = {.lex_state = 7, .external_lex_state = 3}, + [2481] = {.lex_state = 0, .external_lex_state = 3}, + [2482] = {.lex_state = 0, .external_lex_state = 3}, [2483] = {.lex_state = 0, .external_lex_state = 3}, [2484] = {.lex_state = 0, .external_lex_state = 3}, [2485] = {.lex_state = 0, .external_lex_state = 3}, - [2486] = {.lex_state = 7, .external_lex_state = 3}, - [2487] = {.lex_state = 7, .external_lex_state = 3}, - [2488] = {.lex_state = 7, .external_lex_state = 3}, - [2489] = {.lex_state = 7, .external_lex_state = 3}, - [2490] = {.lex_state = 7, .external_lex_state = 3}, - [2491] = {.lex_state = 7, .external_lex_state = 3}, - [2492] = {.lex_state = 7, .external_lex_state = 3}, - [2493] = {.lex_state = 7, .external_lex_state = 3}, + [2486] = {.lex_state = 0, .external_lex_state = 3}, + [2487] = {.lex_state = 9, .external_lex_state = 3}, + [2488] = {.lex_state = 9, .external_lex_state = 3}, + [2489] = {.lex_state = 9, .external_lex_state = 3}, + [2490] = {.lex_state = 9, .external_lex_state = 3}, + [2491] = {.lex_state = 4, .external_lex_state = 3}, + [2492] = {.lex_state = 0, .external_lex_state = 3}, + [2493] = {.lex_state = 4, .external_lex_state = 3}, [2494] = {.lex_state = 0, .external_lex_state = 3}, [2495] = {.lex_state = 0, .external_lex_state = 3}, [2496] = {.lex_state = 0, .external_lex_state = 3}, - [2497] = {.lex_state = 0, .external_lex_state = 3}, - [2498] = {.lex_state = 0, .external_lex_state = 3}, + [2497] = {.lex_state = 4, .external_lex_state = 3}, + [2498] = {.lex_state = 4, .external_lex_state = 3}, [2499] = {.lex_state = 0, .external_lex_state = 3}, - [2500] = {.lex_state = 7, .external_lex_state = 3}, + [2500] = {.lex_state = 0, .external_lex_state = 3}, [2501] = {.lex_state = 0, .external_lex_state = 3}, - [2502] = {.lex_state = 0, .external_lex_state = 3}, - [2503] = {.lex_state = 0, .external_lex_state = 3}, - [2504] = {.lex_state = 7, .external_lex_state = 3}, - [2505] = {.lex_state = 0, .external_lex_state = 3}, + [2502] = {.lex_state = 4, .external_lex_state = 3}, + [2503] = {.lex_state = 4, .external_lex_state = 3}, + [2504] = {.lex_state = 0, .external_lex_state = 3}, + [2505] = {.lex_state = 4, .external_lex_state = 3}, [2506] = {.lex_state = 0, .external_lex_state = 3}, - [2507] = {.lex_state = 10, .external_lex_state = 3}, + [2507] = {.lex_state = 0, .external_lex_state = 3}, [2508] = {.lex_state = 0, .external_lex_state = 3}, - [2509] = {.lex_state = 10, .external_lex_state = 3}, - [2510] = {.lex_state = 7, .external_lex_state = 3}, + [2509] = {.lex_state = 9, .external_lex_state = 3}, + [2510] = {.lex_state = 0, .external_lex_state = 3}, [2511] = {.lex_state = 0, .external_lex_state = 3}, - [2512] = {.lex_state = 7, .external_lex_state = 3}, - [2513] = {.lex_state = 0, .external_lex_state = 3}, - [2514] = {.lex_state = 10, .external_lex_state = 3}, + [2512] = {.lex_state = 0, .external_lex_state = 3}, + [2513] = {.lex_state = 4, .external_lex_state = 3}, + [2514] = {.lex_state = 0, .external_lex_state = 3}, [2515] = {.lex_state = 0, .external_lex_state = 3}, - [2516] = {.lex_state = 0, .external_lex_state = 3}, + [2516] = {.lex_state = 4, .external_lex_state = 3}, [2517] = {.lex_state = 0, .external_lex_state = 3}, [2518] = {.lex_state = 0, .external_lex_state = 3}, - [2519] = {.lex_state = 10, .external_lex_state = 3}, + [2519] = {.lex_state = 0, .external_lex_state = 3}, [2520] = {.lex_state = 0, .external_lex_state = 3}, [2521] = {.lex_state = 0, .external_lex_state = 3}, - [2522] = {.lex_state = 0, .external_lex_state = 3}, - [2523] = {.lex_state = 10, .external_lex_state = 3}, + [2522] = {.lex_state = 4, .external_lex_state = 3}, + [2523] = {.lex_state = 9, .external_lex_state = 3}, [2524] = {.lex_state = 0, .external_lex_state = 3}, - [2525] = {.lex_state = 0, .external_lex_state = 3}, + [2525] = {.lex_state = 9, .external_lex_state = 3}, [2526] = {.lex_state = 0, .external_lex_state = 3}, - [2527] = {.lex_state = 10, .external_lex_state = 3}, - [2528] = {.lex_state = 10, .external_lex_state = 3}, + [2527] = {.lex_state = 0, .external_lex_state = 3}, + [2528] = {.lex_state = 0, .external_lex_state = 3}, [2529] = {.lex_state = 0, .external_lex_state = 3}, - [2530] = {.lex_state = 0, .external_lex_state = 3}, - [2531] = {.lex_state = 10, .external_lex_state = 3}, + [2530] = {.lex_state = 9, .external_lex_state = 3}, + [2531] = {.lex_state = 0, .external_lex_state = 3}, [2532] = {.lex_state = 0, .external_lex_state = 3}, - [2533] = {.lex_state = 7, .external_lex_state = 3}, + [2533] = {.lex_state = 0, .external_lex_state = 3}, [2534] = {.lex_state = 0, .external_lex_state = 3}, [2535] = {.lex_state = 0, .external_lex_state = 3}, [2536] = {.lex_state = 0, .external_lex_state = 3}, - [2537] = {.lex_state = 10, .external_lex_state = 3}, + [2537] = {.lex_state = 0, .external_lex_state = 3}, [2538] = {.lex_state = 0, .external_lex_state = 3}, - [2539] = {.lex_state = 10, .external_lex_state = 3}, + [2539] = {.lex_state = 9, .external_lex_state = 3}, [2540] = {.lex_state = 0, .external_lex_state = 3}, [2541] = {.lex_state = 0, .external_lex_state = 3}, - [2542] = {.lex_state = 7, .external_lex_state = 3}, + [2542] = {.lex_state = 0, .external_lex_state = 3}, [2543] = {.lex_state = 0, .external_lex_state = 3}, - [2544] = {.lex_state = 0, .external_lex_state = 3}, - [2545] = {.lex_state = 0, .external_lex_state = 3}, - [2546] = {.lex_state = 7, .external_lex_state = 3}, - [2547] = {.lex_state = 0, .external_lex_state = 3}, - [2548] = {.lex_state = 7, .external_lex_state = 3}, - [2549] = {.lex_state = 7, .external_lex_state = 3}, + [2544] = {.lex_state = 9, .external_lex_state = 3}, + [2545] = {.lex_state = 4, .external_lex_state = 3}, + [2546] = {.lex_state = 4, .external_lex_state = 3}, + [2547] = {.lex_state = 9, .external_lex_state = 3}, + [2548] = {.lex_state = 0, .external_lex_state = 3}, + [2549] = {.lex_state = 0, .external_lex_state = 3}, [2550] = {.lex_state = 0, .external_lex_state = 3}, - [2551] = {.lex_state = 7, .external_lex_state = 3}, + [2551] = {.lex_state = 0, .external_lex_state = 3}, [2552] = {.lex_state = 0, .external_lex_state = 3}, - [2553] = {.lex_state = 0, .external_lex_state = 3}, + [2553] = {.lex_state = 9, .external_lex_state = 3}, [2554] = {.lex_state = 0, .external_lex_state = 3}, - [2555] = {.lex_state = 7, .external_lex_state = 3}, - [2556] = {.lex_state = 7, .external_lex_state = 3}, - [2557] = {.lex_state = 7, .external_lex_state = 3}, + [2555] = {.lex_state = 9, .external_lex_state = 3}, + [2556] = {.lex_state = 0, .external_lex_state = 3}, + [2557] = {.lex_state = 0, .external_lex_state = 3}, [2558] = {.lex_state = 0, .external_lex_state = 3}, - [2559] = {.lex_state = 7, .external_lex_state = 3}, - [2560] = {.lex_state = 7, .external_lex_state = 3}, - [2561] = {.lex_state = 0, .external_lex_state = 3}, - [2562] = {.lex_state = 0, .external_lex_state = 3}, - [2563] = {.lex_state = 7, .external_lex_state = 3}, - [2564] = {.lex_state = 0, .external_lex_state = 3}, - [2565] = {.lex_state = 0, .external_lex_state = 3}, - [2566] = {.lex_state = 7, .external_lex_state = 3}, + [2559] = {.lex_state = 0, .external_lex_state = 3}, + [2560] = {.lex_state = 0, .external_lex_state = 3}, + [2561] = {.lex_state = 4, .external_lex_state = 3}, + [2562] = {.lex_state = 4, .external_lex_state = 3}, + [2563] = {.lex_state = 0, .external_lex_state = 3}, + [2564] = {.lex_state = 4, .external_lex_state = 3}, + [2565] = {.lex_state = 4, .external_lex_state = 3}, + [2566] = {.lex_state = 0, .external_lex_state = 3}, + [2567] = {.lex_state = 4, .external_lex_state = 3}, + [2568] = {.lex_state = 0, .external_lex_state = 3}, + [2569] = {.lex_state = 0, .external_lex_state = 3}, + [2570] = {.lex_state = 0, .external_lex_state = 3}, + [2571] = {.lex_state = 4, .external_lex_state = 3}, + [2572] = {.lex_state = 4, .external_lex_state = 3}, + [2573] = {.lex_state = 4, .external_lex_state = 3}, + [2574] = {.lex_state = 0, .external_lex_state = 3}, + [2575] = {.lex_state = 4, .external_lex_state = 3}, + [2576] = {.lex_state = 4, .external_lex_state = 3}, + [2577] = {.lex_state = 0, .external_lex_state = 3}, + [2578] = {.lex_state = 9, .external_lex_state = 3}, + [2579] = {.lex_state = 4, .external_lex_state = 3}, + [2580] = {.lex_state = 0, .external_lex_state = 3}, + [2581] = {.lex_state = 0, .external_lex_state = 3}, + [2582] = {.lex_state = 4, .external_lex_state = 3}, }; enum { @@ -14741,6 +16066,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), + [anon_sym_cfg] = ACTIONS(1), + [anon_sym_cfg_attr] = ACTIONS(1), + [anon_sym_test] = ACTIONS(1), + [anon_sym_ignore] = ACTIONS(1), + [anon_sym_should_panic] = ACTIONS(1), + [anon_sym_derive] = ACTIONS(1), + [anon_sym_automatically_derived] = ACTIONS(1), + [anon_sym_macro_export] = ACTIONS(1), + [anon_sym_macro_use] = ACTIONS(1), + [anon_sym_proc_macro] = ACTIONS(1), + [anon_sym_proc_macro_derive] = ACTIONS(1), + [anon_sym_proc_macro_attribute] = ACTIONS(1), + [anon_sym_allow] = ACTIONS(1), + [anon_sym_warn] = ACTIONS(1), + [anon_sym_deny] = ACTIONS(1), + [anon_sym_forbid] = ACTIONS(1), + [anon_sym_deprecated] = ACTIONS(1), + [anon_sym_must_use] = ACTIONS(1), + [anon_sym_link] = ACTIONS(1), + [anon_sym_link_name] = ACTIONS(1), + [anon_sym_no_link] = ACTIONS(1), + [anon_sym_repr] = ACTIONS(1), + [anon_sym_crate_type] = ACTIONS(1), + [anon_sym_no_main] = ACTIONS(1), + [anon_sym_export_name] = ACTIONS(1), + [anon_sym_link_section] = ACTIONS(1), + [anon_sym_no_mangle] = ACTIONS(1), + [anon_sym_used] = ACTIONS(1), + [anon_sym_crate_name] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_cold] = ACTIONS(1), + [anon_sym_no_builtins] = ACTIONS(1), + [anon_sym_target_feature] = ACTIONS(1), + [anon_sym_track_caller] = ACTIONS(1), + [anon_sym_doc] = ACTIONS(1), + [anon_sym_no_std] = ACTIONS(1), + [anon_sym_no_implicit_prelude] = ACTIONS(1), + [anon_sym_recursion_limit] = ACTIONS(1), + [anon_sym_type_length_limit] = ACTIONS(1), + [anon_sym_panic_handler] = ACTIONS(1), + [anon_sym_global_allocator] = ACTIONS(1), + [anon_sym_windows_subsystem] = ACTIONS(1), + [anon_sym_feature] = ACTIONS(1), + [anon_sym_non_exhaustive] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [anon_sym_extern] = ACTIONS(1), [anon_sym_ref] = ACTIONS(1), @@ -14803,80 +16172,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2483), - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_macro_definition] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_foreign_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_union_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_extern_crate_declaration] = STATE(4), - [sym_const_item] = STATE(4), - [sym_static_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function_modifiers] = STATE(2481), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_extern_modifier] = STATE(1547), + [sym_source_file] = STATE(2499), + [sym__statement] = STATE(5), + [sym_empty_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_macro_definition] = STATE(5), + [sym_attribute_item] = STATE(5), + [sym_inner_attribute_item] = STATE(5), + [sym_mod_item] = STATE(5), + [sym_foreign_mod_item] = STATE(5), + [sym_struct_item] = STATE(5), + [sym_union_item] = STATE(5), + [sym_enum_item] = STATE(5), + [sym_extern_crate_declaration] = STATE(5), + [sym_const_item] = STATE(5), + [sym_static_item] = STATE(5), + [sym_type_item] = STATE(5), + [sym_function_item] = STATE(5), + [sym_function_signature_item] = STATE(5), + [sym_function_modifiers] = STATE(2497), + [sym_impl_item] = STATE(5), + [sym_trait_item] = STATE(5), + [sym_associated_type] = STATE(5), + [sym_let_declaration] = STATE(5), + [sym_use_declaration] = STATE(5), + [sym_extern_modifier] = STATE(1519), [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(159), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_macro_invocation] = STATE(137), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -14953,79 +16322,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_macro_definition] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_foreign_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_union_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_extern_crate_declaration] = STATE(6), - [sym_const_item] = STATE(6), - [sym_static_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function_modifiers] = STATE(2481), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_extern_modifier] = STATE(1547), + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(2497), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1519), [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1263), - [sym_macro_invocation] = STATE(159), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1258), + [sym_macro_invocation] = STATE(137), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -15119,62 +16488,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(16), [sym_function_item] = STATE(16), [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2481), + [sym_function_modifiers] = STATE(2497), [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(1547), + [sym_extern_modifier] = STATE(1519), [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(159), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(137), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -15251,85 +16620,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_macro_definition] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_foreign_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_union_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_extern_crate_declaration] = STATE(5), - [sym_const_item] = STATE(5), - [sym_static_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2481), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_extern_modifier] = STATE(1547), + [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(2497), + [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(1519), [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(159), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [ts_builtin_sym_end] = ACTIONS(109), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1289), + [sym_macro_invocation] = STATE(137), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [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), @@ -15400,234 +16769,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_macro_definition] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_foreign_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_union_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_extern_crate_declaration] = STATE(5), - [sym_const_item] = STATE(5), - [sym_static_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2481), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_extern_modifier] = STATE(1547), + [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(2497), + [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(1519), [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(159), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_macro_invocation] = STATE(137), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [ts_builtin_sym_end] = ACTIONS(111), - [sym_identifier] = ACTIONS(113), - [anon_sym_SEMI] = ACTIONS(116), - [anon_sym_macro_rules_BANG] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_u8] = ACTIONS(134), - [anon_sym_i8] = ACTIONS(134), - [anon_sym_u16] = ACTIONS(134), - [anon_sym_i16] = ACTIONS(134), - [anon_sym_u32] = ACTIONS(134), - [anon_sym_i32] = ACTIONS(134), - [anon_sym_u64] = ACTIONS(134), - [anon_sym_i64] = ACTIONS(134), - [anon_sym_u128] = ACTIONS(134), - [anon_sym_i128] = ACTIONS(134), - [anon_sym_isize] = ACTIONS(134), - [anon_sym_usize] = ACTIONS(134), - [anon_sym_f32] = ACTIONS(134), - [anon_sym_f64] = ACTIONS(134), - [anon_sym_bool] = ACTIONS(134), - [anon_sym_str] = ACTIONS(134), - [anon_sym_char] = ACTIONS(134), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_async] = ACTIONS(140), - [anon_sym_break] = ACTIONS(143), - [anon_sym_const] = ACTIONS(146), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_default] = ACTIONS(152), - [anon_sym_enum] = ACTIONS(155), - [anon_sym_fn] = ACTIONS(158), - [anon_sym_for] = ACTIONS(161), - [anon_sym_if] = ACTIONS(164), - [anon_sym_impl] = ACTIONS(167), - [anon_sym_let] = ACTIONS(170), - [anon_sym_loop] = ACTIONS(173), - [anon_sym_match] = ACTIONS(176), - [anon_sym_mod] = ACTIONS(179), - [anon_sym_pub] = ACTIONS(182), - [anon_sym_return] = ACTIONS(185), - [anon_sym_static] = ACTIONS(188), - [anon_sym_struct] = ACTIONS(191), - [anon_sym_trait] = ACTIONS(194), - [anon_sym_type] = ACTIONS(197), - [anon_sym_union] = ACTIONS(200), - [anon_sym_unsafe] = ACTIONS(203), - [anon_sym_use] = ACTIONS(206), - [anon_sym_while] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(212), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_COLON_COLON] = ACTIONS(221), - [anon_sym_AMP] = ACTIONS(224), - [anon_sym_DOT_DOT] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_move] = ACTIONS(236), - [sym_integer_literal] = ACTIONS(239), - [aux_sym_string_literal_token1] = ACTIONS(242), - [sym_char_literal] = ACTIONS(239), - [anon_sym_true] = ACTIONS(245), - [anon_sym_false] = ACTIONS(245), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(248), - [sym_super] = ACTIONS(251), - [sym_crate] = ACTIONS(254), - [sym_metavariable] = ACTIONS(257), - [sym_raw_string_literal] = ACTIONS(239), - [sym_float_literal] = ACTIONS(239), - [sym_block_comment] = ACTIONS(3), - }, - [6] = { - [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(2481), - [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(1547), - [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1274), - [sym_macro_invocation] = STATE(159), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1575), [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(260), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15697,7 +16917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [7] = { + [6] = { [sym__statement] = STATE(3), [sym_empty_statement] = STATE(3), [sym_expression_statement] = STATE(3), @@ -15715,68 +16935,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(3), [sym_function_item] = STATE(3), [sym_function_signature_item] = STATE(3), - [sym_function_modifiers] = STATE(2481), + [sym_function_modifiers] = STATE(2497), [sym_impl_item] = STATE(3), [sym_trait_item] = STATE(3), [sym_associated_type] = STATE(3), [sym_let_declaration] = STATE(3), [sym_use_declaration] = STATE(3), - [sym_extern_modifier] = STATE(1547), + [sym_extern_modifier] = STATE(1519), [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1237), - [sym_macro_invocation] = STATE(159), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(137), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [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(262), + [anon_sym_RBRACE] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15846,7 +17066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [8] = { + [7] = { [sym__statement] = STATE(16), [sym_empty_statement] = STATE(16), [sym_expression_statement] = STATE(16), @@ -15864,68 +17084,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(16), [sym_function_item] = STATE(16), [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2481), + [sym_function_modifiers] = STATE(2497), [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(1547), + [sym_extern_modifier] = STATE(1519), [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(159), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(137), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [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(264), + [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15995,86 +17215,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [9] = { - [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(2481), - [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(1547), + [8] = { + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2497), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1519), [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1215), - [sym_macro_invocation] = STATE(159), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(137), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [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(266), + [anon_sym_RBRACE] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16144,7 +17364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [10] = { + [9] = { [sym__statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_expression_statement] = STATE(11), @@ -16162,68 +17382,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(11), [sym_function_item] = STATE(11), [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2481), + [sym_function_modifiers] = STATE(2497), [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(1547), + [sym_extern_modifier] = STATE(1519), [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1247), - [sym_macro_invocation] = STATE(159), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(137), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [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(268), + [anon_sym_RBRACE] = ACTIONS(119), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16293,86 +17513,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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(2481), - [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(1547), + [10] = { + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2497), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1519), [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(159), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1285), + [sym_macro_invocation] = STATE(137), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [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(270), + [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16442,7 +17662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [12] = { + [11] = { [sym__statement] = STATE(16), [sym_empty_statement] = STATE(16), [sym_expression_statement] = STATE(16), @@ -16460,68 +17680,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(16), [sym_function_item] = STATE(16), [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2481), + [sym_function_modifiers] = STATE(2497), [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(1547), + [sym_extern_modifier] = STATE(1519), [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1248), - [sym_macro_invocation] = STATE(159), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(137), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [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(272), + [anon_sym_RBRACE] = ACTIONS(123), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16591,80 +17811,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [12] = { + [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(2497), + [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(1519), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(137), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(125), + [sym_identifier] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_macro_rules_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(142), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_u8] = ACTIONS(148), + [anon_sym_i8] = ACTIONS(148), + [anon_sym_u16] = ACTIONS(148), + [anon_sym_i16] = ACTIONS(148), + [anon_sym_u32] = ACTIONS(148), + [anon_sym_i32] = ACTIONS(148), + [anon_sym_u64] = ACTIONS(148), + [anon_sym_i64] = ACTIONS(148), + [anon_sym_u128] = ACTIONS(148), + [anon_sym_i128] = ACTIONS(148), + [anon_sym_isize] = ACTIONS(148), + [anon_sym_usize] = ACTIONS(148), + [anon_sym_f32] = ACTIONS(148), + [anon_sym_f64] = ACTIONS(148), + [anon_sym_bool] = ACTIONS(148), + [anon_sym_str] = ACTIONS(148), + [anon_sym_char] = ACTIONS(148), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_async] = ACTIONS(154), + [anon_sym_break] = ACTIONS(157), + [anon_sym_const] = ACTIONS(160), + [anon_sym_continue] = ACTIONS(163), + [anon_sym_default] = ACTIONS(166), + [anon_sym_enum] = ACTIONS(169), + [anon_sym_fn] = ACTIONS(172), + [anon_sym_for] = ACTIONS(175), + [anon_sym_if] = ACTIONS(178), + [anon_sym_impl] = ACTIONS(181), + [anon_sym_let] = ACTIONS(184), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_match] = ACTIONS(190), + [anon_sym_mod] = ACTIONS(193), + [anon_sym_pub] = ACTIONS(196), + [anon_sym_return] = ACTIONS(199), + [anon_sym_static] = ACTIONS(202), + [anon_sym_struct] = ACTIONS(205), + [anon_sym_trait] = ACTIONS(208), + [anon_sym_type] = ACTIONS(211), + [anon_sym_union] = ACTIONS(214), + [anon_sym_unsafe] = ACTIONS(217), + [anon_sym_use] = ACTIONS(220), + [anon_sym_while] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(226), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(232), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(238), + [anon_sym_DOT_DOT] = ACTIONS(241), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(244), + [anon_sym_yield] = ACTIONS(247), + [anon_sym_move] = ACTIONS(250), + [sym_integer_literal] = ACTIONS(253), + [aux_sym_string_literal_token1] = ACTIONS(256), + [sym_char_literal] = ACTIONS(253), + [anon_sym_true] = ACTIONS(259), + [anon_sym_false] = ACTIONS(259), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(262), + [sym_super] = ACTIONS(265), + [sym_crate] = ACTIONS(268), + [sym_metavariable] = ACTIONS(271), + [sym_raw_string_literal] = ACTIONS(253), + [sym_float_literal] = ACTIONS(253), + [sym_block_comment] = ACTIONS(3), + }, [13] = { - [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(2481), - [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(1547), + [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(2497), + [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(1519), [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1254), - [sym_macro_invocation] = STATE(159), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1256), + [sym_macro_invocation] = STATE(137), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16741,79 +18110,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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(2481), - [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(1547), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2497), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1519), [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1255), - [sym_macro_invocation] = STATE(159), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(137), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16890,79 +18259,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [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(2481), - [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(1547), + [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(2497), + [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(1519), [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1222), - [sym_macro_invocation] = STATE(159), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(137), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17056,184 +18425,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(16), [sym_function_item] = STATE(16), [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2481), + [sym_function_modifiers] = STATE(2497), [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(1547), + [sym_extern_modifier] = STATE(1519), [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), [sym__expression] = STATE(1299), [sym_macro_invocation] = STATE(183), - [sym_scoped_identifier] = STATE(1182), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(72), - [sym_if_let_expression] = STATE(72), - [sym_match_expression] = STATE(72), - [sym_while_expression] = STATE(72), - [sym_while_let_expression] = STATE(72), - [sym_loop_expression] = STATE(72), - [sym_for_expression] = STATE(72), - [sym_const_block] = STATE(72), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2472), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(72), - [sym_async_block] = STATE(72), - [sym_block] = STATE(72), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(77), + [sym_if_let_expression] = STATE(77), + [sym_match_expression] = STATE(77), + [sym_while_expression] = STATE(77), + [sym_while_let_expression] = STATE(77), + [sym_loop_expression] = STATE(77), + [sym_for_expression] = STATE(77), + [sym_const_block] = STATE(77), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(77), + [sym_async_block] = STATE(77), + [sym_block] = STATE(77), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(113), - [anon_sym_SEMI] = ACTIONS(116), - [anon_sym_macro_rules_BANG] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(125), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_LBRACK] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_u8] = ACTIONS(134), - [anon_sym_i8] = ACTIONS(134), - [anon_sym_u16] = ACTIONS(134), - [anon_sym_i16] = ACTIONS(134), - [anon_sym_u32] = ACTIONS(134), - [anon_sym_i32] = ACTIONS(134), - [anon_sym_u64] = ACTIONS(134), - [anon_sym_i64] = ACTIONS(134), - [anon_sym_u128] = ACTIONS(134), - [anon_sym_i128] = ACTIONS(134), - [anon_sym_isize] = ACTIONS(134), - [anon_sym_usize] = ACTIONS(134), - [anon_sym_f32] = ACTIONS(134), - [anon_sym_f64] = ACTIONS(134), - [anon_sym_bool] = ACTIONS(134), - [anon_sym_str] = ACTIONS(134), - [anon_sym_char] = ACTIONS(134), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_async] = ACTIONS(140), - [anon_sym_break] = ACTIONS(143), - [anon_sym_const] = ACTIONS(146), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_default] = ACTIONS(152), - [anon_sym_enum] = ACTIONS(155), - [anon_sym_fn] = ACTIONS(158), - [anon_sym_for] = ACTIONS(161), - [anon_sym_if] = ACTIONS(164), - [anon_sym_impl] = ACTIONS(167), - [anon_sym_let] = ACTIONS(170), - [anon_sym_loop] = ACTIONS(173), - [anon_sym_match] = ACTIONS(176), - [anon_sym_mod] = ACTIONS(179), - [anon_sym_pub] = ACTIONS(182), - [anon_sym_return] = ACTIONS(185), - [anon_sym_static] = ACTIONS(188), - [anon_sym_struct] = ACTIONS(191), - [anon_sym_trait] = ACTIONS(194), - [anon_sym_type] = ACTIONS(197), - [anon_sym_union] = ACTIONS(200), - [anon_sym_unsafe] = ACTIONS(203), - [anon_sym_use] = ACTIONS(206), - [anon_sym_while] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(212), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_COLON_COLON] = ACTIONS(221), - [anon_sym_AMP] = ACTIONS(224), - [anon_sym_DOT_DOT] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_move] = ACTIONS(236), - [sym_integer_literal] = ACTIONS(239), - [aux_sym_string_literal_token1] = ACTIONS(242), - [sym_char_literal] = ACTIONS(239), - [anon_sym_true] = ACTIONS(245), - [anon_sym_false] = ACTIONS(245), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(248), - [sym_super] = ACTIONS(251), - [sym_crate] = ACTIONS(254), - [sym_metavariable] = ACTIONS(257), - [sym_raw_string_literal] = ACTIONS(239), - [sym_float_literal] = ACTIONS(239), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(130), + [anon_sym_macro_rules_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(142), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_u8] = ACTIONS(148), + [anon_sym_i8] = ACTIONS(148), + [anon_sym_u16] = ACTIONS(148), + [anon_sym_i16] = ACTIONS(148), + [anon_sym_u32] = ACTIONS(148), + [anon_sym_i32] = ACTIONS(148), + [anon_sym_u64] = ACTIONS(148), + [anon_sym_i64] = ACTIONS(148), + [anon_sym_u128] = ACTIONS(148), + [anon_sym_i128] = ACTIONS(148), + [anon_sym_isize] = ACTIONS(148), + [anon_sym_usize] = ACTIONS(148), + [anon_sym_f32] = ACTIONS(148), + [anon_sym_f64] = ACTIONS(148), + [anon_sym_bool] = ACTIONS(148), + [anon_sym_str] = ACTIONS(148), + [anon_sym_char] = ACTIONS(148), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_async] = ACTIONS(154), + [anon_sym_break] = ACTIONS(157), + [anon_sym_const] = ACTIONS(160), + [anon_sym_continue] = ACTIONS(163), + [anon_sym_default] = ACTIONS(166), + [anon_sym_enum] = ACTIONS(169), + [anon_sym_fn] = ACTIONS(172), + [anon_sym_for] = ACTIONS(175), + [anon_sym_if] = ACTIONS(178), + [anon_sym_impl] = ACTIONS(181), + [anon_sym_let] = ACTIONS(184), + [anon_sym_loop] = ACTIONS(187), + [anon_sym_match] = ACTIONS(190), + [anon_sym_mod] = ACTIONS(193), + [anon_sym_pub] = ACTIONS(196), + [anon_sym_return] = ACTIONS(199), + [anon_sym_static] = ACTIONS(202), + [anon_sym_struct] = ACTIONS(205), + [anon_sym_trait] = ACTIONS(208), + [anon_sym_type] = ACTIONS(211), + [anon_sym_union] = ACTIONS(214), + [anon_sym_unsafe] = ACTIONS(217), + [anon_sym_use] = ACTIONS(220), + [anon_sym_while] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(226), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(232), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(238), + [anon_sym_DOT_DOT] = ACTIONS(241), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(244), + [anon_sym_yield] = ACTIONS(247), + [anon_sym_move] = ACTIONS(250), + [sym_integer_literal] = ACTIONS(253), + [aux_sym_string_literal_token1] = ACTIONS(256), + [sym_char_literal] = ACTIONS(253), + [anon_sym_true] = ACTIONS(259), + [anon_sym_false] = ACTIONS(259), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(262), + [sym_super] = ACTIONS(265), + [sym_crate] = ACTIONS(268), + [sym_metavariable] = ACTIONS(271), + [sym_raw_string_literal] = ACTIONS(253), + [sym_float_literal] = ACTIONS(253), [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1164), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1154), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(282), @@ -17330,52 +18699,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1157), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), [anon_sym_LPAREN] = ACTIONS(310), @@ -17471,55 +18840,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1105), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1124), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(316), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_RBRACE] = ACTIONS(316), @@ -17612,64 +18981,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1105), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1161), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_SEMI] = ACTIONS(320), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(320), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(316), - [anon_sym_EQ_GT] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(316), - [anon_sym_RBRACK] = ACTIONS(316), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_EQ_GT] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(308), + [anon_sym_QMARK] = ACTIONS(320), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -17688,7 +19057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(318), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17703,41 +19072,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_COMMA] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(324), + [anon_sym_GT] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(316), - [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(316), - [anon_sym_BANG_EQ] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT] = ACTIONS(318), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(328), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -17753,64 +19122,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1096), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1155), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(320), - [anon_sym_LPAREN] = ACTIONS(320), - [anon_sym_RPAREN] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(332), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(320), - [anon_sym_EQ_GT] = ACTIONS(320), - [anon_sym_LBRACK] = ACTIONS(320), - [anon_sym_RBRACK] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(322), - [anon_sym_STAR] = ACTIONS(322), - [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_RBRACE] = ACTIONS(332), + [anon_sym_EQ_GT] = ACTIONS(332), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(308), + [anon_sym_QMARK] = ACTIONS(332), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -17829,7 +19198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(322), + [anon_sym_as] = ACTIONS(334), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17844,41 +19213,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_LT] = ACTIONS(322), - [anon_sym_GT] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(332), + [anon_sym_LT] = ACTIONS(324), + [anon_sym_GT] = ACTIONS(334), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(320), - [anon_sym_DOT_DOT] = ACTIONS(322), - [anon_sym_DOT_DOT_EQ] = ACTIONS(320), - [anon_sym_DASH] = ACTIONS(322), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PIPE] = ACTIONS(322), - [anon_sym_CARET] = ACTIONS(322), - [anon_sym_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(320), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(322), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(328), + [anon_sym_DOT_DOT_EQ] = ACTIONS(332), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_AMP_AMP] = ACTIONS(332), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_CARET] = ACTIONS(334), + [anon_sym_EQ_EQ] = ACTIONS(332), + [anon_sym_BANG_EQ] = ACTIONS(332), + [anon_sym_LT_EQ] = ACTIONS(332), + [anon_sym_GT_EQ] = ACTIONS(332), + [anon_sym_LT_LT] = ACTIONS(334), + [anon_sym_GT_GT] = ACTIONS(334), + [anon_sym_SLASH] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_PLUS_EQ] = ACTIONS(332), + [anon_sym_DASH_EQ] = ACTIONS(332), + [anon_sym_STAR_EQ] = ACTIONS(332), + [anon_sym_SLASH_EQ] = ACTIONS(332), + [anon_sym_PERCENT_EQ] = ACTIONS(332), + [anon_sym_AMP_EQ] = ACTIONS(332), + [anon_sym_PIPE_EQ] = ACTIONS(332), + [anon_sym_CARET_EQ] = ACTIONS(332), + [anon_sym_LT_LT_EQ] = ACTIONS(332), + [anon_sym_GT_GT_EQ] = ACTIONS(332), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(334), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -17894,64 +19263,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1153), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1124), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(324), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(324), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(316), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(324), - [anon_sym_EQ_GT] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(324), + [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_EQ_GT] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -17970,7 +19339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(326), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17985,41 +19354,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_COMMA] = ACTIONS(324), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(326), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(324), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(324), - [anon_sym_PIPE_PIPE] = ACTIONS(324), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(324), - [anon_sym_BANG_EQ] = ACTIONS(324), - [anon_sym_LT_EQ] = ACTIONS(324), - [anon_sym_GT_EQ] = ACTIONS(324), - [anon_sym_LT_LT] = ACTIONS(326), - [anon_sym_GT_GT] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(326), - [anon_sym_PERCENT] = ACTIONS(326), - [anon_sym_PLUS_EQ] = ACTIONS(324), - [anon_sym_DASH_EQ] = ACTIONS(324), - [anon_sym_STAR_EQ] = ACTIONS(324), - [anon_sym_SLASH_EQ] = ACTIONS(324), - [anon_sym_PERCENT_EQ] = ACTIONS(324), - [anon_sym_AMP_EQ] = ACTIONS(324), - [anon_sym_PIPE_EQ] = ACTIONS(324), - [anon_sym_CARET_EQ] = ACTIONS(324), - [anon_sym_LT_LT_EQ] = ACTIONS(324), - [anon_sym_GT_GT_EQ] = ACTIONS(324), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(326), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18035,52 +19404,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1145), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1073), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(336), [anon_sym_LPAREN] = ACTIONS(13), @@ -18088,10 +19457,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_RBRACE] = ACTIONS(336), [anon_sym_EQ_GT] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(336), [anon_sym_RBRACK] = ACTIONS(336), [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(338), [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -18128,17 +19497,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(308), [anon_sym_EQ] = ACTIONS(338), [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(338), [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(338), [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(338), [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_DASH] = ACTIONS(338), [anon_sym_AMP_AMP] = ACTIONS(336), [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(338), [anon_sym_CARET] = ACTIONS(338), [anon_sym_EQ_EQ] = ACTIONS(336), [anon_sym_BANG_EQ] = ACTIONS(336), @@ -18176,64 +19545,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1096), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1073), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(320), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(336), + [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_RPAREN] = ACTIONS(336), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(320), - [anon_sym_EQ_GT] = ACTIONS(320), - [anon_sym_LBRACK] = ACTIONS(320), - [anon_sym_RBRACK] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(322), - [anon_sym_STAR] = ACTIONS(322), - [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_RBRACE] = ACTIONS(336), + [anon_sym_EQ_GT] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_RBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -18252,7 +19621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(322), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -18267,41 +19636,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_LT] = ACTIONS(322), - [anon_sym_GT] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_COMMA] = ACTIONS(336), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(320), - [anon_sym_DOT_DOT] = ACTIONS(322), - [anon_sym_DOT_DOT_EQ] = ACTIONS(320), - [anon_sym_DASH] = ACTIONS(322), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PIPE] = ACTIONS(322), - [anon_sym_CARET] = ACTIONS(322), - [anon_sym_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(320), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(322), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18317,52 +19686,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_LBRACE] = ACTIONS(282), @@ -18453,59 +19822,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1105), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(25), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(316), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -18523,8 +19892,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(318), + [anon_sym_SQUOTE] = ACTIONS(314), + [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -18539,40 +19908,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(318), - [anon_sym_LT] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(316), - [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(316), - [anon_sym_BANG_EQ] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT] = ACTIONS(318), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_EQ_EQ] = ACTIONS(310), + [anon_sym_BANG_EQ] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(312), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_PERCENT] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(310), + [anon_sym_DASH_EQ] = ACTIONS(310), + [anon_sym_STAR_EQ] = ACTIONS(310), + [anon_sym_SLASH_EQ] = ACTIONS(310), + [anon_sym_PERCENT_EQ] = ACTIONS(310), + [anon_sym_AMP_EQ] = ACTIONS(310), + [anon_sym_PIPE_EQ] = ACTIONS(310), + [anon_sym_CARET_EQ] = ACTIONS(310), + [anon_sym_LT_LT_EQ] = ACTIONS(310), + [anon_sym_GT_GT_EQ] = ACTIONS(310), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(312), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18588,59 +19957,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1105), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1073), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(316), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -18659,7 +20028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(318), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -18674,40 +20043,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(318), - [anon_sym_LT] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(316), - [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(316), - [anon_sym_BANG_EQ] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT] = ACTIONS(318), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18723,59 +20092,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1241), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(25), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(310), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(332), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -18793,8 +20162,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(314), - [anon_sym_as] = ACTIONS(312), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(334), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -18809,40 +20178,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(312), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_LT] = ACTIONS(324), + [anon_sym_GT] = ACTIONS(334), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(332), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(332), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_CARET] = ACTIONS(334), + [anon_sym_EQ_EQ] = ACTIONS(332), + [anon_sym_BANG_EQ] = ACTIONS(332), + [anon_sym_LT_EQ] = ACTIONS(332), + [anon_sym_GT_EQ] = ACTIONS(332), + [anon_sym_LT_LT] = ACTIONS(334), + [anon_sym_GT_GT] = ACTIONS(334), + [anon_sym_SLASH] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_PLUS_EQ] = ACTIONS(332), + [anon_sym_DASH_EQ] = ACTIONS(332), + [anon_sym_STAR_EQ] = ACTIONS(332), + [anon_sym_SLASH_EQ] = ACTIONS(332), + [anon_sym_PERCENT_EQ] = ACTIONS(332), + [anon_sym_AMP_EQ] = ACTIONS(332), + [anon_sym_PIPE_EQ] = ACTIONS(332), + [anon_sym_CARET_EQ] = ACTIONS(332), + [anon_sym_LT_LT_EQ] = ACTIONS(332), + [anon_sym_GT_GT_EQ] = ACTIONS(332), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(334), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18858,59 +20227,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1229), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1241), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(322), [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_QMARK] = ACTIONS(320), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -18929,7 +20298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -18944,40 +20313,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(324), + [anon_sym_GT] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18993,59 +20362,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1224), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1124), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(324), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -19064,7 +20433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(326), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -19079,40 +20448,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(326), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(324), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(324), - [anon_sym_PIPE_PIPE] = ACTIONS(324), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(324), - [anon_sym_BANG_EQ] = ACTIONS(324), - [anon_sym_LT_EQ] = ACTIONS(324), - [anon_sym_GT_EQ] = ACTIONS(324), - [anon_sym_LT_LT] = ACTIONS(326), - [anon_sym_GT_GT] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(326), - [anon_sym_PERCENT] = ACTIONS(326), - [anon_sym_PLUS_EQ] = ACTIONS(324), - [anon_sym_DASH_EQ] = ACTIONS(324), - [anon_sym_STAR_EQ] = ACTIONS(324), - [anon_sym_SLASH_EQ] = ACTIONS(324), - [anon_sym_PERCENT_EQ] = ACTIONS(324), - [anon_sym_AMP_EQ] = ACTIONS(324), - [anon_sym_PIPE_EQ] = ACTIONS(324), - [anon_sym_CARET_EQ] = ACTIONS(324), - [anon_sym_LT_LT_EQ] = ACTIONS(324), - [anon_sym_GT_GT_EQ] = ACTIONS(324), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(326), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19128,59 +20497,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1096), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1073), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_LBRACK] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(322), - [anon_sym_STAR] = ACTIONS(322), - [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -19199,7 +20568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(322), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -19214,40 +20583,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(322), - [anon_sym_GT] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(320), - [anon_sym_DOT_DOT] = ACTIONS(322), - [anon_sym_DOT_DOT_EQ] = ACTIONS(320), - [anon_sym_DASH] = ACTIONS(322), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PIPE] = ACTIONS(322), - [anon_sym_CARET] = ACTIONS(322), - [anon_sym_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(320), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(322), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19263,59 +20632,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1096), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1124), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(320), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_LBRACK] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(322), - [anon_sym_STAR] = ACTIONS(322), - [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -19334,7 +20703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(322), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -19349,40 +20718,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(322), - [anon_sym_GT] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(320), - [anon_sym_DOT_DOT] = ACTIONS(322), - [anon_sym_DOT_DOT_EQ] = ACTIONS(320), - [anon_sym_DASH] = ACTIONS(322), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PIPE] = ACTIONS(322), - [anon_sym_CARET] = ACTIONS(322), - [anon_sym_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(320), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(322), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19398,59 +20767,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_attribute_item] = STATE(34), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1193), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_enum_variant_list_repeat1] = STATE(34), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(368), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -19509,54 +20878,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_attribute_item] = STATE(629), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1197), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_enum_variant_list_repeat1] = STATE(629), + [sym_attribute_item] = STATE(613), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1204), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_enum_variant_list_repeat1] = STATE(613), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -19620,59 +20989,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym_attribute_item] = STATE(34), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1195), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_enum_variant_list_repeat1] = STATE(34), + [sym_attribute_item] = STATE(41), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1208), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_enum_variant_list_repeat1] = STATE(41), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(378), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(378), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -19732,52 +21101,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [36] = { [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1267), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), @@ -19841,54 +21210,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_enum_variant_list_repeat1] = STATE(42), + [sym_attribute_item] = STATE(43), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(384), @@ -19951,54 +21320,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_enum_variant_list_repeat1] = STATE(42), + [sym_attribute_item] = STATE(43), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(386), @@ -20061,54 +21430,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_enum_variant_list_repeat1] = STATE(42), + [sym_attribute_item] = STATE(43), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(388), @@ -20171,54 +21540,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym_attribute_item] = STATE(629), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1302), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_enum_variant_list_repeat1] = STATE(629), + [sym_attribute_item] = STATE(613), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1296), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_enum_variant_list_repeat1] = STATE(613), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20280,54 +21649,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_enum_variant_list_repeat1] = STATE(42), + [sym_attribute_item] = STATE(613), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_enum_variant_list_repeat1] = STATE(613), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20389,54 +21758,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym_attribute_item] = STATE(629), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1265), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_enum_variant_list_repeat1] = STATE(629), + [sym_attribute_item] = STATE(43), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20498,54 +21867,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym_attribute_item] = STATE(629), - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_enum_variant_list_repeat1] = STATE(629), + [sym_attribute_item] = STATE(613), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_enum_variant_list_repeat1] = STATE(613), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20607,53 +21976,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_tuple_expression_repeat1] = STATE(48), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_tuple_expression_repeat1] = STATE(47), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(390), @@ -20715,56 +22084,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [45] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_tuple_expression_repeat1] = STATE(47), + [sym_else_clause] = STATE(78), + [ts_builtin_sym_end] = ACTIONS(392), + [sym_identifier] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_macro_rules_BANG] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(392), + [anon_sym_RBRACE] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_isize] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_f32] = ACTIONS(394), + [anon_sym_f64] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_str] = ACTIONS(394), + [anon_sym_char] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_as] = ACTIONS(394), + [anon_sym_async] = ACTIONS(394), + [anon_sym_break] = ACTIONS(394), + [anon_sym_const] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(394), + [anon_sym_default] = ACTIONS(394), + [anon_sym_enum] = ACTIONS(394), + [anon_sym_fn] = ACTIONS(394), + [anon_sym_for] = ACTIONS(394), + [anon_sym_if] = ACTIONS(394), + [anon_sym_impl] = ACTIONS(394), + [anon_sym_let] = ACTIONS(394), + [anon_sym_loop] = ACTIONS(394), + [anon_sym_match] = ACTIONS(394), + [anon_sym_mod] = ACTIONS(394), + [anon_sym_pub] = ACTIONS(394), + [anon_sym_return] = ACTIONS(394), + [anon_sym_static] = ACTIONS(394), + [anon_sym_struct] = ACTIONS(394), + [anon_sym_trait] = ACTIONS(394), + [anon_sym_type] = ACTIONS(394), + [anon_sym_union] = ACTIONS(394), + [anon_sym_unsafe] = ACTIONS(394), + [anon_sym_use] = ACTIONS(394), + [anon_sym_while] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_extern] = ACTIONS(394), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(392), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(394), + [anon_sym_GT_GT] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_LT_LT_EQ] = ACTIONS(392), + [anon_sym_GT_GT_EQ] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(394), + [anon_sym_else] = ACTIONS(396), + [anon_sym_move] = ACTIONS(394), + [anon_sym_DOT] = ACTIONS(394), + [sym_integer_literal] = ACTIONS(392), + [aux_sym_string_literal_token1] = ACTIONS(392), + [sym_char_literal] = ACTIONS(392), + [anon_sym_true] = ACTIONS(394), + [anon_sym_false] = ACTIONS(394), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(394), + [sym_super] = ACTIONS(394), + [sym_crate] = ACTIONS(394), + [sym_metavariable] = ACTIONS(392), + [sym_raw_string_literal] = ACTIONS(392), + [sym_float_literal] = ACTIONS(392), + [sym_block_comment] = ACTIONS(3), + }, + [46] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1284), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_tuple_expression_repeat1] = STATE(44), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(392), + [anon_sym_RPAREN] = ACTIONS(398), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -20822,161 +22299,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [46] = { - [sym_else_clause] = STATE(141), - [ts_builtin_sym_end] = ACTIONS(394), - [sym_identifier] = ACTIONS(396), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_macro_rules_BANG] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(396), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(396), - [anon_sym_i8] = ACTIONS(396), - [anon_sym_u16] = ACTIONS(396), - [anon_sym_i16] = ACTIONS(396), - [anon_sym_u32] = ACTIONS(396), - [anon_sym_i32] = ACTIONS(396), - [anon_sym_u64] = ACTIONS(396), - [anon_sym_i64] = ACTIONS(396), - [anon_sym_u128] = ACTIONS(396), - [anon_sym_i128] = ACTIONS(396), - [anon_sym_isize] = ACTIONS(396), - [anon_sym_usize] = ACTIONS(396), - [anon_sym_f32] = ACTIONS(396), - [anon_sym_f64] = ACTIONS(396), - [anon_sym_bool] = ACTIONS(396), - [anon_sym_str] = ACTIONS(396), - [anon_sym_char] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(396), - [anon_sym_as] = ACTIONS(396), - [anon_sym_async] = ACTIONS(396), - [anon_sym_break] = ACTIONS(396), - [anon_sym_const] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(396), - [anon_sym_fn] = ACTIONS(396), - [anon_sym_for] = ACTIONS(396), - [anon_sym_if] = ACTIONS(396), - [anon_sym_impl] = ACTIONS(396), - [anon_sym_let] = ACTIONS(396), - [anon_sym_loop] = ACTIONS(396), - [anon_sym_match] = ACTIONS(396), - [anon_sym_mod] = ACTIONS(396), - [anon_sym_pub] = ACTIONS(396), - [anon_sym_return] = ACTIONS(396), - [anon_sym_static] = ACTIONS(396), - [anon_sym_struct] = ACTIONS(396), - [anon_sym_trait] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_union] = ACTIONS(396), - [anon_sym_unsafe] = ACTIONS(396), - [anon_sym_use] = ACTIONS(396), - [anon_sym_while] = ACTIONS(396), - [anon_sym_POUND] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_extern] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_COLON_COLON] = ACTIONS(394), - [anon_sym_AMP] = ACTIONS(396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(394), - [anon_sym_DASH_EQ] = ACTIONS(394), - [anon_sym_STAR_EQ] = ACTIONS(394), - [anon_sym_SLASH_EQ] = ACTIONS(394), - [anon_sym_PERCENT_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_CARET_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_yield] = ACTIONS(396), - [anon_sym_else] = ACTIONS(398), - [anon_sym_move] = ACTIONS(396), - [anon_sym_DOT] = ACTIONS(396), - [sym_integer_literal] = ACTIONS(394), - [aux_sym_string_literal_token1] = ACTIONS(394), - [sym_char_literal] = ACTIONS(394), - [anon_sym_true] = ACTIONS(396), - [anon_sym_false] = ACTIONS(396), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(396), - [sym_super] = ACTIONS(396), - [sym_crate] = ACTIONS(396), - [sym_metavariable] = ACTIONS(394), - [sym_raw_string_literal] = ACTIONS(394), - [sym_float_literal] = ACTIONS(394), - [sym_block_comment] = ACTIONS(3), - }, [47] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1298), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [aux_sym_tuple_expression_repeat1] = STATE(47), [sym_identifier] = ACTIONS(400), [anon_sym_LPAREN] = ACTIONS(403), @@ -21039,56 +22408,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [48] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_tuple_expression_repeat1] = STATE(47), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_tuple_expression_repeat1] = STATE(50), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(498), + [anon_sym_RPAREN] = ACTIONS(390), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21147,56 +22516,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [49] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [aux_sym_tuple_expression_repeat1] = STATE(45), + [sym_else_clause] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(498), + [sym_identifier] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_macro_rules_BANG] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_u8] = ACTIONS(500), + [anon_sym_i8] = ACTIONS(500), + [anon_sym_u16] = ACTIONS(500), + [anon_sym_i16] = ACTIONS(500), + [anon_sym_u32] = ACTIONS(500), + [anon_sym_i32] = ACTIONS(500), + [anon_sym_u64] = ACTIONS(500), + [anon_sym_i64] = ACTIONS(500), + [anon_sym_u128] = ACTIONS(500), + [anon_sym_i128] = ACTIONS(500), + [anon_sym_isize] = ACTIONS(500), + [anon_sym_usize] = ACTIONS(500), + [anon_sym_f32] = ACTIONS(500), + [anon_sym_f64] = ACTIONS(500), + [anon_sym_bool] = ACTIONS(500), + [anon_sym_str] = ACTIONS(500), + [anon_sym_char] = ACTIONS(500), + [anon_sym_SQUOTE] = ACTIONS(500), + [anon_sym_as] = ACTIONS(500), + [anon_sym_async] = ACTIONS(500), + [anon_sym_break] = ACTIONS(500), + [anon_sym_const] = ACTIONS(500), + [anon_sym_continue] = ACTIONS(500), + [anon_sym_default] = ACTIONS(500), + [anon_sym_enum] = ACTIONS(500), + [anon_sym_fn] = ACTIONS(500), + [anon_sym_for] = ACTIONS(500), + [anon_sym_if] = ACTIONS(500), + [anon_sym_impl] = ACTIONS(500), + [anon_sym_let] = ACTIONS(500), + [anon_sym_loop] = ACTIONS(500), + [anon_sym_match] = ACTIONS(500), + [anon_sym_mod] = ACTIONS(500), + [anon_sym_pub] = ACTIONS(500), + [anon_sym_return] = ACTIONS(500), + [anon_sym_static] = ACTIONS(500), + [anon_sym_struct] = ACTIONS(500), + [anon_sym_trait] = ACTIONS(500), + [anon_sym_type] = ACTIONS(500), + [anon_sym_union] = ACTIONS(500), + [anon_sym_unsafe] = ACTIONS(500), + [anon_sym_use] = ACTIONS(500), + [anon_sym_while] = ACTIONS(500), + [anon_sym_POUND] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_extern] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(498), + [anon_sym_DOT_DOT] = ACTIONS(500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(498), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_AMP_AMP] = ACTIONS(498), + [anon_sym_PIPE_PIPE] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_CARET] = ACTIONS(500), + [anon_sym_EQ_EQ] = ACTIONS(498), + [anon_sym_BANG_EQ] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_GT_GT] = ACTIONS(500), + [anon_sym_SLASH] = ACTIONS(500), + [anon_sym_PERCENT] = ACTIONS(500), + [anon_sym_PLUS_EQ] = ACTIONS(498), + [anon_sym_DASH_EQ] = ACTIONS(498), + [anon_sym_STAR_EQ] = ACTIONS(498), + [anon_sym_SLASH_EQ] = ACTIONS(498), + [anon_sym_PERCENT_EQ] = ACTIONS(498), + [anon_sym_AMP_EQ] = ACTIONS(498), + [anon_sym_PIPE_EQ] = ACTIONS(498), + [anon_sym_CARET_EQ] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(498), + [anon_sym_GT_GT_EQ] = ACTIONS(498), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_else] = ACTIONS(396), + [anon_sym_move] = ACTIONS(500), + [anon_sym_DOT] = ACTIONS(500), + [sym_integer_literal] = ACTIONS(498), + [aux_sym_string_literal_token1] = ACTIONS(498), + [sym_char_literal] = ACTIONS(498), + [anon_sym_true] = ACTIONS(500), + [anon_sym_false] = ACTIONS(500), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(500), + [sym_super] = ACTIONS(500), + [sym_crate] = ACTIONS(500), + [sym_metavariable] = ACTIONS(498), + [sym_raw_string_literal] = ACTIONS(498), + [sym_float_literal] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + }, + [50] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [aux_sym_tuple_expression_repeat1] = STATE(47), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(498), + [anon_sym_RPAREN] = ACTIONS(502), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21254,161 +22731,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [50] = { - [sym_else_clause] = STATE(115), - [ts_builtin_sym_end] = ACTIONS(500), - [sym_identifier] = ACTIONS(502), - [anon_sym_SEMI] = ACTIONS(500), - [anon_sym_macro_rules_BANG] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACE] = ACTIONS(500), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(502), - [anon_sym_QMARK] = ACTIONS(500), - [anon_sym_u8] = ACTIONS(502), - [anon_sym_i8] = ACTIONS(502), - [anon_sym_u16] = ACTIONS(502), - [anon_sym_i16] = ACTIONS(502), - [anon_sym_u32] = ACTIONS(502), - [anon_sym_i32] = ACTIONS(502), - [anon_sym_u64] = ACTIONS(502), - [anon_sym_i64] = ACTIONS(502), - [anon_sym_u128] = ACTIONS(502), - [anon_sym_i128] = ACTIONS(502), - [anon_sym_isize] = ACTIONS(502), - [anon_sym_usize] = ACTIONS(502), - [anon_sym_f32] = ACTIONS(502), - [anon_sym_f64] = ACTIONS(502), - [anon_sym_bool] = ACTIONS(502), - [anon_sym_str] = ACTIONS(502), - [anon_sym_char] = ACTIONS(502), - [anon_sym_SQUOTE] = ACTIONS(502), - [anon_sym_as] = ACTIONS(502), - [anon_sym_async] = ACTIONS(502), - [anon_sym_break] = ACTIONS(502), - [anon_sym_const] = ACTIONS(502), - [anon_sym_continue] = ACTIONS(502), - [anon_sym_default] = ACTIONS(502), - [anon_sym_enum] = ACTIONS(502), - [anon_sym_fn] = ACTIONS(502), - [anon_sym_for] = ACTIONS(502), - [anon_sym_if] = ACTIONS(502), - [anon_sym_impl] = ACTIONS(502), - [anon_sym_let] = ACTIONS(502), - [anon_sym_loop] = ACTIONS(502), - [anon_sym_match] = ACTIONS(502), - [anon_sym_mod] = ACTIONS(502), - [anon_sym_pub] = ACTIONS(502), - [anon_sym_return] = ACTIONS(502), - [anon_sym_static] = ACTIONS(502), - [anon_sym_struct] = ACTIONS(502), - [anon_sym_trait] = ACTIONS(502), - [anon_sym_type] = ACTIONS(502), - [anon_sym_union] = ACTIONS(502), - [anon_sym_unsafe] = ACTIONS(502), - [anon_sym_use] = ACTIONS(502), - [anon_sym_while] = ACTIONS(502), - [anon_sym_POUND] = ACTIONS(500), - [anon_sym_BANG] = ACTIONS(502), - [anon_sym_EQ] = ACTIONS(502), - [anon_sym_extern] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(502), - [anon_sym_GT] = ACTIONS(502), - [anon_sym_COLON_COLON] = ACTIONS(500), - [anon_sym_AMP] = ACTIONS(502), - [anon_sym_DOT_DOT_DOT] = ACTIONS(500), - [anon_sym_DOT_DOT] = ACTIONS(502), - [anon_sym_DOT_DOT_EQ] = ACTIONS(500), - [anon_sym_DASH] = ACTIONS(502), - [anon_sym_AMP_AMP] = ACTIONS(500), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_PIPE] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_EQ_EQ] = ACTIONS(500), - [anon_sym_BANG_EQ] = ACTIONS(500), - [anon_sym_LT_EQ] = ACTIONS(500), - [anon_sym_GT_EQ] = ACTIONS(500), - [anon_sym_LT_LT] = ACTIONS(502), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_SLASH] = ACTIONS(502), - [anon_sym_PERCENT] = ACTIONS(502), - [anon_sym_PLUS_EQ] = ACTIONS(500), - [anon_sym_DASH_EQ] = ACTIONS(500), - [anon_sym_STAR_EQ] = ACTIONS(500), - [anon_sym_SLASH_EQ] = ACTIONS(500), - [anon_sym_PERCENT_EQ] = ACTIONS(500), - [anon_sym_AMP_EQ] = ACTIONS(500), - [anon_sym_PIPE_EQ] = ACTIONS(500), - [anon_sym_CARET_EQ] = ACTIONS(500), - [anon_sym_LT_LT_EQ] = ACTIONS(500), - [anon_sym_GT_GT_EQ] = ACTIONS(500), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_else] = ACTIONS(398), - [anon_sym_move] = ACTIONS(502), - [anon_sym_DOT] = ACTIONS(502), - [sym_integer_literal] = ACTIONS(500), - [aux_sym_string_literal_token1] = ACTIONS(500), - [sym_char_literal] = ACTIONS(500), - [anon_sym_true] = ACTIONS(502), - [anon_sym_false] = ACTIONS(502), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(502), - [sym_super] = ACTIONS(502), - [sym_crate] = ACTIONS(502), - [sym_metavariable] = ACTIONS(500), - [sym_raw_string_literal] = ACTIONS(500), - [sym_float_literal] = ACTIONS(500), - [sym_block_comment] = ACTIONS(3), - }, [51] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), [sym__expression] = STATE(1240), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21439,7 +22808,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(506), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -21449,7 +22817,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(506), + [sym_mutable_specifier] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), @@ -21470,159 +22839,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [52] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1210), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1162), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(512), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(512), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [53] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), [sym__expression] = STATE(1225), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21653,6 +23022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(516), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -21662,9 +23032,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [sym_mutable_specifier] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -21684,57 +23053,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [54] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1159), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(518), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -21771,7 +23139,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [sym_mutable_specifier] = ACTIONS(520), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -21791,52 +23160,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [55] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1164), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [56] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21867,7 +23343,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(520), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -21875,11 +23350,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(504), + [anon_sym_DASH_GT] = ACTIONS(512), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(506), [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -21897,53 +23373,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [56] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1256), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [57] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21974,7 +23450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(522), + [anon_sym_let] = ACTIONS(524), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -21984,8 +23460,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -22004,160 +23480,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [57] = { - [ts_builtin_sym_end] = ACTIONS(524), - [sym_identifier] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_macro_rules_BANG] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_RBRACE] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_STAR] = ACTIONS(526), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_u8] = ACTIONS(526), - [anon_sym_i8] = ACTIONS(526), - [anon_sym_u16] = ACTIONS(526), - [anon_sym_i16] = ACTIONS(526), - [anon_sym_u32] = ACTIONS(526), - [anon_sym_i32] = ACTIONS(526), - [anon_sym_u64] = ACTIONS(526), - [anon_sym_i64] = ACTIONS(526), - [anon_sym_u128] = ACTIONS(526), - [anon_sym_i128] = ACTIONS(526), - [anon_sym_isize] = ACTIONS(526), - [anon_sym_usize] = ACTIONS(526), - [anon_sym_f32] = ACTIONS(526), - [anon_sym_f64] = ACTIONS(526), - [anon_sym_bool] = ACTIONS(526), - [anon_sym_str] = ACTIONS(526), - [anon_sym_char] = ACTIONS(526), - [anon_sym_SQUOTE] = ACTIONS(526), - [anon_sym_as] = ACTIONS(526), - [anon_sym_async] = ACTIONS(526), - [anon_sym_break] = ACTIONS(526), - [anon_sym_const] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_default] = ACTIONS(526), - [anon_sym_enum] = ACTIONS(526), - [anon_sym_fn] = ACTIONS(526), - [anon_sym_for] = ACTIONS(526), - [anon_sym_if] = ACTIONS(526), - [anon_sym_impl] = ACTIONS(526), + [58] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), [anon_sym_let] = ACTIONS(526), - [anon_sym_loop] = ACTIONS(526), - [anon_sym_match] = ACTIONS(526), - [anon_sym_mod] = ACTIONS(526), - [anon_sym_pub] = ACTIONS(526), - [anon_sym_return] = ACTIONS(526), - [anon_sym_static] = ACTIONS(526), - [anon_sym_struct] = ACTIONS(526), - [anon_sym_trait] = ACTIONS(526), - [anon_sym_type] = ACTIONS(526), - [anon_sym_union] = ACTIONS(526), - [anon_sym_unsafe] = ACTIONS(526), - [anon_sym_use] = ACTIONS(526), - [anon_sym_while] = ACTIONS(526), - [anon_sym_POUND] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_EQ] = ACTIONS(526), - [anon_sym_extern] = ACTIONS(526), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_COLON_COLON] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(526), - [anon_sym_DOT_DOT_DOT] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DOT_DOT_EQ] = ACTIONS(524), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(526), - [anon_sym_CARET] = ACTIONS(526), - [anon_sym_EQ_EQ] = ACTIONS(524), - [anon_sym_BANG_EQ] = ACTIONS(524), - [anon_sym_LT_EQ] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(526), - [anon_sym_GT_GT] = ACTIONS(526), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PERCENT] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(524), - [anon_sym_DASH_EQ] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(524), - [anon_sym_SLASH_EQ] = ACTIONS(524), - [anon_sym_PERCENT_EQ] = ACTIONS(524), - [anon_sym_AMP_EQ] = ACTIONS(524), - [anon_sym_PIPE_EQ] = ACTIONS(524), - [anon_sym_CARET_EQ] = ACTIONS(524), - [anon_sym_LT_LT_EQ] = ACTIONS(524), - [anon_sym_GT_GT_EQ] = ACTIONS(524), - [anon_sym_yield] = ACTIONS(526), - [anon_sym_else] = ACTIONS(526), - [anon_sym_move] = ACTIONS(526), - [anon_sym_DOT] = ACTIONS(526), - [sym_integer_literal] = ACTIONS(524), - [aux_sym_string_literal_token1] = ACTIONS(524), - [sym_char_literal] = ACTIONS(524), - [anon_sym_true] = ACTIONS(526), - [anon_sym_false] = ACTIONS(526), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(526), - [sym_super] = ACTIONS(526), - [sym_crate] = ACTIONS(526), - [sym_metavariable] = ACTIONS(524), - [sym_raw_string_literal] = ACTIONS(524), - [sym_float_literal] = ACTIONS(524), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [58] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1227), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [59] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22198,8 +23674,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -22218,53 +23694,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [59] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1228), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [60] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22305,8 +23781,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -22325,53 +23801,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [60] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1271), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [61] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22412,8 +23888,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -22432,53 +23908,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [61] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1281), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [62] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22516,11 +23992,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(534), + [anon_sym_DASH_GT] = ACTIONS(522), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -22539,53 +24015,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [62] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [63] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22616,7 +24092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(536), + [anon_sym_let] = ACTIONS(534), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -22626,8 +24102,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -22646,57 +24122,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [63] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1147), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [64] = { + [ts_builtin_sym_end] = ACTIONS(536), + [sym_identifier] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_macro_rules_BANG] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_PLUS] = ACTIONS(538), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_QMARK] = ACTIONS(536), + [anon_sym_u8] = ACTIONS(538), + [anon_sym_i8] = ACTIONS(538), + [anon_sym_u16] = ACTIONS(538), + [anon_sym_i16] = ACTIONS(538), + [anon_sym_u32] = ACTIONS(538), + [anon_sym_i32] = ACTIONS(538), + [anon_sym_u64] = ACTIONS(538), + [anon_sym_i64] = ACTIONS(538), + [anon_sym_u128] = ACTIONS(538), + [anon_sym_i128] = ACTIONS(538), + [anon_sym_isize] = ACTIONS(538), + [anon_sym_usize] = ACTIONS(538), + [anon_sym_f32] = ACTIONS(538), + [anon_sym_f64] = ACTIONS(538), + [anon_sym_bool] = ACTIONS(538), + [anon_sym_str] = ACTIONS(538), + [anon_sym_char] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(538), + [anon_sym_as] = ACTIONS(538), + [anon_sym_async] = ACTIONS(538), + [anon_sym_break] = ACTIONS(538), + [anon_sym_const] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(538), + [anon_sym_default] = ACTIONS(538), + [anon_sym_enum] = ACTIONS(538), + [anon_sym_fn] = ACTIONS(538), + [anon_sym_for] = ACTIONS(538), + [anon_sym_if] = ACTIONS(538), + [anon_sym_impl] = ACTIONS(538), + [anon_sym_let] = ACTIONS(538), + [anon_sym_loop] = ACTIONS(538), + [anon_sym_match] = ACTIONS(538), + [anon_sym_mod] = ACTIONS(538), + [anon_sym_pub] = ACTIONS(538), + [anon_sym_return] = ACTIONS(538), + [anon_sym_static] = ACTIONS(538), + [anon_sym_struct] = ACTIONS(538), + [anon_sym_trait] = ACTIONS(538), + [anon_sym_type] = ACTIONS(538), + [anon_sym_union] = ACTIONS(538), + [anon_sym_unsafe] = ACTIONS(538), + [anon_sym_use] = ACTIONS(538), + [anon_sym_while] = ACTIONS(538), + [anon_sym_POUND] = ACTIONS(536), + [anon_sym_BANG] = ACTIONS(538), + [anon_sym_EQ] = ACTIONS(538), + [anon_sym_extern] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(538), + [anon_sym_GT] = ACTIONS(538), + [anon_sym_COLON_COLON] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(536), + [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(538), + [anon_sym_AMP_AMP] = ACTIONS(536), + [anon_sym_PIPE_PIPE] = ACTIONS(536), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_CARET] = ACTIONS(538), + [anon_sym_EQ_EQ] = ACTIONS(536), + [anon_sym_BANG_EQ] = ACTIONS(536), + [anon_sym_LT_EQ] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(536), + [anon_sym_LT_LT] = ACTIONS(538), + [anon_sym_GT_GT] = ACTIONS(538), + [anon_sym_SLASH] = ACTIONS(538), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_PLUS_EQ] = ACTIONS(536), + [anon_sym_DASH_EQ] = ACTIONS(536), + [anon_sym_STAR_EQ] = ACTIONS(536), + [anon_sym_SLASH_EQ] = ACTIONS(536), + [anon_sym_PERCENT_EQ] = ACTIONS(536), + [anon_sym_AMP_EQ] = ACTIONS(536), + [anon_sym_PIPE_EQ] = ACTIONS(536), + [anon_sym_CARET_EQ] = ACTIONS(536), + [anon_sym_LT_LT_EQ] = ACTIONS(536), + [anon_sym_GT_GT_EQ] = ACTIONS(536), + [anon_sym_yield] = ACTIONS(538), + [anon_sym_else] = ACTIONS(538), + [anon_sym_move] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(538), + [sym_integer_literal] = ACTIONS(536), + [aux_sym_string_literal_token1] = ACTIONS(536), + [sym_char_literal] = ACTIONS(536), + [anon_sym_true] = ACTIONS(538), + [anon_sym_false] = ACTIONS(538), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(538), + [sym_super] = ACTIONS(538), + [sym_crate] = ACTIONS(538), + [sym_metavariable] = ACTIONS(536), + [sym_raw_string_literal] = ACTIONS(536), + [sym_float_literal] = ACTIONS(536), + [sym_block_comment] = ACTIONS(3), + }, + [65] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(540), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [66] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(542), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -22730,12 +24421,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(538), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -22753,57 +24443,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [64] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1156), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [67] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(544), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -22840,8 +24531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(542), - [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -22860,160 +24550,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(544), - [sym_identifier] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_macro_rules_BANG] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(546), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_u8] = ACTIONS(546), - [anon_sym_i8] = ACTIONS(546), - [anon_sym_u16] = ACTIONS(546), - [anon_sym_i16] = ACTIONS(546), - [anon_sym_u32] = ACTIONS(546), - [anon_sym_i32] = ACTIONS(546), - [anon_sym_u64] = ACTIONS(546), - [anon_sym_i64] = ACTIONS(546), - [anon_sym_u128] = ACTIONS(546), - [anon_sym_i128] = ACTIONS(546), - [anon_sym_isize] = ACTIONS(546), - [anon_sym_usize] = ACTIONS(546), - [anon_sym_f32] = ACTIONS(546), - [anon_sym_f64] = ACTIONS(546), - [anon_sym_bool] = ACTIONS(546), - [anon_sym_str] = ACTIONS(546), - [anon_sym_char] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(546), - [anon_sym_as] = ACTIONS(546), - [anon_sym_async] = ACTIONS(546), - [anon_sym_break] = ACTIONS(546), - [anon_sym_const] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(546), - [anon_sym_default] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(546), - [anon_sym_fn] = ACTIONS(546), - [anon_sym_for] = ACTIONS(546), - [anon_sym_if] = ACTIONS(546), - [anon_sym_impl] = ACTIONS(546), - [anon_sym_let] = ACTIONS(546), - [anon_sym_loop] = ACTIONS(546), - [anon_sym_match] = ACTIONS(546), - [anon_sym_mod] = ACTIONS(546), - [anon_sym_pub] = ACTIONS(546), - [anon_sym_return] = ACTIONS(546), - [anon_sym_static] = ACTIONS(546), - [anon_sym_struct] = ACTIONS(546), - [anon_sym_trait] = ACTIONS(546), - [anon_sym_type] = ACTIONS(546), - [anon_sym_union] = ACTIONS(546), - [anon_sym_unsafe] = ACTIONS(546), - [anon_sym_use] = ACTIONS(546), - [anon_sym_while] = ACTIONS(546), - [anon_sym_POUND] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(546), - [anon_sym_EQ] = ACTIONS(546), - [anon_sym_extern] = ACTIONS(546), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_GT] = ACTIONS(546), - [anon_sym_COLON_COLON] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(544), - [anon_sym_DOT_DOT] = ACTIONS(546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(546), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(546), - [anon_sym_PERCENT] = ACTIONS(546), - [anon_sym_PLUS_EQ] = ACTIONS(544), - [anon_sym_DASH_EQ] = ACTIONS(544), - [anon_sym_STAR_EQ] = ACTIONS(544), - [anon_sym_SLASH_EQ] = ACTIONS(544), - [anon_sym_PERCENT_EQ] = ACTIONS(544), - [anon_sym_AMP_EQ] = ACTIONS(544), - [anon_sym_PIPE_EQ] = ACTIONS(544), - [anon_sym_CARET_EQ] = ACTIONS(544), - [anon_sym_LT_LT_EQ] = ACTIONS(544), - [anon_sym_GT_GT_EQ] = ACTIONS(544), - [anon_sym_yield] = ACTIONS(546), - [anon_sym_else] = ACTIONS(546), - [anon_sym_move] = ACTIONS(546), - [anon_sym_DOT] = ACTIONS(546), - [sym_integer_literal] = ACTIONS(544), - [aux_sym_string_literal_token1] = ACTIONS(544), - [sym_char_literal] = ACTIONS(544), - [anon_sym_true] = ACTIONS(546), - [anon_sym_false] = ACTIONS(546), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(546), - [sym_super] = ACTIONS(546), - [sym_crate] = ACTIONS(546), - [sym_metavariable] = ACTIONS(544), - [sym_raw_string_literal] = ACTIONS(544), - [sym_float_literal] = ACTIONS(544), - [sym_block_comment] = ACTIONS(3), - }, - [66] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [68] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1286), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23044,7 +24627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(548), + [anon_sym_let] = ACTIONS(546), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -23054,8 +24637,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -23074,7 +24657,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [67] = { + [69] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(548), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [70] = { [ts_builtin_sym_end] = ACTIONS(550), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(550), @@ -23181,165 +24871,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(550), [sym_block_comment] = ACTIONS(3), }, - [68] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1233), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [71] = { + [ts_builtin_sym_end] = ACTIONS(554), + [sym_identifier] = ACTIONS(556), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_macro_rules_BANG] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(556), + [anon_sym_i8] = ACTIONS(556), + [anon_sym_u16] = ACTIONS(556), + [anon_sym_i16] = ACTIONS(556), + [anon_sym_u32] = ACTIONS(556), + [anon_sym_i32] = ACTIONS(556), + [anon_sym_u64] = ACTIONS(556), + [anon_sym_i64] = ACTIONS(556), + [anon_sym_u128] = ACTIONS(556), + [anon_sym_i128] = ACTIONS(556), + [anon_sym_isize] = ACTIONS(556), + [anon_sym_usize] = ACTIONS(556), + [anon_sym_f32] = ACTIONS(556), + [anon_sym_f64] = ACTIONS(556), + [anon_sym_bool] = ACTIONS(556), + [anon_sym_str] = ACTIONS(556), + [anon_sym_char] = ACTIONS(556), + [anon_sym_SQUOTE] = ACTIONS(556), + [anon_sym_as] = ACTIONS(556), + [anon_sym_async] = ACTIONS(556), + [anon_sym_break] = ACTIONS(556), + [anon_sym_const] = ACTIONS(556), + [anon_sym_continue] = ACTIONS(556), + [anon_sym_default] = ACTIONS(556), + [anon_sym_enum] = ACTIONS(556), + [anon_sym_fn] = ACTIONS(556), + [anon_sym_for] = ACTIONS(556), + [anon_sym_if] = ACTIONS(556), + [anon_sym_impl] = ACTIONS(556), + [anon_sym_let] = ACTIONS(556), + [anon_sym_loop] = ACTIONS(556), + [anon_sym_match] = ACTIONS(556), + [anon_sym_mod] = ACTIONS(556), + [anon_sym_pub] = ACTIONS(556), + [anon_sym_return] = ACTIONS(556), + [anon_sym_static] = ACTIONS(556), + [anon_sym_struct] = ACTIONS(556), + [anon_sym_trait] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_union] = ACTIONS(556), + [anon_sym_unsafe] = ACTIONS(556), + [anon_sym_use] = ACTIONS(556), + [anon_sym_while] = ACTIONS(556), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_EQ] = ACTIONS(556), + [anon_sym_extern] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(556), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT] = ACTIONS(556), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_GT_GT] = ACTIONS(556), + [anon_sym_SLASH] = ACTIONS(556), + [anon_sym_PERCENT] = ACTIONS(556), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_yield] = ACTIONS(556), + [anon_sym_else] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_DOT] = ACTIONS(556), + [sym_integer_literal] = ACTIONS(554), + [aux_sym_string_literal_token1] = ACTIONS(554), + [sym_char_literal] = ACTIONS(554), + [anon_sym_true] = ACTIONS(556), + [anon_sym_false] = ACTIONS(556), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(556), + [sym_super] = ACTIONS(556), + [sym_crate] = ACTIONS(556), + [sym_metavariable] = ACTIONS(554), + [sym_raw_string_literal] = ACTIONS(554), + [sym_float_literal] = ACTIONS(554), [sym_block_comment] = ACTIONS(3), }, - [69] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [72] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1321), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(554), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -23395,58 +25084,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [70] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [73] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [74] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1322), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(556), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -23502,53 +25296,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [71] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1152), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [75] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1309), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23586,12 +25380,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(534), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -23609,7 +25402,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [72] = { + [76] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1248), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [77] = { [ts_builtin_sym_end] = ACTIONS(558), [sym_identifier] = ACTIONS(560), [anon_sym_SEMI] = ACTIONS(558), @@ -23715,159 +25614,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(558), [sym_block_comment] = ACTIONS(3), }, - [73] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1308), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [78] = { + [ts_builtin_sym_end] = ACTIONS(566), + [sym_identifier] = ACTIONS(568), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_macro_rules_BANG] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u128] = ACTIONS(568), + [anon_sym_i128] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_str] = ACTIONS(568), + [anon_sym_char] = ACTIONS(568), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_as] = ACTIONS(568), + [anon_sym_async] = ACTIONS(568), + [anon_sym_break] = ACTIONS(568), + [anon_sym_const] = ACTIONS(568), + [anon_sym_continue] = ACTIONS(568), + [anon_sym_default] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(568), + [anon_sym_fn] = ACTIONS(568), + [anon_sym_for] = ACTIONS(568), + [anon_sym_if] = ACTIONS(568), + [anon_sym_impl] = ACTIONS(568), + [anon_sym_let] = ACTIONS(568), + [anon_sym_loop] = ACTIONS(568), + [anon_sym_match] = ACTIONS(568), + [anon_sym_mod] = ACTIONS(568), + [anon_sym_pub] = ACTIONS(568), + [anon_sym_return] = ACTIONS(568), + [anon_sym_static] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(568), + [anon_sym_trait] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), + [anon_sym_union] = ACTIONS(568), + [anon_sym_unsafe] = ACTIONS(568), + [anon_sym_use] = ACTIONS(568), + [anon_sym_while] = ACTIONS(568), + [anon_sym_POUND] = ACTIONS(566), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_extern] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_move] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(566), + [aux_sym_string_literal_token1] = ACTIONS(566), + [sym_char_literal] = ACTIONS(566), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(568), + [sym_super] = ACTIONS(568), + [sym_crate] = ACTIONS(568), + [sym_metavariable] = ACTIONS(566), + [sym_raw_string_literal] = ACTIONS(566), + [sym_float_literal] = ACTIONS(566), [sym_block_comment] = ACTIONS(3), }, - [74] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1246), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [79] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1219), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23907,8 +25806,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -23927,53 +25826,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [75] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1314), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [80] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1295), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24033,53 +25932,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [76] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1243), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [81] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24119,8 +26018,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -24139,53 +26038,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [77] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1096), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [82] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1282), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [83] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1308), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24226,7 +26231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -24245,53 +26250,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [78] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1311), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [84] = { + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_macro_rules_BANG] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u128] = ACTIONS(572), + [anon_sym_i128] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_str] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_as] = ACTIONS(572), + [anon_sym_async] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_const] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(572), + [anon_sym_fn] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_impl] = ACTIONS(572), + [anon_sym_let] = ACTIONS(572), + [anon_sym_loop] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_mod] = ACTIONS(572), + [anon_sym_pub] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_static] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_trait] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_union] = ACTIONS(572), + [anon_sym_unsafe] = ACTIONS(572), + [anon_sym_use] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(570), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_extern] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_move] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(572), + [sym_integer_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(570), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(572), + [sym_super] = ACTIONS(572), + [sym_crate] = ACTIONS(572), + [sym_metavariable] = ACTIONS(570), + [sym_raw_string_literal] = ACTIONS(570), + [sym_float_literal] = ACTIONS(570), + [sym_block_comment] = ACTIONS(3), + }, + [85] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1294), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24351,478 +26462,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [79] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), + [86] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1300), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [80] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [81] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1236), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [82] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [83] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1307), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(280), + [87] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), @@ -24881,265 +26674,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1260), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [85] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1238), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [86] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1305), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [88] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25199,159 +26780,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [87] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), + [89] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), [sym__expression] = STATE(1275), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [88] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1294), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25411,53 +26886,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1304), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [90] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1301), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25517,53 +26992,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [90] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1292), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [91] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1173), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25604,7 +27079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -25623,159 +27098,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [91] = { - [ts_builtin_sym_end] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_macro_rules_BANG] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(568), - [anon_sym_i8] = ACTIONS(568), - [anon_sym_u16] = ACTIONS(568), - [anon_sym_i16] = ACTIONS(568), - [anon_sym_u32] = ACTIONS(568), - [anon_sym_i32] = ACTIONS(568), - [anon_sym_u64] = ACTIONS(568), - [anon_sym_i64] = ACTIONS(568), - [anon_sym_u128] = ACTIONS(568), - [anon_sym_i128] = ACTIONS(568), - [anon_sym_isize] = ACTIONS(568), - [anon_sym_usize] = ACTIONS(568), - [anon_sym_f32] = ACTIONS(568), - [anon_sym_f64] = ACTIONS(568), - [anon_sym_bool] = ACTIONS(568), - [anon_sym_str] = ACTIONS(568), - [anon_sym_char] = ACTIONS(568), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_as] = ACTIONS(568), - [anon_sym_async] = ACTIONS(568), - [anon_sym_break] = ACTIONS(568), - [anon_sym_const] = ACTIONS(568), - [anon_sym_continue] = ACTIONS(568), - [anon_sym_default] = ACTIONS(568), - [anon_sym_enum] = ACTIONS(568), - [anon_sym_fn] = ACTIONS(568), - [anon_sym_for] = ACTIONS(568), - [anon_sym_if] = ACTIONS(568), - [anon_sym_impl] = ACTIONS(568), - [anon_sym_let] = ACTIONS(568), - [anon_sym_loop] = ACTIONS(568), - [anon_sym_match] = ACTIONS(568), - [anon_sym_mod] = ACTIONS(568), - [anon_sym_pub] = ACTIONS(568), - [anon_sym_return] = ACTIONS(568), - [anon_sym_static] = ACTIONS(568), - [anon_sym_struct] = ACTIONS(568), - [anon_sym_trait] = ACTIONS(568), - [anon_sym_type] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [anon_sym_unsafe] = ACTIONS(568), - [anon_sym_use] = ACTIONS(568), - [anon_sym_while] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(566), - [anon_sym_BANG] = ACTIONS(568), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(568), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_yield] = ACTIONS(568), - [anon_sym_move] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(566), - [aux_sym_string_literal_token1] = ACTIONS(566), - [sym_char_literal] = ACTIONS(566), - [anon_sym_true] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(568), - [sym_super] = ACTIONS(568), - [sym_crate] = ACTIONS(568), - [sym_metavariable] = ACTIONS(566), - [sym_raw_string_literal] = ACTIONS(566), - [sym_float_literal] = ACTIONS(566), - [sym_block_comment] = ACTIONS(3), - }, [92] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25815,8 +27184,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -25836,52 +27205,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [93] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1155), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1174), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25922,7 +27291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -25942,52 +27311,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [94] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1282), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1172), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26028,7 +27397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -26048,218 +27417,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [95] = { - [ts_builtin_sym_end] = ACTIONS(570), - [sym_identifier] = ACTIONS(572), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_macro_rules_BANG] = ACTIONS(570), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_u8] = ACTIONS(572), - [anon_sym_i8] = ACTIONS(572), - [anon_sym_u16] = ACTIONS(572), - [anon_sym_i16] = ACTIONS(572), - [anon_sym_u32] = ACTIONS(572), - [anon_sym_i32] = ACTIONS(572), - [anon_sym_u64] = ACTIONS(572), - [anon_sym_i64] = ACTIONS(572), - [anon_sym_u128] = ACTIONS(572), - [anon_sym_i128] = ACTIONS(572), - [anon_sym_isize] = ACTIONS(572), - [anon_sym_usize] = ACTIONS(572), - [anon_sym_f32] = ACTIONS(572), - [anon_sym_f64] = ACTIONS(572), - [anon_sym_bool] = ACTIONS(572), - [anon_sym_str] = ACTIONS(572), - [anon_sym_char] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(572), - [anon_sym_as] = ACTIONS(572), - [anon_sym_async] = ACTIONS(572), - [anon_sym_break] = ACTIONS(572), - [anon_sym_const] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(572), - [anon_sym_default] = ACTIONS(572), - [anon_sym_enum] = ACTIONS(572), - [anon_sym_fn] = ACTIONS(572), - [anon_sym_for] = ACTIONS(572), - [anon_sym_if] = ACTIONS(572), - [anon_sym_impl] = ACTIONS(572), - [anon_sym_let] = ACTIONS(572), - [anon_sym_loop] = ACTIONS(572), - [anon_sym_match] = ACTIONS(572), - [anon_sym_mod] = ACTIONS(572), - [anon_sym_pub] = ACTIONS(572), - [anon_sym_return] = ACTIONS(572), - [anon_sym_static] = ACTIONS(572), - [anon_sym_struct] = ACTIONS(572), - [anon_sym_trait] = ACTIONS(572), - [anon_sym_type] = ACTIONS(572), - [anon_sym_union] = ACTIONS(572), - [anon_sym_unsafe] = ACTIONS(572), - [anon_sym_use] = ACTIONS(572), - [anon_sym_while] = ACTIONS(572), - [anon_sym_POUND] = ACTIONS(570), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_EQ] = ACTIONS(572), - [anon_sym_extern] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_COLON_COLON] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(570), - [anon_sym_DOT_DOT] = ACTIONS(572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_AMP_AMP] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_yield] = ACTIONS(572), - [anon_sym_move] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(572), - [sym_integer_literal] = ACTIONS(570), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(570), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(572), - [sym_super] = ACTIONS(572), - [sym_crate] = ACTIONS(572), - [sym_metavariable] = ACTIONS(570), - [sym_raw_string_literal] = ACTIONS(570), - [sym_float_literal] = ACTIONS(570), - [sym_block_comment] = ACTIONS(3), - }, - [96] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1280), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [97] = { [ts_builtin_sym_end] = ACTIONS(574), [sym_identifier] = ACTIONS(576), [anon_sym_SEMI] = ACTIONS(574), @@ -26365,6 +27522,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(574), [sym_block_comment] = ACTIONS(3), }, + [96] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1283), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [97] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1169), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, [98] = { [ts_builtin_sym_end] = ACTIONS(578), [sym_identifier] = ACTIONS(580), @@ -26472,158 +27841,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [99] = { - [ts_builtin_sym_end] = ACTIONS(582), - [sym_identifier] = ACTIONS(584), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_macro_rules_BANG] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(582), - [anon_sym_u8] = ACTIONS(584), - [anon_sym_i8] = ACTIONS(584), - [anon_sym_u16] = ACTIONS(584), - [anon_sym_i16] = ACTIONS(584), - [anon_sym_u32] = ACTIONS(584), - [anon_sym_i32] = ACTIONS(584), - [anon_sym_u64] = ACTIONS(584), - [anon_sym_i64] = ACTIONS(584), - [anon_sym_u128] = ACTIONS(584), - [anon_sym_i128] = ACTIONS(584), - [anon_sym_isize] = ACTIONS(584), - [anon_sym_usize] = ACTIONS(584), - [anon_sym_f32] = ACTIONS(584), - [anon_sym_f64] = ACTIONS(584), - [anon_sym_bool] = ACTIONS(584), - [anon_sym_str] = ACTIONS(584), - [anon_sym_char] = ACTIONS(584), - [anon_sym_SQUOTE] = ACTIONS(584), - [anon_sym_as] = ACTIONS(584), - [anon_sym_async] = ACTIONS(584), - [anon_sym_break] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_default] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(584), - [anon_sym_fn] = ACTIONS(584), - [anon_sym_for] = ACTIONS(584), - [anon_sym_if] = ACTIONS(584), - [anon_sym_impl] = ACTIONS(584), - [anon_sym_let] = ACTIONS(584), - [anon_sym_loop] = ACTIONS(584), - [anon_sym_match] = ACTIONS(584), - [anon_sym_mod] = ACTIONS(584), - [anon_sym_pub] = ACTIONS(584), - [anon_sym_return] = ACTIONS(584), - [anon_sym_static] = ACTIONS(584), - [anon_sym_struct] = ACTIONS(584), - [anon_sym_trait] = ACTIONS(584), - [anon_sym_type] = ACTIONS(584), - [anon_sym_union] = ACTIONS(584), - [anon_sym_unsafe] = ACTIONS(584), - [anon_sym_use] = ACTIONS(584), - [anon_sym_while] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(582), - [anon_sym_BANG] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(584), - [anon_sym_extern] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_COLON_COLON] = ACTIONS(582), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(582), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_PLUS_EQ] = ACTIONS(582), - [anon_sym_DASH_EQ] = ACTIONS(582), - [anon_sym_STAR_EQ] = ACTIONS(582), - [anon_sym_SLASH_EQ] = ACTIONS(582), - [anon_sym_PERCENT_EQ] = ACTIONS(582), - [anon_sym_AMP_EQ] = ACTIONS(582), - [anon_sym_PIPE_EQ] = ACTIONS(582), - [anon_sym_CARET_EQ] = ACTIONS(582), - [anon_sym_LT_LT_EQ] = ACTIONS(582), - [anon_sym_GT_GT_EQ] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(584), - [anon_sym_move] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(584), - [sym_integer_literal] = ACTIONS(582), - [aux_sym_string_literal_token1] = ACTIONS(582), - [sym_char_literal] = ACTIONS(582), - [anon_sym_true] = ACTIONS(584), - [anon_sym_false] = ACTIONS(584), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(584), - [sym_super] = ACTIONS(584), - [sym_crate] = ACTIONS(584), - [sym_metavariable] = ACTIONS(582), - [sym_raw_string_literal] = ACTIONS(582), - [sym_float_literal] = ACTIONS(582), - [sym_block_comment] = ACTIONS(3), - }, - [100] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1217), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26663,7 +27926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(506), [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), @@ -26683,265 +27946,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [101] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1284), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(280), + [100] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [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_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [102] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(280), + [101] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [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_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [103] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1288), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [102] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1303), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27001,53 +28264,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [104] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1297), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [103] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1167), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27088,7 +28351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27107,159 +28370,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [105] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1293), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(280), + [104] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [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_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [105] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [106] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1300), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1324), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27320,55 +28689,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [107] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1273), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(230), - [sym_if_let_expression] = STATE(230), - [sym_match_expression] = STATE(230), - [sym_while_expression] = STATE(230), - [sym_while_let_expression] = STATE(230), - [sym_loop_expression] = STATE(230), - [sym_for_expression] = STATE(230), - [sym_const_block] = STATE(230), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2539), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(230), - [sym_async_block] = STATE(230), - [sym_block] = STATE(230), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1304), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -27389,19 +28758,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(588), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(590), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_loop] = ACTIONS(596), - [anon_sym_match] = ACTIONS(598), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -27426,52 +28795,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [108] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1310), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [ts_builtin_sym_end] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(582), + [anon_sym_macro_rules_BANG] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_STAR] = ACTIONS(584), + [anon_sym_QMARK] = ACTIONS(582), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [anon_sym_POUND] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_extern] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_COLON_COLON] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(584), + [anon_sym_DOT_DOT_EQ] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_AMP_AMP] = ACTIONS(582), + [anon_sym_PIPE_PIPE] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(584), + [anon_sym_CARET] = ACTIONS(584), + [anon_sym_EQ_EQ] = ACTIONS(582), + [anon_sym_BANG_EQ] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(582), + [anon_sym_LT_LT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_PLUS_EQ] = ACTIONS(582), + [anon_sym_DASH_EQ] = ACTIONS(582), + [anon_sym_STAR_EQ] = ACTIONS(582), + [anon_sym_SLASH_EQ] = ACTIONS(582), + [anon_sym_PERCENT_EQ] = ACTIONS(582), + [anon_sym_AMP_EQ] = ACTIONS(582), + [anon_sym_PIPE_EQ] = ACTIONS(582), + [anon_sym_CARET_EQ] = ACTIONS(582), + [anon_sym_LT_LT_EQ] = ACTIONS(582), + [anon_sym_GT_GT_EQ] = ACTIONS(582), + [anon_sym_yield] = ACTIONS(584), + [anon_sym_move] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(582), + [aux_sym_string_literal_token1] = ACTIONS(582), + [sym_char_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(584), + [anon_sym_false] = ACTIONS(584), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_metavariable] = ACTIONS(582), + [sym_raw_string_literal] = ACTIONS(582), + [sym_float_literal] = ACTIONS(582), + [sym_block_comment] = ACTIONS(3), + }, + [109] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1316), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27531,162 +29006,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [109] = { - [ts_builtin_sym_end] = ACTIONS(604), - [sym_identifier] = ACTIONS(606), - [anon_sym_SEMI] = ACTIONS(604), - [anon_sym_macro_rules_BANG] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_RBRACE] = ACTIONS(604), - [anon_sym_LBRACK] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_QMARK] = ACTIONS(604), - [anon_sym_u8] = ACTIONS(606), - [anon_sym_i8] = ACTIONS(606), - [anon_sym_u16] = ACTIONS(606), - [anon_sym_i16] = ACTIONS(606), - [anon_sym_u32] = ACTIONS(606), - [anon_sym_i32] = ACTIONS(606), - [anon_sym_u64] = ACTIONS(606), - [anon_sym_i64] = ACTIONS(606), - [anon_sym_u128] = ACTIONS(606), - [anon_sym_i128] = ACTIONS(606), - [anon_sym_isize] = ACTIONS(606), - [anon_sym_usize] = ACTIONS(606), - [anon_sym_f32] = ACTIONS(606), - [anon_sym_f64] = ACTIONS(606), - [anon_sym_bool] = ACTIONS(606), - [anon_sym_str] = ACTIONS(606), - [anon_sym_char] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_as] = ACTIONS(606), - [anon_sym_async] = ACTIONS(606), - [anon_sym_break] = ACTIONS(606), - [anon_sym_const] = ACTIONS(606), - [anon_sym_continue] = ACTIONS(606), - [anon_sym_default] = ACTIONS(606), - [anon_sym_enum] = ACTIONS(606), - [anon_sym_fn] = ACTIONS(606), - [anon_sym_for] = ACTIONS(606), - [anon_sym_if] = ACTIONS(606), - [anon_sym_impl] = ACTIONS(606), - [anon_sym_let] = ACTIONS(606), - [anon_sym_loop] = ACTIONS(606), - [anon_sym_match] = ACTIONS(606), - [anon_sym_mod] = ACTIONS(606), - [anon_sym_pub] = ACTIONS(606), - [anon_sym_return] = ACTIONS(606), - [anon_sym_static] = ACTIONS(606), - [anon_sym_struct] = ACTIONS(606), - [anon_sym_trait] = ACTIONS(606), - [anon_sym_type] = ACTIONS(606), - [anon_sym_union] = ACTIONS(606), - [anon_sym_unsafe] = ACTIONS(606), - [anon_sym_use] = ACTIONS(606), - [anon_sym_while] = ACTIONS(606), - [anon_sym_POUND] = ACTIONS(604), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_EQ] = ACTIONS(606), - [anon_sym_extern] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_GT] = ACTIONS(606), - [anon_sym_COLON_COLON] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DOT_DOT_EQ] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_AMP_AMP] = ACTIONS(604), - [anon_sym_PIPE_PIPE] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_CARET] = ACTIONS(606), - [anon_sym_EQ_EQ] = ACTIONS(604), - [anon_sym_BANG_EQ] = ACTIONS(604), - [anon_sym_LT_EQ] = ACTIONS(604), - [anon_sym_GT_EQ] = ACTIONS(604), - [anon_sym_LT_LT] = ACTIONS(606), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_SLASH] = ACTIONS(606), - [anon_sym_PERCENT] = ACTIONS(606), - [anon_sym_PLUS_EQ] = ACTIONS(604), - [anon_sym_DASH_EQ] = ACTIONS(604), - [anon_sym_STAR_EQ] = ACTIONS(604), - [anon_sym_SLASH_EQ] = ACTIONS(604), - [anon_sym_PERCENT_EQ] = ACTIONS(604), - [anon_sym_AMP_EQ] = ACTIONS(604), - [anon_sym_PIPE_EQ] = ACTIONS(604), - [anon_sym_CARET_EQ] = ACTIONS(604), - [anon_sym_LT_LT_EQ] = ACTIONS(604), - [anon_sym_GT_GT_EQ] = ACTIONS(604), - [anon_sym_yield] = ACTIONS(606), - [anon_sym_move] = ACTIONS(606), - [anon_sym_DOT] = ACTIONS(606), - [sym_integer_literal] = ACTIONS(604), - [aux_sym_string_literal_token1] = ACTIONS(604), - [sym_char_literal] = ACTIONS(604), - [anon_sym_true] = ACTIONS(606), - [anon_sym_false] = ACTIONS(606), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(606), - [sym_super] = ACTIONS(606), - [sym_crate] = ACTIONS(606), - [sym_metavariable] = ACTIONS(604), - [sym_raw_string_literal] = ACTIONS(604), - [sym_float_literal] = ACTIONS(604), - [sym_block_comment] = ACTIONS(3), - }, [110] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1289), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(230), - [sym_if_let_expression] = STATE(230), - [sym_match_expression] = STATE(230), - [sym_while_expression] = STATE(230), - [sym_while_let_expression] = STATE(230), - [sym_loop_expression] = STATE(230), - [sym_for_expression] = STATE(230), - [sym_const_block] = STATE(230), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2539), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(230), - [sym_async_block] = STATE(230), - [sym_block] = STATE(230), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1124), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -27707,24 +29076,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(588), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(590), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_loop] = ACTIONS(596), - [anon_sym_match] = ACTIONS(598), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27744,370 +29113,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [111] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1286), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [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_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [112] = { - [ts_builtin_sym_end] = ACTIONS(608), - [sym_identifier] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(608), - [anon_sym_macro_rules_BANG] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(608), - [anon_sym_RBRACE] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(608), - [anon_sym_u8] = ACTIONS(610), - [anon_sym_i8] = ACTIONS(610), - [anon_sym_u16] = ACTIONS(610), - [anon_sym_i16] = ACTIONS(610), - [anon_sym_u32] = ACTIONS(610), - [anon_sym_i32] = ACTIONS(610), - [anon_sym_u64] = ACTIONS(610), - [anon_sym_i64] = ACTIONS(610), - [anon_sym_u128] = ACTIONS(610), - [anon_sym_i128] = ACTIONS(610), - [anon_sym_isize] = ACTIONS(610), - [anon_sym_usize] = ACTIONS(610), - [anon_sym_f32] = ACTIONS(610), - [anon_sym_f64] = ACTIONS(610), - [anon_sym_bool] = ACTIONS(610), - [anon_sym_str] = ACTIONS(610), - [anon_sym_char] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_as] = ACTIONS(610), - [anon_sym_async] = ACTIONS(610), - [anon_sym_break] = ACTIONS(610), - [anon_sym_const] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(610), - [anon_sym_default] = ACTIONS(610), - [anon_sym_enum] = ACTIONS(610), - [anon_sym_fn] = ACTIONS(610), - [anon_sym_for] = ACTIONS(610), - [anon_sym_if] = ACTIONS(610), - [anon_sym_impl] = ACTIONS(610), - [anon_sym_let] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(610), - [anon_sym_match] = ACTIONS(610), - [anon_sym_mod] = ACTIONS(610), - [anon_sym_pub] = ACTIONS(610), - [anon_sym_return] = ACTIONS(610), - [anon_sym_static] = ACTIONS(610), - [anon_sym_struct] = ACTIONS(610), - [anon_sym_trait] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_union] = ACTIONS(610), - [anon_sym_unsafe] = ACTIONS(610), - [anon_sym_use] = ACTIONS(610), - [anon_sym_while] = ACTIONS(610), - [anon_sym_POUND] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(610), - [anon_sym_EQ] = ACTIONS(610), - [anon_sym_extern] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_COLON_COLON] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_DOT_DOT] = ACTIONS(610), - [anon_sym_DOT_DOT_EQ] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(608), - [anon_sym_PIPE_PIPE] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_CARET] = ACTIONS(610), - [anon_sym_EQ_EQ] = ACTIONS(608), - [anon_sym_BANG_EQ] = ACTIONS(608), - [anon_sym_LT_EQ] = ACTIONS(608), - [anon_sym_GT_EQ] = ACTIONS(608), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_SLASH] = ACTIONS(610), - [anon_sym_PERCENT] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(608), - [anon_sym_STAR_EQ] = ACTIONS(608), - [anon_sym_SLASH_EQ] = ACTIONS(608), - [anon_sym_PERCENT_EQ] = ACTIONS(608), - [anon_sym_AMP_EQ] = ACTIONS(608), - [anon_sym_PIPE_EQ] = ACTIONS(608), - [anon_sym_CARET_EQ] = ACTIONS(608), - [anon_sym_LT_LT_EQ] = ACTIONS(608), - [anon_sym_GT_GT_EQ] = ACTIONS(608), - [anon_sym_yield] = ACTIONS(610), - [anon_sym_move] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(610), - [sym_integer_literal] = ACTIONS(608), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(608), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(610), - [sym_super] = ACTIONS(610), - [sym_crate] = ACTIONS(610), - [sym_metavariable] = ACTIONS(608), - [sym_raw_string_literal] = ACTIONS(608), - [sym_float_literal] = ACTIONS(608), - [sym_block_comment] = ACTIONS(3), - }, - [113] = { - [ts_builtin_sym_end] = ACTIONS(612), - [sym_identifier] = ACTIONS(614), - [anon_sym_SEMI] = ACTIONS(612), - [anon_sym_macro_rules_BANG] = ACTIONS(612), - [anon_sym_LPAREN] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(612), - [anon_sym_RBRACE] = ACTIONS(612), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(614), - [anon_sym_QMARK] = ACTIONS(612), - [anon_sym_u8] = ACTIONS(614), - [anon_sym_i8] = ACTIONS(614), - [anon_sym_u16] = ACTIONS(614), - [anon_sym_i16] = ACTIONS(614), - [anon_sym_u32] = ACTIONS(614), - [anon_sym_i32] = ACTIONS(614), - [anon_sym_u64] = ACTIONS(614), - [anon_sym_i64] = ACTIONS(614), - [anon_sym_u128] = ACTIONS(614), - [anon_sym_i128] = ACTIONS(614), - [anon_sym_isize] = ACTIONS(614), - [anon_sym_usize] = ACTIONS(614), - [anon_sym_f32] = ACTIONS(614), - [anon_sym_f64] = ACTIONS(614), - [anon_sym_bool] = ACTIONS(614), - [anon_sym_str] = ACTIONS(614), - [anon_sym_char] = ACTIONS(614), - [anon_sym_SQUOTE] = ACTIONS(614), - [anon_sym_as] = ACTIONS(614), - [anon_sym_async] = ACTIONS(614), - [anon_sym_break] = ACTIONS(614), - [anon_sym_const] = ACTIONS(614), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_default] = ACTIONS(614), - [anon_sym_enum] = ACTIONS(614), - [anon_sym_fn] = ACTIONS(614), - [anon_sym_for] = ACTIONS(614), - [anon_sym_if] = ACTIONS(614), - [anon_sym_impl] = ACTIONS(614), - [anon_sym_let] = ACTIONS(614), - [anon_sym_loop] = ACTIONS(614), - [anon_sym_match] = ACTIONS(614), - [anon_sym_mod] = ACTIONS(614), - [anon_sym_pub] = ACTIONS(614), - [anon_sym_return] = ACTIONS(614), - [anon_sym_static] = ACTIONS(614), - [anon_sym_struct] = ACTIONS(614), - [anon_sym_trait] = ACTIONS(614), - [anon_sym_type] = ACTIONS(614), - [anon_sym_union] = ACTIONS(614), - [anon_sym_unsafe] = ACTIONS(614), - [anon_sym_use] = ACTIONS(614), - [anon_sym_while] = ACTIONS(614), - [anon_sym_POUND] = ACTIONS(612), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_EQ] = ACTIONS(614), - [anon_sym_extern] = ACTIONS(614), - [anon_sym_LT] = ACTIONS(614), - [anon_sym_GT] = ACTIONS(614), - [anon_sym_COLON_COLON] = ACTIONS(612), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [anon_sym_DOT_DOT] = ACTIONS(614), - [anon_sym_DOT_DOT_EQ] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_AMP_AMP] = ACTIONS(612), - [anon_sym_PIPE_PIPE] = ACTIONS(612), - [anon_sym_PIPE] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_EQ_EQ] = ACTIONS(612), - [anon_sym_BANG_EQ] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(612), - [anon_sym_GT_EQ] = ACTIONS(612), - [anon_sym_LT_LT] = ACTIONS(614), - [anon_sym_GT_GT] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(614), - [anon_sym_PERCENT] = ACTIONS(614), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_move] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(614), - [sym_integer_literal] = ACTIONS(612), - [aux_sym_string_literal_token1] = ACTIONS(612), - [sym_char_literal] = ACTIONS(612), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1247), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(614), - [sym_super] = ACTIONS(614), - [sym_crate] = ACTIONS(614), - [sym_metavariable] = ACTIONS(612), - [sym_raw_string_literal] = ACTIONS(612), - [sym_float_literal] = ACTIONS(612), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [114] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [113] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28147,7 +29410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(506), [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), @@ -28167,265 +29430,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [115] = { - [ts_builtin_sym_end] = ACTIONS(616), - [sym_identifier] = ACTIONS(618), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_macro_rules_BANG] = ACTIONS(616), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_LBRACK] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(618), - [anon_sym_QMARK] = ACTIONS(616), - [anon_sym_u8] = ACTIONS(618), - [anon_sym_i8] = ACTIONS(618), - [anon_sym_u16] = ACTIONS(618), - [anon_sym_i16] = ACTIONS(618), - [anon_sym_u32] = ACTIONS(618), - [anon_sym_i32] = ACTIONS(618), - [anon_sym_u64] = ACTIONS(618), - [anon_sym_i64] = ACTIONS(618), - [anon_sym_u128] = ACTIONS(618), - [anon_sym_i128] = ACTIONS(618), - [anon_sym_isize] = ACTIONS(618), - [anon_sym_usize] = ACTIONS(618), - [anon_sym_f32] = ACTIONS(618), - [anon_sym_f64] = ACTIONS(618), - [anon_sym_bool] = ACTIONS(618), - [anon_sym_str] = ACTIONS(618), - [anon_sym_char] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(618), - [anon_sym_as] = ACTIONS(618), - [anon_sym_async] = ACTIONS(618), - [anon_sym_break] = ACTIONS(618), - [anon_sym_const] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(618), - [anon_sym_default] = ACTIONS(618), - [anon_sym_enum] = ACTIONS(618), - [anon_sym_fn] = ACTIONS(618), - [anon_sym_for] = ACTIONS(618), - [anon_sym_if] = ACTIONS(618), - [anon_sym_impl] = ACTIONS(618), - [anon_sym_let] = ACTIONS(618), - [anon_sym_loop] = ACTIONS(618), - [anon_sym_match] = ACTIONS(618), - [anon_sym_mod] = ACTIONS(618), - [anon_sym_pub] = ACTIONS(618), - [anon_sym_return] = ACTIONS(618), - [anon_sym_static] = ACTIONS(618), - [anon_sym_struct] = ACTIONS(618), - [anon_sym_trait] = ACTIONS(618), - [anon_sym_type] = ACTIONS(618), - [anon_sym_union] = ACTIONS(618), - [anon_sym_unsafe] = ACTIONS(618), - [anon_sym_use] = ACTIONS(618), - [anon_sym_while] = ACTIONS(618), - [anon_sym_POUND] = ACTIONS(616), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_EQ] = ACTIONS(618), - [anon_sym_extern] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(618), - [anon_sym_GT] = ACTIONS(618), - [anon_sym_COLON_COLON] = ACTIONS(616), - [anon_sym_AMP] = ACTIONS(618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(616), - [anon_sym_DOT_DOT] = ACTIONS(618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_AMP_AMP] = ACTIONS(616), - [anon_sym_PIPE_PIPE] = ACTIONS(616), - [anon_sym_PIPE] = ACTIONS(618), - [anon_sym_CARET] = ACTIONS(618), - [anon_sym_EQ_EQ] = ACTIONS(616), - [anon_sym_BANG_EQ] = ACTIONS(616), - [anon_sym_LT_EQ] = ACTIONS(616), - [anon_sym_GT_EQ] = ACTIONS(616), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_GT_GT] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(618), - [anon_sym_PLUS_EQ] = ACTIONS(616), - [anon_sym_DASH_EQ] = ACTIONS(616), - [anon_sym_STAR_EQ] = ACTIONS(616), - [anon_sym_SLASH_EQ] = ACTIONS(616), - [anon_sym_PERCENT_EQ] = ACTIONS(616), - [anon_sym_AMP_EQ] = ACTIONS(616), - [anon_sym_PIPE_EQ] = ACTIONS(616), - [anon_sym_CARET_EQ] = ACTIONS(616), - [anon_sym_LT_LT_EQ] = ACTIONS(616), - [anon_sym_GT_GT_EQ] = ACTIONS(616), - [anon_sym_yield] = ACTIONS(618), - [anon_sym_move] = ACTIONS(618), - [anon_sym_DOT] = ACTIONS(618), - [sym_integer_literal] = ACTIONS(616), - [aux_sym_string_literal_token1] = ACTIONS(616), - [sym_char_literal] = ACTIONS(616), - [anon_sym_true] = ACTIONS(618), - [anon_sym_false] = ACTIONS(618), + [114] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(618), - [sym_super] = ACTIONS(618), - [sym_crate] = ACTIONS(618), - [sym_metavariable] = ACTIONS(616), - [sym_raw_string_literal] = ACTIONS(616), - [sym_float_literal] = ACTIONS(616), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [115] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [116] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1146), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [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_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [117] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1154), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [ts_builtin_sym_end] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_macro_rules_BANG] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(588), + [anon_sym_i8] = ACTIONS(588), + [anon_sym_u16] = ACTIONS(588), + [anon_sym_i16] = ACTIONS(588), + [anon_sym_u32] = ACTIONS(588), + [anon_sym_i32] = ACTIONS(588), + [anon_sym_u64] = ACTIONS(588), + [anon_sym_i64] = ACTIONS(588), + [anon_sym_u128] = ACTIONS(588), + [anon_sym_i128] = ACTIONS(588), + [anon_sym_isize] = ACTIONS(588), + [anon_sym_usize] = ACTIONS(588), + [anon_sym_f32] = ACTIONS(588), + [anon_sym_f64] = ACTIONS(588), + [anon_sym_bool] = ACTIONS(588), + [anon_sym_str] = ACTIONS(588), + [anon_sym_char] = ACTIONS(588), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_as] = ACTIONS(588), + [anon_sym_async] = ACTIONS(588), + [anon_sym_break] = ACTIONS(588), + [anon_sym_const] = ACTIONS(588), + [anon_sym_continue] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_enum] = ACTIONS(588), + [anon_sym_fn] = ACTIONS(588), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(588), + [anon_sym_impl] = ACTIONS(588), + [anon_sym_let] = ACTIONS(588), + [anon_sym_loop] = ACTIONS(588), + [anon_sym_match] = ACTIONS(588), + [anon_sym_mod] = ACTIONS(588), + [anon_sym_pub] = ACTIONS(588), + [anon_sym_return] = ACTIONS(588), + [anon_sym_static] = ACTIONS(588), + [anon_sym_struct] = ACTIONS(588), + [anon_sym_trait] = ACTIONS(588), + [anon_sym_type] = ACTIONS(588), + [anon_sym_union] = ACTIONS(588), + [anon_sym_unsafe] = ACTIONS(588), + [anon_sym_use] = ACTIONS(588), + [anon_sym_while] = ACTIONS(588), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(588), + [anon_sym_extern] = ACTIONS(588), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_GT] = ACTIONS(588), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(588), + [anon_sym_PERCENT] = ACTIONS(588), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_move] = ACTIONS(588), + [anon_sym_DOT] = ACTIONS(588), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(586), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(588), + [anon_sym_false] = ACTIONS(588), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(588), + [sym_super] = ACTIONS(588), + [sym_crate] = ACTIONS(588), + [sym_metavariable] = ACTIONS(586), + [sym_raw_string_literal] = ACTIONS(586), + [sym_float_literal] = ACTIONS(586), + [sym_block_comment] = ACTIONS(3), + }, + [118] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28466,7 +29941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28485,53 +29960,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1158), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [119] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1319), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28572,7 +30047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28591,53 +30066,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1165), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [120] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1292), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28678,7 +30153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28697,53 +30172,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [120] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1167), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [121] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1124), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [122] = { + [ts_builtin_sym_end] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_macro_rules_BANG] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_QMARK] = ACTIONS(590), + [anon_sym_u8] = ACTIONS(592), + [anon_sym_i8] = ACTIONS(592), + [anon_sym_u16] = ACTIONS(592), + [anon_sym_i16] = ACTIONS(592), + [anon_sym_u32] = ACTIONS(592), + [anon_sym_i32] = ACTIONS(592), + [anon_sym_u64] = ACTIONS(592), + [anon_sym_i64] = ACTIONS(592), + [anon_sym_u128] = ACTIONS(592), + [anon_sym_i128] = ACTIONS(592), + [anon_sym_isize] = ACTIONS(592), + [anon_sym_usize] = ACTIONS(592), + [anon_sym_f32] = ACTIONS(592), + [anon_sym_f64] = ACTIONS(592), + [anon_sym_bool] = ACTIONS(592), + [anon_sym_str] = ACTIONS(592), + [anon_sym_char] = ACTIONS(592), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_as] = ACTIONS(592), + [anon_sym_async] = ACTIONS(592), + [anon_sym_break] = ACTIONS(592), + [anon_sym_const] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(592), + [anon_sym_fn] = ACTIONS(592), + [anon_sym_for] = ACTIONS(592), + [anon_sym_if] = ACTIONS(592), + [anon_sym_impl] = ACTIONS(592), + [anon_sym_let] = ACTIONS(592), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(592), + [anon_sym_mod] = ACTIONS(592), + [anon_sym_pub] = ACTIONS(592), + [anon_sym_return] = ACTIONS(592), + [anon_sym_static] = ACTIONS(592), + [anon_sym_struct] = ACTIONS(592), + [anon_sym_trait] = ACTIONS(592), + [anon_sym_type] = ACTIONS(592), + [anon_sym_union] = ACTIONS(592), + [anon_sym_unsafe] = ACTIONS(592), + [anon_sym_use] = ACTIONS(592), + [anon_sym_while] = ACTIONS(592), + [anon_sym_POUND] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_extern] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_COLON_COLON] = ACTIONS(590), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(590), + [anon_sym_DOT_DOT] = ACTIONS(592), + [anon_sym_DOT_DOT_EQ] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(590), + [anon_sym_PIPE_PIPE] = ACTIONS(590), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(590), + [anon_sym_LT_EQ] = ACTIONS(590), + [anon_sym_GT_EQ] = ACTIONS(590), + [anon_sym_LT_LT] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_PLUS_EQ] = ACTIONS(590), + [anon_sym_DASH_EQ] = ACTIONS(590), + [anon_sym_STAR_EQ] = ACTIONS(590), + [anon_sym_SLASH_EQ] = ACTIONS(590), + [anon_sym_PERCENT_EQ] = ACTIONS(590), + [anon_sym_AMP_EQ] = ACTIONS(590), + [anon_sym_PIPE_EQ] = ACTIONS(590), + [anon_sym_CARET_EQ] = ACTIONS(590), + [anon_sym_LT_LT_EQ] = ACTIONS(590), + [anon_sym_GT_GT_EQ] = ACTIONS(590), + [anon_sym_yield] = ACTIONS(592), + [anon_sym_move] = ACTIONS(592), + [anon_sym_DOT] = ACTIONS(592), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(590), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(592), + [anon_sym_false] = ACTIONS(592), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(592), + [sym_super] = ACTIONS(592), + [sym_crate] = ACTIONS(592), + [sym_metavariable] = ACTIONS(590), + [sym_raw_string_literal] = ACTIONS(590), + [sym_float_literal] = ACTIONS(590), + [sym_block_comment] = ACTIONS(3), + }, + [123] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [124] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28784,7 +30577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28803,56 +30596,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1296), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [125] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1302), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(242), + [sym_if_let_expression] = STATE(242), + [sym_match_expression] = STATE(242), + [sym_while_expression] = STATE(242), + [sym_while_let_expression] = STATE(242), + [sym_loop_expression] = STATE(242), + [sym_for_expression] = STATE(242), + [sym_const_block] = STATE(242), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2555), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(242), + [sym_async_block] = STATE(242), + [sym_block] = STATE(242), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(594), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -28873,19 +30666,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(596), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(598), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(600), + [anon_sym_if] = ACTIONS(602), + [anon_sym_loop] = ACTIONS(604), + [anon_sym_match] = ACTIONS(606), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(608), + [anon_sym_while] = ACTIONS(610), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -28909,53 +30702,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [122] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1166), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [126] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [127] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1315), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28996,7 +30895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29015,53 +30914,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [123] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [128] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1175), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29102,7 +31001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29121,21 +31020,445 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [124] = { - [ts_builtin_sym_end] = ACTIONS(620), - [sym_identifier] = ACTIONS(622), - [anon_sym_SEMI] = ACTIONS(620), - [anon_sym_macro_rules_BANG] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(622), - [anon_sym_QMARK] = ACTIONS(620), - [anon_sym_u8] = ACTIONS(622), - [anon_sym_i8] = ACTIONS(622), - [anon_sym_u16] = ACTIONS(622), + [129] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1257), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [130] = { + [ts_builtin_sym_end] = ACTIONS(612), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(612), + [anon_sym_macro_rules_BANG] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_extern] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_DOT_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(614), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(614), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_move] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(612), + [aux_sym_string_literal_token1] = ACTIONS(612), + [sym_char_literal] = ACTIONS(612), + [anon_sym_true] = ACTIONS(614), + [anon_sym_false] = ACTIONS(614), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(612), + [sym_raw_string_literal] = ACTIONS(612), + [sym_float_literal] = ACTIONS(612), + [sym_block_comment] = ACTIONS(3), + }, + [131] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1314), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [132] = { + [ts_builtin_sym_end] = ACTIONS(616), + [sym_identifier] = ACTIONS(618), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_macro_rules_BANG] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(616), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(618), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(618), + [anon_sym_i8] = ACTIONS(618), + [anon_sym_u16] = ACTIONS(618), + [anon_sym_i16] = ACTIONS(618), + [anon_sym_u32] = ACTIONS(618), + [anon_sym_i32] = ACTIONS(618), + [anon_sym_u64] = ACTIONS(618), + [anon_sym_i64] = ACTIONS(618), + [anon_sym_u128] = ACTIONS(618), + [anon_sym_i128] = ACTIONS(618), + [anon_sym_isize] = ACTIONS(618), + [anon_sym_usize] = ACTIONS(618), + [anon_sym_f32] = ACTIONS(618), + [anon_sym_f64] = ACTIONS(618), + [anon_sym_bool] = ACTIONS(618), + [anon_sym_str] = ACTIONS(618), + [anon_sym_char] = ACTIONS(618), + [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_as] = ACTIONS(618), + [anon_sym_async] = ACTIONS(618), + [anon_sym_break] = ACTIONS(618), + [anon_sym_const] = ACTIONS(618), + [anon_sym_continue] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_enum] = ACTIONS(618), + [anon_sym_fn] = ACTIONS(618), + [anon_sym_for] = ACTIONS(618), + [anon_sym_if] = ACTIONS(618), + [anon_sym_impl] = ACTIONS(618), + [anon_sym_let] = ACTIONS(618), + [anon_sym_loop] = ACTIONS(618), + [anon_sym_match] = ACTIONS(618), + [anon_sym_mod] = ACTIONS(618), + [anon_sym_pub] = ACTIONS(618), + [anon_sym_return] = ACTIONS(618), + [anon_sym_static] = ACTIONS(618), + [anon_sym_struct] = ACTIONS(618), + [anon_sym_trait] = ACTIONS(618), + [anon_sym_type] = ACTIONS(618), + [anon_sym_union] = ACTIONS(618), + [anon_sym_unsafe] = ACTIONS(618), + [anon_sym_use] = ACTIONS(618), + [anon_sym_while] = ACTIONS(618), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_BANG] = ACTIONS(618), + [anon_sym_EQ] = ACTIONS(618), + [anon_sym_extern] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_GT] = ACTIONS(618), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_CARET] = ACTIONS(618), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_GT_GT] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(618), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_yield] = ACTIONS(618), + [anon_sym_move] = ACTIONS(618), + [anon_sym_DOT] = ACTIONS(618), + [sym_integer_literal] = ACTIONS(616), + [aux_sym_string_literal_token1] = ACTIONS(616), + [sym_char_literal] = ACTIONS(616), + [anon_sym_true] = ACTIONS(618), + [anon_sym_false] = ACTIONS(618), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(618), + [sym_super] = ACTIONS(618), + [sym_crate] = ACTIONS(618), + [sym_metavariable] = ACTIONS(616), + [sym_raw_string_literal] = ACTIONS(616), + [sym_float_literal] = ACTIONS(616), + [sym_block_comment] = ACTIONS(3), + }, + [133] = { + [ts_builtin_sym_end] = ACTIONS(620), + [sym_identifier] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(620), + [anon_sym_macro_rules_BANG] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_u8] = ACTIONS(622), + [anon_sym_i8] = ACTIONS(622), + [anon_sym_u16] = ACTIONS(622), [anon_sym_i16] = ACTIONS(622), [anon_sym_u32] = ACTIONS(622), [anon_sym_i32] = ACTIONS(622), @@ -29227,159 +31550,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(620), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [134] = { + [ts_builtin_sym_end] = ACTIONS(624), + [sym_identifier] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(624), + [anon_sym_macro_rules_BANG] = ACTIONS(624), + [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(624), + [anon_sym_u8] = ACTIONS(626), + [anon_sym_i8] = ACTIONS(626), + [anon_sym_u16] = ACTIONS(626), + [anon_sym_i16] = ACTIONS(626), + [anon_sym_u32] = ACTIONS(626), + [anon_sym_i32] = ACTIONS(626), + [anon_sym_u64] = ACTIONS(626), + [anon_sym_i64] = ACTIONS(626), + [anon_sym_u128] = ACTIONS(626), + [anon_sym_i128] = ACTIONS(626), + [anon_sym_isize] = ACTIONS(626), + [anon_sym_usize] = ACTIONS(626), + [anon_sym_f32] = ACTIONS(626), + [anon_sym_f64] = ACTIONS(626), + [anon_sym_bool] = ACTIONS(626), + [anon_sym_str] = ACTIONS(626), + [anon_sym_char] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(626), + [anon_sym_as] = ACTIONS(626), + [anon_sym_async] = ACTIONS(626), + [anon_sym_break] = ACTIONS(626), + [anon_sym_const] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_enum] = ACTIONS(626), + [anon_sym_fn] = ACTIONS(626), + [anon_sym_for] = ACTIONS(626), + [anon_sym_if] = ACTIONS(626), + [anon_sym_impl] = ACTIONS(626), + [anon_sym_let] = ACTIONS(626), + [anon_sym_loop] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_mod] = ACTIONS(626), + [anon_sym_pub] = ACTIONS(626), + [anon_sym_return] = ACTIONS(626), + [anon_sym_static] = ACTIONS(626), + [anon_sym_struct] = ACTIONS(626), + [anon_sym_trait] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_union] = ACTIONS(626), + [anon_sym_unsafe] = ACTIONS(626), + [anon_sym_use] = ACTIONS(626), + [anon_sym_while] = ACTIONS(626), + [anon_sym_POUND] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_extern] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_COLON_COLON] = ACTIONS(624), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(624), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_BANG_EQ] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(624), + [anon_sym_DASH_EQ] = ACTIONS(624), + [anon_sym_STAR_EQ] = ACTIONS(624), + [anon_sym_SLASH_EQ] = ACTIONS(624), + [anon_sym_PERCENT_EQ] = ACTIONS(624), + [anon_sym_AMP_EQ] = ACTIONS(624), + [anon_sym_PIPE_EQ] = ACTIONS(624), + [anon_sym_CARET_EQ] = ACTIONS(624), + [anon_sym_LT_LT_EQ] = ACTIONS(624), + [anon_sym_GT_GT_EQ] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_move] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [sym_integer_literal] = ACTIONS(624), + [aux_sym_string_literal_token1] = ACTIONS(624), + [sym_char_literal] = ACTIONS(624), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_crate] = ACTIONS(626), + [sym_metavariable] = ACTIONS(624), + [sym_raw_string_literal] = ACTIONS(624), + [sym_float_literal] = ACTIONS(624), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [135] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1310), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29439,325 +31762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1295), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [128] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1252), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [129] = { - [ts_builtin_sym_end] = ACTIONS(624), - [sym_identifier] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(624), - [anon_sym_macro_rules_BANG] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_QMARK] = ACTIONS(624), - [anon_sym_u8] = ACTIONS(626), - [anon_sym_i8] = ACTIONS(626), - [anon_sym_u16] = ACTIONS(626), - [anon_sym_i16] = ACTIONS(626), - [anon_sym_u32] = ACTIONS(626), - [anon_sym_i32] = ACTIONS(626), - [anon_sym_u64] = ACTIONS(626), - [anon_sym_i64] = ACTIONS(626), - [anon_sym_u128] = ACTIONS(626), - [anon_sym_i128] = ACTIONS(626), - [anon_sym_isize] = ACTIONS(626), - [anon_sym_usize] = ACTIONS(626), - [anon_sym_f32] = ACTIONS(626), - [anon_sym_f64] = ACTIONS(626), - [anon_sym_bool] = ACTIONS(626), - [anon_sym_str] = ACTIONS(626), - [anon_sym_char] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), - [anon_sym_async] = ACTIONS(626), - [anon_sym_break] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_enum] = ACTIONS(626), - [anon_sym_fn] = ACTIONS(626), - [anon_sym_for] = ACTIONS(626), - [anon_sym_if] = ACTIONS(626), - [anon_sym_impl] = ACTIONS(626), - [anon_sym_let] = ACTIONS(626), - [anon_sym_loop] = ACTIONS(626), - [anon_sym_match] = ACTIONS(626), - [anon_sym_mod] = ACTIONS(626), - [anon_sym_pub] = ACTIONS(626), - [anon_sym_return] = ACTIONS(626), - [anon_sym_static] = ACTIONS(626), - [anon_sym_struct] = ACTIONS(626), - [anon_sym_trait] = ACTIONS(626), - [anon_sym_type] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_unsafe] = ACTIONS(626), - [anon_sym_use] = ACTIONS(626), - [anon_sym_while] = ACTIONS(626), - [anon_sym_POUND] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(626), - [anon_sym_EQ] = ACTIONS(626), - [anon_sym_extern] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_COLON_COLON] = ACTIONS(624), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(624), - [anon_sym_DOT_DOT] = ACTIONS(626), - [anon_sym_DOT_DOT_EQ] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_CARET] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_BANG_EQ] = ACTIONS(624), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_SLASH] = ACTIONS(626), - [anon_sym_PERCENT] = ACTIONS(626), - [anon_sym_PLUS_EQ] = ACTIONS(624), - [anon_sym_DASH_EQ] = ACTIONS(624), - [anon_sym_STAR_EQ] = ACTIONS(624), - [anon_sym_SLASH_EQ] = ACTIONS(624), - [anon_sym_PERCENT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(624), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_move] = ACTIONS(626), - [anon_sym_DOT] = ACTIONS(626), - [sym_integer_literal] = ACTIONS(624), - [aux_sym_string_literal_token1] = ACTIONS(624), - [sym_char_literal] = ACTIONS(624), - [anon_sym_true] = ACTIONS(626), - [anon_sym_false] = ACTIONS(626), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_crate] = ACTIONS(626), - [sym_metavariable] = ACTIONS(624), - [sym_raw_string_literal] = ACTIONS(624), - [sym_float_literal] = ACTIONS(624), - [sym_block_comment] = ACTIONS(3), - }, - [130] = { + [136] = { [ts_builtin_sym_end] = ACTIONS(628), [sym_identifier] = ACTIONS(630), [anon_sym_SEMI] = ACTIONS(628), @@ -29863,53 +31868,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(628), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1096), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [137] = { + [ts_builtin_sym_end] = ACTIONS(632), + [sym_identifier] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(564), + [anon_sym_macro_rules_BANG] = ACTIONS(632), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_u8] = ACTIONS(634), + [anon_sym_i8] = ACTIONS(634), + [anon_sym_u16] = ACTIONS(634), + [anon_sym_i16] = ACTIONS(634), + [anon_sym_u32] = ACTIONS(634), + [anon_sym_i32] = ACTIONS(634), + [anon_sym_u64] = ACTIONS(634), + [anon_sym_i64] = ACTIONS(634), + [anon_sym_u128] = ACTIONS(634), + [anon_sym_i128] = ACTIONS(634), + [anon_sym_isize] = ACTIONS(634), + [anon_sym_usize] = ACTIONS(634), + [anon_sym_f32] = ACTIONS(634), + [anon_sym_f64] = ACTIONS(634), + [anon_sym_bool] = ACTIONS(634), + [anon_sym_str] = ACTIONS(634), + [anon_sym_char] = ACTIONS(634), + [anon_sym_SQUOTE] = ACTIONS(634), + [anon_sym_as] = ACTIONS(562), + [anon_sym_async] = ACTIONS(634), + [anon_sym_break] = ACTIONS(634), + [anon_sym_const] = ACTIONS(634), + [anon_sym_continue] = ACTIONS(634), + [anon_sym_default] = ACTIONS(634), + [anon_sym_enum] = ACTIONS(634), + [anon_sym_fn] = ACTIONS(634), + [anon_sym_for] = ACTIONS(634), + [anon_sym_if] = ACTIONS(634), + [anon_sym_impl] = ACTIONS(634), + [anon_sym_let] = ACTIONS(634), + [anon_sym_loop] = ACTIONS(634), + [anon_sym_match] = ACTIONS(634), + [anon_sym_mod] = ACTIONS(634), + [anon_sym_pub] = ACTIONS(634), + [anon_sym_return] = ACTIONS(634), + [anon_sym_static] = ACTIONS(634), + [anon_sym_struct] = ACTIONS(634), + [anon_sym_trait] = ACTIONS(634), + [anon_sym_type] = ACTIONS(634), + [anon_sym_union] = ACTIONS(634), + [anon_sym_unsafe] = ACTIONS(634), + [anon_sym_use] = ACTIONS(634), + [anon_sym_while] = ACTIONS(634), + [anon_sym_POUND] = ACTIONS(632), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_extern] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_COLON_COLON] = ACTIONS(632), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(564), + [anon_sym_BANG_EQ] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_EQ] = ACTIONS(564), + [anon_sym_DASH_EQ] = ACTIONS(564), + [anon_sym_STAR_EQ] = ACTIONS(564), + [anon_sym_SLASH_EQ] = ACTIONS(564), + [anon_sym_PERCENT_EQ] = ACTIONS(564), + [anon_sym_AMP_EQ] = ACTIONS(564), + [anon_sym_PIPE_EQ] = ACTIONS(564), + [anon_sym_CARET_EQ] = ACTIONS(564), + [anon_sym_LT_LT_EQ] = ACTIONS(564), + [anon_sym_GT_GT_EQ] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(634), + [anon_sym_move] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(562), + [sym_integer_literal] = ACTIONS(632), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(634), + [sym_super] = ACTIONS(634), + [sym_crate] = ACTIONS(634), + [sym_metavariable] = ACTIONS(632), + [sym_raw_string_literal] = ACTIONS(632), + [sym_float_literal] = ACTIONS(632), + [sym_block_comment] = ACTIONS(3), + }, + [138] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1224), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29969,53 +32080,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [132] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1309), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [139] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1297), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30075,53 +32186,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [133] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [140] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1311), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30162,7 +32273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30181,53 +32292,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [134] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1278), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [141] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1305), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30287,53 +32398,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1162), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [142] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1317), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30374,7 +32485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30393,53 +32504,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1264), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [143] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1220), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30479,8 +32590,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -30499,159 +32610,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [ts_builtin_sym_end] = ACTIONS(632), - [sym_identifier] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(632), - [anon_sym_macro_rules_BANG] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(634), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_u8] = ACTIONS(634), - [anon_sym_i8] = ACTIONS(634), - [anon_sym_u16] = ACTIONS(634), - [anon_sym_i16] = ACTIONS(634), - [anon_sym_u32] = ACTIONS(634), - [anon_sym_i32] = ACTIONS(634), - [anon_sym_u64] = ACTIONS(634), - [anon_sym_i64] = ACTIONS(634), - [anon_sym_u128] = ACTIONS(634), - [anon_sym_i128] = ACTIONS(634), - [anon_sym_isize] = ACTIONS(634), - [anon_sym_usize] = ACTIONS(634), - [anon_sym_f32] = ACTIONS(634), - [anon_sym_f64] = ACTIONS(634), - [anon_sym_bool] = ACTIONS(634), - [anon_sym_str] = ACTIONS(634), - [anon_sym_char] = ACTIONS(634), - [anon_sym_SQUOTE] = ACTIONS(634), - [anon_sym_as] = ACTIONS(634), - [anon_sym_async] = ACTIONS(634), - [anon_sym_break] = ACTIONS(634), - [anon_sym_const] = ACTIONS(634), - [anon_sym_continue] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(634), - [anon_sym_fn] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_impl] = ACTIONS(634), - [anon_sym_let] = ACTIONS(634), - [anon_sym_loop] = ACTIONS(634), - [anon_sym_match] = ACTIONS(634), - [anon_sym_mod] = ACTIONS(634), - [anon_sym_pub] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_static] = ACTIONS(634), - [anon_sym_struct] = ACTIONS(634), - [anon_sym_trait] = ACTIONS(634), - [anon_sym_type] = ACTIONS(634), - [anon_sym_union] = ACTIONS(634), - [anon_sym_unsafe] = ACTIONS(634), - [anon_sym_use] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(632), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_extern] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(634), - [anon_sym_COLON_COLON] = ACTIONS(632), - [anon_sym_AMP] = ACTIONS(634), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [anon_sym_DOT_DOT] = ACTIONS(634), - [anon_sym_DOT_DOT_EQ] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(634), - [anon_sym_AMP_AMP] = ACTIONS(632), - [anon_sym_PIPE_PIPE] = ACTIONS(632), - [anon_sym_PIPE] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_EQ_EQ] = ACTIONS(632), - [anon_sym_BANG_EQ] = ACTIONS(632), - [anon_sym_LT_EQ] = ACTIONS(632), - [anon_sym_GT_EQ] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_SLASH] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(632), - [anon_sym_DASH_EQ] = ACTIONS(632), - [anon_sym_STAR_EQ] = ACTIONS(632), - [anon_sym_SLASH_EQ] = ACTIONS(632), - [anon_sym_PERCENT_EQ] = ACTIONS(632), - [anon_sym_AMP_EQ] = ACTIONS(632), - [anon_sym_PIPE_EQ] = ACTIONS(632), - [anon_sym_CARET_EQ] = ACTIONS(632), - [anon_sym_LT_LT_EQ] = ACTIONS(632), - [anon_sym_GT_GT_EQ] = ACTIONS(632), - [anon_sym_yield] = ACTIONS(634), - [anon_sym_move] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(634), - [sym_integer_literal] = ACTIONS(632), - [aux_sym_string_literal_token1] = ACTIONS(632), - [sym_char_literal] = ACTIONS(632), - [anon_sym_true] = ACTIONS(634), - [anon_sym_false] = ACTIONS(634), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(634), - [sym_super] = ACTIONS(634), - [sym_crate] = ACTIONS(634), - [sym_metavariable] = ACTIONS(632), - [sym_raw_string_literal] = ACTIONS(632), - [sym_float_literal] = ACTIONS(632), - [sym_block_comment] = ACTIONS(3), - }, - [138] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1315), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [144] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1313), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30711,56 +32716,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1161), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [145] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1306), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(235), + [sym_if_let_expression] = STATE(235), + [sym_match_expression] = STATE(235), + [sym_while_expression] = STATE(235), + [sym_while_let_expression] = STATE(235), + [sym_loop_expression] = STATE(235), + [sym_for_expression] = STATE(235), + [sym_const_block] = STATE(235), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2555), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(235), + [sym_async_block] = STATE(235), + [sym_block] = STATE(235), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(594), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -30781,24 +32786,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(596), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(598), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(600), + [anon_sym_if] = ACTIONS(602), + [anon_sym_loop] = ACTIONS(604), + [anon_sym_match] = ACTIONS(606), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(608), + [anon_sym_while] = ACTIONS(610), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30817,56 +32822,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1312), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [146] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1264), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(235), + [sym_if_let_expression] = STATE(235), + [sym_match_expression] = STATE(235), + [sym_while_expression] = STATE(235), + [sym_while_let_expression] = STATE(235), + [sym_loop_expression] = STATE(235), + [sym_for_expression] = STATE(235), + [sym_const_block] = STATE(235), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2555), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(235), + [sym_async_block] = STATE(235), + [sym_block] = STATE(235), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(594), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -30887,19 +32892,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(596), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(598), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(600), + [anon_sym_if] = ACTIONS(602), + [anon_sym_loop] = ACTIONS(604), + [anon_sym_match] = ACTIONS(606), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(608), + [anon_sym_while] = ACTIONS(610), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -30923,7 +32928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [141] = { + [147] = { [ts_builtin_sym_end] = ACTIONS(636), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(636), @@ -31029,81 +33034,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(636), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1276), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), + [148] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1318), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [149] = { + [ts_builtin_sym_end] = ACTIONS(640), + [sym_identifier] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_macro_rules_BANG] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(640), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(642), + [anon_sym_i8] = ACTIONS(642), + [anon_sym_u16] = ACTIONS(642), + [anon_sym_i16] = ACTIONS(642), + [anon_sym_u32] = ACTIONS(642), + [anon_sym_i32] = ACTIONS(642), + [anon_sym_u64] = ACTIONS(642), + [anon_sym_i64] = ACTIONS(642), + [anon_sym_u128] = ACTIONS(642), + [anon_sym_i128] = ACTIONS(642), + [anon_sym_isize] = ACTIONS(642), + [anon_sym_usize] = ACTIONS(642), + [anon_sym_f32] = ACTIONS(642), + [anon_sym_f64] = ACTIONS(642), + [anon_sym_bool] = ACTIONS(642), + [anon_sym_str] = ACTIONS(642), + [anon_sym_char] = ACTIONS(642), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_as] = ACTIONS(642), + [anon_sym_async] = ACTIONS(642), + [anon_sym_break] = ACTIONS(642), + [anon_sym_const] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_enum] = ACTIONS(642), + [anon_sym_fn] = ACTIONS(642), + [anon_sym_for] = ACTIONS(642), + [anon_sym_if] = ACTIONS(642), + [anon_sym_impl] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(642), + [anon_sym_mod] = ACTIONS(642), + [anon_sym_pub] = ACTIONS(642), + [anon_sym_return] = ACTIONS(642), + [anon_sym_static] = ACTIONS(642), + [anon_sym_struct] = ACTIONS(642), + [anon_sym_trait] = ACTIONS(642), + [anon_sym_type] = ACTIONS(642), + [anon_sym_union] = ACTIONS(642), + [anon_sym_unsafe] = ACTIONS(642), + [anon_sym_use] = ACTIONS(642), + [anon_sym_while] = ACTIONS(642), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_extern] = ACTIONS(642), + [anon_sym_LT] = ACTIONS(642), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT] = ACTIONS(642), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_yield] = ACTIONS(642), + [anon_sym_move] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [sym_integer_literal] = ACTIONS(640), + [aux_sym_string_literal_token1] = ACTIONS(640), + [sym_char_literal] = ACTIONS(640), + [anon_sym_true] = ACTIONS(642), + [anon_sym_false] = ACTIONS(642), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(642), + [sym_super] = ACTIONS(642), + [sym_crate] = ACTIONS(642), + [sym_metavariable] = ACTIONS(640), + [sym_raw_string_literal] = ACTIONS(640), + [sym_float_literal] = ACTIONS(640), + [sym_block_comment] = ACTIONS(3), + }, + [150] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1271), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), @@ -31115,8 +33332,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -31135,53 +33352,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [143] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), + [151] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), [sym__expression] = STATE(1250), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31221,8 +33438,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -31241,53 +33458,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1313), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [152] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1170), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31328,7 +33545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31347,53 +33564,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1160), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [153] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [154] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1166), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31434,7 +33757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31453,53 +33776,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1159), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [155] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1171), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31540,7 +33863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31559,53 +33882,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1301), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [156] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1165), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31646,7 +33969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31665,477 +33988,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [148] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1209), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), + [157] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1160), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [ts_builtin_sym_end] = ACTIONS(640), - [sym_identifier] = ACTIONS(642), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_macro_rules_BANG] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(640), - [anon_sym_PLUS] = ACTIONS(642), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(642), - [anon_sym_i8] = ACTIONS(642), - [anon_sym_u16] = ACTIONS(642), - [anon_sym_i16] = ACTIONS(642), - [anon_sym_u32] = ACTIONS(642), - [anon_sym_i32] = ACTIONS(642), - [anon_sym_u64] = ACTIONS(642), - [anon_sym_i64] = ACTIONS(642), - [anon_sym_u128] = ACTIONS(642), - [anon_sym_i128] = ACTIONS(642), - [anon_sym_isize] = ACTIONS(642), - [anon_sym_usize] = ACTIONS(642), - [anon_sym_f32] = ACTIONS(642), - [anon_sym_f64] = ACTIONS(642), - [anon_sym_bool] = ACTIONS(642), - [anon_sym_str] = ACTIONS(642), - [anon_sym_char] = ACTIONS(642), - [anon_sym_SQUOTE] = ACTIONS(642), - [anon_sym_as] = ACTIONS(642), - [anon_sym_async] = ACTIONS(642), - [anon_sym_break] = ACTIONS(642), - [anon_sym_const] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), - [anon_sym_enum] = ACTIONS(642), - [anon_sym_fn] = ACTIONS(642), - [anon_sym_for] = ACTIONS(642), - [anon_sym_if] = ACTIONS(642), - [anon_sym_impl] = ACTIONS(642), - [anon_sym_let] = ACTIONS(642), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(642), - [anon_sym_mod] = ACTIONS(642), - [anon_sym_pub] = ACTIONS(642), - [anon_sym_return] = ACTIONS(642), - [anon_sym_static] = ACTIONS(642), - [anon_sym_struct] = ACTIONS(642), - [anon_sym_trait] = ACTIONS(642), - [anon_sym_type] = ACTIONS(642), - [anon_sym_union] = ACTIONS(642), - [anon_sym_unsafe] = ACTIONS(642), - [anon_sym_use] = ACTIONS(642), - [anon_sym_while] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(642), - [anon_sym_EQ] = ACTIONS(642), - [anon_sym_extern] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(642), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(642), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_CARET] = ACTIONS(642), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(642), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(642), - [anon_sym_move] = ACTIONS(642), - [anon_sym_DOT] = ACTIONS(642), - [sym_integer_literal] = ACTIONS(640), - [aux_sym_string_literal_token1] = ACTIONS(640), - [sym_char_literal] = ACTIONS(640), - [anon_sym_true] = ACTIONS(642), - [anon_sym_false] = ACTIONS(642), + [158] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1157), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(642), - [sym_super] = ACTIONS(642), - [sym_crate] = ACTIONS(642), - [sym_metavariable] = ACTIONS(640), - [sym_raw_string_literal] = ACTIONS(640), - [sym_float_literal] = ACTIONS(640), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [ts_builtin_sym_end] = ACTIONS(644), - [sym_identifier] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_macro_rules_BANG] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_u8] = ACTIONS(646), - [anon_sym_i8] = ACTIONS(646), - [anon_sym_u16] = ACTIONS(646), - [anon_sym_i16] = ACTIONS(646), - [anon_sym_u32] = ACTIONS(646), - [anon_sym_i32] = ACTIONS(646), - [anon_sym_u64] = ACTIONS(646), - [anon_sym_i64] = ACTIONS(646), - [anon_sym_u128] = ACTIONS(646), - [anon_sym_i128] = ACTIONS(646), - [anon_sym_isize] = ACTIONS(646), - [anon_sym_usize] = ACTIONS(646), - [anon_sym_f32] = ACTIONS(646), - [anon_sym_f64] = ACTIONS(646), - [anon_sym_bool] = ACTIONS(646), - [anon_sym_str] = ACTIONS(646), - [anon_sym_char] = ACTIONS(646), - [anon_sym_SQUOTE] = ACTIONS(646), - [anon_sym_as] = ACTIONS(646), - [anon_sym_async] = ACTIONS(646), - [anon_sym_break] = ACTIONS(646), - [anon_sym_const] = ACTIONS(646), - [anon_sym_continue] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_enum] = ACTIONS(646), - [anon_sym_fn] = ACTIONS(646), - [anon_sym_for] = ACTIONS(646), - [anon_sym_if] = ACTIONS(646), - [anon_sym_impl] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_loop] = ACTIONS(646), - [anon_sym_match] = ACTIONS(646), - [anon_sym_mod] = ACTIONS(646), - [anon_sym_pub] = ACTIONS(646), - [anon_sym_return] = ACTIONS(646), - [anon_sym_static] = ACTIONS(646), - [anon_sym_struct] = ACTIONS(646), - [anon_sym_trait] = ACTIONS(646), - [anon_sym_type] = ACTIONS(646), - [anon_sym_union] = ACTIONS(646), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_use] = ACTIONS(646), - [anon_sym_while] = ACTIONS(646), - [anon_sym_POUND] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(646), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_extern] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(646), - [anon_sym_GT] = ACTIONS(646), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_DOT_DOT] = ACTIONS(646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(646), - [anon_sym_CARET] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_LT_LT] = ACTIONS(646), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_AMP_EQ] = ACTIONS(644), - [anon_sym_PIPE_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_LT_LT_EQ] = ACTIONS(644), - [anon_sym_GT_GT_EQ] = ACTIONS(644), - [anon_sym_yield] = ACTIONS(646), - [anon_sym_move] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [sym_integer_literal] = ACTIONS(644), - [aux_sym_string_literal_token1] = ACTIONS(644), - [sym_char_literal] = ACTIONS(644), - [anon_sym_true] = ACTIONS(646), - [anon_sym_false] = ACTIONS(646), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(646), - [sym_super] = ACTIONS(646), - [sym_crate] = ACTIONS(646), - [sym_metavariable] = ACTIONS(644), - [sym_raw_string_literal] = ACTIONS(644), - [sym_float_literal] = ACTIONS(644), - [sym_block_comment] = ACTIONS(3), - }, - [151] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1208), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), + [159] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1312), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1231), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [160] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32195,53 +34412,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1298), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [161] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1124), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32301,7 +34518,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [154] = { + [162] = { + [ts_builtin_sym_end] = ACTIONS(644), + [sym_identifier] = ACTIONS(646), + [anon_sym_SEMI] = ACTIONS(644), + [anon_sym_macro_rules_BANG] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_QMARK] = ACTIONS(644), + [anon_sym_u8] = ACTIONS(646), + [anon_sym_i8] = ACTIONS(646), + [anon_sym_u16] = ACTIONS(646), + [anon_sym_i16] = ACTIONS(646), + [anon_sym_u32] = ACTIONS(646), + [anon_sym_i32] = ACTIONS(646), + [anon_sym_u64] = ACTIONS(646), + [anon_sym_i64] = ACTIONS(646), + [anon_sym_u128] = ACTIONS(646), + [anon_sym_i128] = ACTIONS(646), + [anon_sym_isize] = ACTIONS(646), + [anon_sym_usize] = ACTIONS(646), + [anon_sym_f32] = ACTIONS(646), + [anon_sym_f64] = ACTIONS(646), + [anon_sym_bool] = ACTIONS(646), + [anon_sym_str] = ACTIONS(646), + [anon_sym_char] = ACTIONS(646), + [anon_sym_SQUOTE] = ACTIONS(646), + [anon_sym_as] = ACTIONS(646), + [anon_sym_async] = ACTIONS(646), + [anon_sym_break] = ACTIONS(646), + [anon_sym_const] = ACTIONS(646), + [anon_sym_continue] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_enum] = ACTIONS(646), + [anon_sym_fn] = ACTIONS(646), + [anon_sym_for] = ACTIONS(646), + [anon_sym_if] = ACTIONS(646), + [anon_sym_impl] = ACTIONS(646), + [anon_sym_let] = ACTIONS(646), + [anon_sym_loop] = ACTIONS(646), + [anon_sym_match] = ACTIONS(646), + [anon_sym_mod] = ACTIONS(646), + [anon_sym_pub] = ACTIONS(646), + [anon_sym_return] = ACTIONS(646), + [anon_sym_static] = ACTIONS(646), + [anon_sym_struct] = ACTIONS(646), + [anon_sym_trait] = ACTIONS(646), + [anon_sym_type] = ACTIONS(646), + [anon_sym_union] = ACTIONS(646), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_use] = ACTIONS(646), + [anon_sym_while] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(644), + [anon_sym_AMP] = ACTIONS(646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(644), + [anon_sym_DOT_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_LT_LT] = ACTIONS(646), + [anon_sym_GT_GT] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PERCENT] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_SLASH_EQ] = ACTIONS(644), + [anon_sym_PERCENT_EQ] = ACTIONS(644), + [anon_sym_AMP_EQ] = ACTIONS(644), + [anon_sym_PIPE_EQ] = ACTIONS(644), + [anon_sym_CARET_EQ] = ACTIONS(644), + [anon_sym_LT_LT_EQ] = ACTIONS(644), + [anon_sym_GT_GT_EQ] = ACTIONS(644), + [anon_sym_yield] = ACTIONS(646), + [anon_sym_move] = ACTIONS(646), + [anon_sym_DOT] = ACTIONS(646), + [sym_integer_literal] = ACTIONS(644), + [aux_sym_string_literal_token1] = ACTIONS(644), + [sym_char_literal] = ACTIONS(644), + [anon_sym_true] = ACTIONS(646), + [anon_sym_false] = ACTIONS(646), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(646), + [sym_super] = ACTIONS(646), + [sym_crate] = ACTIONS(646), + [sym_metavariable] = ACTIONS(644), + [sym_raw_string_literal] = ACTIONS(644), + [sym_float_literal] = ACTIONS(644), + [sym_block_comment] = ACTIONS(3), + }, + [163] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [164] = { [ts_builtin_sym_end] = ACTIONS(648), [sym_identifier] = ACTIONS(650), [anon_sym_SEMI] = ACTIONS(648), @@ -32407,53 +34836,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(648), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1096), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [165] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32493,8 +34922,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -32513,159 +34942,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1285), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(234), - [sym_if_let_expression] = STATE(234), - [sym_match_expression] = STATE(234), - [sym_while_expression] = STATE(234), - [sym_while_let_expression] = STATE(234), - [sym_loop_expression] = STATE(234), - [sym_for_expression] = STATE(234), - [sym_const_block] = STATE(234), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2539), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(234), - [sym_async_block] = STATE(234), - [sym_block] = STATE(234), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(586), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(588), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_loop] = ACTIONS(596), - [anon_sym_match] = ACTIONS(598), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [157] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1279), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [166] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1124), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32705,7 +35028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(506), [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), @@ -32725,7 +35048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [158] = { + [167] = { [ts_builtin_sym_end] = ACTIONS(652), [sym_identifier] = ACTIONS(654), [anon_sym_SEMI] = ACTIONS(652), @@ -32831,18 +35154,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(652), [sym_block_comment] = ACTIONS(3), }, - [159] = { + [168] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [169] = { [ts_builtin_sym_end] = ACTIONS(656), [sym_identifier] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(656), [anon_sym_macro_rules_BANG] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(656), [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(656), [anon_sym_u8] = ACTIONS(658), [anon_sym_i8] = ACTIONS(658), [anon_sym_u16] = ACTIONS(658), @@ -32861,7 +35290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(658), [anon_sym_char] = ACTIONS(658), [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_as] = ACTIONS(562), + [anon_sym_as] = ACTIONS(658), [anon_sym_async] = ACTIONS(658), [anon_sym_break] = ACTIONS(658), [anon_sym_const] = ACTIONS(658), @@ -32888,41 +35317,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(658), [anon_sym_POUND] = ACTIONS(656), [anon_sym_BANG] = ACTIONS(658), - [anon_sym_EQ] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(658), [anon_sym_extern] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_GT] = ACTIONS(658), [anon_sym_COLON_COLON] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_DOT_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(562), - [anon_sym_DOT_DOT_EQ] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(562), - [anon_sym_AMP_AMP] = ACTIONS(564), - [anon_sym_PIPE_PIPE] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(562), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym_EQ_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_PLUS_EQ] = ACTIONS(564), - [anon_sym_DASH_EQ] = ACTIONS(564), - [anon_sym_STAR_EQ] = ACTIONS(564), - [anon_sym_SLASH_EQ] = ACTIONS(564), - [anon_sym_PERCENT_EQ] = ACTIONS(564), - [anon_sym_AMP_EQ] = ACTIONS(564), - [anon_sym_PIPE_EQ] = ACTIONS(564), - [anon_sym_CARET_EQ] = ACTIONS(564), - [anon_sym_LT_LT_EQ] = ACTIONS(564), - [anon_sym_GT_GT_EQ] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_PERCENT] = ACTIONS(658), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), [anon_sym_yield] = ACTIONS(658), [anon_sym_move] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(562), + [anon_sym_DOT] = ACTIONS(658), [sym_integer_literal] = ACTIONS(656), [aux_sym_string_literal_token1] = ACTIONS(656), [sym_char_literal] = ACTIONS(656), @@ -32937,53 +35366,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(656), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1306), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [170] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1307), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33043,162 +35472,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [161] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), + [171] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(242), + [sym_if_let_expression] = STATE(242), + [sym_match_expression] = STATE(242), + [sym_while_expression] = STATE(242), + [sym_while_let_expression] = STATE(242), + [sym_loop_expression] = STATE(242), + [sym_for_expression] = STATE(242), + [sym_const_block] = STATE(242), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2555), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(242), + [sym_async_block] = STATE(242), + [sym_block] = STATE(242), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [162] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1216), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(234), - [sym_if_let_expression] = STATE(234), - [sym_match_expression] = STATE(234), - [sym_while_expression] = STATE(234), - [sym_while_let_expression] = STATE(234), - [sym_loop_expression] = STATE(234), - [sym_for_expression] = STATE(234), - [sym_const_block] = STATE(234), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2539), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(234), - [sym_async_block] = STATE(234), - [sym_block] = STATE(234), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(594), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -33219,19 +35542,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(588), + [anon_sym_async] = ACTIONS(596), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(590), + [anon_sym_const] = ACTIONS(598), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(592), - [anon_sym_if] = ACTIONS(594), - [anon_sym_loop] = ACTIONS(596), - [anon_sym_match] = ACTIONS(598), + [anon_sym_for] = ACTIONS(600), + [anon_sym_if] = ACTIONS(602), + [anon_sym_loop] = ACTIONS(604), + [anon_sym_match] = ACTIONS(606), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(600), - [anon_sym_while] = ACTIONS(602), + [anon_sym_unsafe] = ACTIONS(608), + [anon_sym_while] = ACTIONS(610), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -33255,7 +35578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [163] = { + [172] = { [ts_builtin_sym_end] = ACTIONS(660), [sym_identifier] = ACTIONS(662), [anon_sym_SEMI] = ACTIONS(660), @@ -33361,159 +35684,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(660), [sym_block_comment] = ACTIONS(3), }, - [164] = { - [ts_builtin_sym_end] = ACTIONS(664), - [sym_identifier] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(664), - [anon_sym_macro_rules_BANG] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(664), - [anon_sym_RBRACE] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(666), - [anon_sym_as] = ACTIONS(666), - [anon_sym_async] = ACTIONS(666), - [anon_sym_break] = ACTIONS(666), - [anon_sym_const] = ACTIONS(666), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_enum] = ACTIONS(666), - [anon_sym_fn] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_impl] = ACTIONS(666), - [anon_sym_let] = ACTIONS(666), - [anon_sym_loop] = ACTIONS(666), - [anon_sym_match] = ACTIONS(666), - [anon_sym_mod] = ACTIONS(666), - [anon_sym_pub] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_static] = ACTIONS(666), - [anon_sym_struct] = ACTIONS(666), - [anon_sym_trait] = ACTIONS(666), - [anon_sym_type] = ACTIONS(666), - [anon_sym_union] = ACTIONS(666), - [anon_sym_unsafe] = ACTIONS(666), - [anon_sym_use] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_extern] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_COLON_COLON] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(664), - [anon_sym_DOT_DOT] = ACTIONS(666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_move] = ACTIONS(666), - [anon_sym_DOT] = ACTIONS(666), - [sym_integer_literal] = ACTIONS(664), - [aux_sym_string_literal_token1] = ACTIONS(664), - [sym_char_literal] = ACTIONS(664), - [anon_sym_true] = ACTIONS(666), - [anon_sym_false] = ACTIONS(666), + [173] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1290), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(666), - [sym_super] = ACTIONS(666), - [sym_crate] = ACTIONS(666), - [sym_metavariable] = ACTIONS(664), - [sym_raw_string_literal] = ACTIONS(664), - [sym_float_literal] = ACTIONS(664), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [165] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1253), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [174] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33553,8 +35876,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -33573,53 +35896,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [166] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1258), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), + [175] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33659,8 +35982,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -33679,7 +36002,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [167] = { + [176] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1923), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1158), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [177] = { + [ts_builtin_sym_end] = ACTIONS(664), + [sym_identifier] = ACTIONS(666), + [anon_sym_SEMI] = ACTIONS(664), + [anon_sym_macro_rules_BANG] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_QMARK] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(666), + [anon_sym_as] = ACTIONS(666), + [anon_sym_async] = ACTIONS(666), + [anon_sym_break] = ACTIONS(666), + [anon_sym_const] = ACTIONS(666), + [anon_sym_continue] = ACTIONS(666), + [anon_sym_default] = ACTIONS(666), + [anon_sym_enum] = ACTIONS(666), + [anon_sym_fn] = ACTIONS(666), + [anon_sym_for] = ACTIONS(666), + [anon_sym_if] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(666), + [anon_sym_let] = ACTIONS(666), + [anon_sym_loop] = ACTIONS(666), + [anon_sym_match] = ACTIONS(666), + [anon_sym_mod] = ACTIONS(666), + [anon_sym_pub] = ACTIONS(666), + [anon_sym_return] = ACTIONS(666), + [anon_sym_static] = ACTIONS(666), + [anon_sym_struct] = ACTIONS(666), + [anon_sym_trait] = ACTIONS(666), + [anon_sym_type] = ACTIONS(666), + [anon_sym_union] = ACTIONS(666), + [anon_sym_unsafe] = ACTIONS(666), + [anon_sym_use] = ACTIONS(666), + [anon_sym_while] = ACTIONS(666), + [anon_sym_POUND] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(666), + [anon_sym_EQ] = ACTIONS(666), + [anon_sym_extern] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(666), + [anon_sym_COLON_COLON] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [anon_sym_DOT_DOT] = ACTIONS(666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(664), + [anon_sym_PIPE_PIPE] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(664), + [anon_sym_BANG_EQ] = ACTIONS(664), + [anon_sym_LT_EQ] = ACTIONS(664), + [anon_sym_GT_EQ] = ACTIONS(664), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_PLUS_EQ] = ACTIONS(664), + [anon_sym_DASH_EQ] = ACTIONS(664), + [anon_sym_STAR_EQ] = ACTIONS(664), + [anon_sym_SLASH_EQ] = ACTIONS(664), + [anon_sym_PERCENT_EQ] = ACTIONS(664), + [anon_sym_AMP_EQ] = ACTIONS(664), + [anon_sym_PIPE_EQ] = ACTIONS(664), + [anon_sym_CARET_EQ] = ACTIONS(664), + [anon_sym_LT_LT_EQ] = ACTIONS(664), + [anon_sym_GT_GT_EQ] = ACTIONS(664), + [anon_sym_yield] = ACTIONS(666), + [anon_sym_move] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(666), + [sym_integer_literal] = ACTIONS(664), + [aux_sym_string_literal_token1] = ACTIONS(664), + [sym_char_literal] = ACTIONS(664), + [anon_sym_true] = ACTIONS(666), + [anon_sym_false] = ACTIONS(666), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(666), + [sym_super] = ACTIONS(666), + [sym_crate] = ACTIONS(666), + [sym_metavariable] = ACTIONS(664), + [sym_raw_string_literal] = ACTIONS(664), + [sym_float_literal] = ACTIONS(664), + [sym_block_comment] = ACTIONS(3), + }, + [178] = { [ts_builtin_sym_end] = ACTIONS(668), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(668), @@ -33785,7 +36320,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(668), [sym_block_comment] = ACTIONS(3), }, - [168] = { + [179] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1274), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [180] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(800), + [sym_generic_type_with_turbofish] = STATE(1980), + [sym__expression_except_range] = STATE(800), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(800), + [sym_scoped_identifier] = STATE(1206), + [sym_scoped_type_identifier_in_expression_position] = STATE(2251), + [sym_range_expression] = STATE(1062), + [sym_unary_expression] = STATE(800), + [sym_try_expression] = STATE(800), + [sym_reference_expression] = STATE(800), + [sym_binary_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_compound_assignment_expr] = STATE(800), + [sym_type_cast_expression] = STATE(800), + [sym_return_expression] = STATE(800), + [sym_yield_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_array_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_tuple_expression] = STATE(800), + [sym_unit_expression] = STATE(800), + [sym_struct_expression] = STATE(800), + [sym_if_expression] = STATE(800), + [sym_if_let_expression] = STATE(800), + [sym_match_expression] = STATE(800), + [sym_while_expression] = STATE(800), + [sym_while_let_expression] = STATE(800), + [sym_loop_expression] = STATE(800), + [sym_for_expression] = STATE(800), + [sym_const_block] = STATE(800), + [sym_closure_expression] = STATE(800), + [sym_closure_parameters] = STATE(56), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(800), + [sym_continue_expression] = STATE(800), + [sym_index_expression] = STATE(800), + [sym_await_expression] = STATE(800), + [sym_field_expression] = STATE(803), + [sym_unsafe_block] = STATE(800), + [sym_async_block] = STATE(800), + [sym_block] = STATE(800), + [sym__literal] = STATE(800), + [sym_string_literal] = STATE(1068), + [sym_boolean_literal] = STATE(1068), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [181] = { [ts_builtin_sym_end] = ACTIONS(672), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(672), @@ -33891,749 +36638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(672), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [170] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1303), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [171] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1220), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [172] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1232), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [173] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1211), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [174] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1239), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [175] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1261), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [176] = { + [182] = { [ts_builtin_sym_end] = ACTIONS(676), [sym_identifier] = ACTIONS(678), [anon_sym_SEMI] = ACTIONS(676), @@ -34739,703 +36744,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(676), [sym_block_comment] = ACTIONS(3), }, - [177] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1230), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [178] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1249), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [179] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1096), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [180] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1214), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [181] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [182] = { - [sym_bracketed_type] = STATE(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(1019), - [sym__expression] = STATE(1151), - [sym_macro_invocation] = STATE(1019), - [sym_scoped_identifier] = STATE(1018), - [sym_scoped_type_identifier_in_expression_position] = STATE(2239), - [sym_range_expression] = STATE(1064), - [sym_unary_expression] = STATE(1019), - [sym_try_expression] = STATE(1019), - [sym_reference_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_compound_assignment_expr] = STATE(1019), - [sym_type_cast_expression] = STATE(1019), - [sym_return_expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_call_expression] = STATE(1019), - [sym_array_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(1019), - [sym_tuple_expression] = STATE(1019), - [sym_unit_expression] = STATE(1019), - [sym_struct_expression] = STATE(1019), - [sym_if_expression] = STATE(1019), - [sym_if_let_expression] = STATE(1019), - [sym_match_expression] = STATE(1019), - [sym_while_expression] = STATE(1019), - [sym_while_let_expression] = STATE(1019), - [sym_loop_expression] = STATE(1019), - [sym_for_expression] = STATE(1019), - [sym_const_block] = STATE(1019), - [sym_closure_expression] = STATE(1019), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2507), - [sym_break_expression] = STATE(1019), - [sym_continue_expression] = STATE(1019), - [sym_index_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_field_expression] = STATE(933), - [sym_unsafe_block] = STATE(1019), - [sym_async_block] = STATE(1019), - [sym_block] = STATE(1019), - [sym__literal] = STATE(1019), - [sym_string_literal] = STATE(1074), - [sym_boolean_literal] = STATE(1074), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, [183] = { - [sym_identifier] = ACTIONS(658), + [sym_identifier] = ACTIONS(634), [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_macro_rules_BANG] = ACTIONS(656), + [anon_sym_macro_rules_BANG] = ACTIONS(632), [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(632), [anon_sym_LBRACK] = ACTIONS(564), [anon_sym_PLUS] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(562), [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_u8] = ACTIONS(658), - [anon_sym_i8] = ACTIONS(658), - [anon_sym_u16] = ACTIONS(658), - [anon_sym_i16] = ACTIONS(658), - [anon_sym_u32] = ACTIONS(658), - [anon_sym_i32] = ACTIONS(658), - [anon_sym_u64] = ACTIONS(658), - [anon_sym_i64] = ACTIONS(658), - [anon_sym_u128] = ACTIONS(658), - [anon_sym_i128] = ACTIONS(658), - [anon_sym_isize] = ACTIONS(658), - [anon_sym_usize] = ACTIONS(658), - [anon_sym_f32] = ACTIONS(658), - [anon_sym_f64] = ACTIONS(658), - [anon_sym_bool] = ACTIONS(658), - [anon_sym_str] = ACTIONS(658), - [anon_sym_char] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(634), + [anon_sym_i8] = ACTIONS(634), + [anon_sym_u16] = ACTIONS(634), + [anon_sym_i16] = ACTIONS(634), + [anon_sym_u32] = ACTIONS(634), + [anon_sym_i32] = ACTIONS(634), + [anon_sym_u64] = ACTIONS(634), + [anon_sym_i64] = ACTIONS(634), + [anon_sym_u128] = ACTIONS(634), + [anon_sym_i128] = ACTIONS(634), + [anon_sym_isize] = ACTIONS(634), + [anon_sym_usize] = ACTIONS(634), + [anon_sym_f32] = ACTIONS(634), + [anon_sym_f64] = ACTIONS(634), + [anon_sym_bool] = ACTIONS(634), + [anon_sym_str] = ACTIONS(634), + [anon_sym_char] = ACTIONS(634), + [anon_sym_SQUOTE] = ACTIONS(634), [anon_sym_as] = ACTIONS(562), - [anon_sym_async] = ACTIONS(658), - [anon_sym_break] = ACTIONS(658), - [anon_sym_const] = ACTIONS(658), - [anon_sym_continue] = ACTIONS(658), - [anon_sym_default] = ACTIONS(658), - [anon_sym_enum] = ACTIONS(658), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(658), - [anon_sym_if] = ACTIONS(658), - [anon_sym_impl] = ACTIONS(658), - [anon_sym_let] = ACTIONS(658), - [anon_sym_loop] = ACTIONS(658), - [anon_sym_match] = ACTIONS(658), - [anon_sym_mod] = ACTIONS(658), - [anon_sym_pub] = ACTIONS(658), - [anon_sym_return] = ACTIONS(658), - [anon_sym_static] = ACTIONS(658), - [anon_sym_struct] = ACTIONS(658), - [anon_sym_trait] = ACTIONS(658), - [anon_sym_type] = ACTIONS(658), - [anon_sym_union] = ACTIONS(658), - [anon_sym_unsafe] = ACTIONS(658), - [anon_sym_use] = ACTIONS(658), - [anon_sym_while] = ACTIONS(658), - [anon_sym_POUND] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(658), + [anon_sym_async] = ACTIONS(634), + [anon_sym_break] = ACTIONS(634), + [anon_sym_const] = ACTIONS(634), + [anon_sym_continue] = ACTIONS(634), + [anon_sym_default] = ACTIONS(634), + [anon_sym_enum] = ACTIONS(634), + [anon_sym_fn] = ACTIONS(634), + [anon_sym_for] = ACTIONS(634), + [anon_sym_if] = ACTIONS(634), + [anon_sym_impl] = ACTIONS(634), + [anon_sym_let] = ACTIONS(634), + [anon_sym_loop] = ACTIONS(634), + [anon_sym_match] = ACTIONS(634), + [anon_sym_mod] = ACTIONS(634), + [anon_sym_pub] = ACTIONS(634), + [anon_sym_return] = ACTIONS(634), + [anon_sym_static] = ACTIONS(634), + [anon_sym_struct] = ACTIONS(634), + [anon_sym_trait] = ACTIONS(634), + [anon_sym_type] = ACTIONS(634), + [anon_sym_union] = ACTIONS(634), + [anon_sym_unsafe] = ACTIONS(634), + [anon_sym_use] = ACTIONS(634), + [anon_sym_while] = ACTIONS(634), + [anon_sym_POUND] = ACTIONS(632), + [anon_sym_BANG] = ACTIONS(634), [anon_sym_EQ] = ACTIONS(562), - [anon_sym_extern] = ACTIONS(658), + [anon_sym_extern] = ACTIONS(634), [anon_sym_LT] = ACTIONS(562), [anon_sym_GT] = ACTIONS(562), - [anon_sym_COLON_COLON] = ACTIONS(656), + [anon_sym_COLON_COLON] = ACTIONS(632), [anon_sym_AMP] = ACTIONS(562), [anon_sym_DOT_DOT_DOT] = ACTIONS(564), [anon_sym_DOT_DOT] = ACTIONS(562), @@ -35463,67 +36832,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(564), [anon_sym_LT_LT_EQ] = ACTIONS(564), [anon_sym_GT_GT_EQ] = ACTIONS(564), - [anon_sym_yield] = ACTIONS(658), - [anon_sym_move] = ACTIONS(658), + [anon_sym_yield] = ACTIONS(634), + [anon_sym_move] = ACTIONS(634), [anon_sym_DOT] = ACTIONS(562), - [sym_integer_literal] = ACTIONS(656), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(656), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), + [sym_integer_literal] = ACTIONS(632), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(658), - [sym_super] = ACTIONS(658), - [sym_crate] = ACTIONS(658), - [sym_metavariable] = ACTIONS(656), - [sym_raw_string_literal] = ACTIONS(656), - [sym_float_literal] = ACTIONS(656), + [sym_self] = ACTIONS(634), + [sym_super] = ACTIONS(634), + [sym_crate] = ACTIONS(634), + [sym_metavariable] = ACTIONS(632), + [sym_raw_string_literal] = ACTIONS(632), + [sym_float_literal] = ACTIONS(632), [sym_block_comment] = ACTIONS(3), }, [184] = { [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2411), - [sym_self_parameter] = STATE(1940), - [sym_variadic_parameter] = STATE(1940), - [sym_parameter] = STATE(1940), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1840), - [sym_bracketed_type] = STATE(2498), - [sym_lifetime] = STATE(1941), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2499), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1519), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1759), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_self_parameter] = STATE(2054), + [sym_variadic_parameter] = STATE(2054), + [sym_parameter] = STATE(2054), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1854), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(2060), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1748), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(684), @@ -35585,48 +36954,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [185] = { [sym_attribute_item] = STATE(196), - [sym_function_modifiers] = STATE(2411), - [sym_self_parameter] = STATE(2073), - [sym_variadic_parameter] = STATE(2073), - [sym_parameter] = STATE(2073), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1808), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(1941), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2333), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_self_parameter] = STATE(2089), + [sym_variadic_parameter] = STATE(2089), + [sym_parameter] = STATE(2089), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1850), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2060), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2230), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(750), @@ -35688,51 +37057,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [186] = { [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2411), - [sym_self_parameter] = STATE(1940), - [sym_variadic_parameter] = STATE(1940), - [sym_parameter] = STATE(1940), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1840), - [sym_bracketed_type] = STATE(2498), - [sym_lifetime] = STATE(1941), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2499), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1519), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1759), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_self_parameter] = STATE(2054), + [sym_variadic_parameter] = STATE(2054), + [sym_parameter] = STATE(2054), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1854), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2060), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2230), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(754), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(756), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(774), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(776), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [187] = { + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2427), + [sym_self_parameter] = STATE(2054), + [sym_variadic_parameter] = STATE(2054), + [sym_parameter] = STATE(2054), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1854), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(2060), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1748), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -35763,7 +37235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(774), + [anon_sym_COMMA] = ACTIONS(780), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), @@ -35789,53 +37261,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [187] = { + [188] = { [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2411), - [sym_self_parameter] = STATE(1940), - [sym_variadic_parameter] = STATE(1940), - [sym_parameter] = STATE(1940), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1840), - [sym_bracketed_type] = STATE(2498), - [sym_lifetime] = STATE(1941), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2499), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1519), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1759), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_self_parameter] = STATE(2054), + [sym_variadic_parameter] = STATE(2054), + [sym_parameter] = STATE(2054), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1854), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(2060), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1748), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(782), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -35866,7 +37338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_COMMA] = ACTIONS(784), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), @@ -35892,53 +37364,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [188] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2411), - [sym_self_parameter] = STATE(1940), - [sym_variadic_parameter] = STATE(1940), - [sym_parameter] = STATE(1940), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1840), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(1941), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2333), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [189] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2427), + [sym_self_parameter] = STATE(2253), + [sym_variadic_parameter] = STATE(2253), + [sym_parameter] = STATE(2253), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2076), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2060), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2230), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_RPAREN] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -35969,12 +37441,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(782), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(784), + [anon_sym__] = ACTIONS(788), [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -35995,53 +37466,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [189] = { + [190] = { [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2411), - [sym_self_parameter] = STATE(2217), - [sym_variadic_parameter] = STATE(2217), - [sym_parameter] = STATE(2217), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1962), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(1941), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2333), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_self_parameter] = STATE(2253), + [sym_variadic_parameter] = STATE(2253), + [sym_parameter] = STATE(2253), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2076), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2060), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2230), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(786), + [anon_sym_RPAREN] = ACTIONS(790), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36097,53 +37568,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [190] = { + [191] = { [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2411), - [sym_self_parameter] = STATE(2217), - [sym_variadic_parameter] = STATE(2217), - [sym_parameter] = STATE(2217), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1962), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(1941), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2333), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_self_parameter] = STATE(2253), + [sym_variadic_parameter] = STATE(2253), + [sym_parameter] = STATE(2253), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2076), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2060), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2230), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_RPAREN] = ACTIONS(792), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36199,53 +37670,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [191] = { + [192] = { [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2411), - [sym_self_parameter] = STATE(2217), - [sym_variadic_parameter] = STATE(2217), - [sym_parameter] = STATE(2217), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1962), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(1941), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2333), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_self_parameter] = STATE(2253), + [sym_variadic_parameter] = STATE(2253), + [sym_parameter] = STATE(2253), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2076), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2060), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2230), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36301,53 +37772,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [192] = { + [193] = { [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2411), - [sym_self_parameter] = STATE(2217), - [sym_variadic_parameter] = STATE(2217), - [sym_parameter] = STATE(2217), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1962), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(1941), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2333), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_self_parameter] = STATE(2253), + [sym_variadic_parameter] = STATE(2253), + [sym_parameter] = STATE(2253), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2076), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2060), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2230), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_RPAREN] = ACTIONS(796), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36403,53 +37874,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [193] = { + [194] = { [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2411), - [sym_self_parameter] = STATE(2217), - [sym_variadic_parameter] = STATE(2217), - [sym_parameter] = STATE(2217), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1962), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(1941), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2333), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_self_parameter] = STATE(2253), + [sym_variadic_parameter] = STATE(2253), + [sym_parameter] = STATE(2253), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2076), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2060), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2230), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(798), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36505,152 +37976,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [194] = { + [195] = { [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2411), - [sym_self_parameter] = STATE(2217), - [sym_variadic_parameter] = STATE(2217), - [sym_parameter] = STATE(2217), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1962), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(1941), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2333), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_self_parameter] = STATE(2253), + [sym_variadic_parameter] = STATE(2253), + [sym_parameter] = STATE(2253), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2076), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2060), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2230), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [195] = { - [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2411), - [sym_self_parameter] = STATE(2217), - [sym_variadic_parameter] = STATE(2217), - [sym_parameter] = STATE(2217), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1962), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(1941), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2333), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -36709,48 +38078,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [196] = { - [sym_function_modifiers] = STATE(2411), + [sym_function_modifiers] = STATE(2427), [sym_self_parameter] = STATE(2147), [sym_variadic_parameter] = STATE(2147), [sym_parameter] = STATE(2147), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1780), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(1941), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2333), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1836), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2060), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2230), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -36808,48 +38177,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [197] = { - [sym_function_modifiers] = STATE(2411), - [sym_self_parameter] = STATE(1987), - [sym_variadic_parameter] = STATE(1987), - [sym_parameter] = STATE(1987), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1813), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(1941), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2333), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_self_parameter] = STATE(1967), + [sym_variadic_parameter] = STATE(1967), + [sym_parameter] = STATE(1967), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1874), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2060), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2230), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -36907,48 +38276,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [198] = { - [sym_function_modifiers] = STATE(2411), - [sym_self_parameter] = STATE(2172), - [sym_variadic_parameter] = STATE(2172), - [sym_parameter] = STATE(2172), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(2063), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(1941), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2333), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_self_parameter] = STATE(2277), + [sym_variadic_parameter] = STATE(2277), + [sym_parameter] = STATE(2277), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1933), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2060), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2230), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -37006,87 +38375,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [199] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(2501), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2502), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1549), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1834), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1829), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1822), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(806), [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(810), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(812), - [anon_sym_i8] = ACTIONS(812), - [anon_sym_u16] = ACTIONS(812), - [anon_sym_i16] = ACTIONS(812), - [anon_sym_u32] = ACTIONS(812), - [anon_sym_i32] = ACTIONS(812), - [anon_sym_u64] = ACTIONS(812), - [anon_sym_i64] = ACTIONS(812), - [anon_sym_u128] = ACTIONS(812), - [anon_sym_i128] = ACTIONS(812), - [anon_sym_isize] = ACTIONS(812), - [anon_sym_usize] = ACTIONS(812), - [anon_sym_f32] = ACTIONS(812), - [anon_sym_f64] = ACTIONS(812), - [anon_sym_bool] = ACTIONS(812), - [anon_sym_str] = ACTIONS(812), - [anon_sym_char] = ACTIONS(812), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(814), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(816), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(812), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(820), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37094,57 +38463,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(830), - [sym_super] = ACTIONS(830), - [sym_crate] = ACTIONS(830), - [sym_metavariable] = ACTIONS(832), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [200] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1784), - [sym_bracketed_type] = STATE(2498), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2499), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1519), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1843), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1829), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1822), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -37167,23 +38536,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(836), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_COMMA] = ACTIONS(812), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37200,48 +38569,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [201] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1784), - [sym_bracketed_type] = STATE(2498), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2499), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1519), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1843), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1829), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1822), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -37264,23 +38633,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(836), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_COMMA] = ACTIONS(812), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37297,87 +38666,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [202] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1784), - [sym_bracketed_type] = STATE(2498), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2499), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1519), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1843), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2116), + [sym_bracketed_type] = STATE(2517), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2518), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1562), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(846), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(828), [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(830), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(832), + [anon_sym_i8] = ACTIONS(832), + [anon_sym_u16] = ACTIONS(832), + [anon_sym_i16] = ACTIONS(832), + [anon_sym_u32] = ACTIONS(832), + [anon_sym_i32] = ACTIONS(832), + [anon_sym_u64] = ACTIONS(832), + [anon_sym_i64] = ACTIONS(832), + [anon_sym_u128] = ACTIONS(832), + [anon_sym_i128] = ACTIONS(832), + [anon_sym_isize] = ACTIONS(832), + [anon_sym_usize] = ACTIONS(832), + [anon_sym_f32] = ACTIONS(832), + [anon_sym_f64] = ACTIONS(832), + [anon_sym_bool] = ACTIONS(832), + [anon_sym_str] = ACTIONS(832), + [anon_sym_char] = ACTIONS(832), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(836), + [anon_sym_default] = ACTIONS(834), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(836), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_COMMA] = ACTIONS(838), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(822), + [anon_sym_COLON_COLON] = ACTIONS(840), + [anon_sym__] = ACTIONS(814), [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37385,10 +38754,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(844), + [sym_super] = ACTIONS(844), + [sym_crate] = ACTIONS(844), + [sym_metavariable] = ACTIONS(846), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -37490,85 +38859,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [204] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1397), - [sym_bracketed_type] = STATE(2498), - [sym_lifetime] = STATE(600), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2499), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1519), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1488), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1395), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1478), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(836), + [anon_sym_default] = ACTIONS(852), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(854), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(856), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37576,54 +38945,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(858), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [205] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1394), - [sym_bracketed_type] = STATE(2498), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2499), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1519), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1460), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1395), + [sym_bracketed_type] = STATE(2517), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2518), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1562), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1478), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(828), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(832), + [anon_sym_i8] = ACTIONS(832), + [anon_sym_u16] = ACTIONS(832), + [anon_sym_i16] = ACTIONS(832), + [anon_sym_u32] = ACTIONS(832), + [anon_sym_i32] = ACTIONS(832), + [anon_sym_u64] = ACTIONS(832), + [anon_sym_i64] = ACTIONS(832), + [anon_sym_u128] = ACTIONS(832), + [anon_sym_i128] = ACTIONS(832), + [anon_sym_isize] = ACTIONS(832), + [anon_sym_usize] = ACTIONS(832), + [anon_sym_f32] = ACTIONS(832), + [anon_sym_f64] = ACTIONS(832), + [anon_sym_bool] = ACTIONS(832), + [anon_sym_str] = ACTIONS(832), + [anon_sym_char] = ACTIONS(832), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(834), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(836), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(840), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(844), + [sym_super] = ACTIONS(844), + [sym_crate] = ACTIONS(844), + [sym_metavariable] = ACTIONS(846), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [206] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1398), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(618), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1462), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -37645,25 +39109,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(690), [anon_sym_str] = ACTIONS(690), [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(860), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(836), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(862), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37671,7 +39135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), + [sym_self] = ACTIONS(864), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), [sym_metavariable] = ACTIONS(744), @@ -37679,46 +39143,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [206] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1397), - [sym_bracketed_type] = STATE(2498), - [sym_lifetime] = STATE(599), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2499), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1519), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1488), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [207] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1395), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1478), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -37740,25 +39204,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(690), [anon_sym_str] = ACTIONS(690), [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(836), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(856), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37766,7 +39230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(858), + [sym_self] = ACTIONS(742), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), [sym_metavariable] = ACTIONS(744), @@ -37774,46 +39238,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [207] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1397), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(600), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1488), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [208] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1398), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(618), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1462), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -37835,25 +39299,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(860), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(852), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(854), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(864), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(856), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(866), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [209] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1395), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1478), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(852), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(854), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37869,46 +39428,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [208] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1394), - [sym_bracketed_type] = STATE(2498), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2499), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1519), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1460), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [210] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1395), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1478), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -37933,22 +39492,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(836), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37956,7 +39515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(868), + [sym_self] = ACTIONS(870), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), [sym_metavariable] = ACTIONS(744), @@ -37964,236 +39523,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [209] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1394), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1460), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(862), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(864), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(870), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [210] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1394), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1460), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(862), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(864), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, [211] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1397), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(599), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1612), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1488), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1398), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(629), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1462), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -38215,25 +39584,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(860), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(852), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(854), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(864), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(856), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(872), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -38241,7 +39610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), + [sym_self] = ACTIONS(768), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), @@ -38250,85 +39619,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [212] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1394), - [sym_bracketed_type] = STATE(2501), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2502), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1549), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1460), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1398), + [sym_bracketed_type] = STATE(2517), + [sym_lifetime] = STATE(629), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2518), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1562), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1462), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(828), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(812), - [anon_sym_i8] = ACTIONS(812), - [anon_sym_u16] = ACTIONS(812), - [anon_sym_i16] = ACTIONS(812), - [anon_sym_u32] = ACTIONS(812), - [anon_sym_i32] = ACTIONS(812), - [anon_sym_u64] = ACTIONS(812), - [anon_sym_i64] = ACTIONS(812), - [anon_sym_u128] = ACTIONS(812), - [anon_sym_i128] = ACTIONS(812), - [anon_sym_isize] = ACTIONS(812), - [anon_sym_usize] = ACTIONS(812), - [anon_sym_f32] = ACTIONS(812), - [anon_sym_f64] = ACTIONS(812), - [anon_sym_bool] = ACTIONS(812), - [anon_sym_str] = ACTIONS(812), - [anon_sym_char] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_u8] = ACTIONS(832), + [anon_sym_i8] = ACTIONS(832), + [anon_sym_u16] = ACTIONS(832), + [anon_sym_i16] = ACTIONS(832), + [anon_sym_u32] = ACTIONS(832), + [anon_sym_i32] = ACTIONS(832), + [anon_sym_u64] = ACTIONS(832), + [anon_sym_i64] = ACTIONS(832), + [anon_sym_u128] = ACTIONS(832), + [anon_sym_i128] = ACTIONS(832), + [anon_sym_isize] = ACTIONS(832), + [anon_sym_usize] = ACTIONS(832), + [anon_sym_f32] = ACTIONS(832), + [anon_sym_f64] = ACTIONS(832), + [anon_sym_bool] = ACTIONS(832), + [anon_sym_str] = ACTIONS(832), + [anon_sym_char] = ACTIONS(832), + [anon_sym_SQUOTE] = ACTIONS(860), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(814), + [anon_sym_default] = ACTIONS(834), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(816), + [anon_sym_union] = ACTIONS(836), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(820), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(840), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(874), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -38336,94 +39705,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(830), - [sym_super] = ACTIONS(830), - [sym_crate] = ACTIONS(830), - [sym_metavariable] = ACTIONS(832), + [sym_self] = ACTIONS(844), + [sym_super] = ACTIONS(844), + [sym_crate] = ACTIONS(844), + [sym_metavariable] = ACTIONS(846), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [213] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1397), - [sym_bracketed_type] = STATE(2501), - [sym_lifetime] = STATE(600), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2502), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(1549), - [sym_scoped_type_identifier] = STATE(1500), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1488), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1398), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(629), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1497), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1462), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(812), - [anon_sym_i8] = ACTIONS(812), - [anon_sym_u16] = ACTIONS(812), - [anon_sym_i16] = ACTIONS(812), - [anon_sym_u32] = ACTIONS(812), - [anon_sym_i32] = ACTIONS(812), - [anon_sym_u64] = ACTIONS(812), - [anon_sym_i64] = ACTIONS(812), - [anon_sym_u128] = ACTIONS(812), - [anon_sym_i128] = ACTIONS(812), - [anon_sym_isize] = ACTIONS(812), - [anon_sym_usize] = ACTIONS(812), - [anon_sym_f32] = ACTIONS(812), - [anon_sym_f64] = ACTIONS(812), - [anon_sym_bool] = ACTIONS(812), - [anon_sym_str] = ACTIONS(812), - [anon_sym_char] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(860), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(814), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(816), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(820), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(876), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -38431,37 +39800,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(830), - [sym_super] = ACTIONS(830), - [sym_crate] = ACTIONS(830), - [sym_metavariable] = ACTIONS(832), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [214] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1471), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1485), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), [sym_identifier] = ACTIONS(878), [anon_sym_LPAREN] = ACTIONS(880), [anon_sym_LBRACE] = ACTIONS(880), @@ -38503,9 +39872,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(880), [anon_sym_LT] = ACTIONS(880), [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym__] = ACTIONS(822), + [anon_sym__] = ACTIONS(814), [anon_sym_AMP] = ACTIONS(880), - [sym_mutable_specifier] = ACTIONS(826), + [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(880), [anon_sym_DASH] = ACTIONS(878), [anon_sym_PIPE] = ACTIONS(880), @@ -38526,170 +39895,906 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [215] = { - [sym_else_clause] = STATE(235), - [sym_identifier] = ACTIONS(502), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(502), - [anon_sym_QMARK] = ACTIONS(500), - [anon_sym_u8] = ACTIONS(502), - [anon_sym_i8] = ACTIONS(502), - [anon_sym_u16] = ACTIONS(502), - [anon_sym_i16] = ACTIONS(502), - [anon_sym_u32] = ACTIONS(502), - [anon_sym_i32] = ACTIONS(502), - [anon_sym_u64] = ACTIONS(502), - [anon_sym_i64] = ACTIONS(502), - [anon_sym_u128] = ACTIONS(502), - [anon_sym_i128] = ACTIONS(502), - [anon_sym_isize] = ACTIONS(502), - [anon_sym_usize] = ACTIONS(502), - [anon_sym_f32] = ACTIONS(502), - [anon_sym_f64] = ACTIONS(502), - [anon_sym_bool] = ACTIONS(502), - [anon_sym_str] = ACTIONS(502), - [anon_sym_char] = ACTIONS(502), - [anon_sym_as] = ACTIONS(502), - [anon_sym_const] = ACTIONS(502), - [anon_sym_default] = ACTIONS(502), - [anon_sym_union] = ACTIONS(502), - [anon_sym_POUND] = ACTIONS(500), - [anon_sym_EQ] = ACTIONS(502), - [anon_sym_COMMA] = ACTIONS(500), - [anon_sym_ref] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(502), - [anon_sym_GT] = ACTIONS(502), - [anon_sym_COLON_COLON] = ACTIONS(500), - [anon_sym__] = ACTIONS(502), - [anon_sym_AMP] = ACTIONS(502), - [anon_sym_DOT_DOT_DOT] = ACTIONS(500), - [sym_mutable_specifier] = ACTIONS(502), - [anon_sym_DOT_DOT] = ACTIONS(502), - [anon_sym_DOT_DOT_EQ] = ACTIONS(500), - [anon_sym_DASH] = ACTIONS(502), - [anon_sym_AMP_AMP] = ACTIONS(500), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_PIPE] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_EQ_EQ] = ACTIONS(500), - [anon_sym_BANG_EQ] = ACTIONS(500), - [anon_sym_LT_EQ] = ACTIONS(500), - [anon_sym_GT_EQ] = ACTIONS(500), - [anon_sym_LT_LT] = ACTIONS(502), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_SLASH] = ACTIONS(502), - [anon_sym_PERCENT] = ACTIONS(502), - [anon_sym_PLUS_EQ] = ACTIONS(500), - [anon_sym_DASH_EQ] = ACTIONS(500), - [anon_sym_STAR_EQ] = ACTIONS(500), - [anon_sym_SLASH_EQ] = ACTIONS(500), - [anon_sym_PERCENT_EQ] = ACTIONS(500), - [anon_sym_AMP_EQ] = ACTIONS(500), - [anon_sym_PIPE_EQ] = ACTIONS(500), - [anon_sym_CARET_EQ] = ACTIONS(500), - [anon_sym_LT_LT_EQ] = ACTIONS(500), - [anon_sym_GT_GT_EQ] = ACTIONS(500), - [anon_sym_else] = ACTIONS(882), - [anon_sym_DOT] = ACTIONS(502), - [sym_integer_literal] = ACTIONS(500), - [aux_sym_string_literal_token1] = ACTIONS(500), - [sym_char_literal] = ACTIONS(500), - [anon_sym_true] = ACTIONS(502), - [anon_sym_false] = ACTIONS(502), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(502), - [sym_super] = ACTIONS(502), - [sym_crate] = ACTIONS(502), - [sym_metavariable] = ACTIONS(500), - [sym_raw_string_literal] = ACTIONS(500), - [sym_float_literal] = ACTIONS(500), + [sym__attr] = STATE(2367), + [sym_custom_attr] = STATE(2367), + [sym_built_in_attr] = STATE(2367), + [sym__built_in_attr_path] = STATE(1877), + [sym_bracketed_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2388), + [sym_scoped_identifier] = STATE(1605), + [sym_identifier] = ACTIONS(882), + [anon_sym_path] = 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_default] = ACTIONS(886), + [anon_sym_union] = ACTIONS(886), + [anon_sym_cfg] = ACTIONS(884), + [anon_sym_cfg_attr] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_ignore] = ACTIONS(884), + [anon_sym_should_panic] = ACTIONS(884), + [anon_sym_derive] = ACTIONS(884), + [anon_sym_automatically_derived] = ACTIONS(884), + [anon_sym_macro_export] = ACTIONS(884), + [anon_sym_macro_use] = ACTIONS(884), + [anon_sym_proc_macro] = ACTIONS(884), + [anon_sym_proc_macro_derive] = ACTIONS(884), + [anon_sym_proc_macro_attribute] = ACTIONS(884), + [anon_sym_allow] = ACTIONS(884), + [anon_sym_warn] = ACTIONS(884), + [anon_sym_deny] = ACTIONS(884), + [anon_sym_forbid] = ACTIONS(884), + [anon_sym_deprecated] = ACTIONS(884), + [anon_sym_must_use] = ACTIONS(884), + [anon_sym_link] = ACTIONS(884), + [anon_sym_link_name] = ACTIONS(884), + [anon_sym_no_link] = ACTIONS(884), + [anon_sym_repr] = ACTIONS(884), + [anon_sym_crate_type] = ACTIONS(884), + [anon_sym_no_main] = ACTIONS(884), + [anon_sym_export_name] = ACTIONS(884), + [anon_sym_link_section] = ACTIONS(884), + [anon_sym_no_mangle] = ACTIONS(884), + [anon_sym_used] = ACTIONS(884), + [anon_sym_crate_name] = ACTIONS(884), + [anon_sym_inline] = ACTIONS(884), + [anon_sym_cold] = ACTIONS(884), + [anon_sym_no_builtins] = ACTIONS(884), + [anon_sym_target_feature] = ACTIONS(884), + [anon_sym_track_caller] = ACTIONS(884), + [anon_sym_doc] = ACTIONS(884), + [anon_sym_no_std] = ACTIONS(884), + [anon_sym_no_implicit_prelude] = ACTIONS(884), + [anon_sym_recursion_limit] = ACTIONS(884), + [anon_sym_type_length_limit] = ACTIONS(884), + [anon_sym_panic_handler] = ACTIONS(884), + [anon_sym_global_allocator] = ACTIONS(884), + [anon_sym_windows_subsystem] = ACTIONS(884), + [anon_sym_feature] = ACTIONS(884), + [anon_sym_non_exhaustive] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(888), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, [216] = { - [sym_else_clause] = STATE(241), - [sym_identifier] = ACTIONS(396), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(396), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(396), - [anon_sym_i8] = ACTIONS(396), - [anon_sym_u16] = ACTIONS(396), - [anon_sym_i16] = ACTIONS(396), - [anon_sym_u32] = ACTIONS(396), - [anon_sym_i32] = ACTIONS(396), - [anon_sym_u64] = ACTIONS(396), - [anon_sym_i64] = ACTIONS(396), - [anon_sym_u128] = ACTIONS(396), - [anon_sym_i128] = ACTIONS(396), - [anon_sym_isize] = ACTIONS(396), - [anon_sym_usize] = ACTIONS(396), - [anon_sym_f32] = ACTIONS(396), - [anon_sym_f64] = ACTIONS(396), - [anon_sym_bool] = ACTIONS(396), - [anon_sym_str] = ACTIONS(396), - [anon_sym_char] = ACTIONS(396), - [anon_sym_as] = ACTIONS(396), - [anon_sym_const] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_union] = ACTIONS(396), - [anon_sym_POUND] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_COMMA] = ACTIONS(394), - [anon_sym_ref] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_COLON_COLON] = ACTIONS(394), - [anon_sym__] = ACTIONS(396), - [anon_sym_AMP] = ACTIONS(396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [sym_mutable_specifier] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(394), - [anon_sym_DASH_EQ] = ACTIONS(394), - [anon_sym_STAR_EQ] = ACTIONS(394), - [anon_sym_SLASH_EQ] = ACTIONS(394), - [anon_sym_PERCENT_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_CARET_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_else] = ACTIONS(882), - [anon_sym_DOT] = ACTIONS(396), - [sym_integer_literal] = ACTIONS(394), - [aux_sym_string_literal_token1] = ACTIONS(394), - [sym_char_literal] = ACTIONS(394), - [anon_sym_true] = ACTIONS(396), - [anon_sym_false] = ACTIONS(396), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(396), - [sym_super] = ACTIONS(396), - [sym_crate] = ACTIONS(396), - [sym_metavariable] = ACTIONS(394), - [sym_raw_string_literal] = ACTIONS(394), - [sym_float_literal] = ACTIONS(394), + [sym_else_clause] = STATE(246), + [sym_identifier] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_RBRACE] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_isize] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_f32] = ACTIONS(394), + [anon_sym_f64] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_str] = ACTIONS(394), + [anon_sym_char] = ACTIONS(394), + [anon_sym_as] = ACTIONS(394), + [anon_sym_const] = ACTIONS(394), + [anon_sym_default] = ACTIONS(394), + [anon_sym_union] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_ref] = ACTIONS(394), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym__] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(392), + [sym_mutable_specifier] = ACTIONS(394), + [anon_sym_DOT_DOT] = ACTIONS(394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(392), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(394), + [anon_sym_GT_GT] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_LT_LT_EQ] = ACTIONS(392), + [anon_sym_GT_GT_EQ] = ACTIONS(392), + [anon_sym_else] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(394), + [sym_integer_literal] = ACTIONS(392), + [aux_sym_string_literal_token1] = ACTIONS(392), + [sym_char_literal] = ACTIONS(392), + [anon_sym_true] = ACTIONS(394), + [anon_sym_false] = ACTIONS(394), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(394), + [sym_super] = ACTIONS(394), + [sym_crate] = ACTIONS(394), + [sym_metavariable] = ACTIONS(392), + [sym_raw_string_literal] = ACTIONS(392), + [sym_float_literal] = ACTIONS(392), [sym_block_comment] = ACTIONS(3), }, [217] = { + [sym__attr] = STATE(2363), + [sym_custom_attr] = STATE(2363), + [sym_built_in_attr] = STATE(2363), + [sym__built_in_attr_path] = STATE(1877), + [sym_bracketed_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2388), + [sym_scoped_identifier] = STATE(1605), + [sym_identifier] = ACTIONS(882), + [anon_sym_path] = 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_default] = ACTIONS(886), + [anon_sym_union] = ACTIONS(886), + [anon_sym_cfg] = ACTIONS(884), + [anon_sym_cfg_attr] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_ignore] = ACTIONS(884), + [anon_sym_should_panic] = ACTIONS(884), + [anon_sym_derive] = ACTIONS(884), + [anon_sym_automatically_derived] = ACTIONS(884), + [anon_sym_macro_export] = ACTIONS(884), + [anon_sym_macro_use] = ACTIONS(884), + [anon_sym_proc_macro] = ACTIONS(884), + [anon_sym_proc_macro_derive] = ACTIONS(884), + [anon_sym_proc_macro_attribute] = ACTIONS(884), + [anon_sym_allow] = ACTIONS(884), + [anon_sym_warn] = ACTIONS(884), + [anon_sym_deny] = ACTIONS(884), + [anon_sym_forbid] = ACTIONS(884), + [anon_sym_deprecated] = ACTIONS(884), + [anon_sym_must_use] = ACTIONS(884), + [anon_sym_link] = ACTIONS(884), + [anon_sym_link_name] = ACTIONS(884), + [anon_sym_no_link] = ACTIONS(884), + [anon_sym_repr] = ACTIONS(884), + [anon_sym_crate_type] = ACTIONS(884), + [anon_sym_no_main] = ACTIONS(884), + [anon_sym_export_name] = ACTIONS(884), + [anon_sym_link_section] = ACTIONS(884), + [anon_sym_no_mangle] = ACTIONS(884), + [anon_sym_used] = ACTIONS(884), + [anon_sym_crate_name] = ACTIONS(884), + [anon_sym_inline] = ACTIONS(884), + [anon_sym_cold] = ACTIONS(884), + [anon_sym_no_builtins] = ACTIONS(884), + [anon_sym_target_feature] = ACTIONS(884), + [anon_sym_track_caller] = ACTIONS(884), + [anon_sym_doc] = ACTIONS(884), + [anon_sym_no_std] = ACTIONS(884), + [anon_sym_no_implicit_prelude] = ACTIONS(884), + [anon_sym_recursion_limit] = ACTIONS(884), + [anon_sym_type_length_limit] = ACTIONS(884), + [anon_sym_panic_handler] = ACTIONS(884), + [anon_sym_global_allocator] = ACTIONS(884), + [anon_sym_windows_subsystem] = ACTIONS(884), + [anon_sym_feature] = ACTIONS(884), + [anon_sym_non_exhaustive] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(888), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [218] = { + [sym__attr] = STATE(2559), + [sym_custom_attr] = STATE(2559), + [sym_built_in_attr] = STATE(2559), + [sym__built_in_attr_path] = STATE(1877), + [sym_bracketed_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2388), + [sym_scoped_identifier] = STATE(1605), + [sym_identifier] = ACTIONS(882), + [anon_sym_path] = 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_default] = ACTIONS(886), + [anon_sym_union] = ACTIONS(886), + [anon_sym_cfg] = ACTIONS(884), + [anon_sym_cfg_attr] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_ignore] = ACTIONS(884), + [anon_sym_should_panic] = ACTIONS(884), + [anon_sym_derive] = ACTIONS(884), + [anon_sym_automatically_derived] = ACTIONS(884), + [anon_sym_macro_export] = ACTIONS(884), + [anon_sym_macro_use] = ACTIONS(884), + [anon_sym_proc_macro] = ACTIONS(884), + [anon_sym_proc_macro_derive] = ACTIONS(884), + [anon_sym_proc_macro_attribute] = ACTIONS(884), + [anon_sym_allow] = ACTIONS(884), + [anon_sym_warn] = ACTIONS(884), + [anon_sym_deny] = ACTIONS(884), + [anon_sym_forbid] = ACTIONS(884), + [anon_sym_deprecated] = ACTIONS(884), + [anon_sym_must_use] = ACTIONS(884), + [anon_sym_link] = ACTIONS(884), + [anon_sym_link_name] = ACTIONS(884), + [anon_sym_no_link] = ACTIONS(884), + [anon_sym_repr] = ACTIONS(884), + [anon_sym_crate_type] = ACTIONS(884), + [anon_sym_no_main] = ACTIONS(884), + [anon_sym_export_name] = ACTIONS(884), + [anon_sym_link_section] = ACTIONS(884), + [anon_sym_no_mangle] = ACTIONS(884), + [anon_sym_used] = ACTIONS(884), + [anon_sym_crate_name] = ACTIONS(884), + [anon_sym_inline] = ACTIONS(884), + [anon_sym_cold] = ACTIONS(884), + [anon_sym_no_builtins] = ACTIONS(884), + [anon_sym_target_feature] = ACTIONS(884), + [anon_sym_track_caller] = ACTIONS(884), + [anon_sym_doc] = ACTIONS(884), + [anon_sym_no_std] = ACTIONS(884), + [anon_sym_no_implicit_prelude] = ACTIONS(884), + [anon_sym_recursion_limit] = ACTIONS(884), + [anon_sym_type_length_limit] = ACTIONS(884), + [anon_sym_panic_handler] = ACTIONS(884), + [anon_sym_global_allocator] = ACTIONS(884), + [anon_sym_windows_subsystem] = ACTIONS(884), + [anon_sym_feature] = ACTIONS(884), + [anon_sym_non_exhaustive] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(888), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [219] = { + [sym__attr] = STATE(2472), + [sym_custom_attr] = STATE(2472), + [sym_built_in_attr] = STATE(2472), + [sym__built_in_attr_path] = STATE(1877), + [sym_bracketed_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2388), + [sym_scoped_identifier] = STATE(1605), + [sym_identifier] = ACTIONS(882), + [anon_sym_path] = 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_default] = ACTIONS(886), + [anon_sym_union] = ACTIONS(886), + [anon_sym_cfg] = ACTIONS(884), + [anon_sym_cfg_attr] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_ignore] = ACTIONS(884), + [anon_sym_should_panic] = ACTIONS(884), + [anon_sym_derive] = ACTIONS(884), + [anon_sym_automatically_derived] = ACTIONS(884), + [anon_sym_macro_export] = ACTIONS(884), + [anon_sym_macro_use] = ACTIONS(884), + [anon_sym_proc_macro] = ACTIONS(884), + [anon_sym_proc_macro_derive] = ACTIONS(884), + [anon_sym_proc_macro_attribute] = ACTIONS(884), + [anon_sym_allow] = ACTIONS(884), + [anon_sym_warn] = ACTIONS(884), + [anon_sym_deny] = ACTIONS(884), + [anon_sym_forbid] = ACTIONS(884), + [anon_sym_deprecated] = ACTIONS(884), + [anon_sym_must_use] = ACTIONS(884), + [anon_sym_link] = ACTIONS(884), + [anon_sym_link_name] = ACTIONS(884), + [anon_sym_no_link] = ACTIONS(884), + [anon_sym_repr] = ACTIONS(884), + [anon_sym_crate_type] = ACTIONS(884), + [anon_sym_no_main] = ACTIONS(884), + [anon_sym_export_name] = ACTIONS(884), + [anon_sym_link_section] = ACTIONS(884), + [anon_sym_no_mangle] = ACTIONS(884), + [anon_sym_used] = ACTIONS(884), + [anon_sym_crate_name] = ACTIONS(884), + [anon_sym_inline] = ACTIONS(884), + [anon_sym_cold] = ACTIONS(884), + [anon_sym_no_builtins] = ACTIONS(884), + [anon_sym_target_feature] = ACTIONS(884), + [anon_sym_track_caller] = ACTIONS(884), + [anon_sym_doc] = ACTIONS(884), + [anon_sym_no_std] = ACTIONS(884), + [anon_sym_no_implicit_prelude] = ACTIONS(884), + [anon_sym_recursion_limit] = ACTIONS(884), + [anon_sym_type_length_limit] = ACTIONS(884), + [anon_sym_panic_handler] = ACTIONS(884), + [anon_sym_global_allocator] = ACTIONS(884), + [anon_sym_windows_subsystem] = ACTIONS(884), + [anon_sym_feature] = ACTIONS(884), + [anon_sym_non_exhaustive] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(888), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [220] = { + [sym_else_clause] = STATE(250), + [sym_identifier] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_u8] = ACTIONS(500), + [anon_sym_i8] = ACTIONS(500), + [anon_sym_u16] = ACTIONS(500), + [anon_sym_i16] = ACTIONS(500), + [anon_sym_u32] = ACTIONS(500), + [anon_sym_i32] = ACTIONS(500), + [anon_sym_u64] = ACTIONS(500), + [anon_sym_i64] = ACTIONS(500), + [anon_sym_u128] = ACTIONS(500), + [anon_sym_i128] = ACTIONS(500), + [anon_sym_isize] = ACTIONS(500), + [anon_sym_usize] = ACTIONS(500), + [anon_sym_f32] = ACTIONS(500), + [anon_sym_f64] = ACTIONS(500), + [anon_sym_bool] = ACTIONS(500), + [anon_sym_str] = ACTIONS(500), + [anon_sym_char] = ACTIONS(500), + [anon_sym_as] = ACTIONS(500), + [anon_sym_const] = ACTIONS(500), + [anon_sym_default] = ACTIONS(500), + [anon_sym_union] = ACTIONS(500), + [anon_sym_POUND] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_COMMA] = ACTIONS(498), + [anon_sym_ref] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(498), + [anon_sym__] = ACTIONS(500), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(498), + [sym_mutable_specifier] = ACTIONS(500), + [anon_sym_DOT_DOT] = ACTIONS(500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(498), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_AMP_AMP] = ACTIONS(498), + [anon_sym_PIPE_PIPE] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_CARET] = ACTIONS(500), + [anon_sym_EQ_EQ] = ACTIONS(498), + [anon_sym_BANG_EQ] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_GT_GT] = ACTIONS(500), + [anon_sym_SLASH] = ACTIONS(500), + [anon_sym_PERCENT] = ACTIONS(500), + [anon_sym_PLUS_EQ] = ACTIONS(498), + [anon_sym_DASH_EQ] = ACTIONS(498), + [anon_sym_STAR_EQ] = ACTIONS(498), + [anon_sym_SLASH_EQ] = ACTIONS(498), + [anon_sym_PERCENT_EQ] = ACTIONS(498), + [anon_sym_AMP_EQ] = ACTIONS(498), + [anon_sym_PIPE_EQ] = ACTIONS(498), + [anon_sym_CARET_EQ] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(498), + [anon_sym_GT_GT_EQ] = ACTIONS(498), + [anon_sym_else] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(500), + [sym_integer_literal] = ACTIONS(498), + [aux_sym_string_literal_token1] = ACTIONS(498), + [sym_char_literal] = ACTIONS(498), + [anon_sym_true] = ACTIONS(500), + [anon_sym_false] = ACTIONS(500), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(500), + [sym_super] = ACTIONS(500), + [sym_crate] = ACTIONS(500), + [sym_metavariable] = ACTIONS(498), + [sym_raw_string_literal] = ACTIONS(498), + [sym_float_literal] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + }, + [221] = { + [sym__attr] = STATE(2352), + [sym_custom_attr] = STATE(2352), + [sym_built_in_attr] = STATE(2352), + [sym__built_in_attr_path] = STATE(1877), + [sym_bracketed_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2388), + [sym_scoped_identifier] = STATE(1605), + [sym_identifier] = ACTIONS(882), + [anon_sym_path] = 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_default] = ACTIONS(886), + [anon_sym_union] = ACTIONS(886), + [anon_sym_cfg] = ACTIONS(884), + [anon_sym_cfg_attr] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_ignore] = ACTIONS(884), + [anon_sym_should_panic] = ACTIONS(884), + [anon_sym_derive] = ACTIONS(884), + [anon_sym_automatically_derived] = ACTIONS(884), + [anon_sym_macro_export] = ACTIONS(884), + [anon_sym_macro_use] = ACTIONS(884), + [anon_sym_proc_macro] = ACTIONS(884), + [anon_sym_proc_macro_derive] = ACTIONS(884), + [anon_sym_proc_macro_attribute] = ACTIONS(884), + [anon_sym_allow] = ACTIONS(884), + [anon_sym_warn] = ACTIONS(884), + [anon_sym_deny] = ACTIONS(884), + [anon_sym_forbid] = ACTIONS(884), + [anon_sym_deprecated] = ACTIONS(884), + [anon_sym_must_use] = ACTIONS(884), + [anon_sym_link] = ACTIONS(884), + [anon_sym_link_name] = ACTIONS(884), + [anon_sym_no_link] = ACTIONS(884), + [anon_sym_repr] = ACTIONS(884), + [anon_sym_crate_type] = ACTIONS(884), + [anon_sym_no_main] = ACTIONS(884), + [anon_sym_export_name] = ACTIONS(884), + [anon_sym_link_section] = ACTIONS(884), + [anon_sym_no_mangle] = ACTIONS(884), + [anon_sym_used] = ACTIONS(884), + [anon_sym_crate_name] = ACTIONS(884), + [anon_sym_inline] = ACTIONS(884), + [anon_sym_cold] = ACTIONS(884), + [anon_sym_no_builtins] = ACTIONS(884), + [anon_sym_target_feature] = ACTIONS(884), + [anon_sym_track_caller] = ACTIONS(884), + [anon_sym_doc] = ACTIONS(884), + [anon_sym_no_std] = ACTIONS(884), + [anon_sym_no_implicit_prelude] = ACTIONS(884), + [anon_sym_recursion_limit] = ACTIONS(884), + [anon_sym_type_length_limit] = ACTIONS(884), + [anon_sym_panic_handler] = ACTIONS(884), + [anon_sym_global_allocator] = ACTIONS(884), + [anon_sym_windows_subsystem] = ACTIONS(884), + [anon_sym_feature] = ACTIONS(884), + [anon_sym_non_exhaustive] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(888), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [222] = { + [sym__attr] = STATE(2426), + [sym_custom_attr] = STATE(2426), + [sym_built_in_attr] = STATE(2426), + [sym__built_in_attr_path] = STATE(1877), + [sym_bracketed_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2388), + [sym_scoped_identifier] = STATE(1605), + [sym_identifier] = ACTIONS(882), + [anon_sym_path] = 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_default] = ACTIONS(886), + [anon_sym_union] = ACTIONS(886), + [anon_sym_cfg] = ACTIONS(884), + [anon_sym_cfg_attr] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_ignore] = ACTIONS(884), + [anon_sym_should_panic] = ACTIONS(884), + [anon_sym_derive] = ACTIONS(884), + [anon_sym_automatically_derived] = ACTIONS(884), + [anon_sym_macro_export] = ACTIONS(884), + [anon_sym_macro_use] = ACTIONS(884), + [anon_sym_proc_macro] = ACTIONS(884), + [anon_sym_proc_macro_derive] = ACTIONS(884), + [anon_sym_proc_macro_attribute] = ACTIONS(884), + [anon_sym_allow] = ACTIONS(884), + [anon_sym_warn] = ACTIONS(884), + [anon_sym_deny] = ACTIONS(884), + [anon_sym_forbid] = ACTIONS(884), + [anon_sym_deprecated] = ACTIONS(884), + [anon_sym_must_use] = ACTIONS(884), + [anon_sym_link] = ACTIONS(884), + [anon_sym_link_name] = ACTIONS(884), + [anon_sym_no_link] = ACTIONS(884), + [anon_sym_repr] = ACTIONS(884), + [anon_sym_crate_type] = ACTIONS(884), + [anon_sym_no_main] = ACTIONS(884), + [anon_sym_export_name] = ACTIONS(884), + [anon_sym_link_section] = ACTIONS(884), + [anon_sym_no_mangle] = ACTIONS(884), + [anon_sym_used] = ACTIONS(884), + [anon_sym_crate_name] = ACTIONS(884), + [anon_sym_inline] = ACTIONS(884), + [anon_sym_cold] = ACTIONS(884), + [anon_sym_no_builtins] = ACTIONS(884), + [anon_sym_target_feature] = ACTIONS(884), + [anon_sym_track_caller] = ACTIONS(884), + [anon_sym_doc] = ACTIONS(884), + [anon_sym_no_std] = ACTIONS(884), + [anon_sym_no_implicit_prelude] = ACTIONS(884), + [anon_sym_recursion_limit] = ACTIONS(884), + [anon_sym_type_length_limit] = ACTIONS(884), + [anon_sym_panic_handler] = ACTIONS(884), + [anon_sym_global_allocator] = ACTIONS(884), + [anon_sym_windows_subsystem] = ACTIONS(884), + [anon_sym_feature] = ACTIONS(884), + [anon_sym_non_exhaustive] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(888), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [223] = { + [sym__attr] = STATE(2446), + [sym_custom_attr] = STATE(2446), + [sym_built_in_attr] = STATE(2446), + [sym__built_in_attr_path] = STATE(1877), + [sym_bracketed_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2388), + [sym_scoped_identifier] = STATE(1605), + [sym_identifier] = ACTIONS(882), + [anon_sym_path] = 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_default] = ACTIONS(886), + [anon_sym_union] = ACTIONS(886), + [anon_sym_cfg] = ACTIONS(884), + [anon_sym_cfg_attr] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_ignore] = ACTIONS(884), + [anon_sym_should_panic] = ACTIONS(884), + [anon_sym_derive] = ACTIONS(884), + [anon_sym_automatically_derived] = ACTIONS(884), + [anon_sym_macro_export] = ACTIONS(884), + [anon_sym_macro_use] = ACTIONS(884), + [anon_sym_proc_macro] = ACTIONS(884), + [anon_sym_proc_macro_derive] = ACTIONS(884), + [anon_sym_proc_macro_attribute] = ACTIONS(884), + [anon_sym_allow] = ACTIONS(884), + [anon_sym_warn] = ACTIONS(884), + [anon_sym_deny] = ACTIONS(884), + [anon_sym_forbid] = ACTIONS(884), + [anon_sym_deprecated] = ACTIONS(884), + [anon_sym_must_use] = ACTIONS(884), + [anon_sym_link] = ACTIONS(884), + [anon_sym_link_name] = ACTIONS(884), + [anon_sym_no_link] = ACTIONS(884), + [anon_sym_repr] = ACTIONS(884), + [anon_sym_crate_type] = ACTIONS(884), + [anon_sym_no_main] = ACTIONS(884), + [anon_sym_export_name] = ACTIONS(884), + [anon_sym_link_section] = ACTIONS(884), + [anon_sym_no_mangle] = ACTIONS(884), + [anon_sym_used] = ACTIONS(884), + [anon_sym_crate_name] = ACTIONS(884), + [anon_sym_inline] = ACTIONS(884), + [anon_sym_cold] = ACTIONS(884), + [anon_sym_no_builtins] = ACTIONS(884), + [anon_sym_target_feature] = ACTIONS(884), + [anon_sym_track_caller] = ACTIONS(884), + [anon_sym_doc] = ACTIONS(884), + [anon_sym_no_std] = ACTIONS(884), + [anon_sym_no_implicit_prelude] = ACTIONS(884), + [anon_sym_recursion_limit] = ACTIONS(884), + [anon_sym_type_length_limit] = ACTIONS(884), + [anon_sym_panic_handler] = ACTIONS(884), + [anon_sym_global_allocator] = ACTIONS(884), + [anon_sym_windows_subsystem] = ACTIONS(884), + [anon_sym_feature] = ACTIONS(884), + [anon_sym_non_exhaustive] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(888), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), + [sym_block_comment] = ACTIONS(3), + }, + [224] = { + [sym_identifier] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_PLUS] = ACTIONS(538), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_QMARK] = ACTIONS(536), + [anon_sym_u8] = ACTIONS(538), + [anon_sym_i8] = ACTIONS(538), + [anon_sym_u16] = ACTIONS(538), + [anon_sym_i16] = ACTIONS(538), + [anon_sym_u32] = ACTIONS(538), + [anon_sym_i32] = ACTIONS(538), + [anon_sym_u64] = ACTIONS(538), + [anon_sym_i64] = ACTIONS(538), + [anon_sym_u128] = ACTIONS(538), + [anon_sym_i128] = ACTIONS(538), + [anon_sym_isize] = ACTIONS(538), + [anon_sym_usize] = ACTIONS(538), + [anon_sym_f32] = ACTIONS(538), + [anon_sym_f64] = ACTIONS(538), + [anon_sym_bool] = ACTIONS(538), + [anon_sym_str] = ACTIONS(538), + [anon_sym_char] = ACTIONS(538), + [anon_sym_as] = ACTIONS(538), + [anon_sym_const] = ACTIONS(538), + [anon_sym_default] = ACTIONS(538), + [anon_sym_union] = ACTIONS(538), + [anon_sym_POUND] = ACTIONS(536), + [anon_sym_EQ] = ACTIONS(538), + [anon_sym_COMMA] = ACTIONS(536), + [anon_sym_ref] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(538), + [anon_sym_GT] = ACTIONS(538), + [anon_sym_COLON_COLON] = ACTIONS(536), + [anon_sym__] = ACTIONS(538), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(536), + [sym_mutable_specifier] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(538), + [anon_sym_AMP_AMP] = ACTIONS(536), + [anon_sym_PIPE_PIPE] = ACTIONS(536), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_CARET] = ACTIONS(538), + [anon_sym_EQ_EQ] = ACTIONS(536), + [anon_sym_BANG_EQ] = ACTIONS(536), + [anon_sym_LT_EQ] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(536), + [anon_sym_LT_LT] = ACTIONS(538), + [anon_sym_GT_GT] = ACTIONS(538), + [anon_sym_SLASH] = ACTIONS(538), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_PLUS_EQ] = ACTIONS(536), + [anon_sym_DASH_EQ] = ACTIONS(536), + [anon_sym_STAR_EQ] = ACTIONS(536), + [anon_sym_SLASH_EQ] = ACTIONS(536), + [anon_sym_PERCENT_EQ] = ACTIONS(536), + [anon_sym_AMP_EQ] = ACTIONS(536), + [anon_sym_PIPE_EQ] = ACTIONS(536), + [anon_sym_CARET_EQ] = ACTIONS(536), + [anon_sym_LT_LT_EQ] = ACTIONS(536), + [anon_sym_GT_GT_EQ] = ACTIONS(536), + [anon_sym_else] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(538), + [sym_integer_literal] = ACTIONS(536), + [aux_sym_string_literal_token1] = ACTIONS(536), + [sym_char_literal] = ACTIONS(536), + [anon_sym_true] = ACTIONS(538), + [anon_sym_false] = ACTIONS(538), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(538), + [sym_super] = ACTIONS(538), + [sym_crate] = ACTIONS(538), + [sym_metavariable] = ACTIONS(536), + [sym_raw_string_literal] = ACTIONS(536), + [sym_float_literal] = ACTIONS(536), + [sym_block_comment] = ACTIONS(3), + }, + [225] = { + [sym_identifier] = ACTIONS(556), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(556), + [anon_sym_i8] = ACTIONS(556), + [anon_sym_u16] = ACTIONS(556), + [anon_sym_i16] = ACTIONS(556), + [anon_sym_u32] = ACTIONS(556), + [anon_sym_i32] = ACTIONS(556), + [anon_sym_u64] = ACTIONS(556), + [anon_sym_i64] = ACTIONS(556), + [anon_sym_u128] = ACTIONS(556), + [anon_sym_i128] = ACTIONS(556), + [anon_sym_isize] = ACTIONS(556), + [anon_sym_usize] = ACTIONS(556), + [anon_sym_f32] = ACTIONS(556), + [anon_sym_f64] = ACTIONS(556), + [anon_sym_bool] = ACTIONS(556), + [anon_sym_str] = ACTIONS(556), + [anon_sym_char] = ACTIONS(556), + [anon_sym_as] = ACTIONS(556), + [anon_sym_const] = ACTIONS(556), + [anon_sym_default] = ACTIONS(556), + [anon_sym_union] = ACTIONS(556), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_ref] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(556), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym__] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [sym_mutable_specifier] = ACTIONS(556), + [anon_sym_DOT_DOT] = ACTIONS(556), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_GT_GT] = ACTIONS(556), + [anon_sym_SLASH] = ACTIONS(556), + [anon_sym_PERCENT] = ACTIONS(556), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_else] = ACTIONS(556), + [anon_sym_DOT] = ACTIONS(556), + [sym_integer_literal] = ACTIONS(554), + [aux_sym_string_literal_token1] = ACTIONS(554), + [sym_char_literal] = ACTIONS(554), + [anon_sym_true] = ACTIONS(556), + [anon_sym_false] = ACTIONS(556), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(556), + [sym_super] = ACTIONS(556), + [sym_crate] = ACTIONS(556), + [sym_metavariable] = ACTIONS(554), + [sym_raw_string_literal] = ACTIONS(554), + [sym_float_literal] = ACTIONS(554), + [sym_block_comment] = ACTIONS(3), + }, + [226] = { [sym_identifier] = ACTIONS(552), [anon_sym_LPAREN] = ACTIONS(550), [anon_sym_RBRACE] = ACTIONS(550), @@ -38770,169 +40875,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(550), [sym_block_comment] = ACTIONS(3), }, - [218] = { - [sym_identifier] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(524), - [anon_sym_RBRACE] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_STAR] = ACTIONS(526), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_u8] = ACTIONS(526), - [anon_sym_i8] = ACTIONS(526), - [anon_sym_u16] = ACTIONS(526), - [anon_sym_i16] = ACTIONS(526), - [anon_sym_u32] = ACTIONS(526), - [anon_sym_i32] = ACTIONS(526), - [anon_sym_u64] = ACTIONS(526), - [anon_sym_i64] = ACTIONS(526), - [anon_sym_u128] = ACTIONS(526), - [anon_sym_i128] = ACTIONS(526), - [anon_sym_isize] = ACTIONS(526), - [anon_sym_usize] = ACTIONS(526), - [anon_sym_f32] = ACTIONS(526), - [anon_sym_f64] = ACTIONS(526), - [anon_sym_bool] = ACTIONS(526), - [anon_sym_str] = ACTIONS(526), - [anon_sym_char] = ACTIONS(526), - [anon_sym_as] = ACTIONS(526), - [anon_sym_const] = ACTIONS(526), - [anon_sym_default] = ACTIONS(526), - [anon_sym_union] = ACTIONS(526), - [anon_sym_POUND] = ACTIONS(524), - [anon_sym_EQ] = ACTIONS(526), - [anon_sym_COMMA] = ACTIONS(524), - [anon_sym_ref] = ACTIONS(526), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_COLON_COLON] = ACTIONS(524), - [anon_sym__] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(526), - [anon_sym_DOT_DOT_DOT] = ACTIONS(524), - [sym_mutable_specifier] = ACTIONS(526), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DOT_DOT_EQ] = ACTIONS(524), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(526), - [anon_sym_CARET] = ACTIONS(526), - [anon_sym_EQ_EQ] = ACTIONS(524), - [anon_sym_BANG_EQ] = ACTIONS(524), - [anon_sym_LT_EQ] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(526), - [anon_sym_GT_GT] = ACTIONS(526), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PERCENT] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(524), - [anon_sym_DASH_EQ] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(524), - [anon_sym_SLASH_EQ] = ACTIONS(524), - [anon_sym_PERCENT_EQ] = ACTIONS(524), - [anon_sym_AMP_EQ] = ACTIONS(524), - [anon_sym_PIPE_EQ] = ACTIONS(524), - [anon_sym_CARET_EQ] = ACTIONS(524), - [anon_sym_LT_LT_EQ] = ACTIONS(524), - [anon_sym_GT_GT_EQ] = ACTIONS(524), - [anon_sym_else] = ACTIONS(526), - [anon_sym_DOT] = ACTIONS(526), - [sym_integer_literal] = ACTIONS(524), - [aux_sym_string_literal_token1] = ACTIONS(524), - [sym_char_literal] = ACTIONS(524), - [anon_sym_true] = ACTIONS(526), - [anon_sym_false] = ACTIONS(526), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(526), - [sym_super] = ACTIONS(526), - [sym_crate] = ACTIONS(526), - [sym_metavariable] = ACTIONS(524), - [sym_raw_string_literal] = ACTIONS(524), - [sym_float_literal] = ACTIONS(524), - [sym_block_comment] = ACTIONS(3), - }, - [219] = { - [sym_identifier] = ACTIONS(546), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(546), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_u8] = ACTIONS(546), - [anon_sym_i8] = ACTIONS(546), - [anon_sym_u16] = ACTIONS(546), - [anon_sym_i16] = ACTIONS(546), - [anon_sym_u32] = ACTIONS(546), - [anon_sym_i32] = ACTIONS(546), - [anon_sym_u64] = ACTIONS(546), - [anon_sym_i64] = ACTIONS(546), - [anon_sym_u128] = ACTIONS(546), - [anon_sym_i128] = ACTIONS(546), - [anon_sym_isize] = ACTIONS(546), - [anon_sym_usize] = ACTIONS(546), - [anon_sym_f32] = ACTIONS(546), - [anon_sym_f64] = ACTIONS(546), - [anon_sym_bool] = ACTIONS(546), - [anon_sym_str] = ACTIONS(546), - [anon_sym_char] = ACTIONS(546), - [anon_sym_as] = ACTIONS(546), - [anon_sym_const] = ACTIONS(546), - [anon_sym_default] = ACTIONS(546), - [anon_sym_union] = ACTIONS(546), - [anon_sym_POUND] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_ref] = ACTIONS(546), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_GT] = ACTIONS(546), - [anon_sym_COLON_COLON] = ACTIONS(544), - [anon_sym__] = ACTIONS(546), - [anon_sym_AMP] = ACTIONS(546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(544), - [sym_mutable_specifier] = ACTIONS(546), - [anon_sym_DOT_DOT] = ACTIONS(546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(546), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_EQ_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(546), - [anon_sym_PERCENT] = ACTIONS(546), - [anon_sym_PLUS_EQ] = ACTIONS(544), - [anon_sym_DASH_EQ] = ACTIONS(544), - [anon_sym_STAR_EQ] = ACTIONS(544), - [anon_sym_SLASH_EQ] = ACTIONS(544), - [anon_sym_PERCENT_EQ] = ACTIONS(544), - [anon_sym_AMP_EQ] = ACTIONS(544), - [anon_sym_PIPE_EQ] = ACTIONS(544), - [anon_sym_CARET_EQ] = ACTIONS(544), - [anon_sym_LT_LT_EQ] = ACTIONS(544), - [anon_sym_GT_GT_EQ] = ACTIONS(544), - [anon_sym_else] = ACTIONS(546), - [anon_sym_DOT] = ACTIONS(546), - [sym_integer_literal] = ACTIONS(544), - [aux_sym_string_literal_token1] = ACTIONS(544), - [sym_char_literal] = ACTIONS(544), - [anon_sym_true] = ACTIONS(546), - [anon_sym_false] = ACTIONS(546), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(546), - [sym_super] = ACTIONS(546), - [sym_crate] = ACTIONS(546), - [sym_metavariable] = ACTIONS(544), - [sym_raw_string_literal] = ACTIONS(544), - [sym_float_literal] = ACTIONS(544), + [227] = { + [sym_identifier] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_as] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_POUND] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(580), + [anon_sym_COMMA] = ACTIONS(578), + [anon_sym_ref] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym__] = ACTIONS(580), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [sym_mutable_specifier] = ACTIONS(580), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_PLUS_EQ] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(578), + [anon_sym_STAR_EQ] = ACTIONS(578), + [anon_sym_SLASH_EQ] = ACTIONS(578), + [anon_sym_PERCENT_EQ] = ACTIONS(578), + [anon_sym_AMP_EQ] = ACTIONS(578), + [anon_sym_PIPE_EQ] = ACTIONS(578), + [anon_sym_CARET_EQ] = ACTIONS(578), + [anon_sym_LT_LT_EQ] = ACTIONS(578), + [anon_sym_GT_GT_EQ] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(580), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_crate] = ACTIONS(580), + [sym_metavariable] = ACTIONS(578), + [sym_raw_string_literal] = ACTIONS(578), + [sym_float_literal] = ACTIONS(578), [sym_block_comment] = ACTIONS(3), }, - [220] = { + [228] = { [sym_identifier] = ACTIONS(614), [anon_sym_LPAREN] = ACTIONS(612), [anon_sym_RBRACE] = ACTIONS(612), @@ -39012,327 +41035,567 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(612), [sym_block_comment] = ACTIONS(3), }, - [221] = { - [sym_identifier] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(568), - [anon_sym_i8] = ACTIONS(568), - [anon_sym_u16] = ACTIONS(568), - [anon_sym_i16] = ACTIONS(568), - [anon_sym_u32] = ACTIONS(568), - [anon_sym_i32] = ACTIONS(568), - [anon_sym_u64] = ACTIONS(568), - [anon_sym_i64] = ACTIONS(568), - [anon_sym_u128] = ACTIONS(568), - [anon_sym_i128] = ACTIONS(568), - [anon_sym_isize] = ACTIONS(568), - [anon_sym_usize] = ACTIONS(568), - [anon_sym_f32] = ACTIONS(568), - [anon_sym_f64] = ACTIONS(568), - [anon_sym_bool] = ACTIONS(568), - [anon_sym_str] = ACTIONS(568), - [anon_sym_char] = ACTIONS(568), - [anon_sym_as] = ACTIONS(568), - [anon_sym_const] = ACTIONS(568), - [anon_sym_default] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(566), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_ref] = ACTIONS(568), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(566), - [anon_sym__] = ACTIONS(568), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [sym_mutable_specifier] = ACTIONS(568), - [anon_sym_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(566), - [aux_sym_string_literal_token1] = ACTIONS(566), - [sym_char_literal] = ACTIONS(566), - [anon_sym_true] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), + [229] = { + [sym_identifier] = ACTIONS(678), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(678), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_ref] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym__] = ACTIONS(678), + [anon_sym_AMP] = ACTIONS(678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [sym_mutable_specifier] = ACTIONS(678), + [anon_sym_DOT_DOT] = ACTIONS(678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(678), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_PERCENT] = ACTIONS(678), + [anon_sym_PLUS_EQ] = ACTIONS(676), + [anon_sym_DASH_EQ] = ACTIONS(676), + [anon_sym_STAR_EQ] = ACTIONS(676), + [anon_sym_SLASH_EQ] = ACTIONS(676), + [anon_sym_PERCENT_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_CARET_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(676), + [aux_sym_string_literal_token1] = ACTIONS(676), + [sym_char_literal] = ACTIONS(676), + [anon_sym_true] = ACTIONS(678), + [anon_sym_false] = ACTIONS(678), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(568), - [sym_super] = ACTIONS(568), - [sym_crate] = ACTIONS(568), - [sym_metavariable] = ACTIONS(566), - [sym_raw_string_literal] = ACTIONS(566), - [sym_float_literal] = ACTIONS(566), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym_metavariable] = ACTIONS(676), + [sym_raw_string_literal] = ACTIONS(676), + [sym_float_literal] = ACTIONS(676), [sym_block_comment] = ACTIONS(3), }, - [222] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1982), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(1984), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_type_binding] = STATE(2208), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [sym_block] = STATE(2208), - [sym__literal] = STATE(2208), - [sym_string_literal] = STATE(2319), - [sym_boolean_literal] = STATE(2319), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(890), + [230] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2036), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2035), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_type_binding] = STATE(2303), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [sym_block] = STATE(2303), + [sym__literal] = STATE(2303), + [sym_string_literal] = STATE(2342), + [sym_boolean_literal] = STATE(2342), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), + [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_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(910), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(904), + [sym_integer_literal] = ACTIONS(916), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(904), + [sym_char_literal] = ACTIONS(916), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_raw_string_literal] = ACTIONS(904), - [sym_float_literal] = ACTIONS(904), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_raw_string_literal] = ACTIONS(916), + [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, - [223] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1982), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(1984), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_type_binding] = STATE(2208), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [sym_block] = STATE(2208), - [sym__literal] = STATE(2208), - [sym_string_literal] = STATE(2319), - [sym_boolean_literal] = STATE(2319), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(890), + [231] = { + [sym_identifier] = ACTIONS(588), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(588), + [anon_sym_i8] = ACTIONS(588), + [anon_sym_u16] = ACTIONS(588), + [anon_sym_i16] = ACTIONS(588), + [anon_sym_u32] = ACTIONS(588), + [anon_sym_i32] = ACTIONS(588), + [anon_sym_u64] = ACTIONS(588), + [anon_sym_i64] = ACTIONS(588), + [anon_sym_u128] = ACTIONS(588), + [anon_sym_i128] = ACTIONS(588), + [anon_sym_isize] = ACTIONS(588), + [anon_sym_usize] = ACTIONS(588), + [anon_sym_f32] = ACTIONS(588), + [anon_sym_f64] = ACTIONS(588), + [anon_sym_bool] = ACTIONS(588), + [anon_sym_str] = ACTIONS(588), + [anon_sym_char] = ACTIONS(588), + [anon_sym_as] = ACTIONS(588), + [anon_sym_const] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_union] = ACTIONS(588), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(588), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_ref] = ACTIONS(588), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_GT] = ACTIONS(588), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym__] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [sym_mutable_specifier] = ACTIONS(588), + [anon_sym_DOT_DOT] = ACTIONS(588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(588), + [anon_sym_PERCENT] = ACTIONS(588), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(586), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(588), + [anon_sym_false] = ACTIONS(588), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(588), + [sym_super] = ACTIONS(588), + [sym_crate] = ACTIONS(588), + [sym_metavariable] = ACTIONS(586), + [sym_raw_string_literal] = ACTIONS(586), + [sym_float_literal] = ACTIONS(586), + [sym_block_comment] = ACTIONS(3), + }, + [232] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2036), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2035), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_type_binding] = STATE(2303), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [sym_block] = STATE(2303), + [sym__literal] = STATE(2303), + [sym_string_literal] = STATE(2342), + [sym_boolean_literal] = STATE(2342), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), + [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_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(910), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(904), + [sym_integer_literal] = ACTIONS(916), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(904), + [sym_char_literal] = ACTIONS(916), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_raw_string_literal] = ACTIONS(904), - [sym_float_literal] = ACTIONS(904), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_raw_string_literal] = ACTIONS(916), + [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, - [224] = { - [sym_identifier] = ACTIONS(630), - [anon_sym_LPAREN] = ACTIONS(628), - [anon_sym_RBRACE] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_PLUS] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_u8] = ACTIONS(630), - [anon_sym_i8] = ACTIONS(630), - [anon_sym_u16] = ACTIONS(630), - [anon_sym_i16] = ACTIONS(630), - [anon_sym_u32] = ACTIONS(630), - [anon_sym_i32] = ACTIONS(630), - [anon_sym_u64] = ACTIONS(630), - [anon_sym_i64] = ACTIONS(630), - [anon_sym_u128] = ACTIONS(630), - [anon_sym_i128] = ACTIONS(630), - [anon_sym_isize] = ACTIONS(630), - [anon_sym_usize] = ACTIONS(630), - [anon_sym_f32] = ACTIONS(630), - [anon_sym_f64] = ACTIONS(630), - [anon_sym_bool] = ACTIONS(630), - [anon_sym_str] = ACTIONS(630), - [anon_sym_char] = ACTIONS(630), - [anon_sym_as] = ACTIONS(630), - [anon_sym_const] = ACTIONS(630), - [anon_sym_default] = ACTIONS(630), - [anon_sym_union] = ACTIONS(630), - [anon_sym_POUND] = ACTIONS(628), - [anon_sym_EQ] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(628), - [anon_sym_ref] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_GT] = ACTIONS(630), - [anon_sym_COLON_COLON] = ACTIONS(628), - [anon_sym__] = ACTIONS(630), - [anon_sym_AMP] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [sym_mutable_specifier] = ACTIONS(630), - [anon_sym_DOT_DOT] = ACTIONS(630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(628), - [anon_sym_PIPE_PIPE] = ACTIONS(628), - [anon_sym_PIPE] = ACTIONS(630), - [anon_sym_CARET] = ACTIONS(630), - [anon_sym_EQ_EQ] = ACTIONS(628), - [anon_sym_BANG_EQ] = ACTIONS(628), - [anon_sym_LT_EQ] = ACTIONS(628), - [anon_sym_GT_EQ] = ACTIONS(628), - [anon_sym_LT_LT] = ACTIONS(630), - [anon_sym_GT_GT] = ACTIONS(630), - [anon_sym_SLASH] = ACTIONS(630), - [anon_sym_PERCENT] = ACTIONS(630), - [anon_sym_PLUS_EQ] = ACTIONS(628), - [anon_sym_DASH_EQ] = ACTIONS(628), - [anon_sym_STAR_EQ] = ACTIONS(628), - [anon_sym_SLASH_EQ] = ACTIONS(628), - [anon_sym_PERCENT_EQ] = ACTIONS(628), - [anon_sym_AMP_EQ] = ACTIONS(628), - [anon_sym_PIPE_EQ] = ACTIONS(628), - [anon_sym_CARET_EQ] = ACTIONS(628), - [anon_sym_LT_LT_EQ] = ACTIONS(628), - [anon_sym_GT_GT_EQ] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(630), - [sym_integer_literal] = ACTIONS(628), - [aux_sym_string_literal_token1] = ACTIONS(628), - [sym_char_literal] = ACTIONS(628), - [anon_sym_true] = ACTIONS(630), - [anon_sym_false] = ACTIONS(630), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(630), - [sym_super] = ACTIONS(630), - [sym_crate] = ACTIONS(630), - [sym_metavariable] = ACTIONS(628), - [sym_raw_string_literal] = ACTIONS(628), - [sym_float_literal] = ACTIONS(628), + [233] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2036), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2035), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_type_binding] = STATE(2303), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [sym_block] = STATE(2303), + [sym__literal] = STATE(2303), + [sym_string_literal] = STATE(2342), + [sym_boolean_literal] = STATE(2342), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(688), + [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_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(924), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(916), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(916), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_raw_string_literal] = ACTIONS(916), + [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, - [225] = { + [234] = { + [sym_identifier] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(638), + [anon_sym_QMARK] = ACTIONS(636), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_POUND] = ACTIONS(636), + [anon_sym_EQ] = ACTIONS(638), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_ref] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_COLON_COLON] = ACTIONS(636), + [anon_sym__] = ACTIONS(638), + [anon_sym_AMP] = ACTIONS(638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(636), + [sym_mutable_specifier] = ACTIONS(638), + [anon_sym_DOT_DOT] = ACTIONS(638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(638), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), + [anon_sym_PIPE] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_EQ_EQ] = ACTIONS(636), + [anon_sym_BANG_EQ] = ACTIONS(636), + [anon_sym_LT_EQ] = ACTIONS(636), + [anon_sym_GT_EQ] = ACTIONS(636), + [anon_sym_LT_LT] = ACTIONS(638), + [anon_sym_GT_GT] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(638), + [anon_sym_PERCENT] = ACTIONS(638), + [anon_sym_PLUS_EQ] = ACTIONS(636), + [anon_sym_DASH_EQ] = ACTIONS(636), + [anon_sym_STAR_EQ] = ACTIONS(636), + [anon_sym_SLASH_EQ] = ACTIONS(636), + [anon_sym_PERCENT_EQ] = ACTIONS(636), + [anon_sym_AMP_EQ] = ACTIONS(636), + [anon_sym_PIPE_EQ] = ACTIONS(636), + [anon_sym_CARET_EQ] = ACTIONS(636), + [anon_sym_LT_LT_EQ] = ACTIONS(636), + [anon_sym_GT_GT_EQ] = ACTIONS(636), + [anon_sym_DOT] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(636), + [aux_sym_string_literal_token1] = ACTIONS(636), + [sym_char_literal] = ACTIONS(636), + [anon_sym_true] = ACTIONS(638), + [anon_sym_false] = ACTIONS(638), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(636), + [sym_raw_string_literal] = ACTIONS(636), + [sym_float_literal] = ACTIONS(636), + [sym_block_comment] = ACTIONS(3), + }, + [235] = { + [sym_identifier] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_u8] = ACTIONS(926), + [anon_sym_i8] = ACTIONS(926), + [anon_sym_u16] = ACTIONS(926), + [anon_sym_i16] = ACTIONS(926), + [anon_sym_u32] = ACTIONS(926), + [anon_sym_i32] = ACTIONS(926), + [anon_sym_u64] = ACTIONS(926), + [anon_sym_i64] = ACTIONS(926), + [anon_sym_u128] = ACTIONS(926), + [anon_sym_i128] = ACTIONS(926), + [anon_sym_isize] = ACTIONS(926), + [anon_sym_usize] = ACTIONS(926), + [anon_sym_f32] = ACTIONS(926), + [anon_sym_f64] = ACTIONS(926), + [anon_sym_bool] = ACTIONS(926), + [anon_sym_str] = ACTIONS(926), + [anon_sym_char] = ACTIONS(926), + [anon_sym_as] = ACTIONS(562), + [anon_sym_const] = ACTIONS(926), + [anon_sym_default] = ACTIONS(926), + [anon_sym_union] = ACTIONS(926), + [anon_sym_POUND] = ACTIONS(928), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_ref] = ACTIONS(926), + [anon_sym_LT] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_COLON_COLON] = ACTIONS(928), + [anon_sym__] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_DOT_DOT_DOT] = ACTIONS(564), + [sym_mutable_specifier] = ACTIONS(926), + [anon_sym_DOT_DOT] = ACTIONS(926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(564), + [anon_sym_BANG_EQ] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_EQ] = ACTIONS(564), + [anon_sym_DASH_EQ] = ACTIONS(564), + [anon_sym_STAR_EQ] = ACTIONS(564), + [anon_sym_SLASH_EQ] = ACTIONS(564), + [anon_sym_PERCENT_EQ] = ACTIONS(564), + [anon_sym_AMP_EQ] = ACTIONS(564), + [anon_sym_PIPE_EQ] = ACTIONS(564), + [anon_sym_CARET_EQ] = ACTIONS(564), + [anon_sym_LT_LT_EQ] = ACTIONS(564), + [anon_sym_GT_GT_EQ] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(562), + [sym_integer_literal] = ACTIONS(928), + [aux_sym_string_literal_token1] = ACTIONS(928), + [sym_char_literal] = ACTIONS(928), + [anon_sym_true] = ACTIONS(926), + [anon_sym_false] = ACTIONS(926), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(926), + [sym_super] = ACTIONS(926), + [sym_crate] = ACTIONS(926), + [sym_metavariable] = ACTIONS(928), + [sym_raw_string_literal] = ACTIONS(928), + [sym_float_literal] = ACTIONS(928), + [sym_block_comment] = ACTIONS(3), + }, + [236] = { [sym_identifier] = ACTIONS(572), [anon_sym_LPAREN] = ACTIONS(570), [anon_sym_RBRACE] = ACTIONS(570), @@ -39412,689 +41675,449 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(570), [sym_block_comment] = ACTIONS(3), }, - [226] = { - [sym_identifier] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_QMARK] = ACTIONS(624), - [anon_sym_u8] = ACTIONS(626), - [anon_sym_i8] = ACTIONS(626), - [anon_sym_u16] = ACTIONS(626), - [anon_sym_i16] = ACTIONS(626), - [anon_sym_u32] = ACTIONS(626), - [anon_sym_i32] = ACTIONS(626), - [anon_sym_u64] = ACTIONS(626), - [anon_sym_i64] = ACTIONS(626), - [anon_sym_u128] = ACTIONS(626), - [anon_sym_i128] = ACTIONS(626), - [anon_sym_isize] = ACTIONS(626), - [anon_sym_usize] = ACTIONS(626), - [anon_sym_f32] = ACTIONS(626), - [anon_sym_f64] = ACTIONS(626), - [anon_sym_bool] = ACTIONS(626), - [anon_sym_str] = ACTIONS(626), - [anon_sym_char] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_POUND] = ACTIONS(624), - [anon_sym_EQ] = ACTIONS(626), - [anon_sym_COMMA] = ACTIONS(624), - [anon_sym_ref] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_COLON_COLON] = ACTIONS(624), - [anon_sym__] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(624), - [sym_mutable_specifier] = ACTIONS(626), - [anon_sym_DOT_DOT] = ACTIONS(626), - [anon_sym_DOT_DOT_EQ] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_CARET] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_BANG_EQ] = ACTIONS(624), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_SLASH] = ACTIONS(626), - [anon_sym_PERCENT] = ACTIONS(626), - [anon_sym_PLUS_EQ] = ACTIONS(624), - [anon_sym_DASH_EQ] = ACTIONS(624), - [anon_sym_STAR_EQ] = ACTIONS(624), - [anon_sym_SLASH_EQ] = ACTIONS(624), - [anon_sym_PERCENT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(624), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_DOT] = ACTIONS(626), - [sym_integer_literal] = ACTIONS(624), - [aux_sym_string_literal_token1] = ACTIONS(624), - [sym_char_literal] = ACTIONS(624), - [anon_sym_true] = ACTIONS(626), - [anon_sym_false] = ACTIONS(626), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_crate] = ACTIONS(626), - [sym_metavariable] = ACTIONS(624), - [sym_raw_string_literal] = ACTIONS(624), - [sym_float_literal] = ACTIONS(624), - [sym_block_comment] = ACTIONS(3), - }, - [227] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(634), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_u8] = ACTIONS(634), - [anon_sym_i8] = ACTIONS(634), - [anon_sym_u16] = ACTIONS(634), - [anon_sym_i16] = ACTIONS(634), - [anon_sym_u32] = ACTIONS(634), - [anon_sym_i32] = ACTIONS(634), - [anon_sym_u64] = ACTIONS(634), - [anon_sym_i64] = ACTIONS(634), - [anon_sym_u128] = ACTIONS(634), - [anon_sym_i128] = ACTIONS(634), - [anon_sym_isize] = ACTIONS(634), - [anon_sym_usize] = ACTIONS(634), - [anon_sym_f32] = ACTIONS(634), - [anon_sym_f64] = ACTIONS(634), - [anon_sym_bool] = ACTIONS(634), - [anon_sym_str] = ACTIONS(634), - [anon_sym_char] = ACTIONS(634), - [anon_sym_as] = ACTIONS(634), - [anon_sym_const] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_union] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(632), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(632), - [anon_sym_ref] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(634), - [anon_sym_COLON_COLON] = ACTIONS(632), - [anon_sym__] = ACTIONS(634), - [anon_sym_AMP] = ACTIONS(634), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [sym_mutable_specifier] = ACTIONS(634), - [anon_sym_DOT_DOT] = ACTIONS(634), - [anon_sym_DOT_DOT_EQ] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(634), - [anon_sym_AMP_AMP] = ACTIONS(632), - [anon_sym_PIPE_PIPE] = ACTIONS(632), - [anon_sym_PIPE] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_EQ_EQ] = ACTIONS(632), - [anon_sym_BANG_EQ] = ACTIONS(632), - [anon_sym_LT_EQ] = ACTIONS(632), - [anon_sym_GT_EQ] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_SLASH] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(632), - [anon_sym_DASH_EQ] = ACTIONS(632), - [anon_sym_STAR_EQ] = ACTIONS(632), - [anon_sym_SLASH_EQ] = ACTIONS(632), - [anon_sym_PERCENT_EQ] = ACTIONS(632), - [anon_sym_AMP_EQ] = ACTIONS(632), - [anon_sym_PIPE_EQ] = ACTIONS(632), - [anon_sym_CARET_EQ] = ACTIONS(632), - [anon_sym_LT_LT_EQ] = ACTIONS(632), - [anon_sym_GT_GT_EQ] = ACTIONS(632), - [anon_sym_DOT] = ACTIONS(634), - [sym_integer_literal] = ACTIONS(632), - [aux_sym_string_literal_token1] = ACTIONS(632), - [sym_char_literal] = ACTIONS(632), - [anon_sym_true] = ACTIONS(634), - [anon_sym_false] = ACTIONS(634), + [237] = { + [sym_identifier] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_STAR] = ACTIONS(584), + [anon_sym_QMARK] = ACTIONS(582), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_POUND] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_COMMA] = ACTIONS(582), + [anon_sym_ref] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_COLON_COLON] = ACTIONS(582), + [anon_sym__] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(582), + [sym_mutable_specifier] = ACTIONS(584), + [anon_sym_DOT_DOT] = ACTIONS(584), + [anon_sym_DOT_DOT_EQ] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_AMP_AMP] = ACTIONS(582), + [anon_sym_PIPE_PIPE] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(584), + [anon_sym_CARET] = ACTIONS(584), + [anon_sym_EQ_EQ] = ACTIONS(582), + [anon_sym_BANG_EQ] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(582), + [anon_sym_LT_LT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_PLUS_EQ] = ACTIONS(582), + [anon_sym_DASH_EQ] = ACTIONS(582), + [anon_sym_STAR_EQ] = ACTIONS(582), + [anon_sym_SLASH_EQ] = ACTIONS(582), + [anon_sym_PERCENT_EQ] = ACTIONS(582), + [anon_sym_AMP_EQ] = ACTIONS(582), + [anon_sym_PIPE_EQ] = ACTIONS(582), + [anon_sym_CARET_EQ] = ACTIONS(582), + [anon_sym_LT_LT_EQ] = ACTIONS(582), + [anon_sym_GT_GT_EQ] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(582), + [aux_sym_string_literal_token1] = ACTIONS(582), + [sym_char_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(584), + [anon_sym_false] = ACTIONS(584), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(634), - [sym_super] = ACTIONS(634), - [sym_crate] = ACTIONS(634), - [sym_metavariable] = ACTIONS(632), - [sym_raw_string_literal] = ACTIONS(632), - [sym_float_literal] = ACTIONS(632), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_metavariable] = ACTIONS(582), + [sym_raw_string_literal] = ACTIONS(582), + [sym_float_literal] = ACTIONS(582), [sym_block_comment] = ACTIONS(3), }, - [228] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1982), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(1984), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_type_binding] = STATE(2208), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [sym_block] = STATE(2208), - [sym__literal] = STATE(2208), - [sym_string_literal] = STATE(2319), - [sym_boolean_literal] = STATE(2319), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(890), + [238] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2036), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2035), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_type_binding] = STATE(2303), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [sym_block] = STATE(2303), + [sym__literal] = STATE(2303), + [sym_string_literal] = STATE(2342), + [sym_boolean_literal] = STATE(2342), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), + [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_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(930), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(904), + [sym_integer_literal] = ACTIONS(916), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(904), + [sym_char_literal] = ACTIONS(916), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_raw_string_literal] = ACTIONS(904), - [sym_float_literal] = ACTIONS(904), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_raw_string_literal] = ACTIONS(916), + [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, - [229] = { - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RBRACE] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(660), - [anon_sym_u8] = ACTIONS(662), - [anon_sym_i8] = ACTIONS(662), - [anon_sym_u16] = ACTIONS(662), - [anon_sym_i16] = ACTIONS(662), - [anon_sym_u32] = ACTIONS(662), - [anon_sym_i32] = ACTIONS(662), - [anon_sym_u64] = ACTIONS(662), - [anon_sym_i64] = ACTIONS(662), - [anon_sym_u128] = ACTIONS(662), - [anon_sym_i128] = ACTIONS(662), - [anon_sym_isize] = ACTIONS(662), - [anon_sym_usize] = ACTIONS(662), - [anon_sym_f32] = ACTIONS(662), - [anon_sym_f64] = ACTIONS(662), - [anon_sym_bool] = ACTIONS(662), - [anon_sym_str] = ACTIONS(662), - [anon_sym_char] = ACTIONS(662), - [anon_sym_as] = ACTIONS(662), - [anon_sym_const] = ACTIONS(662), - [anon_sym_default] = ACTIONS(662), - [anon_sym_union] = ACTIONS(662), - [anon_sym_POUND] = ACTIONS(660), - [anon_sym_EQ] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(660), - [anon_sym_ref] = ACTIONS(662), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_COLON_COLON] = ACTIONS(660), - [anon_sym__] = ACTIONS(662), - [anon_sym_AMP] = ACTIONS(662), - [anon_sym_DOT_DOT_DOT] = ACTIONS(660), - [sym_mutable_specifier] = ACTIONS(662), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_DOT_DOT_EQ] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(660), - [anon_sym_PIPE_PIPE] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(662), - [anon_sym_CARET] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(660), - [anon_sym_LT_LT] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_SLASH] = ACTIONS(662), - [anon_sym_PERCENT] = ACTIONS(662), - [anon_sym_PLUS_EQ] = ACTIONS(660), - [anon_sym_DASH_EQ] = ACTIONS(660), - [anon_sym_STAR_EQ] = ACTIONS(660), - [anon_sym_SLASH_EQ] = ACTIONS(660), - [anon_sym_PERCENT_EQ] = ACTIONS(660), - [anon_sym_AMP_EQ] = ACTIONS(660), - [anon_sym_PIPE_EQ] = ACTIONS(660), - [anon_sym_CARET_EQ] = ACTIONS(660), - [anon_sym_LT_LT_EQ] = ACTIONS(660), - [anon_sym_GT_GT_EQ] = ACTIONS(660), - [anon_sym_DOT] = ACTIONS(662), - [sym_integer_literal] = ACTIONS(660), - [aux_sym_string_literal_token1] = ACTIONS(660), - [sym_char_literal] = ACTIONS(660), - [anon_sym_true] = ACTIONS(662), - [anon_sym_false] = ACTIONS(662), + [239] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_QMARK] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_as] = ACTIONS(654), + [anon_sym_const] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_union] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(652), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(652), + [anon_sym_ref] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(652), + [anon_sym__] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(652), + [sym_mutable_specifier] = ACTIONS(654), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_EQ] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_AMP_AMP] = ACTIONS(652), + [anon_sym_PIPE_PIPE] = ACTIONS(652), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_LT_EQ] = ACTIONS(652), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(652), + [anon_sym_DASH_EQ] = ACTIONS(652), + [anon_sym_STAR_EQ] = ACTIONS(652), + [anon_sym_SLASH_EQ] = ACTIONS(652), + [anon_sym_PERCENT_EQ] = ACTIONS(652), + [anon_sym_AMP_EQ] = ACTIONS(652), + [anon_sym_PIPE_EQ] = ACTIONS(652), + [anon_sym_CARET_EQ] = ACTIONS(652), + [anon_sym_LT_LT_EQ] = ACTIONS(652), + [anon_sym_GT_GT_EQ] = ACTIONS(652), + [anon_sym_DOT] = ACTIONS(654), + [sym_integer_literal] = ACTIONS(652), + [aux_sym_string_literal_token1] = ACTIONS(652), + [sym_char_literal] = ACTIONS(652), + [anon_sym_true] = ACTIONS(654), + [anon_sym_false] = ACTIONS(654), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(662), - [sym_super] = ACTIONS(662), - [sym_crate] = ACTIONS(662), - [sym_metavariable] = ACTIONS(660), - [sym_raw_string_literal] = ACTIONS(660), - [sym_float_literal] = ACTIONS(660), + [sym_self] = ACTIONS(654), + [sym_super] = ACTIONS(654), + [sym_crate] = ACTIONS(654), + [sym_metavariable] = ACTIONS(652), + [sym_raw_string_literal] = ACTIONS(652), + [sym_float_literal] = ACTIONS(652), [sym_block_comment] = ACTIONS(3), }, - [230] = { - [sym_identifier] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_u8] = ACTIONS(914), - [anon_sym_i8] = ACTIONS(914), - [anon_sym_u16] = ACTIONS(914), - [anon_sym_i16] = ACTIONS(914), - [anon_sym_u32] = ACTIONS(914), - [anon_sym_i32] = ACTIONS(914), - [anon_sym_u64] = ACTIONS(914), - [anon_sym_i64] = ACTIONS(914), - [anon_sym_u128] = ACTIONS(914), - [anon_sym_i128] = ACTIONS(914), - [anon_sym_isize] = ACTIONS(914), - [anon_sym_usize] = ACTIONS(914), - [anon_sym_f32] = ACTIONS(914), - [anon_sym_f64] = ACTIONS(914), - [anon_sym_bool] = ACTIONS(914), - [anon_sym_str] = ACTIONS(914), - [anon_sym_char] = ACTIONS(914), - [anon_sym_as] = ACTIONS(562), - [anon_sym_const] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_POUND] = ACTIONS(916), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_COMMA] = ACTIONS(564), - [anon_sym_ref] = ACTIONS(914), - [anon_sym_LT] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym__] = ACTIONS(914), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_DOT_DOT_DOT] = ACTIONS(564), - [sym_mutable_specifier] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_AMP_AMP] = ACTIONS(564), - [anon_sym_PIPE_PIPE] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(562), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym_EQ_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_PLUS_EQ] = ACTIONS(564), - [anon_sym_DASH_EQ] = ACTIONS(564), - [anon_sym_STAR_EQ] = ACTIONS(564), - [anon_sym_SLASH_EQ] = ACTIONS(564), - [anon_sym_PERCENT_EQ] = ACTIONS(564), - [anon_sym_AMP_EQ] = ACTIONS(564), - [anon_sym_PIPE_EQ] = ACTIONS(564), - [anon_sym_CARET_EQ] = ACTIONS(564), - [anon_sym_LT_LT_EQ] = ACTIONS(564), - [anon_sym_GT_GT_EQ] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(562), - [sym_integer_literal] = ACTIONS(916), - [aux_sym_string_literal_token1] = ACTIONS(916), - [sym_char_literal] = ACTIONS(916), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(914), - [sym_super] = ACTIONS(914), - [sym_crate] = ACTIONS(914), - [sym_metavariable] = ACTIONS(916), - [sym_raw_string_literal] = ACTIONS(916), - [sym_float_literal] = ACTIONS(916), - [sym_block_comment] = ACTIONS(3), - }, - [231] = { - [sym_identifier] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(672), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym__] = ACTIONS(674), - [anon_sym_AMP] = ACTIONS(674), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [sym_mutable_specifier] = ACTIONS(674), - [anon_sym_DOT_DOT] = ACTIONS(674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_AMP_AMP] = ACTIONS(672), - [anon_sym_PIPE_PIPE] = ACTIONS(672), - [anon_sym_PIPE] = ACTIONS(674), - [anon_sym_CARET] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(672), - [anon_sym_BANG_EQ] = ACTIONS(672), - [anon_sym_LT_EQ] = ACTIONS(672), - [anon_sym_GT_EQ] = ACTIONS(672), - [anon_sym_LT_LT] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(674), - [anon_sym_PERCENT] = ACTIONS(674), - [anon_sym_PLUS_EQ] = ACTIONS(672), - [anon_sym_DASH_EQ] = ACTIONS(672), - [anon_sym_STAR_EQ] = ACTIONS(672), - [anon_sym_SLASH_EQ] = ACTIONS(672), - [anon_sym_PERCENT_EQ] = ACTIONS(672), - [anon_sym_AMP_EQ] = ACTIONS(672), - [anon_sym_PIPE_EQ] = ACTIONS(672), - [anon_sym_CARET_EQ] = ACTIONS(672), - [anon_sym_LT_LT_EQ] = ACTIONS(672), - [anon_sym_GT_GT_EQ] = ACTIONS(672), - [anon_sym_DOT] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(672), - [aux_sym_string_literal_token1] = ACTIONS(672), - [sym_char_literal] = ACTIONS(672), - [anon_sym_true] = ACTIONS(674), - [anon_sym_false] = ACTIONS(674), + [240] = { + [sym_identifier] = ACTIONS(666), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_QMARK] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_as] = ACTIONS(666), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(666), + [anon_sym_union] = ACTIONS(666), + [anon_sym_POUND] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(664), + [anon_sym_ref] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(666), + [anon_sym_COLON_COLON] = ACTIONS(664), + [anon_sym__] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_mutable_specifier] = ACTIONS(666), + [anon_sym_DOT_DOT] = ACTIONS(666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(664), + [anon_sym_PIPE_PIPE] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(664), + [anon_sym_BANG_EQ] = ACTIONS(664), + [anon_sym_LT_EQ] = ACTIONS(664), + [anon_sym_GT_EQ] = ACTIONS(664), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_PLUS_EQ] = ACTIONS(664), + [anon_sym_DASH_EQ] = ACTIONS(664), + [anon_sym_STAR_EQ] = ACTIONS(664), + [anon_sym_SLASH_EQ] = ACTIONS(664), + [anon_sym_PERCENT_EQ] = ACTIONS(664), + [anon_sym_AMP_EQ] = ACTIONS(664), + [anon_sym_PIPE_EQ] = ACTIONS(664), + [anon_sym_CARET_EQ] = ACTIONS(664), + [anon_sym_LT_LT_EQ] = ACTIONS(664), + [anon_sym_GT_GT_EQ] = ACTIONS(664), + [anon_sym_DOT] = ACTIONS(666), + [sym_integer_literal] = ACTIONS(664), + [aux_sym_string_literal_token1] = ACTIONS(664), + [sym_char_literal] = ACTIONS(664), + [anon_sym_true] = ACTIONS(666), + [anon_sym_false] = ACTIONS(666), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym_metavariable] = ACTIONS(672), - [sym_raw_string_literal] = ACTIONS(672), - [sym_float_literal] = ACTIONS(672), + [sym_self] = ACTIONS(666), + [sym_super] = ACTIONS(666), + [sym_crate] = ACTIONS(666), + [sym_metavariable] = ACTIONS(664), + [sym_raw_string_literal] = ACTIONS(664), + [sym_float_literal] = ACTIONS(664), [sym_block_comment] = ACTIONS(3), }, - [232] = { - [sym_identifier] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_u8] = ACTIONS(646), - [anon_sym_i8] = ACTIONS(646), - [anon_sym_u16] = ACTIONS(646), - [anon_sym_i16] = ACTIONS(646), - [anon_sym_u32] = ACTIONS(646), - [anon_sym_i32] = ACTIONS(646), - [anon_sym_u64] = ACTIONS(646), - [anon_sym_i64] = ACTIONS(646), - [anon_sym_u128] = ACTIONS(646), - [anon_sym_i128] = ACTIONS(646), - [anon_sym_isize] = ACTIONS(646), - [anon_sym_usize] = ACTIONS(646), - [anon_sym_f32] = ACTIONS(646), - [anon_sym_f64] = ACTIONS(646), - [anon_sym_bool] = ACTIONS(646), - [anon_sym_str] = ACTIONS(646), - [anon_sym_char] = ACTIONS(646), - [anon_sym_as] = ACTIONS(646), - [anon_sym_const] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_union] = ACTIONS(646), - [anon_sym_POUND] = ACTIONS(644), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_ref] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(646), - [anon_sym_GT] = ACTIONS(646), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym__] = ACTIONS(646), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [sym_mutable_specifier] = ACTIONS(646), - [anon_sym_DOT_DOT] = ACTIONS(646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(646), - [anon_sym_CARET] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_LT_LT] = ACTIONS(646), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_AMP_EQ] = ACTIONS(644), - [anon_sym_PIPE_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_LT_LT_EQ] = ACTIONS(644), - [anon_sym_GT_GT_EQ] = ACTIONS(644), - [anon_sym_DOT] = ACTIONS(646), - [sym_integer_literal] = ACTIONS(644), - [aux_sym_string_literal_token1] = ACTIONS(644), - [sym_char_literal] = ACTIONS(644), - [anon_sym_true] = ACTIONS(646), - [anon_sym_false] = ACTIONS(646), + [241] = { + [sym_identifier] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_u8] = ACTIONS(576), + [anon_sym_i8] = ACTIONS(576), + [anon_sym_u16] = ACTIONS(576), + [anon_sym_i16] = ACTIONS(576), + [anon_sym_u32] = ACTIONS(576), + [anon_sym_i32] = ACTIONS(576), + [anon_sym_u64] = ACTIONS(576), + [anon_sym_i64] = ACTIONS(576), + [anon_sym_u128] = ACTIONS(576), + [anon_sym_i128] = ACTIONS(576), + [anon_sym_isize] = ACTIONS(576), + [anon_sym_usize] = ACTIONS(576), + [anon_sym_f32] = ACTIONS(576), + [anon_sym_f64] = ACTIONS(576), + [anon_sym_bool] = ACTIONS(576), + [anon_sym_str] = ACTIONS(576), + [anon_sym_char] = ACTIONS(576), + [anon_sym_as] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_union] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(574), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(574), + [anon_sym_ref] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(574), + [anon_sym__] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(576), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), + [anon_sym_DOT] = ACTIONS(576), + [sym_integer_literal] = ACTIONS(574), + [aux_sym_string_literal_token1] = ACTIONS(574), + [sym_char_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(646), - [sym_super] = ACTIONS(646), - [sym_crate] = ACTIONS(646), - [sym_metavariable] = ACTIONS(644), - [sym_raw_string_literal] = ACTIONS(644), - [sym_float_literal] = ACTIONS(644), - [sym_block_comment] = ACTIONS(3), - }, - [233] = { - [sym_identifier] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_RBRACE] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(608), - [anon_sym_u8] = ACTIONS(610), - [anon_sym_i8] = ACTIONS(610), - [anon_sym_u16] = ACTIONS(610), - [anon_sym_i16] = ACTIONS(610), - [anon_sym_u32] = ACTIONS(610), - [anon_sym_i32] = ACTIONS(610), - [anon_sym_u64] = ACTIONS(610), - [anon_sym_i64] = ACTIONS(610), - [anon_sym_u128] = ACTIONS(610), - [anon_sym_i128] = ACTIONS(610), - [anon_sym_isize] = ACTIONS(610), - [anon_sym_usize] = ACTIONS(610), - [anon_sym_f32] = ACTIONS(610), - [anon_sym_f64] = ACTIONS(610), - [anon_sym_bool] = ACTIONS(610), - [anon_sym_str] = ACTIONS(610), - [anon_sym_char] = ACTIONS(610), - [anon_sym_as] = ACTIONS(610), - [anon_sym_const] = ACTIONS(610), - [anon_sym_default] = ACTIONS(610), - [anon_sym_union] = ACTIONS(610), - [anon_sym_POUND] = ACTIONS(608), - [anon_sym_EQ] = ACTIONS(610), - [anon_sym_COMMA] = ACTIONS(608), - [anon_sym_ref] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_COLON_COLON] = ACTIONS(608), - [anon_sym__] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [sym_mutable_specifier] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(610), - [anon_sym_DOT_DOT_EQ] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(608), - [anon_sym_PIPE_PIPE] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_CARET] = ACTIONS(610), - [anon_sym_EQ_EQ] = ACTIONS(608), - [anon_sym_BANG_EQ] = ACTIONS(608), - [anon_sym_LT_EQ] = ACTIONS(608), - [anon_sym_GT_EQ] = ACTIONS(608), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_SLASH] = ACTIONS(610), - [anon_sym_PERCENT] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(608), - [anon_sym_STAR_EQ] = ACTIONS(608), - [anon_sym_SLASH_EQ] = ACTIONS(608), - [anon_sym_PERCENT_EQ] = ACTIONS(608), - [anon_sym_AMP_EQ] = ACTIONS(608), - [anon_sym_PIPE_EQ] = ACTIONS(608), - [anon_sym_CARET_EQ] = ACTIONS(608), - [anon_sym_LT_LT_EQ] = ACTIONS(608), - [anon_sym_GT_GT_EQ] = ACTIONS(608), - [anon_sym_DOT] = ACTIONS(610), - [sym_integer_literal] = ACTIONS(608), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(608), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(610), - [sym_super] = ACTIONS(610), - [sym_crate] = ACTIONS(610), - [sym_metavariable] = ACTIONS(608), - [sym_raw_string_literal] = ACTIONS(608), - [sym_float_literal] = ACTIONS(608), + [sym_self] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_crate] = ACTIONS(576), + [sym_metavariable] = ACTIONS(574), + [sym_raw_string_literal] = ACTIONS(574), + [sym_float_literal] = ACTIONS(574), [sym_block_comment] = ACTIONS(3), }, - [234] = { - [sym_identifier] = ACTIONS(918), - [anon_sym_LPAREN] = ACTIONS(920), + [242] = { + [sym_identifier] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(934), [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(934), [anon_sym_PLUS] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(562), [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_u8] = ACTIONS(918), - [anon_sym_i8] = ACTIONS(918), - [anon_sym_u16] = ACTIONS(918), - [anon_sym_i16] = ACTIONS(918), - [anon_sym_u32] = ACTIONS(918), - [anon_sym_i32] = ACTIONS(918), - [anon_sym_u64] = ACTIONS(918), - [anon_sym_i64] = ACTIONS(918), - [anon_sym_u128] = ACTIONS(918), - [anon_sym_i128] = ACTIONS(918), - [anon_sym_isize] = ACTIONS(918), - [anon_sym_usize] = ACTIONS(918), - [anon_sym_f32] = ACTIONS(918), - [anon_sym_f64] = ACTIONS(918), - [anon_sym_bool] = ACTIONS(918), - [anon_sym_str] = ACTIONS(918), - [anon_sym_char] = ACTIONS(918), + [anon_sym_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_as] = ACTIONS(562), - [anon_sym_const] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [anon_sym_POUND] = ACTIONS(920), + [anon_sym_const] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_POUND] = ACTIONS(934), [anon_sym_EQ] = ACTIONS(562), [anon_sym_COMMA] = ACTIONS(564), - [anon_sym_ref] = ACTIONS(918), - [anon_sym_LT] = ACTIONS(918), + [anon_sym_ref] = ACTIONS(932), + [anon_sym_LT] = ACTIONS(932), [anon_sym_GT] = ACTIONS(562), - [anon_sym_COLON_COLON] = ACTIONS(920), - [anon_sym__] = ACTIONS(918), - [anon_sym_AMP] = ACTIONS(918), + [anon_sym_COLON_COLON] = ACTIONS(934), + [anon_sym__] = ACTIONS(932), + [anon_sym_AMP] = ACTIONS(932), [anon_sym_DOT_DOT_DOT] = ACTIONS(564), - [sym_mutable_specifier] = ACTIONS(918), - [anon_sym_DOT_DOT] = ACTIONS(918), + [sym_mutable_specifier] = ACTIONS(932), + [anon_sym_DOT_DOT] = ACTIONS(932), [anon_sym_DOT_DOT_EQ] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(932), [anon_sym_AMP_AMP] = ACTIONS(564), [anon_sym_PIPE_PIPE] = ACTIONS(564), [anon_sym_PIPE] = ACTIONS(562), @@ -40118,181 +42141,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(564), [anon_sym_GT_GT_EQ] = ACTIONS(564), [anon_sym_DOT] = ACTIONS(562), - [sym_integer_literal] = ACTIONS(920), - [aux_sym_string_literal_token1] = ACTIONS(920), - [sym_char_literal] = ACTIONS(920), - [anon_sym_true] = ACTIONS(918), - [anon_sym_false] = ACTIONS(918), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_raw_string_literal] = ACTIONS(920), - [sym_float_literal] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [235] = { - [sym_identifier] = ACTIONS(618), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_LBRACK] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(618), - [anon_sym_QMARK] = ACTIONS(616), - [anon_sym_u8] = ACTIONS(618), - [anon_sym_i8] = ACTIONS(618), - [anon_sym_u16] = ACTIONS(618), - [anon_sym_i16] = ACTIONS(618), - [anon_sym_u32] = ACTIONS(618), - [anon_sym_i32] = ACTIONS(618), - [anon_sym_u64] = ACTIONS(618), - [anon_sym_i64] = ACTIONS(618), - [anon_sym_u128] = ACTIONS(618), - [anon_sym_i128] = ACTIONS(618), - [anon_sym_isize] = ACTIONS(618), - [anon_sym_usize] = ACTIONS(618), - [anon_sym_f32] = ACTIONS(618), - [anon_sym_f64] = ACTIONS(618), - [anon_sym_bool] = ACTIONS(618), - [anon_sym_str] = ACTIONS(618), - [anon_sym_char] = ACTIONS(618), - [anon_sym_as] = ACTIONS(618), - [anon_sym_const] = ACTIONS(618), - [anon_sym_default] = ACTIONS(618), - [anon_sym_union] = ACTIONS(618), - [anon_sym_POUND] = ACTIONS(616), - [anon_sym_EQ] = ACTIONS(618), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_ref] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(618), - [anon_sym_GT] = ACTIONS(618), - [anon_sym_COLON_COLON] = ACTIONS(616), - [anon_sym__] = ACTIONS(618), - [anon_sym_AMP] = ACTIONS(618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(616), - [sym_mutable_specifier] = ACTIONS(618), - [anon_sym_DOT_DOT] = ACTIONS(618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_AMP_AMP] = ACTIONS(616), - [anon_sym_PIPE_PIPE] = ACTIONS(616), - [anon_sym_PIPE] = ACTIONS(618), - [anon_sym_CARET] = ACTIONS(618), - [anon_sym_EQ_EQ] = ACTIONS(616), - [anon_sym_BANG_EQ] = ACTIONS(616), - [anon_sym_LT_EQ] = ACTIONS(616), - [anon_sym_GT_EQ] = ACTIONS(616), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_GT_GT] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(618), - [anon_sym_PLUS_EQ] = ACTIONS(616), - [anon_sym_DASH_EQ] = ACTIONS(616), - [anon_sym_STAR_EQ] = ACTIONS(616), - [anon_sym_SLASH_EQ] = ACTIONS(616), - [anon_sym_PERCENT_EQ] = ACTIONS(616), - [anon_sym_AMP_EQ] = ACTIONS(616), - [anon_sym_PIPE_EQ] = ACTIONS(616), - [anon_sym_CARET_EQ] = ACTIONS(616), - [anon_sym_LT_LT_EQ] = ACTIONS(616), - [anon_sym_GT_GT_EQ] = ACTIONS(616), - [anon_sym_DOT] = ACTIONS(618), - [sym_integer_literal] = ACTIONS(616), - [aux_sym_string_literal_token1] = ACTIONS(616), - [sym_char_literal] = ACTIONS(616), - [anon_sym_true] = ACTIONS(618), - [anon_sym_false] = ACTIONS(618), + [sym_integer_literal] = ACTIONS(934), + [aux_sym_string_literal_token1] = ACTIONS(934), + [sym_char_literal] = ACTIONS(934), + [anon_sym_true] = ACTIONS(932), + [anon_sym_false] = ACTIONS(932), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(618), - [sym_super] = ACTIONS(618), - [sym_crate] = ACTIONS(618), - [sym_metavariable] = ACTIONS(616), - [sym_raw_string_literal] = ACTIONS(616), - [sym_float_literal] = ACTIONS(616), + [sym_self] = ACTIONS(932), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_raw_string_literal] = ACTIONS(934), + [sym_float_literal] = ACTIONS(934), [sym_block_comment] = ACTIONS(3), }, - [236] = { - [sym_identifier] = ACTIONS(606), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_RBRACE] = ACTIONS(604), - [anon_sym_LBRACK] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_QMARK] = ACTIONS(604), - [anon_sym_u8] = ACTIONS(606), - [anon_sym_i8] = ACTIONS(606), - [anon_sym_u16] = ACTIONS(606), - [anon_sym_i16] = ACTIONS(606), - [anon_sym_u32] = ACTIONS(606), - [anon_sym_i32] = ACTIONS(606), - [anon_sym_u64] = ACTIONS(606), - [anon_sym_i64] = ACTIONS(606), - [anon_sym_u128] = ACTIONS(606), - [anon_sym_i128] = ACTIONS(606), - [anon_sym_isize] = ACTIONS(606), - [anon_sym_usize] = ACTIONS(606), - [anon_sym_f32] = ACTIONS(606), - [anon_sym_f64] = ACTIONS(606), - [anon_sym_bool] = ACTIONS(606), - [anon_sym_str] = ACTIONS(606), - [anon_sym_char] = ACTIONS(606), - [anon_sym_as] = ACTIONS(606), - [anon_sym_const] = ACTIONS(606), - [anon_sym_default] = ACTIONS(606), - [anon_sym_union] = ACTIONS(606), - [anon_sym_POUND] = ACTIONS(604), - [anon_sym_EQ] = ACTIONS(606), - [anon_sym_COMMA] = ACTIONS(604), - [anon_sym_ref] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_GT] = ACTIONS(606), - [anon_sym_COLON_COLON] = ACTIONS(604), - [anon_sym__] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [sym_mutable_specifier] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DOT_DOT_EQ] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_AMP_AMP] = ACTIONS(604), - [anon_sym_PIPE_PIPE] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_CARET] = ACTIONS(606), - [anon_sym_EQ_EQ] = ACTIONS(604), - [anon_sym_BANG_EQ] = ACTIONS(604), - [anon_sym_LT_EQ] = ACTIONS(604), - [anon_sym_GT_EQ] = ACTIONS(604), - [anon_sym_LT_LT] = ACTIONS(606), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_SLASH] = ACTIONS(606), - [anon_sym_PERCENT] = ACTIONS(606), - [anon_sym_PLUS_EQ] = ACTIONS(604), - [anon_sym_DASH_EQ] = ACTIONS(604), - [anon_sym_STAR_EQ] = ACTIONS(604), - [anon_sym_SLASH_EQ] = ACTIONS(604), - [anon_sym_PERCENT_EQ] = ACTIONS(604), - [anon_sym_AMP_EQ] = ACTIONS(604), - [anon_sym_PIPE_EQ] = ACTIONS(604), - [anon_sym_CARET_EQ] = ACTIONS(604), - [anon_sym_LT_LT_EQ] = ACTIONS(604), - [anon_sym_GT_GT_EQ] = ACTIONS(604), - [anon_sym_DOT] = ACTIONS(606), - [sym_integer_literal] = ACTIONS(604), - [aux_sym_string_literal_token1] = ACTIONS(604), - [sym_char_literal] = ACTIONS(604), - [anon_sym_true] = ACTIONS(606), - [anon_sym_false] = ACTIONS(606), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(606), - [sym_super] = ACTIONS(606), - [sym_crate] = ACTIONS(606), - [sym_metavariable] = ACTIONS(604), - [sym_raw_string_literal] = ACTIONS(604), - [sym_float_literal] = ACTIONS(604), - [sym_block_comment] = ACTIONS(3), - }, - [237] = { + [243] = { [sym_identifier] = ACTIONS(642), [anon_sym_LPAREN] = ACTIONS(640), [anon_sym_RBRACE] = ACTIONS(640), @@ -40372,87 +42235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(640), [sym_block_comment] = ACTIONS(3), }, - [238] = { - [sym_identifier] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(582), - [anon_sym_u8] = ACTIONS(584), - [anon_sym_i8] = ACTIONS(584), - [anon_sym_u16] = ACTIONS(584), - [anon_sym_i16] = ACTIONS(584), - [anon_sym_u32] = ACTIONS(584), - [anon_sym_i32] = ACTIONS(584), - [anon_sym_u64] = ACTIONS(584), - [anon_sym_i64] = ACTIONS(584), - [anon_sym_u128] = ACTIONS(584), - [anon_sym_i128] = ACTIONS(584), - [anon_sym_isize] = ACTIONS(584), - [anon_sym_usize] = ACTIONS(584), - [anon_sym_f32] = ACTIONS(584), - [anon_sym_f64] = ACTIONS(584), - [anon_sym_bool] = ACTIONS(584), - [anon_sym_str] = ACTIONS(584), - [anon_sym_char] = ACTIONS(584), - [anon_sym_as] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_default] = ACTIONS(584), - [anon_sym_union] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_ref] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_COLON_COLON] = ACTIONS(582), - [anon_sym__] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(582), - [sym_mutable_specifier] = ACTIONS(584), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_PLUS_EQ] = ACTIONS(582), - [anon_sym_DASH_EQ] = ACTIONS(582), - [anon_sym_STAR_EQ] = ACTIONS(582), - [anon_sym_SLASH_EQ] = ACTIONS(582), - [anon_sym_PERCENT_EQ] = ACTIONS(582), - [anon_sym_AMP_EQ] = ACTIONS(582), - [anon_sym_PIPE_EQ] = ACTIONS(582), - [anon_sym_CARET_EQ] = ACTIONS(582), - [anon_sym_LT_LT_EQ] = ACTIONS(582), - [anon_sym_GT_GT_EQ] = ACTIONS(582), - [anon_sym_DOT] = ACTIONS(584), - [sym_integer_literal] = ACTIONS(582), - [aux_sym_string_literal_token1] = ACTIONS(582), - [sym_char_literal] = ACTIONS(582), - [anon_sym_true] = ACTIONS(584), - [anon_sym_false] = ACTIONS(584), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(584), - [sym_super] = ACTIONS(584), - [sym_crate] = ACTIONS(584), - [sym_metavariable] = ACTIONS(582), - [sym_raw_string_literal] = ACTIONS(582), - [sym_float_literal] = ACTIONS(582), - [sym_block_comment] = ACTIONS(3), - }, - [239] = { + [244] = { [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(648), [anon_sym_RBRACE] = ACTIONS(648), @@ -40532,2353 +42315,2229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(648), [sym_block_comment] = ACTIONS(3), }, - [240] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_RBRACE] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_as] = ACTIONS(666), - [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_union] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_ref] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_COLON_COLON] = ACTIONS(664), - [anon_sym__] = ACTIONS(666), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(664), - [sym_mutable_specifier] = ACTIONS(666), - [anon_sym_DOT_DOT] = ACTIONS(666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(666), - [sym_integer_literal] = ACTIONS(664), - [aux_sym_string_literal_token1] = ACTIONS(664), - [sym_char_literal] = ACTIONS(664), - [anon_sym_true] = ACTIONS(666), - [anon_sym_false] = ACTIONS(666), + [245] = { + [sym_identifier] = ACTIONS(618), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(618), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(618), + [anon_sym_i8] = ACTIONS(618), + [anon_sym_u16] = ACTIONS(618), + [anon_sym_i16] = ACTIONS(618), + [anon_sym_u32] = ACTIONS(618), + [anon_sym_i32] = ACTIONS(618), + [anon_sym_u64] = ACTIONS(618), + [anon_sym_i64] = ACTIONS(618), + [anon_sym_u128] = ACTIONS(618), + [anon_sym_i128] = ACTIONS(618), + [anon_sym_isize] = ACTIONS(618), + [anon_sym_usize] = ACTIONS(618), + [anon_sym_f32] = ACTIONS(618), + [anon_sym_f64] = ACTIONS(618), + [anon_sym_bool] = ACTIONS(618), + [anon_sym_str] = ACTIONS(618), + [anon_sym_char] = ACTIONS(618), + [anon_sym_as] = ACTIONS(618), + [anon_sym_const] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_union] = ACTIONS(618), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(618), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_ref] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_GT] = ACTIONS(618), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym__] = ACTIONS(618), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [sym_mutable_specifier] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_CARET] = ACTIONS(618), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_GT_GT] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(618), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [sym_integer_literal] = ACTIONS(616), + [aux_sym_string_literal_token1] = ACTIONS(616), + [sym_char_literal] = ACTIONS(616), + [anon_sym_true] = ACTIONS(618), + [anon_sym_false] = ACTIONS(618), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(666), - [sym_super] = ACTIONS(666), - [sym_crate] = ACTIONS(666), - [sym_metavariable] = ACTIONS(664), - [sym_raw_string_literal] = ACTIONS(664), - [sym_float_literal] = ACTIONS(664), + [sym_self] = ACTIONS(618), + [sym_super] = ACTIONS(618), + [sym_crate] = ACTIONS(618), + [sym_metavariable] = ACTIONS(616), + [sym_raw_string_literal] = ACTIONS(616), + [sym_float_literal] = ACTIONS(616), [sym_block_comment] = ACTIONS(3), }, - [241] = { - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_EQ] = ACTIONS(638), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_ref] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(638), - [anon_sym_COLON_COLON] = ACTIONS(636), - [anon_sym__] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(636), - [sym_mutable_specifier] = ACTIONS(638), - [anon_sym_DOT_DOT] = ACTIONS(638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(638), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_LT_LT] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_SLASH] = ACTIONS(638), - [anon_sym_PERCENT] = ACTIONS(638), - [anon_sym_PLUS_EQ] = ACTIONS(636), - [anon_sym_DASH_EQ] = ACTIONS(636), - [anon_sym_STAR_EQ] = ACTIONS(636), - [anon_sym_SLASH_EQ] = ACTIONS(636), - [anon_sym_PERCENT_EQ] = ACTIONS(636), - [anon_sym_AMP_EQ] = ACTIONS(636), - [anon_sym_PIPE_EQ] = ACTIONS(636), - [anon_sym_CARET_EQ] = ACTIONS(636), - [anon_sym_LT_LT_EQ] = ACTIONS(636), - [anon_sym_GT_GT_EQ] = ACTIONS(636), - [anon_sym_DOT] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(636), - [aux_sym_string_literal_token1] = ACTIONS(636), - [sym_char_literal] = ACTIONS(636), - [anon_sym_true] = ACTIONS(638), - [anon_sym_false] = ACTIONS(638), + [246] = { + [sym_identifier] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u128] = ACTIONS(568), + [anon_sym_i128] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_str] = ACTIONS(568), + [anon_sym_char] = ACTIONS(568), + [anon_sym_as] = ACTIONS(568), + [anon_sym_const] = ACTIONS(568), + [anon_sym_default] = ACTIONS(568), + [anon_sym_union] = ACTIONS(568), + [anon_sym_POUND] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_ref] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(566), + [anon_sym__] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [sym_mutable_specifier] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(566), + [aux_sym_string_literal_token1] = ACTIONS(566), + [sym_char_literal] = ACTIONS(566), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(636), - [sym_raw_string_literal] = ACTIONS(636), - [sym_float_literal] = ACTIONS(636), + [sym_self] = ACTIONS(568), + [sym_super] = ACTIONS(568), + [sym_crate] = ACTIONS(568), + [sym_metavariable] = ACTIONS(566), + [sym_raw_string_literal] = ACTIONS(566), + [sym_float_literal] = ACTIONS(566), [sym_block_comment] = ACTIONS(3), }, - [242] = { - [sym_identifier] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(578), - [anon_sym_ref] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym__] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [sym_mutable_specifier] = ACTIONS(580), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), + [247] = { + [sym_identifier] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_QMARK] = ACTIONS(644), + [anon_sym_u8] = ACTIONS(646), + [anon_sym_i8] = ACTIONS(646), + [anon_sym_u16] = ACTIONS(646), + [anon_sym_i16] = ACTIONS(646), + [anon_sym_u32] = ACTIONS(646), + [anon_sym_i32] = ACTIONS(646), + [anon_sym_u64] = ACTIONS(646), + [anon_sym_i64] = ACTIONS(646), + [anon_sym_u128] = ACTIONS(646), + [anon_sym_i128] = ACTIONS(646), + [anon_sym_isize] = ACTIONS(646), + [anon_sym_usize] = ACTIONS(646), + [anon_sym_f32] = ACTIONS(646), + [anon_sym_f64] = ACTIONS(646), + [anon_sym_bool] = ACTIONS(646), + [anon_sym_str] = ACTIONS(646), + [anon_sym_char] = ACTIONS(646), + [anon_sym_as] = ACTIONS(646), + [anon_sym_const] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_union] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_ref] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(644), + [anon_sym__] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(644), + [sym_mutable_specifier] = ACTIONS(646), + [anon_sym_DOT_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_LT_LT] = ACTIONS(646), + [anon_sym_GT_GT] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PERCENT] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_SLASH_EQ] = ACTIONS(644), + [anon_sym_PERCENT_EQ] = ACTIONS(644), + [anon_sym_AMP_EQ] = ACTIONS(644), + [anon_sym_PIPE_EQ] = ACTIONS(644), + [anon_sym_CARET_EQ] = ACTIONS(644), + [anon_sym_LT_LT_EQ] = ACTIONS(644), + [anon_sym_GT_GT_EQ] = ACTIONS(644), + [anon_sym_DOT] = ACTIONS(646), + [sym_integer_literal] = ACTIONS(644), + [aux_sym_string_literal_token1] = ACTIONS(644), + [sym_char_literal] = ACTIONS(644), + [anon_sym_true] = ACTIONS(646), + [anon_sym_false] = ACTIONS(646), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), + [sym_self] = ACTIONS(646), + [sym_super] = ACTIONS(646), + [sym_crate] = ACTIONS(646), + [sym_metavariable] = ACTIONS(644), + [sym_raw_string_literal] = ACTIONS(644), + [sym_float_literal] = ACTIONS(644), [sym_block_comment] = ACTIONS(3), }, - [243] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1982), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(1984), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_type_binding] = STATE(2208), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [sym_block] = STATE(2208), - [sym__literal] = STATE(2208), - [sym_string_literal] = STATE(2319), - [sym_boolean_literal] = STATE(2319), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(904), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(904), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [248] = { + [sym_identifier] = ACTIONS(674), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_PLUS] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(674), + [anon_sym_i8] = ACTIONS(674), + [anon_sym_u16] = ACTIONS(674), + [anon_sym_i16] = ACTIONS(674), + [anon_sym_u32] = ACTIONS(674), + [anon_sym_i32] = ACTIONS(674), + [anon_sym_u64] = ACTIONS(674), + [anon_sym_i64] = ACTIONS(674), + [anon_sym_u128] = ACTIONS(674), + [anon_sym_i128] = ACTIONS(674), + [anon_sym_isize] = ACTIONS(674), + [anon_sym_usize] = ACTIONS(674), + [anon_sym_f32] = ACTIONS(674), + [anon_sym_f64] = ACTIONS(674), + [anon_sym_bool] = ACTIONS(674), + [anon_sym_str] = ACTIONS(674), + [anon_sym_char] = ACTIONS(674), + [anon_sym_as] = ACTIONS(674), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_union] = ACTIONS(674), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_ref] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [sym_mutable_specifier] = ACTIONS(674), + [anon_sym_DOT_DOT] = ACTIONS(674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_CARET] = ACTIONS(674), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(674), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(674), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_DOT] = ACTIONS(674), + [sym_integer_literal] = ACTIONS(672), + [aux_sym_string_literal_token1] = ACTIONS(672), + [sym_char_literal] = ACTIONS(672), + [anon_sym_true] = ACTIONS(674), + [anon_sym_false] = ACTIONS(674), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(672), + [sym_raw_string_literal] = ACTIONS(672), + [sym_float_literal] = ACTIONS(672), + [sym_block_comment] = ACTIONS(3), + }, + [249] = { + [sym_identifier] = ACTIONS(626), + [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(624), + [anon_sym_u8] = ACTIONS(626), + [anon_sym_i8] = ACTIONS(626), + [anon_sym_u16] = ACTIONS(626), + [anon_sym_i16] = ACTIONS(626), + [anon_sym_u32] = ACTIONS(626), + [anon_sym_i32] = ACTIONS(626), + [anon_sym_u64] = ACTIONS(626), + [anon_sym_i64] = ACTIONS(626), + [anon_sym_u128] = ACTIONS(626), + [anon_sym_i128] = ACTIONS(626), + [anon_sym_isize] = ACTIONS(626), + [anon_sym_usize] = ACTIONS(626), + [anon_sym_f32] = ACTIONS(626), + [anon_sym_f64] = ACTIONS(626), + [anon_sym_bool] = ACTIONS(626), + [anon_sym_str] = ACTIONS(626), + [anon_sym_char] = ACTIONS(626), + [anon_sym_as] = ACTIONS(626), + [anon_sym_const] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_union] = ACTIONS(626), + [anon_sym_POUND] = ACTIONS(624), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(624), + [anon_sym_ref] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_COLON_COLON] = ACTIONS(624), + [anon_sym__] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(624), + [sym_mutable_specifier] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_BANG_EQ] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(624), + [anon_sym_DASH_EQ] = ACTIONS(624), + [anon_sym_STAR_EQ] = ACTIONS(624), + [anon_sym_SLASH_EQ] = ACTIONS(624), + [anon_sym_PERCENT_EQ] = ACTIONS(624), + [anon_sym_AMP_EQ] = ACTIONS(624), + [anon_sym_PIPE_EQ] = ACTIONS(624), + [anon_sym_CARET_EQ] = ACTIONS(624), + [anon_sym_LT_LT_EQ] = ACTIONS(624), + [anon_sym_GT_GT_EQ] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [sym_integer_literal] = ACTIONS(624), + [aux_sym_string_literal_token1] = ACTIONS(624), + [sym_char_literal] = ACTIONS(624), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_crate] = ACTIONS(626), + [sym_metavariable] = ACTIONS(624), + [sym_raw_string_literal] = ACTIONS(624), + [sym_float_literal] = ACTIONS(624), + [sym_block_comment] = ACTIONS(3), + }, + [250] = { + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_QMARK] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(662), + [anon_sym_i8] = ACTIONS(662), + [anon_sym_u16] = ACTIONS(662), + [anon_sym_i16] = ACTIONS(662), + [anon_sym_u32] = ACTIONS(662), + [anon_sym_i32] = ACTIONS(662), + [anon_sym_u64] = ACTIONS(662), + [anon_sym_i64] = ACTIONS(662), + [anon_sym_u128] = ACTIONS(662), + [anon_sym_i128] = ACTIONS(662), + [anon_sym_isize] = ACTIONS(662), + [anon_sym_usize] = ACTIONS(662), + [anon_sym_f32] = ACTIONS(662), + [anon_sym_f64] = ACTIONS(662), + [anon_sym_bool] = ACTIONS(662), + [anon_sym_str] = ACTIONS(662), + [anon_sym_char] = ACTIONS(662), + [anon_sym_as] = ACTIONS(662), + [anon_sym_const] = ACTIONS(662), + [anon_sym_default] = ACTIONS(662), + [anon_sym_union] = ACTIONS(662), + [anon_sym_POUND] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(662), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_ref] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(662), + [anon_sym_GT] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(660), + [anon_sym__] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(660), + [sym_mutable_specifier] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT_EQ] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(662), + [anon_sym_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ] = ACTIONS(660), + [anon_sym_LT_EQ] = ACTIONS(660), + [anon_sym_GT_EQ] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(662), + [anon_sym_SLASH] = ACTIONS(662), + [anon_sym_PERCENT] = ACTIONS(662), + [anon_sym_PLUS_EQ] = ACTIONS(660), + [anon_sym_DASH_EQ] = ACTIONS(660), + [anon_sym_STAR_EQ] = ACTIONS(660), + [anon_sym_SLASH_EQ] = ACTIONS(660), + [anon_sym_PERCENT_EQ] = ACTIONS(660), + [anon_sym_AMP_EQ] = ACTIONS(660), + [anon_sym_PIPE_EQ] = ACTIONS(660), + [anon_sym_CARET_EQ] = ACTIONS(660), + [anon_sym_LT_LT_EQ] = ACTIONS(660), + [anon_sym_GT_GT_EQ] = ACTIONS(660), + [anon_sym_DOT] = ACTIONS(662), + [sym_integer_literal] = ACTIONS(660), + [aux_sym_string_literal_token1] = ACTIONS(660), + [sym_char_literal] = ACTIONS(660), + [anon_sym_true] = ACTIONS(662), + [anon_sym_false] = ACTIONS(662), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_raw_string_literal] = ACTIONS(904), - [sym_float_literal] = ACTIONS(904), + [sym_self] = ACTIONS(662), + [sym_super] = ACTIONS(662), + [sym_crate] = ACTIONS(662), + [sym_metavariable] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(660), + [sym_float_literal] = ACTIONS(660), [sym_block_comment] = ACTIONS(3), }, - [244] = { - [sym_identifier] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_RBRACE] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(668), - [anon_sym_u8] = ACTIONS(670), - [anon_sym_i8] = ACTIONS(670), - [anon_sym_u16] = ACTIONS(670), - [anon_sym_i16] = ACTIONS(670), - [anon_sym_u32] = ACTIONS(670), - [anon_sym_i32] = ACTIONS(670), - [anon_sym_u64] = ACTIONS(670), - [anon_sym_i64] = ACTIONS(670), - [anon_sym_u128] = ACTIONS(670), - [anon_sym_i128] = ACTIONS(670), - [anon_sym_isize] = ACTIONS(670), - [anon_sym_usize] = ACTIONS(670), - [anon_sym_f32] = ACTIONS(670), - [anon_sym_f64] = ACTIONS(670), - [anon_sym_bool] = ACTIONS(670), - [anon_sym_str] = ACTIONS(670), - [anon_sym_char] = ACTIONS(670), - [anon_sym_as] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_union] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(668), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(668), - [anon_sym_ref] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_COLON_COLON] = ACTIONS(668), - [anon_sym__] = ACTIONS(670), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [sym_mutable_specifier] = ACTIONS(670), - [anon_sym_DOT_DOT] = ACTIONS(670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_AMP_AMP] = ACTIONS(668), - [anon_sym_PIPE_PIPE] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(668), - [anon_sym_BANG_EQ] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(668), - [anon_sym_LT_LT] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(670), - [anon_sym_PLUS_EQ] = ACTIONS(668), - [anon_sym_DASH_EQ] = ACTIONS(668), - [anon_sym_STAR_EQ] = ACTIONS(668), - [anon_sym_SLASH_EQ] = ACTIONS(668), - [anon_sym_PERCENT_EQ] = ACTIONS(668), - [anon_sym_AMP_EQ] = ACTIONS(668), - [anon_sym_PIPE_EQ] = ACTIONS(668), - [anon_sym_CARET_EQ] = ACTIONS(668), - [anon_sym_LT_LT_EQ] = ACTIONS(668), - [anon_sym_GT_GT_EQ] = ACTIONS(668), - [anon_sym_DOT] = ACTIONS(670), - [sym_integer_literal] = ACTIONS(668), - [aux_sym_string_literal_token1] = ACTIONS(668), - [sym_char_literal] = ACTIONS(668), - [anon_sym_true] = ACTIONS(670), - [anon_sym_false] = ACTIONS(670), + [251] = { + [sym_identifier] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_u8] = ACTIONS(622), + [anon_sym_i8] = ACTIONS(622), + [anon_sym_u16] = ACTIONS(622), + [anon_sym_i16] = ACTIONS(622), + [anon_sym_u32] = ACTIONS(622), + [anon_sym_i32] = ACTIONS(622), + [anon_sym_u64] = ACTIONS(622), + [anon_sym_i64] = ACTIONS(622), + [anon_sym_u128] = ACTIONS(622), + [anon_sym_i128] = ACTIONS(622), + [anon_sym_isize] = ACTIONS(622), + [anon_sym_usize] = ACTIONS(622), + [anon_sym_f32] = ACTIONS(622), + [anon_sym_f64] = ACTIONS(622), + [anon_sym_bool] = ACTIONS(622), + [anon_sym_str] = ACTIONS(622), + [anon_sym_char] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_default] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(620), + [anon_sym_ref] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_COLON_COLON] = ACTIONS(620), + [anon_sym__] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(620), + [sym_mutable_specifier] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT_EQ] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(620), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_BANG_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_PLUS_EQ] = ACTIONS(620), + [anon_sym_DASH_EQ] = ACTIONS(620), + [anon_sym_STAR_EQ] = ACTIONS(620), + [anon_sym_SLASH_EQ] = ACTIONS(620), + [anon_sym_PERCENT_EQ] = ACTIONS(620), + [anon_sym_AMP_EQ] = ACTIONS(620), + [anon_sym_PIPE_EQ] = ACTIONS(620), + [anon_sym_CARET_EQ] = ACTIONS(620), + [anon_sym_LT_LT_EQ] = ACTIONS(620), + [anon_sym_GT_GT_EQ] = ACTIONS(620), + [anon_sym_DOT] = ACTIONS(622), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(620), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(670), - [sym_super] = ACTIONS(670), - [sym_crate] = ACTIONS(670), - [sym_metavariable] = ACTIONS(668), - [sym_raw_string_literal] = ACTIONS(668), - [sym_float_literal] = ACTIONS(668), + [sym_self] = ACTIONS(622), + [sym_super] = ACTIONS(622), + [sym_crate] = ACTIONS(622), + [sym_metavariable] = ACTIONS(620), + [sym_raw_string_literal] = ACTIONS(620), + [sym_float_literal] = ACTIONS(620), [sym_block_comment] = ACTIONS(3), }, - [245] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1807), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(1806), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_type_binding] = STATE(2004), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [sym_block] = STATE(2004), - [sym__literal] = STATE(2004), - [sym_string_literal] = STATE(2319), - [sym_boolean_literal] = STATE(2319), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(890), + [252] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1821), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(1820), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_type_binding] = STATE(2042), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [sym_block] = STATE(2042), + [sym__literal] = STATE(2042), + [sym_string_literal] = STATE(2342), + [sym_boolean_literal] = STATE(2342), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), + [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_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(904), + [sym_integer_literal] = ACTIONS(916), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(904), + [sym_char_literal] = ACTIONS(916), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_raw_string_literal] = ACTIONS(904), - [sym_float_literal] = ACTIONS(904), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_raw_string_literal] = ACTIONS(916), + [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, - [246] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1982), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(1984), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_type_binding] = STATE(2208), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [sym_block] = STATE(2208), - [sym__literal] = STATE(2208), - [sym_string_literal] = STATE(2319), - [sym_boolean_literal] = STATE(2319), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(890), + [253] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1849), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(1848), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_type_binding] = STATE(2096), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [sym_block] = STATE(2096), + [sym__literal] = STATE(2096), + [sym_string_literal] = STATE(2342), + [sym_boolean_literal] = STATE(2342), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), + [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_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(904), + [sym_integer_literal] = ACTIONS(916), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(904), + [sym_char_literal] = ACTIONS(916), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_raw_string_literal] = ACTIONS(904), - [sym_float_literal] = ACTIONS(904), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_raw_string_literal] = ACTIONS(916), + [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, - [247] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1820), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(1823), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_type_binding] = STATE(2080), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [sym_block] = STATE(2080), - [sym__literal] = STATE(2080), - [sym_string_literal] = STATE(2319), - [sym_boolean_literal] = STATE(2319), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(890), + [254] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2036), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2035), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_type_binding] = STATE(2303), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [sym_block] = STATE(2303), + [sym__literal] = STATE(2303), + [sym_string_literal] = STATE(2342), + [sym_boolean_literal] = STATE(2342), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), + [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_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(904), + [sym_integer_literal] = ACTIONS(916), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(904), + [sym_char_literal] = ACTIONS(916), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_raw_string_literal] = ACTIONS(904), - [sym_float_literal] = ACTIONS(904), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_raw_string_literal] = ACTIONS(916), + [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, - [248] = { - [sym_empty_statement] = STATE(252), - [sym_macro_definition] = STATE(252), - [sym_attribute_item] = STATE(252), - [sym_inner_attribute_item] = STATE(252), - [sym_mod_item] = STATE(252), - [sym_foreign_mod_item] = STATE(252), - [sym_struct_item] = STATE(252), - [sym_union_item] = STATE(252), - [sym_enum_item] = STATE(252), - [sym_extern_crate_declaration] = STATE(252), - [sym_const_item] = STATE(252), - [sym_static_item] = STATE(252), - [sym_type_item] = STATE(252), - [sym_function_item] = STATE(252), - [sym_function_signature_item] = STATE(252), - [sym_function_modifiers] = STATE(2548), - [sym_impl_item] = STATE(252), - [sym_trait_item] = STATE(252), - [sym_associated_type] = STATE(252), - [sym_let_declaration] = STATE(252), - [sym_use_declaration] = STATE(252), - [sym_extern_modifier] = STATE(1533), - [sym_visibility_modifier] = STATE(1351), - [sym_bracketed_type] = STATE(2362), - [sym_generic_type_with_turbofish] = STATE(2357), - [sym_macro_invocation] = STATE(252), - [sym_scoped_identifier] = STATE(2273), - [aux_sym_declaration_list_repeat1] = STATE(252), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_macro_rules_BANG] = ACTIONS(928), - [anon_sym_RBRACE] = 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), + [255] = { + [sym_empty_statement] = STATE(257), + [sym_macro_definition] = STATE(257), + [sym_attribute_item] = STATE(257), + [sym_inner_attribute_item] = STATE(257), + [sym_mod_item] = STATE(257), + [sym_foreign_mod_item] = STATE(257), + [sym_struct_item] = STATE(257), + [sym_union_item] = STATE(257), + [sym_enum_item] = STATE(257), + [sym_extern_crate_declaration] = STATE(257), + [sym_const_item] = STATE(257), + [sym_static_item] = STATE(257), + [sym_type_item] = STATE(257), + [sym_function_item] = STATE(257), + [sym_function_signature_item] = STATE(257), + [sym_function_modifiers] = STATE(2564), + [sym_impl_item] = STATE(257), + [sym_trait_item] = STATE(257), + [sym_associated_type] = STATE(257), + [sym_let_declaration] = STATE(257), + [sym_use_declaration] = STATE(257), + [sym_extern_modifier] = STATE(1548), + [sym_visibility_modifier] = STATE(1353), + [sym_bracketed_type] = STATE(2391), + [sym_generic_type_with_turbofish] = STATE(2388), + [sym_macro_invocation] = STATE(257), + [sym_scoped_identifier] = STATE(2260), + [aux_sym_declaration_list_repeat1] = STATE(257), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(936), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_macro_rules_BANG] = ACTIONS(940), + [anon_sym_RBRACE] = 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_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(934), - [anon_sym_default] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(938), - [anon_sym_fn] = ACTIONS(940), - [anon_sym_impl] = ACTIONS(942), - [anon_sym_let] = ACTIONS(944), - [anon_sym_mod] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [anon_sym_default] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(950), + [anon_sym_fn] = ACTIONS(952), + [anon_sym_impl] = ACTIONS(954), + [anon_sym_let] = ACTIONS(956), + [anon_sym_mod] = ACTIONS(958), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_trait] = ACTIONS(952), - [anon_sym_type] = ACTIONS(954), - [anon_sym_union] = ACTIONS(956), - [anon_sym_unsafe] = ACTIONS(958), - [anon_sym_use] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(964), + [anon_sym_static] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(962), + [anon_sym_trait] = ACTIONS(964), + [anon_sym_type] = ACTIONS(966), + [anon_sym_union] = ACTIONS(968), + [anon_sym_unsafe] = ACTIONS(970), + [anon_sym_use] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(976), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(888), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(968), - [sym_super] = ACTIONS(968), - [sym_crate] = ACTIONS(970), - [sym_metavariable] = ACTIONS(972), + [sym_self] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_crate] = ACTIONS(980), + [sym_metavariable] = ACTIONS(982), [sym_block_comment] = ACTIONS(3), }, - [249] = { - [sym__token_pattern] = STATE(249), - [sym_token_tree_pattern] = STATE(249), - [sym_token_binding_pattern] = STATE(249), - [sym_token_repetition_pattern] = STATE(249), - [sym__literal] = STATE(249), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_pattern_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(985), - [anon_sym_RBRACK] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(988), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_as] = ACTIONS(974), - [anon_sym_async] = ACTIONS(974), - [anon_sym_await] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_fn] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_impl] = ACTIONS(974), - [anon_sym_let] = ACTIONS(974), - [anon_sym_loop] = ACTIONS(974), - [anon_sym_match] = ACTIONS(974), - [anon_sym_mod] = ACTIONS(974), - [anon_sym_pub] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_static] = ACTIONS(974), - [anon_sym_struct] = ACTIONS(974), - [anon_sym_trait] = ACTIONS(974), - [anon_sym_type] = ACTIONS(974), - [anon_sym_union] = ACTIONS(974), - [anon_sym_unsafe] = ACTIONS(974), - [anon_sym_use] = ACTIONS(974), - [anon_sym_where] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [sym_mutable_specifier] = ACTIONS(974), - [sym_integer_literal] = ACTIONS(991), - [aux_sym_string_literal_token1] = ACTIONS(994), - [sym_char_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(974), - [sym_super] = ACTIONS(974), - [sym_crate] = ACTIONS(974), - [sym_metavariable] = ACTIONS(1002), - [sym_raw_string_literal] = ACTIONS(991), - [sym_float_literal] = ACTIONS(991), + [256] = { + [sym_empty_statement] = STATE(256), + [sym_macro_definition] = STATE(256), + [sym_attribute_item] = STATE(256), + [sym_inner_attribute_item] = STATE(256), + [sym_mod_item] = STATE(256), + [sym_foreign_mod_item] = STATE(256), + [sym_struct_item] = STATE(256), + [sym_union_item] = STATE(256), + [sym_enum_item] = STATE(256), + [sym_extern_crate_declaration] = STATE(256), + [sym_const_item] = STATE(256), + [sym_static_item] = STATE(256), + [sym_type_item] = STATE(256), + [sym_function_item] = STATE(256), + [sym_function_signature_item] = STATE(256), + [sym_function_modifiers] = STATE(2564), + [sym_impl_item] = STATE(256), + [sym_trait_item] = STATE(256), + [sym_associated_type] = STATE(256), + [sym_let_declaration] = STATE(256), + [sym_use_declaration] = STATE(256), + [sym_extern_modifier] = STATE(1548), + [sym_visibility_modifier] = STATE(1353), + [sym_bracketed_type] = STATE(2391), + [sym_generic_type_with_turbofish] = STATE(2388), + [sym_macro_invocation] = STATE(256), + [sym_scoped_identifier] = STATE(2260), + [aux_sym_declaration_list_repeat1] = STATE(256), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_macro_rules_BANG] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(995), + [anon_sym_i8] = ACTIONS(995), + [anon_sym_u16] = ACTIONS(995), + [anon_sym_i16] = ACTIONS(995), + [anon_sym_u32] = ACTIONS(995), + [anon_sym_i32] = ACTIONS(995), + [anon_sym_u64] = ACTIONS(995), + [anon_sym_i64] = ACTIONS(995), + [anon_sym_u128] = ACTIONS(995), + [anon_sym_i128] = ACTIONS(995), + [anon_sym_isize] = ACTIONS(995), + [anon_sym_usize] = ACTIONS(995), + [anon_sym_f32] = ACTIONS(995), + [anon_sym_f64] = ACTIONS(995), + [anon_sym_bool] = ACTIONS(995), + [anon_sym_str] = ACTIONS(995), + [anon_sym_char] = ACTIONS(995), + [anon_sym_async] = ACTIONS(998), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_fn] = ACTIONS(1010), + [anon_sym_impl] = ACTIONS(1013), + [anon_sym_let] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1019), + [anon_sym_pub] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1025), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_trait] = ACTIONS(1031), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1040), + [anon_sym_use] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(1046), + [anon_sym_extern] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1052), + [anon_sym_COLON_COLON] = ACTIONS(1055), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1058), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1061), + [sym_metavariable] = ACTIONS(1064), [sym_block_comment] = ACTIONS(3), }, - [250] = { - [sym_empty_statement] = STATE(248), - [sym_macro_definition] = STATE(248), - [sym_attribute_item] = STATE(248), - [sym_inner_attribute_item] = STATE(248), - [sym_mod_item] = STATE(248), - [sym_foreign_mod_item] = STATE(248), - [sym_struct_item] = STATE(248), - [sym_union_item] = STATE(248), - [sym_enum_item] = STATE(248), - [sym_extern_crate_declaration] = STATE(248), - [sym_const_item] = STATE(248), - [sym_static_item] = STATE(248), - [sym_type_item] = STATE(248), - [sym_function_item] = STATE(248), - [sym_function_signature_item] = STATE(248), - [sym_function_modifiers] = STATE(2548), - [sym_impl_item] = STATE(248), - [sym_trait_item] = STATE(248), - [sym_associated_type] = STATE(248), - [sym_let_declaration] = STATE(248), - [sym_use_declaration] = STATE(248), - [sym_extern_modifier] = STATE(1533), - [sym_visibility_modifier] = STATE(1351), - [sym_bracketed_type] = STATE(2362), - [sym_generic_type_with_turbofish] = STATE(2357), - [sym_macro_invocation] = STATE(248), - [sym_scoped_identifier] = STATE(2273), - [aux_sym_declaration_list_repeat1] = STATE(248), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_macro_rules_BANG] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(1005), - [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), + [257] = { + [sym_empty_statement] = STATE(256), + [sym_macro_definition] = STATE(256), + [sym_attribute_item] = STATE(256), + [sym_inner_attribute_item] = STATE(256), + [sym_mod_item] = STATE(256), + [sym_foreign_mod_item] = STATE(256), + [sym_struct_item] = STATE(256), + [sym_union_item] = STATE(256), + [sym_enum_item] = STATE(256), + [sym_extern_crate_declaration] = STATE(256), + [sym_const_item] = STATE(256), + [sym_static_item] = STATE(256), + [sym_type_item] = STATE(256), + [sym_function_item] = STATE(256), + [sym_function_signature_item] = STATE(256), + [sym_function_modifiers] = STATE(2564), + [sym_impl_item] = STATE(256), + [sym_trait_item] = STATE(256), + [sym_associated_type] = STATE(256), + [sym_let_declaration] = STATE(256), + [sym_use_declaration] = STATE(256), + [sym_extern_modifier] = STATE(1548), + [sym_visibility_modifier] = STATE(1353), + [sym_bracketed_type] = STATE(2391), + [sym_generic_type_with_turbofish] = STATE(2388), + [sym_macro_invocation] = STATE(256), + [sym_scoped_identifier] = STATE(2260), + [aux_sym_declaration_list_repeat1] = STATE(256), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(936), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_macro_rules_BANG] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(1067), + [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_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(934), - [anon_sym_default] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(938), - [anon_sym_fn] = ACTIONS(940), - [anon_sym_impl] = ACTIONS(942), - [anon_sym_let] = ACTIONS(944), - [anon_sym_mod] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [anon_sym_default] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(950), + [anon_sym_fn] = ACTIONS(952), + [anon_sym_impl] = ACTIONS(954), + [anon_sym_let] = ACTIONS(956), + [anon_sym_mod] = ACTIONS(958), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_trait] = ACTIONS(952), - [anon_sym_type] = ACTIONS(954), - [anon_sym_union] = ACTIONS(956), - [anon_sym_unsafe] = ACTIONS(958), - [anon_sym_use] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(964), + [anon_sym_static] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(962), + [anon_sym_trait] = ACTIONS(964), + [anon_sym_type] = ACTIONS(966), + [anon_sym_union] = ACTIONS(968), + [anon_sym_unsafe] = ACTIONS(970), + [anon_sym_use] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(976), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(888), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(968), - [sym_super] = ACTIONS(968), - [sym_crate] = ACTIONS(970), - [sym_metavariable] = ACTIONS(972), + [sym_self] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_crate] = ACTIONS(980), + [sym_metavariable] = ACTIONS(982), [sym_block_comment] = ACTIONS(3), }, - [251] = { - [sym_empty_statement] = STATE(253), - [sym_macro_definition] = STATE(253), - [sym_attribute_item] = STATE(253), - [sym_inner_attribute_item] = STATE(253), - [sym_mod_item] = STATE(253), - [sym_foreign_mod_item] = STATE(253), - [sym_struct_item] = STATE(253), - [sym_union_item] = STATE(253), - [sym_enum_item] = STATE(253), - [sym_extern_crate_declaration] = STATE(253), - [sym_const_item] = STATE(253), - [sym_static_item] = STATE(253), - [sym_type_item] = STATE(253), - [sym_function_item] = STATE(253), - [sym_function_signature_item] = STATE(253), - [sym_function_modifiers] = STATE(2548), - [sym_impl_item] = STATE(253), - [sym_trait_item] = STATE(253), - [sym_associated_type] = STATE(253), - [sym_let_declaration] = STATE(253), - [sym_use_declaration] = STATE(253), - [sym_extern_modifier] = STATE(1533), - [sym_visibility_modifier] = STATE(1351), - [sym_bracketed_type] = STATE(2362), - [sym_generic_type_with_turbofish] = STATE(2357), - [sym_macro_invocation] = STATE(253), - [sym_scoped_identifier] = STATE(2273), - [aux_sym_declaration_list_repeat1] = STATE(253), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_macro_rules_BANG] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(1007), - [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), + [258] = { + [sym_empty_statement] = STATE(259), + [sym_macro_definition] = STATE(259), + [sym_attribute_item] = STATE(259), + [sym_inner_attribute_item] = STATE(259), + [sym_mod_item] = STATE(259), + [sym_foreign_mod_item] = STATE(259), + [sym_struct_item] = STATE(259), + [sym_union_item] = STATE(259), + [sym_enum_item] = STATE(259), + [sym_extern_crate_declaration] = STATE(259), + [sym_const_item] = STATE(259), + [sym_static_item] = STATE(259), + [sym_type_item] = STATE(259), + [sym_function_item] = STATE(259), + [sym_function_signature_item] = STATE(259), + [sym_function_modifiers] = STATE(2564), + [sym_impl_item] = STATE(259), + [sym_trait_item] = STATE(259), + [sym_associated_type] = STATE(259), + [sym_let_declaration] = STATE(259), + [sym_use_declaration] = STATE(259), + [sym_extern_modifier] = STATE(1548), + [sym_visibility_modifier] = STATE(1353), + [sym_bracketed_type] = STATE(2391), + [sym_generic_type_with_turbofish] = STATE(2388), + [sym_macro_invocation] = STATE(259), + [sym_scoped_identifier] = STATE(2260), + [aux_sym_declaration_list_repeat1] = STATE(259), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(936), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_macro_rules_BANG] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(1069), + [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_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(934), - [anon_sym_default] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(938), - [anon_sym_fn] = ACTIONS(940), - [anon_sym_impl] = ACTIONS(942), - [anon_sym_let] = ACTIONS(944), - [anon_sym_mod] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [anon_sym_default] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(950), + [anon_sym_fn] = ACTIONS(952), + [anon_sym_impl] = ACTIONS(954), + [anon_sym_let] = ACTIONS(956), + [anon_sym_mod] = ACTIONS(958), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_trait] = ACTIONS(952), - [anon_sym_type] = ACTIONS(954), - [anon_sym_union] = ACTIONS(956), - [anon_sym_unsafe] = ACTIONS(958), - [anon_sym_use] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(964), + [anon_sym_static] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(962), + [anon_sym_trait] = ACTIONS(964), + [anon_sym_type] = ACTIONS(966), + [anon_sym_union] = ACTIONS(968), + [anon_sym_unsafe] = ACTIONS(970), + [anon_sym_use] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(976), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(888), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(968), - [sym_super] = ACTIONS(968), - [sym_crate] = ACTIONS(970), - [sym_metavariable] = ACTIONS(972), - [sym_block_comment] = ACTIONS(3), - }, - [252] = { - [sym_empty_statement] = STATE(252), - [sym_macro_definition] = STATE(252), - [sym_attribute_item] = STATE(252), - [sym_inner_attribute_item] = STATE(252), - [sym_mod_item] = STATE(252), - [sym_foreign_mod_item] = STATE(252), - [sym_struct_item] = STATE(252), - [sym_union_item] = STATE(252), - [sym_enum_item] = STATE(252), - [sym_extern_crate_declaration] = STATE(252), - [sym_const_item] = STATE(252), - [sym_static_item] = STATE(252), - [sym_type_item] = STATE(252), - [sym_function_item] = STATE(252), - [sym_function_signature_item] = STATE(252), - [sym_function_modifiers] = STATE(2548), - [sym_impl_item] = STATE(252), - [sym_trait_item] = STATE(252), - [sym_associated_type] = STATE(252), - [sym_let_declaration] = STATE(252), - [sym_use_declaration] = STATE(252), - [sym_extern_modifier] = STATE(1533), - [sym_visibility_modifier] = STATE(1351), - [sym_bracketed_type] = STATE(2362), - [sym_generic_type_with_turbofish] = STATE(2357), - [sym_macro_invocation] = STATE(252), - [sym_scoped_identifier] = STATE(2273), - [aux_sym_declaration_list_repeat1] = STATE(252), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_macro_rules_BANG] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_u8] = ACTIONS(1020), - [anon_sym_i8] = ACTIONS(1020), - [anon_sym_u16] = ACTIONS(1020), - [anon_sym_i16] = ACTIONS(1020), - [anon_sym_u32] = ACTIONS(1020), - [anon_sym_i32] = ACTIONS(1020), - [anon_sym_u64] = ACTIONS(1020), - [anon_sym_i64] = ACTIONS(1020), - [anon_sym_u128] = ACTIONS(1020), - [anon_sym_i128] = ACTIONS(1020), - [anon_sym_isize] = ACTIONS(1020), - [anon_sym_usize] = ACTIONS(1020), - [anon_sym_f32] = ACTIONS(1020), - [anon_sym_f64] = ACTIONS(1020), - [anon_sym_bool] = ACTIONS(1020), - [anon_sym_str] = ACTIONS(1020), - [anon_sym_char] = ACTIONS(1020), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_const] = ACTIONS(1026), - [anon_sym_default] = ACTIONS(1029), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_fn] = ACTIONS(1035), - [anon_sym_impl] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1044), - [anon_sym_pub] = ACTIONS(1047), - [anon_sym_static] = ACTIONS(1050), - [anon_sym_struct] = ACTIONS(1053), - [anon_sym_trait] = ACTIONS(1056), - [anon_sym_type] = ACTIONS(1059), - [anon_sym_union] = ACTIONS(1062), - [anon_sym_unsafe] = ACTIONS(1065), - [anon_sym_use] = ACTIONS(1068), - [anon_sym_POUND] = ACTIONS(1071), - [anon_sym_extern] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(1080), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1083), - [sym_super] = ACTIONS(1083), - [sym_crate] = ACTIONS(1086), - [sym_metavariable] = ACTIONS(1089), + [sym_self] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_crate] = ACTIONS(980), + [sym_metavariable] = ACTIONS(982), [sym_block_comment] = ACTIONS(3), }, - [253] = { - [sym_empty_statement] = STATE(252), - [sym_macro_definition] = STATE(252), - [sym_attribute_item] = STATE(252), - [sym_inner_attribute_item] = STATE(252), - [sym_mod_item] = STATE(252), - [sym_foreign_mod_item] = STATE(252), - [sym_struct_item] = STATE(252), - [sym_union_item] = STATE(252), - [sym_enum_item] = STATE(252), - [sym_extern_crate_declaration] = STATE(252), - [sym_const_item] = STATE(252), - [sym_static_item] = STATE(252), - [sym_type_item] = STATE(252), - [sym_function_item] = STATE(252), - [sym_function_signature_item] = STATE(252), - [sym_function_modifiers] = STATE(2548), - [sym_impl_item] = STATE(252), - [sym_trait_item] = STATE(252), - [sym_associated_type] = STATE(252), - [sym_let_declaration] = STATE(252), - [sym_use_declaration] = STATE(252), - [sym_extern_modifier] = STATE(1533), - [sym_visibility_modifier] = STATE(1351), - [sym_bracketed_type] = STATE(2362), - [sym_generic_type_with_turbofish] = STATE(2357), - [sym_macro_invocation] = STATE(252), - [sym_scoped_identifier] = STATE(2273), - [aux_sym_declaration_list_repeat1] = STATE(252), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_macro_rules_BANG] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(1092), - [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), + [259] = { + [sym_empty_statement] = STATE(256), + [sym_macro_definition] = STATE(256), + [sym_attribute_item] = STATE(256), + [sym_inner_attribute_item] = STATE(256), + [sym_mod_item] = STATE(256), + [sym_foreign_mod_item] = STATE(256), + [sym_struct_item] = STATE(256), + [sym_union_item] = STATE(256), + [sym_enum_item] = STATE(256), + [sym_extern_crate_declaration] = STATE(256), + [sym_const_item] = STATE(256), + [sym_static_item] = STATE(256), + [sym_type_item] = STATE(256), + [sym_function_item] = STATE(256), + [sym_function_signature_item] = STATE(256), + [sym_function_modifiers] = STATE(2564), + [sym_impl_item] = STATE(256), + [sym_trait_item] = STATE(256), + [sym_associated_type] = STATE(256), + [sym_let_declaration] = STATE(256), + [sym_use_declaration] = STATE(256), + [sym_extern_modifier] = STATE(1548), + [sym_visibility_modifier] = STATE(1353), + [sym_bracketed_type] = STATE(2391), + [sym_generic_type_with_turbofish] = STATE(2388), + [sym_macro_invocation] = STATE(256), + [sym_scoped_identifier] = STATE(2260), + [aux_sym_declaration_list_repeat1] = STATE(256), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(936), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_macro_rules_BANG] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(1071), + [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_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(934), - [anon_sym_default] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(938), - [anon_sym_fn] = ACTIONS(940), - [anon_sym_impl] = ACTIONS(942), - [anon_sym_let] = ACTIONS(944), - [anon_sym_mod] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [anon_sym_default] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(950), + [anon_sym_fn] = ACTIONS(952), + [anon_sym_impl] = ACTIONS(954), + [anon_sym_let] = ACTIONS(956), + [anon_sym_mod] = ACTIONS(958), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_trait] = ACTIONS(952), - [anon_sym_type] = ACTIONS(954), - [anon_sym_union] = ACTIONS(956), - [anon_sym_unsafe] = ACTIONS(958), - [anon_sym_use] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(964), + [anon_sym_static] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(962), + [anon_sym_trait] = ACTIONS(964), + [anon_sym_type] = ACTIONS(966), + [anon_sym_union] = ACTIONS(968), + [anon_sym_unsafe] = ACTIONS(970), + [anon_sym_use] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(976), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(888), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(968), - [sym_super] = ACTIONS(968), - [sym_crate] = ACTIONS(970), - [sym_metavariable] = ACTIONS(972), + [sym_self] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_crate] = ACTIONS(980), + [sym_metavariable] = ACTIONS(982), [sym_block_comment] = ACTIONS(3), }, - [254] = { - [ts_builtin_sym_end] = ACTIONS(1094), - [sym_identifier] = ACTIONS(1096), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_macro_rules_BANG] = ACTIONS(1094), - [anon_sym_LPAREN] = ACTIONS(1094), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_RBRACE] = ACTIONS(1094), - [anon_sym_LBRACK] = ACTIONS(1094), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_u8] = ACTIONS(1096), - [anon_sym_i8] = ACTIONS(1096), - [anon_sym_u16] = ACTIONS(1096), - [anon_sym_i16] = ACTIONS(1096), - [anon_sym_u32] = ACTIONS(1096), - [anon_sym_i32] = ACTIONS(1096), - [anon_sym_u64] = ACTIONS(1096), - [anon_sym_i64] = ACTIONS(1096), - [anon_sym_u128] = ACTIONS(1096), - [anon_sym_i128] = ACTIONS(1096), - [anon_sym_isize] = ACTIONS(1096), - [anon_sym_usize] = ACTIONS(1096), - [anon_sym_f32] = ACTIONS(1096), - [anon_sym_f64] = ACTIONS(1096), - [anon_sym_bool] = ACTIONS(1096), - [anon_sym_str] = ACTIONS(1096), - [anon_sym_char] = ACTIONS(1096), - [anon_sym_SQUOTE] = ACTIONS(1096), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1096), - [anon_sym_enum] = ACTIONS(1096), - [anon_sym_fn] = ACTIONS(1096), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_impl] = ACTIONS(1096), - [anon_sym_let] = ACTIONS(1096), - [anon_sym_loop] = ACTIONS(1096), - [anon_sym_match] = ACTIONS(1096), - [anon_sym_mod] = ACTIONS(1096), - [anon_sym_pub] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_static] = ACTIONS(1096), - [anon_sym_struct] = ACTIONS(1096), - [anon_sym_trait] = ACTIONS(1096), - [anon_sym_type] = ACTIONS(1096), - [anon_sym_union] = ACTIONS(1096), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1096), - [anon_sym_while] = ACTIONS(1096), - [anon_sym_POUND] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_extern] = ACTIONS(1096), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_COLON_COLON] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_DOT_DOT] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_yield] = ACTIONS(1096), - [anon_sym_move] = ACTIONS(1096), - [sym_integer_literal] = ACTIONS(1094), - [aux_sym_string_literal_token1] = ACTIONS(1094), - [sym_char_literal] = ACTIONS(1094), + [260] = { + [sym__token_pattern] = STATE(260), + [sym_token_tree_pattern] = STATE(260), + [sym_token_binding_pattern] = STATE(260), + [sym_token_repetition_pattern] = STATE(260), + [sym__literal] = STATE(260), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(1073), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1084), + [anon_sym_RBRACK] = ACTIONS(1079), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_u8] = ACTIONS(1073), + [anon_sym_i8] = ACTIONS(1073), + [anon_sym_u16] = ACTIONS(1073), + [anon_sym_i16] = ACTIONS(1073), + [anon_sym_u32] = ACTIONS(1073), + [anon_sym_i32] = ACTIONS(1073), + [anon_sym_u64] = ACTIONS(1073), + [anon_sym_i64] = ACTIONS(1073), + [anon_sym_u128] = ACTIONS(1073), + [anon_sym_i128] = ACTIONS(1073), + [anon_sym_isize] = ACTIONS(1073), + [anon_sym_usize] = ACTIONS(1073), + [anon_sym_f32] = ACTIONS(1073), + [anon_sym_f64] = ACTIONS(1073), + [anon_sym_bool] = ACTIONS(1073), + [anon_sym_str] = ACTIONS(1073), + [anon_sym_char] = ACTIONS(1073), + [aux_sym__non_special_token_token1] = ACTIONS(1073), + [anon_sym_SQUOTE] = ACTIONS(1073), + [anon_sym_as] = ACTIONS(1073), + [anon_sym_async] = ACTIONS(1073), + [anon_sym_await] = ACTIONS(1073), + [anon_sym_break] = ACTIONS(1073), + [anon_sym_const] = ACTIONS(1073), + [anon_sym_continue] = ACTIONS(1073), + [anon_sym_default] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1073), + [anon_sym_fn] = ACTIONS(1073), + [anon_sym_for] = ACTIONS(1073), + [anon_sym_if] = ACTIONS(1073), + [anon_sym_impl] = ACTIONS(1073), + [anon_sym_let] = ACTIONS(1073), + [anon_sym_loop] = ACTIONS(1073), + [anon_sym_match] = ACTIONS(1073), + [anon_sym_mod] = ACTIONS(1073), + [anon_sym_pub] = ACTIONS(1073), + [anon_sym_return] = ACTIONS(1073), + [anon_sym_static] = ACTIONS(1073), + [anon_sym_struct] = ACTIONS(1073), + [anon_sym_trait] = ACTIONS(1073), + [anon_sym_type] = ACTIONS(1073), + [anon_sym_union] = ACTIONS(1073), + [anon_sym_unsafe] = ACTIONS(1073), + [anon_sym_use] = ACTIONS(1073), + [anon_sym_where] = ACTIONS(1073), + [anon_sym_while] = ACTIONS(1073), + [sym_mutable_specifier] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1090), + [aux_sym_string_literal_token1] = ACTIONS(1093), + [sym_char_literal] = ACTIONS(1090), [anon_sym_true] = ACTIONS(1096), [anon_sym_false] = ACTIONS(1096), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1096), - [sym_super] = ACTIONS(1096), - [sym_crate] = ACTIONS(1096), - [sym_metavariable] = ACTIONS(1094), - [sym_raw_string_literal] = ACTIONS(1094), - [sym_float_literal] = ACTIONS(1094), - [sym_block_comment] = ACTIONS(3), - }, - [255] = { - [ts_builtin_sym_end] = ACTIONS(1098), - [sym_identifier] = ACTIONS(1100), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_macro_rules_BANG] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_u8] = ACTIONS(1100), - [anon_sym_i8] = ACTIONS(1100), - [anon_sym_u16] = ACTIONS(1100), - [anon_sym_i16] = ACTIONS(1100), - [anon_sym_u32] = ACTIONS(1100), - [anon_sym_i32] = ACTIONS(1100), - [anon_sym_u64] = ACTIONS(1100), - [anon_sym_i64] = ACTIONS(1100), - [anon_sym_u128] = ACTIONS(1100), - [anon_sym_i128] = ACTIONS(1100), - [anon_sym_isize] = ACTIONS(1100), - [anon_sym_usize] = ACTIONS(1100), - [anon_sym_f32] = ACTIONS(1100), - [anon_sym_f64] = ACTIONS(1100), - [anon_sym_bool] = ACTIONS(1100), - [anon_sym_str] = ACTIONS(1100), - [anon_sym_char] = ACTIONS(1100), - [anon_sym_SQUOTE] = ACTIONS(1100), - [anon_sym_async] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_const] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_impl] = ACTIONS(1100), - [anon_sym_let] = ACTIONS(1100), - [anon_sym_loop] = ACTIONS(1100), - [anon_sym_match] = ACTIONS(1100), - [anon_sym_mod] = ACTIONS(1100), - [anon_sym_pub] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_trait] = ACTIONS(1100), - [anon_sym_type] = ACTIONS(1100), - [anon_sym_union] = ACTIONS(1100), - [anon_sym_unsafe] = ACTIONS(1100), - [anon_sym_use] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_POUND] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1098), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_COLON_COLON] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_DOT_DOT] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_yield] = ACTIONS(1100), - [anon_sym_move] = ACTIONS(1100), - [sym_integer_literal] = ACTIONS(1098), - [aux_sym_string_literal_token1] = ACTIONS(1098), - [sym_char_literal] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1100), - [sym_super] = ACTIONS(1100), - [sym_crate] = ACTIONS(1100), - [sym_metavariable] = ACTIONS(1098), - [sym_raw_string_literal] = ACTIONS(1098), - [sym_float_literal] = ACTIONS(1098), - [sym_block_comment] = ACTIONS(3), - }, - [256] = { - [ts_builtin_sym_end] = ACTIONS(1102), - [sym_identifier] = ACTIONS(1104), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_macro_rules_BANG] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_u8] = ACTIONS(1104), - [anon_sym_i8] = ACTIONS(1104), - [anon_sym_u16] = ACTIONS(1104), - [anon_sym_i16] = ACTIONS(1104), - [anon_sym_u32] = ACTIONS(1104), - [anon_sym_i32] = ACTIONS(1104), - [anon_sym_u64] = ACTIONS(1104), - [anon_sym_i64] = ACTIONS(1104), - [anon_sym_u128] = ACTIONS(1104), - [anon_sym_i128] = ACTIONS(1104), - [anon_sym_isize] = ACTIONS(1104), - [anon_sym_usize] = ACTIONS(1104), - [anon_sym_f32] = ACTIONS(1104), - [anon_sym_f64] = ACTIONS(1104), - [anon_sym_bool] = ACTIONS(1104), - [anon_sym_str] = ACTIONS(1104), - [anon_sym_char] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1104), - [anon_sym_async] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_fn] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_impl] = ACTIONS(1104), - [anon_sym_let] = ACTIONS(1104), - [anon_sym_loop] = ACTIONS(1104), - [anon_sym_match] = ACTIONS(1104), - [anon_sym_mod] = ACTIONS(1104), - [anon_sym_pub] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_trait] = ACTIONS(1104), - [anon_sym_type] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_unsafe] = ACTIONS(1104), - [anon_sym_use] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_POUND] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_COLON_COLON] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_DOT_DOT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_PIPE] = ACTIONS(1102), - [anon_sym_yield] = ACTIONS(1104), - [anon_sym_move] = ACTIONS(1104), - [sym_integer_literal] = ACTIONS(1102), - [aux_sym_string_literal_token1] = ACTIONS(1102), - [sym_char_literal] = ACTIONS(1102), - [anon_sym_true] = ACTIONS(1104), - [anon_sym_false] = ACTIONS(1104), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1104), - [sym_super] = ACTIONS(1104), - [sym_crate] = ACTIONS(1104), - [sym_metavariable] = ACTIONS(1102), - [sym_raw_string_literal] = ACTIONS(1102), - [sym_float_literal] = ACTIONS(1102), - [sym_block_comment] = ACTIONS(3), - }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(1106), - [sym_identifier] = ACTIONS(1108), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_macro_rules_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_RBRACE] = ACTIONS(1106), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_u8] = ACTIONS(1108), - [anon_sym_i8] = ACTIONS(1108), - [anon_sym_u16] = ACTIONS(1108), - [anon_sym_i16] = ACTIONS(1108), - [anon_sym_u32] = ACTIONS(1108), - [anon_sym_i32] = ACTIONS(1108), - [anon_sym_u64] = ACTIONS(1108), - [anon_sym_i64] = ACTIONS(1108), - [anon_sym_u128] = ACTIONS(1108), - [anon_sym_i128] = ACTIONS(1108), - [anon_sym_isize] = ACTIONS(1108), - [anon_sym_usize] = ACTIONS(1108), - [anon_sym_f32] = ACTIONS(1108), - [anon_sym_f64] = ACTIONS(1108), - [anon_sym_bool] = ACTIONS(1108), - [anon_sym_str] = ACTIONS(1108), - [anon_sym_char] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_async] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_const] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_fn] = ACTIONS(1108), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_let] = ACTIONS(1108), - [anon_sym_loop] = ACTIONS(1108), - [anon_sym_match] = ACTIONS(1108), - [anon_sym_mod] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_struct] = ACTIONS(1108), - [anon_sym_trait] = ACTIONS(1108), - [anon_sym_type] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1108), - [anon_sym_unsafe] = ACTIONS(1108), - [anon_sym_use] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_POUND] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_COLON_COLON] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_PIPE] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(1108), - [anon_sym_move] = ACTIONS(1108), - [sym_integer_literal] = ACTIONS(1106), - [aux_sym_string_literal_token1] = ACTIONS(1106), - [sym_char_literal] = ACTIONS(1106), - [anon_sym_true] = ACTIONS(1108), - [anon_sym_false] = ACTIONS(1108), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1108), - [sym_super] = ACTIONS(1108), - [sym_crate] = ACTIONS(1108), - [sym_metavariable] = ACTIONS(1106), - [sym_raw_string_literal] = ACTIONS(1106), - [sym_float_literal] = ACTIONS(1106), - [sym_block_comment] = ACTIONS(3), - }, - [258] = { - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_macro_rules_BANG] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1110), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_RBRACE] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1110), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_u8] = ACTIONS(1112), - [anon_sym_i8] = ACTIONS(1112), - [anon_sym_u16] = ACTIONS(1112), - [anon_sym_i16] = ACTIONS(1112), - [anon_sym_u32] = ACTIONS(1112), - [anon_sym_i32] = ACTIONS(1112), - [anon_sym_u64] = ACTIONS(1112), - [anon_sym_i64] = ACTIONS(1112), - [anon_sym_u128] = ACTIONS(1112), - [anon_sym_i128] = ACTIONS(1112), - [anon_sym_isize] = ACTIONS(1112), - [anon_sym_usize] = ACTIONS(1112), - [anon_sym_f32] = ACTIONS(1112), - [anon_sym_f64] = ACTIONS(1112), - [anon_sym_bool] = ACTIONS(1112), - [anon_sym_str] = ACTIONS(1112), - [anon_sym_char] = ACTIONS(1112), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_fn] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_impl] = ACTIONS(1112), - [anon_sym_let] = ACTIONS(1112), - [anon_sym_loop] = ACTIONS(1112), - [anon_sym_match] = ACTIONS(1112), - [anon_sym_mod] = ACTIONS(1112), - [anon_sym_pub] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_trait] = ACTIONS(1112), - [anon_sym_type] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_unsafe] = ACTIONS(1112), - [anon_sym_use] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_POUND] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_LT] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_DOT_DOT] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_PIPE] = ACTIONS(1110), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_move] = ACTIONS(1112), - [sym_integer_literal] = ACTIONS(1110), - [aux_sym_string_literal_token1] = ACTIONS(1110), - [sym_char_literal] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1112), - [anon_sym_false] = ACTIONS(1112), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1112), - [sym_super] = ACTIONS(1112), - [sym_crate] = ACTIONS(1112), - [sym_metavariable] = ACTIONS(1110), - [sym_raw_string_literal] = ACTIONS(1110), - [sym_float_literal] = ACTIONS(1110), - [sym_block_comment] = ACTIONS(3), - }, - [259] = { - [ts_builtin_sym_end] = ACTIONS(1114), - [sym_identifier] = ACTIONS(1116), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_macro_rules_BANG] = ACTIONS(1114), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_RBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_u8] = ACTIONS(1116), - [anon_sym_i8] = ACTIONS(1116), - [anon_sym_u16] = ACTIONS(1116), - [anon_sym_i16] = ACTIONS(1116), - [anon_sym_u32] = ACTIONS(1116), - [anon_sym_i32] = ACTIONS(1116), - [anon_sym_u64] = ACTIONS(1116), - [anon_sym_i64] = ACTIONS(1116), - [anon_sym_u128] = ACTIONS(1116), - [anon_sym_i128] = ACTIONS(1116), - [anon_sym_isize] = ACTIONS(1116), - [anon_sym_usize] = ACTIONS(1116), - [anon_sym_f32] = ACTIONS(1116), - [anon_sym_f64] = ACTIONS(1116), - [anon_sym_bool] = ACTIONS(1116), - [anon_sym_str] = ACTIONS(1116), - [anon_sym_char] = ACTIONS(1116), - [anon_sym_SQUOTE] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_fn] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_impl] = ACTIONS(1116), - [anon_sym_let] = ACTIONS(1116), - [anon_sym_loop] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_mod] = ACTIONS(1116), - [anon_sym_pub] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_trait] = ACTIONS(1116), - [anon_sym_type] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_unsafe] = ACTIONS(1116), - [anon_sym_use] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_POUND] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(1114), - [anon_sym_COLON_COLON] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_DOT_DOT] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1114), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_yield] = ACTIONS(1116), - [anon_sym_move] = ACTIONS(1116), - [sym_integer_literal] = ACTIONS(1114), - [aux_sym_string_literal_token1] = ACTIONS(1114), - [sym_char_literal] = ACTIONS(1114), - [anon_sym_true] = ACTIONS(1116), - [anon_sym_false] = ACTIONS(1116), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1116), - [sym_super] = ACTIONS(1116), - [sym_crate] = ACTIONS(1116), - [sym_metavariable] = ACTIONS(1114), - [sym_raw_string_literal] = ACTIONS(1114), - [sym_float_literal] = ACTIONS(1114), - [sym_block_comment] = ACTIONS(3), - }, - [260] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1120), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_macro_rules_BANG] = ACTIONS(1118), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_RBRACE] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_u8] = ACTIONS(1120), - [anon_sym_i8] = ACTIONS(1120), - [anon_sym_u16] = ACTIONS(1120), - [anon_sym_i16] = ACTIONS(1120), - [anon_sym_u32] = ACTIONS(1120), - [anon_sym_i32] = ACTIONS(1120), - [anon_sym_u64] = ACTIONS(1120), - [anon_sym_i64] = ACTIONS(1120), - [anon_sym_u128] = ACTIONS(1120), - [anon_sym_i128] = ACTIONS(1120), - [anon_sym_isize] = ACTIONS(1120), - [anon_sym_usize] = ACTIONS(1120), - [anon_sym_f32] = ACTIONS(1120), - [anon_sym_f64] = ACTIONS(1120), - [anon_sym_bool] = ACTIONS(1120), - [anon_sym_str] = ACTIONS(1120), - [anon_sym_char] = ACTIONS(1120), - [anon_sym_SQUOTE] = ACTIONS(1120), - [anon_sym_async] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_default] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1120), - [anon_sym_fn] = ACTIONS(1120), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_impl] = ACTIONS(1120), - [anon_sym_let] = ACTIONS(1120), - [anon_sym_loop] = ACTIONS(1120), - [anon_sym_match] = ACTIONS(1120), - [anon_sym_mod] = ACTIONS(1120), - [anon_sym_pub] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_struct] = ACTIONS(1120), - [anon_sym_trait] = ACTIONS(1120), - [anon_sym_type] = ACTIONS(1120), - [anon_sym_union] = ACTIONS(1120), - [anon_sym_unsafe] = ACTIONS(1120), - [anon_sym_use] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_POUND] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1118), - [anon_sym_COLON_COLON] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_DOT_DOT] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1118), - [anon_sym_PIPE] = ACTIONS(1118), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_move] = ACTIONS(1120), - [sym_integer_literal] = ACTIONS(1118), - [aux_sym_string_literal_token1] = ACTIONS(1118), - [sym_char_literal] = ACTIONS(1118), - [anon_sym_true] = ACTIONS(1120), - [anon_sym_false] = ACTIONS(1120), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1120), - [sym_super] = ACTIONS(1120), - [sym_crate] = ACTIONS(1120), - [sym_metavariable] = ACTIONS(1118), - [sym_raw_string_literal] = ACTIONS(1118), - [sym_float_literal] = ACTIONS(1118), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(1073), + [sym_super] = ACTIONS(1073), + [sym_crate] = ACTIONS(1073), + [sym_metavariable] = ACTIONS(1101), + [sym_raw_string_literal] = ACTIONS(1090), + [sym_float_literal] = ACTIONS(1090), [sym_block_comment] = ACTIONS(3), }, [261] = { - [ts_builtin_sym_end] = ACTIONS(1122), - [sym_identifier] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_macro_rules_BANG] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(1122), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(1122), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_STAR] = ACTIONS(1122), - [anon_sym_u8] = ACTIONS(1124), - [anon_sym_i8] = ACTIONS(1124), - [anon_sym_u16] = ACTIONS(1124), - [anon_sym_i16] = ACTIONS(1124), - [anon_sym_u32] = ACTIONS(1124), - [anon_sym_i32] = ACTIONS(1124), - [anon_sym_u64] = ACTIONS(1124), - [anon_sym_i64] = ACTIONS(1124), - [anon_sym_u128] = ACTIONS(1124), - [anon_sym_i128] = ACTIONS(1124), - [anon_sym_isize] = ACTIONS(1124), - [anon_sym_usize] = ACTIONS(1124), - [anon_sym_f32] = ACTIONS(1124), - [anon_sym_f64] = ACTIONS(1124), - [anon_sym_bool] = ACTIONS(1124), - [anon_sym_str] = ACTIONS(1124), - [anon_sym_char] = ACTIONS(1124), - [anon_sym_SQUOTE] = ACTIONS(1124), - [anon_sym_async] = ACTIONS(1124), - [anon_sym_break] = ACTIONS(1124), - [anon_sym_const] = ACTIONS(1124), - [anon_sym_continue] = ACTIONS(1124), - [anon_sym_default] = ACTIONS(1124), - [anon_sym_enum] = ACTIONS(1124), - [anon_sym_fn] = ACTIONS(1124), - [anon_sym_for] = ACTIONS(1124), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_impl] = ACTIONS(1124), - [anon_sym_let] = ACTIONS(1124), - [anon_sym_loop] = ACTIONS(1124), - [anon_sym_match] = ACTIONS(1124), - [anon_sym_mod] = ACTIONS(1124), - [anon_sym_pub] = ACTIONS(1124), - [anon_sym_return] = ACTIONS(1124), - [anon_sym_static] = ACTIONS(1124), - [anon_sym_struct] = ACTIONS(1124), - [anon_sym_trait] = ACTIONS(1124), - [anon_sym_type] = ACTIONS(1124), - [anon_sym_union] = ACTIONS(1124), - [anon_sym_unsafe] = ACTIONS(1124), - [anon_sym_use] = ACTIONS(1124), - [anon_sym_while] = ACTIONS(1124), - [anon_sym_POUND] = ACTIONS(1122), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_extern] = ACTIONS(1124), - [anon_sym_LT] = ACTIONS(1122), - [anon_sym_COLON_COLON] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_DOT_DOT] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1122), - [anon_sym_yield] = ACTIONS(1124), - [anon_sym_move] = ACTIONS(1124), - [sym_integer_literal] = ACTIONS(1122), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1122), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1124), - [sym_super] = ACTIONS(1124), - [sym_crate] = ACTIONS(1124), - [sym_metavariable] = ACTIONS(1122), - [sym_raw_string_literal] = ACTIONS(1122), - [sym_float_literal] = ACTIONS(1122), + [ts_builtin_sym_end] = ACTIONS(1104), + [sym_identifier] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym_macro_rules_BANG] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1104), + [anon_sym_u8] = ACTIONS(1106), + [anon_sym_i8] = ACTIONS(1106), + [anon_sym_u16] = ACTIONS(1106), + [anon_sym_i16] = ACTIONS(1106), + [anon_sym_u32] = ACTIONS(1106), + [anon_sym_i32] = ACTIONS(1106), + [anon_sym_u64] = ACTIONS(1106), + [anon_sym_i64] = ACTIONS(1106), + [anon_sym_u128] = ACTIONS(1106), + [anon_sym_i128] = ACTIONS(1106), + [anon_sym_isize] = ACTIONS(1106), + [anon_sym_usize] = ACTIONS(1106), + [anon_sym_f32] = ACTIONS(1106), + [anon_sym_f64] = ACTIONS(1106), + [anon_sym_bool] = ACTIONS(1106), + [anon_sym_str] = ACTIONS(1106), + [anon_sym_char] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_async] = ACTIONS(1106), + [anon_sym_break] = ACTIONS(1106), + [anon_sym_const] = ACTIONS(1106), + [anon_sym_continue] = ACTIONS(1106), + [anon_sym_default] = ACTIONS(1106), + [anon_sym_enum] = ACTIONS(1106), + [anon_sym_fn] = ACTIONS(1106), + [anon_sym_for] = ACTIONS(1106), + [anon_sym_if] = ACTIONS(1106), + [anon_sym_impl] = ACTIONS(1106), + [anon_sym_let] = ACTIONS(1106), + [anon_sym_loop] = ACTIONS(1106), + [anon_sym_match] = ACTIONS(1106), + [anon_sym_mod] = ACTIONS(1106), + [anon_sym_pub] = ACTIONS(1106), + [anon_sym_return] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_struct] = ACTIONS(1106), + [anon_sym_trait] = ACTIONS(1106), + [anon_sym_type] = ACTIONS(1106), + [anon_sym_union] = ACTIONS(1106), + [anon_sym_unsafe] = ACTIONS(1106), + [anon_sym_use] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1106), + [anon_sym_POUND] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_COLON_COLON] = ACTIONS(1104), + [anon_sym_AMP] = ACTIONS(1104), + [anon_sym_DOT_DOT] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1104), + [anon_sym_yield] = ACTIONS(1106), + [anon_sym_move] = ACTIONS(1106), + [sym_integer_literal] = ACTIONS(1104), + [aux_sym_string_literal_token1] = ACTIONS(1104), + [sym_char_literal] = ACTIONS(1104), + [anon_sym_true] = ACTIONS(1106), + [anon_sym_false] = ACTIONS(1106), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1106), + [sym_super] = ACTIONS(1106), + [sym_crate] = ACTIONS(1106), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1104), + [sym_float_literal] = ACTIONS(1104), [sym_block_comment] = ACTIONS(3), }, [262] = { - [ts_builtin_sym_end] = ACTIONS(1126), - [sym_identifier] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_macro_rules_BANG] = ACTIONS(1126), - [anon_sym_LPAREN] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_RBRACE] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_u8] = ACTIONS(1128), - [anon_sym_i8] = ACTIONS(1128), - [anon_sym_u16] = ACTIONS(1128), - [anon_sym_i16] = ACTIONS(1128), - [anon_sym_u32] = ACTIONS(1128), - [anon_sym_i32] = ACTIONS(1128), - [anon_sym_u64] = ACTIONS(1128), - [anon_sym_i64] = ACTIONS(1128), - [anon_sym_u128] = ACTIONS(1128), - [anon_sym_i128] = ACTIONS(1128), - [anon_sym_isize] = ACTIONS(1128), - [anon_sym_usize] = ACTIONS(1128), - [anon_sym_f32] = ACTIONS(1128), - [anon_sym_f64] = ACTIONS(1128), - [anon_sym_bool] = ACTIONS(1128), - [anon_sym_str] = ACTIONS(1128), - [anon_sym_char] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_async] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_fn] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_impl] = ACTIONS(1128), - [anon_sym_let] = ACTIONS(1128), - [anon_sym_loop] = ACTIONS(1128), - [anon_sym_match] = ACTIONS(1128), - [anon_sym_mod] = ACTIONS(1128), - [anon_sym_pub] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_trait] = ACTIONS(1128), - [anon_sym_type] = ACTIONS(1128), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_unsafe] = ACTIONS(1128), - [anon_sym_use] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_POUND] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_COLON_COLON] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(1128), - [anon_sym_move] = ACTIONS(1128), - [sym_integer_literal] = ACTIONS(1126), - [aux_sym_string_literal_token1] = ACTIONS(1126), - [sym_char_literal] = ACTIONS(1126), - [anon_sym_true] = ACTIONS(1128), - [anon_sym_false] = ACTIONS(1128), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1128), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1126), - [sym_raw_string_literal] = ACTIONS(1126), - [sym_float_literal] = ACTIONS(1126), + [ts_builtin_sym_end] = ACTIONS(1108), + [sym_identifier] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_macro_rules_BANG] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_RBRACE] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1108), + [anon_sym_u8] = ACTIONS(1110), + [anon_sym_i8] = ACTIONS(1110), + [anon_sym_u16] = ACTIONS(1110), + [anon_sym_i16] = ACTIONS(1110), + [anon_sym_u32] = ACTIONS(1110), + [anon_sym_i32] = ACTIONS(1110), + [anon_sym_u64] = ACTIONS(1110), + [anon_sym_i64] = ACTIONS(1110), + [anon_sym_u128] = ACTIONS(1110), + [anon_sym_i128] = ACTIONS(1110), + [anon_sym_isize] = ACTIONS(1110), + [anon_sym_usize] = ACTIONS(1110), + [anon_sym_f32] = ACTIONS(1110), + [anon_sym_f64] = ACTIONS(1110), + [anon_sym_bool] = ACTIONS(1110), + [anon_sym_str] = ACTIONS(1110), + [anon_sym_char] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_async] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_fn] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_impl] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1110), + [anon_sym_loop] = ACTIONS(1110), + [anon_sym_match] = ACTIONS(1110), + [anon_sym_mod] = ACTIONS(1110), + [anon_sym_pub] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_trait] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_unsafe] = ACTIONS(1110), + [anon_sym_use] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [anon_sym_POUND] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_COLON_COLON] = ACTIONS(1108), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_DOT_DOT] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_yield] = ACTIONS(1110), + [anon_sym_move] = ACTIONS(1110), + [sym_integer_literal] = ACTIONS(1108), + [aux_sym_string_literal_token1] = ACTIONS(1108), + [sym_char_literal] = ACTIONS(1108), + [anon_sym_true] = ACTIONS(1110), + [anon_sym_false] = ACTIONS(1110), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1110), + [sym_super] = ACTIONS(1110), + [sym_crate] = ACTIONS(1110), + [sym_metavariable] = ACTIONS(1108), + [sym_raw_string_literal] = ACTIONS(1108), + [sym_float_literal] = ACTIONS(1108), [sym_block_comment] = ACTIONS(3), }, [263] = { - [ts_builtin_sym_end] = ACTIONS(1130), - [sym_identifier] = ACTIONS(1132), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym_macro_rules_BANG] = ACTIONS(1130), - [anon_sym_LPAREN] = ACTIONS(1130), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_RBRACE] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_u8] = ACTIONS(1132), - [anon_sym_i8] = ACTIONS(1132), - [anon_sym_u16] = ACTIONS(1132), - [anon_sym_i16] = ACTIONS(1132), - [anon_sym_u32] = ACTIONS(1132), - [anon_sym_i32] = ACTIONS(1132), - [anon_sym_u64] = ACTIONS(1132), - [anon_sym_i64] = ACTIONS(1132), - [anon_sym_u128] = ACTIONS(1132), - [anon_sym_i128] = ACTIONS(1132), - [anon_sym_isize] = ACTIONS(1132), - [anon_sym_usize] = ACTIONS(1132), - [anon_sym_f32] = ACTIONS(1132), - [anon_sym_f64] = ACTIONS(1132), - [anon_sym_bool] = ACTIONS(1132), - [anon_sym_str] = ACTIONS(1132), - [anon_sym_char] = ACTIONS(1132), - [anon_sym_SQUOTE] = ACTIONS(1132), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_break] = ACTIONS(1132), - [anon_sym_const] = ACTIONS(1132), - [anon_sym_continue] = ACTIONS(1132), - [anon_sym_default] = ACTIONS(1132), - [anon_sym_enum] = ACTIONS(1132), - [anon_sym_fn] = ACTIONS(1132), - [anon_sym_for] = ACTIONS(1132), - [anon_sym_if] = ACTIONS(1132), - [anon_sym_impl] = ACTIONS(1132), - [anon_sym_let] = ACTIONS(1132), - [anon_sym_loop] = ACTIONS(1132), - [anon_sym_match] = ACTIONS(1132), - [anon_sym_mod] = ACTIONS(1132), - [anon_sym_pub] = ACTIONS(1132), - [anon_sym_return] = ACTIONS(1132), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_struct] = ACTIONS(1132), - [anon_sym_trait] = ACTIONS(1132), - [anon_sym_type] = ACTIONS(1132), - [anon_sym_union] = ACTIONS(1132), - [anon_sym_unsafe] = ACTIONS(1132), - [anon_sym_use] = ACTIONS(1132), - [anon_sym_while] = ACTIONS(1132), - [anon_sym_POUND] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_extern] = ACTIONS(1132), - [anon_sym_LT] = ACTIONS(1130), - [anon_sym_COLON_COLON] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_DOT_DOT] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_PIPE] = ACTIONS(1130), - [anon_sym_yield] = ACTIONS(1132), - [anon_sym_move] = ACTIONS(1132), - [sym_integer_literal] = ACTIONS(1130), - [aux_sym_string_literal_token1] = ACTIONS(1130), - [sym_char_literal] = ACTIONS(1130), - [anon_sym_true] = ACTIONS(1132), - [anon_sym_false] = ACTIONS(1132), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1132), - [sym_super] = ACTIONS(1132), - [sym_crate] = ACTIONS(1132), - [sym_metavariable] = ACTIONS(1130), - [sym_raw_string_literal] = ACTIONS(1130), - [sym_float_literal] = ACTIONS(1130), + [ts_builtin_sym_end] = ACTIONS(1112), + [sym_identifier] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_macro_rules_BANG] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_u8] = ACTIONS(1114), + [anon_sym_i8] = ACTIONS(1114), + [anon_sym_u16] = ACTIONS(1114), + [anon_sym_i16] = ACTIONS(1114), + [anon_sym_u32] = ACTIONS(1114), + [anon_sym_i32] = ACTIONS(1114), + [anon_sym_u64] = ACTIONS(1114), + [anon_sym_i64] = ACTIONS(1114), + [anon_sym_u128] = ACTIONS(1114), + [anon_sym_i128] = ACTIONS(1114), + [anon_sym_isize] = ACTIONS(1114), + [anon_sym_usize] = ACTIONS(1114), + [anon_sym_f32] = ACTIONS(1114), + [anon_sym_f64] = ACTIONS(1114), + [anon_sym_bool] = ACTIONS(1114), + [anon_sym_str] = ACTIONS(1114), + [anon_sym_char] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1114), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1114), + [anon_sym_enum] = ACTIONS(1114), + [anon_sym_fn] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_if] = ACTIONS(1114), + [anon_sym_impl] = ACTIONS(1114), + [anon_sym_let] = ACTIONS(1114), + [anon_sym_loop] = ACTIONS(1114), + [anon_sym_match] = ACTIONS(1114), + [anon_sym_mod] = ACTIONS(1114), + [anon_sym_pub] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_struct] = ACTIONS(1114), + [anon_sym_trait] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_union] = ACTIONS(1114), + [anon_sym_unsafe] = ACTIONS(1114), + [anon_sym_use] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1114), + [anon_sym_POUND] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1114), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_COLON_COLON] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_DOT_DOT] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1112), + [anon_sym_yield] = ACTIONS(1114), + [anon_sym_move] = ACTIONS(1114), + [sym_integer_literal] = ACTIONS(1112), + [aux_sym_string_literal_token1] = ACTIONS(1112), + [sym_char_literal] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1114), + [sym_super] = ACTIONS(1114), + [sym_crate] = ACTIONS(1114), + [sym_metavariable] = ACTIONS(1112), + [sym_raw_string_literal] = ACTIONS(1112), + [sym_float_literal] = ACTIONS(1112), [sym_block_comment] = ACTIONS(3), }, [264] = { - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_identifier] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1134), - [anon_sym_macro_rules_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_RBRACE] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_u8] = ACTIONS(1136), - [anon_sym_i8] = ACTIONS(1136), - [anon_sym_u16] = ACTIONS(1136), - [anon_sym_i16] = ACTIONS(1136), - [anon_sym_u32] = ACTIONS(1136), - [anon_sym_i32] = ACTIONS(1136), - [anon_sym_u64] = ACTIONS(1136), - [anon_sym_i64] = ACTIONS(1136), - [anon_sym_u128] = ACTIONS(1136), - [anon_sym_i128] = ACTIONS(1136), - [anon_sym_isize] = ACTIONS(1136), - [anon_sym_usize] = ACTIONS(1136), - [anon_sym_f32] = ACTIONS(1136), - [anon_sym_f64] = ACTIONS(1136), - [anon_sym_bool] = ACTIONS(1136), - [anon_sym_str] = ACTIONS(1136), - [anon_sym_char] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_async] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_const] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_default] = ACTIONS(1136), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_fn] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_impl] = ACTIONS(1136), - [anon_sym_let] = ACTIONS(1136), - [anon_sym_loop] = ACTIONS(1136), - [anon_sym_match] = ACTIONS(1136), - [anon_sym_mod] = ACTIONS(1136), - [anon_sym_pub] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_static] = ACTIONS(1136), - [anon_sym_struct] = ACTIONS(1136), - [anon_sym_trait] = ACTIONS(1136), - [anon_sym_type] = ACTIONS(1136), - [anon_sym_union] = ACTIONS(1136), - [anon_sym_unsafe] = ACTIONS(1136), - [anon_sym_use] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_POUND] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_extern] = ACTIONS(1136), - [anon_sym_LT] = ACTIONS(1134), - [anon_sym_COLON_COLON] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_DOT_DOT] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_yield] = ACTIONS(1136), - [anon_sym_move] = ACTIONS(1136), - [sym_integer_literal] = ACTIONS(1134), - [aux_sym_string_literal_token1] = ACTIONS(1134), - [sym_char_literal] = ACTIONS(1134), - [anon_sym_true] = ACTIONS(1136), - [anon_sym_false] = ACTIONS(1136), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_crate] = ACTIONS(1136), - [sym_metavariable] = ACTIONS(1134), - [sym_raw_string_literal] = ACTIONS(1134), - [sym_float_literal] = ACTIONS(1134), + [ts_builtin_sym_end] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1116), + [anon_sym_macro_rules_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_RBRACE] = ACTIONS(1116), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1116), + [anon_sym_u8] = ACTIONS(1118), + [anon_sym_i8] = ACTIONS(1118), + [anon_sym_u16] = ACTIONS(1118), + [anon_sym_i16] = ACTIONS(1118), + [anon_sym_u32] = ACTIONS(1118), + [anon_sym_i32] = ACTIONS(1118), + [anon_sym_u64] = ACTIONS(1118), + [anon_sym_i64] = ACTIONS(1118), + [anon_sym_u128] = ACTIONS(1118), + [anon_sym_i128] = ACTIONS(1118), + [anon_sym_isize] = ACTIONS(1118), + [anon_sym_usize] = ACTIONS(1118), + [anon_sym_f32] = ACTIONS(1118), + [anon_sym_f64] = ACTIONS(1118), + [anon_sym_bool] = ACTIONS(1118), + [anon_sym_str] = ACTIONS(1118), + [anon_sym_char] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_fn] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_impl] = ACTIONS(1118), + [anon_sym_let] = ACTIONS(1118), + [anon_sym_loop] = ACTIONS(1118), + [anon_sym_match] = ACTIONS(1118), + [anon_sym_mod] = ACTIONS(1118), + [anon_sym_pub] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_struct] = ACTIONS(1118), + [anon_sym_trait] = ACTIONS(1118), + [anon_sym_type] = ACTIONS(1118), + [anon_sym_union] = ACTIONS(1118), + [anon_sym_unsafe] = ACTIONS(1118), + [anon_sym_use] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_POUND] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(1116), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_DOT_DOT] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PIPE] = ACTIONS(1116), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_move] = ACTIONS(1118), + [sym_integer_literal] = ACTIONS(1116), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1118), + [sym_super] = ACTIONS(1118), + [sym_crate] = ACTIONS(1118), + [sym_metavariable] = ACTIONS(1116), + [sym_raw_string_literal] = ACTIONS(1116), + [sym_float_literal] = ACTIONS(1116), [sym_block_comment] = ACTIONS(3), }, [265] = { - [ts_builtin_sym_end] = ACTIONS(1138), - [sym_identifier] = ACTIONS(1140), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_macro_rules_BANG] = ACTIONS(1138), - [anon_sym_LPAREN] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_RBRACE] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_async] = ACTIONS(1140), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1140), - [anon_sym_default] = ACTIONS(1140), - [anon_sym_enum] = ACTIONS(1140), - [anon_sym_fn] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1140), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_impl] = ACTIONS(1140), - [anon_sym_let] = ACTIONS(1140), - [anon_sym_loop] = ACTIONS(1140), - [anon_sym_match] = ACTIONS(1140), - [anon_sym_mod] = ACTIONS(1140), - [anon_sym_pub] = ACTIONS(1140), - [anon_sym_return] = ACTIONS(1140), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_struct] = ACTIONS(1140), - [anon_sym_trait] = ACTIONS(1140), - [anon_sym_type] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(1140), - [anon_sym_unsafe] = ACTIONS(1140), - [anon_sym_use] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_POUND] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_extern] = ACTIONS(1140), - [anon_sym_LT] = ACTIONS(1138), - [anon_sym_COLON_COLON] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_DOT_DOT] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_PIPE] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(1140), - [anon_sym_move] = ACTIONS(1140), - [sym_integer_literal] = ACTIONS(1138), - [aux_sym_string_literal_token1] = ACTIONS(1138), - [sym_char_literal] = ACTIONS(1138), - [anon_sym_true] = ACTIONS(1140), - [anon_sym_false] = ACTIONS(1140), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1140), - [sym_super] = ACTIONS(1140), - [sym_crate] = ACTIONS(1140), - [sym_metavariable] = ACTIONS(1138), - [sym_raw_string_literal] = ACTIONS(1138), - [sym_float_literal] = ACTIONS(1138), + [ts_builtin_sym_end] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_macro_rules_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_u8] = ACTIONS(1122), + [anon_sym_i8] = ACTIONS(1122), + [anon_sym_u16] = ACTIONS(1122), + [anon_sym_i16] = ACTIONS(1122), + [anon_sym_u32] = ACTIONS(1122), + [anon_sym_i32] = ACTIONS(1122), + [anon_sym_u64] = ACTIONS(1122), + [anon_sym_i64] = ACTIONS(1122), + [anon_sym_u128] = ACTIONS(1122), + [anon_sym_i128] = ACTIONS(1122), + [anon_sym_isize] = ACTIONS(1122), + [anon_sym_usize] = ACTIONS(1122), + [anon_sym_f32] = ACTIONS(1122), + [anon_sym_f64] = ACTIONS(1122), + [anon_sym_bool] = ACTIONS(1122), + [anon_sym_str] = ACTIONS(1122), + [anon_sym_char] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_async] = ACTIONS(1122), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_fn] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_impl] = ACTIONS(1122), + [anon_sym_let] = ACTIONS(1122), + [anon_sym_loop] = ACTIONS(1122), + [anon_sym_match] = ACTIONS(1122), + [anon_sym_mod] = ACTIONS(1122), + [anon_sym_pub] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_struct] = ACTIONS(1122), + [anon_sym_trait] = ACTIONS(1122), + [anon_sym_type] = ACTIONS(1122), + [anon_sym_union] = ACTIONS(1122), + [anon_sym_unsafe] = ACTIONS(1122), + [anon_sym_use] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_POUND] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_COLON_COLON] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_DOT_DOT] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1120), + [anon_sym_yield] = ACTIONS(1122), + [anon_sym_move] = ACTIONS(1122), + [sym_integer_literal] = ACTIONS(1120), + [aux_sym_string_literal_token1] = ACTIONS(1120), + [sym_char_literal] = ACTIONS(1120), + [anon_sym_true] = ACTIONS(1122), + [anon_sym_false] = ACTIONS(1122), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1122), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1120), + [sym_raw_string_literal] = ACTIONS(1120), + [sym_float_literal] = ACTIONS(1120), [sym_block_comment] = ACTIONS(3), }, [266] = { - [ts_builtin_sym_end] = ACTIONS(1142), - [sym_identifier] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1142), - [anon_sym_macro_rules_BANG] = ACTIONS(1142), - [anon_sym_LPAREN] = ACTIONS(1142), - [anon_sym_LBRACE] = ACTIONS(1142), - [anon_sym_RBRACE] = ACTIONS(1142), - [anon_sym_LBRACK] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1142), - [anon_sym_u8] = ACTIONS(1144), - [anon_sym_i8] = ACTIONS(1144), - [anon_sym_u16] = ACTIONS(1144), - [anon_sym_i16] = ACTIONS(1144), - [anon_sym_u32] = ACTIONS(1144), - [anon_sym_i32] = ACTIONS(1144), - [anon_sym_u64] = ACTIONS(1144), - [anon_sym_i64] = ACTIONS(1144), - [anon_sym_u128] = ACTIONS(1144), - [anon_sym_i128] = ACTIONS(1144), - [anon_sym_isize] = ACTIONS(1144), - [anon_sym_usize] = ACTIONS(1144), - [anon_sym_f32] = ACTIONS(1144), - [anon_sym_f64] = ACTIONS(1144), - [anon_sym_bool] = ACTIONS(1144), - [anon_sym_str] = ACTIONS(1144), - [anon_sym_char] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [anon_sym_async] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1144), - [anon_sym_const] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1144), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_enum] = ACTIONS(1144), - [anon_sym_fn] = ACTIONS(1144), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_impl] = ACTIONS(1144), - [anon_sym_let] = ACTIONS(1144), - [anon_sym_loop] = ACTIONS(1144), - [anon_sym_match] = ACTIONS(1144), - [anon_sym_mod] = ACTIONS(1144), - [anon_sym_pub] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1144), - [anon_sym_static] = ACTIONS(1144), - [anon_sym_struct] = ACTIONS(1144), - [anon_sym_trait] = ACTIONS(1144), - [anon_sym_type] = ACTIONS(1144), - [anon_sym_union] = ACTIONS(1144), - [anon_sym_unsafe] = ACTIONS(1144), - [anon_sym_use] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1144), - [anon_sym_POUND] = ACTIONS(1142), - [anon_sym_BANG] = ACTIONS(1142), - [anon_sym_extern] = ACTIONS(1144), - [anon_sym_LT] = ACTIONS(1142), - [anon_sym_COLON_COLON] = ACTIONS(1142), - [anon_sym_AMP] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1142), - [anon_sym_DASH] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_move] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1142), - [aux_sym_string_literal_token1] = ACTIONS(1142), - [sym_char_literal] = ACTIONS(1142), - [anon_sym_true] = ACTIONS(1144), - [anon_sym_false] = ACTIONS(1144), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1144), - [sym_super] = ACTIONS(1144), - [sym_crate] = ACTIONS(1144), - [sym_metavariable] = ACTIONS(1142), - [sym_raw_string_literal] = ACTIONS(1142), - [sym_float_literal] = ACTIONS(1142), + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_macro_rules_BANG] = ACTIONS(1124), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_u8] = ACTIONS(1126), + [anon_sym_i8] = ACTIONS(1126), + [anon_sym_u16] = ACTIONS(1126), + [anon_sym_i16] = ACTIONS(1126), + [anon_sym_u32] = ACTIONS(1126), + [anon_sym_i32] = ACTIONS(1126), + [anon_sym_u64] = ACTIONS(1126), + [anon_sym_i64] = ACTIONS(1126), + [anon_sym_u128] = ACTIONS(1126), + [anon_sym_i128] = ACTIONS(1126), + [anon_sym_isize] = ACTIONS(1126), + [anon_sym_usize] = ACTIONS(1126), + [anon_sym_f32] = ACTIONS(1126), + [anon_sym_f64] = ACTIONS(1126), + [anon_sym_bool] = ACTIONS(1126), + [anon_sym_str] = ACTIONS(1126), + [anon_sym_char] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_async] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_const] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_fn] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_impl] = ACTIONS(1126), + [anon_sym_let] = ACTIONS(1126), + [anon_sym_loop] = ACTIONS(1126), + [anon_sym_match] = ACTIONS(1126), + [anon_sym_mod] = ACTIONS(1126), + [anon_sym_pub] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_struct] = ACTIONS(1126), + [anon_sym_trait] = ACTIONS(1126), + [anon_sym_type] = ACTIONS(1126), + [anon_sym_union] = ACTIONS(1126), + [anon_sym_unsafe] = ACTIONS(1126), + [anon_sym_use] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_POUND] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1124), + [anon_sym_COLON_COLON] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1124), + [anon_sym_DOT_DOT] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PIPE] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1126), + [anon_sym_move] = ACTIONS(1126), + [sym_integer_literal] = ACTIONS(1124), + [aux_sym_string_literal_token1] = ACTIONS(1124), + [sym_char_literal] = ACTIONS(1124), + [anon_sym_true] = ACTIONS(1126), + [anon_sym_false] = ACTIONS(1126), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1126), + [sym_super] = ACTIONS(1126), + [sym_crate] = ACTIONS(1126), + [sym_metavariable] = ACTIONS(1124), + [sym_raw_string_literal] = ACTIONS(1124), + [sym_float_literal] = ACTIONS(1124), [sym_block_comment] = ACTIONS(3), }, [267] = { - [ts_builtin_sym_end] = ACTIONS(1146), - [sym_identifier] = ACTIONS(1148), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym_macro_rules_BANG] = ACTIONS(1146), - [anon_sym_LPAREN] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_RBRACE] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_u8] = ACTIONS(1148), - [anon_sym_i8] = ACTIONS(1148), - [anon_sym_u16] = ACTIONS(1148), - [anon_sym_i16] = ACTIONS(1148), - [anon_sym_u32] = ACTIONS(1148), - [anon_sym_i32] = ACTIONS(1148), - [anon_sym_u64] = ACTIONS(1148), - [anon_sym_i64] = ACTIONS(1148), - [anon_sym_u128] = ACTIONS(1148), - [anon_sym_i128] = ACTIONS(1148), - [anon_sym_isize] = ACTIONS(1148), - [anon_sym_usize] = ACTIONS(1148), - [anon_sym_f32] = ACTIONS(1148), - [anon_sym_f64] = ACTIONS(1148), - [anon_sym_bool] = ACTIONS(1148), - [anon_sym_str] = ACTIONS(1148), - [anon_sym_char] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [anon_sym_async] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_default] = ACTIONS(1148), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_fn] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_impl] = ACTIONS(1148), - [anon_sym_let] = ACTIONS(1148), - [anon_sym_loop] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1148), - [anon_sym_mod] = ACTIONS(1148), - [anon_sym_pub] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_struct] = ACTIONS(1148), - [anon_sym_trait] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_union] = ACTIONS(1148), - [anon_sym_unsafe] = ACTIONS(1148), - [anon_sym_use] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1146), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1146), - [anon_sym_DOT_DOT] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_yield] = ACTIONS(1148), - [anon_sym_move] = ACTIONS(1148), - [sym_integer_literal] = ACTIONS(1146), - [aux_sym_string_literal_token1] = ACTIONS(1146), - [sym_char_literal] = ACTIONS(1146), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1148), - [sym_super] = ACTIONS(1148), - [sym_crate] = ACTIONS(1148), - [sym_metavariable] = ACTIONS(1146), - [sym_raw_string_literal] = ACTIONS(1146), - [sym_float_literal] = ACTIONS(1146), + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_macro_rules_BANG] = ACTIONS(1128), + [anon_sym_LPAREN] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1128), + [anon_sym_RBRACE] = ACTIONS(1128), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1128), + [anon_sym_u8] = ACTIONS(1130), + [anon_sym_i8] = ACTIONS(1130), + [anon_sym_u16] = ACTIONS(1130), + [anon_sym_i16] = ACTIONS(1130), + [anon_sym_u32] = ACTIONS(1130), + [anon_sym_i32] = ACTIONS(1130), + [anon_sym_u64] = ACTIONS(1130), + [anon_sym_i64] = ACTIONS(1130), + [anon_sym_u128] = ACTIONS(1130), + [anon_sym_i128] = ACTIONS(1130), + [anon_sym_isize] = ACTIONS(1130), + [anon_sym_usize] = ACTIONS(1130), + [anon_sym_f32] = ACTIONS(1130), + [anon_sym_f64] = ACTIONS(1130), + [anon_sym_bool] = ACTIONS(1130), + [anon_sym_str] = ACTIONS(1130), + [anon_sym_char] = ACTIONS(1130), + [anon_sym_SQUOTE] = ACTIONS(1130), + [anon_sym_async] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_fn] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_impl] = ACTIONS(1130), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_loop] = ACTIONS(1130), + [anon_sym_match] = ACTIONS(1130), + [anon_sym_mod] = ACTIONS(1130), + [anon_sym_pub] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_trait] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_unsafe] = ACTIONS(1130), + [anon_sym_use] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_POUND] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym_LT] = ACTIONS(1128), + [anon_sym_COLON_COLON] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + [anon_sym_DOT_DOT] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_PIPE] = ACTIONS(1128), + [anon_sym_yield] = ACTIONS(1130), + [anon_sym_move] = ACTIONS(1130), + [sym_integer_literal] = ACTIONS(1128), + [aux_sym_string_literal_token1] = ACTIONS(1128), + [sym_char_literal] = ACTIONS(1128), + [anon_sym_true] = ACTIONS(1130), + [anon_sym_false] = ACTIONS(1130), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1130), + [sym_super] = ACTIONS(1130), + [sym_crate] = ACTIONS(1130), + [sym_metavariable] = ACTIONS(1128), + [sym_raw_string_literal] = ACTIONS(1128), + [sym_float_literal] = ACTIONS(1128), [sym_block_comment] = ACTIONS(3), }, [268] = { - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1152), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_macro_rules_BANG] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_RBRACE] = ACTIONS(1150), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_u8] = ACTIONS(1152), - [anon_sym_i8] = ACTIONS(1152), - [anon_sym_u16] = ACTIONS(1152), - [anon_sym_i16] = ACTIONS(1152), - [anon_sym_u32] = ACTIONS(1152), - [anon_sym_i32] = ACTIONS(1152), - [anon_sym_u64] = ACTIONS(1152), - [anon_sym_i64] = ACTIONS(1152), - [anon_sym_u128] = ACTIONS(1152), - [anon_sym_i128] = ACTIONS(1152), - [anon_sym_isize] = ACTIONS(1152), - [anon_sym_usize] = ACTIONS(1152), - [anon_sym_f32] = ACTIONS(1152), - [anon_sym_f64] = ACTIONS(1152), - [anon_sym_bool] = ACTIONS(1152), - [anon_sym_str] = ACTIONS(1152), - [anon_sym_char] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_async] = ACTIONS(1152), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_const] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_default] = ACTIONS(1152), - [anon_sym_enum] = ACTIONS(1152), - [anon_sym_fn] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_impl] = ACTIONS(1152), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_loop] = ACTIONS(1152), - [anon_sym_match] = ACTIONS(1152), - [anon_sym_mod] = ACTIONS(1152), - [anon_sym_pub] = ACTIONS(1152), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_struct] = ACTIONS(1152), - [anon_sym_trait] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(1152), - [anon_sym_unsafe] = ACTIONS(1152), - [anon_sym_use] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_POUND] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1150), - [anon_sym_extern] = ACTIONS(1152), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_COLON_COLON] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - [anon_sym_DOT_DOT] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_yield] = ACTIONS(1152), - [anon_sym_move] = ACTIONS(1152), - [sym_integer_literal] = ACTIONS(1150), - [aux_sym_string_literal_token1] = ACTIONS(1150), - [sym_char_literal] = ACTIONS(1150), - [anon_sym_true] = ACTIONS(1152), - [anon_sym_false] = ACTIONS(1152), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1152), - [sym_super] = ACTIONS(1152), - [sym_crate] = ACTIONS(1152), - [sym_metavariable] = ACTIONS(1150), - [sym_raw_string_literal] = ACTIONS(1150), - [sym_float_literal] = ACTIONS(1150), + [ts_builtin_sym_end] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_macro_rules_BANG] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_u8] = ACTIONS(1134), + [anon_sym_i8] = ACTIONS(1134), + [anon_sym_u16] = ACTIONS(1134), + [anon_sym_i16] = ACTIONS(1134), + [anon_sym_u32] = ACTIONS(1134), + [anon_sym_i32] = ACTIONS(1134), + [anon_sym_u64] = ACTIONS(1134), + [anon_sym_i64] = ACTIONS(1134), + [anon_sym_u128] = ACTIONS(1134), + [anon_sym_i128] = ACTIONS(1134), + [anon_sym_isize] = ACTIONS(1134), + [anon_sym_usize] = ACTIONS(1134), + [anon_sym_f32] = ACTIONS(1134), + [anon_sym_f64] = ACTIONS(1134), + [anon_sym_bool] = ACTIONS(1134), + [anon_sym_str] = ACTIONS(1134), + [anon_sym_char] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(1134), + [anon_sym_async] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_fn] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_impl] = ACTIONS(1134), + [anon_sym_let] = ACTIONS(1134), + [anon_sym_loop] = ACTIONS(1134), + [anon_sym_match] = ACTIONS(1134), + [anon_sym_mod] = ACTIONS(1134), + [anon_sym_pub] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_trait] = ACTIONS(1134), + [anon_sym_type] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_unsafe] = ACTIONS(1134), + [anon_sym_use] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_POUND] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_COLON_COLON] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_DOT_DOT] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_yield] = ACTIONS(1134), + [anon_sym_move] = ACTIONS(1134), + [sym_integer_literal] = ACTIONS(1132), + [aux_sym_string_literal_token1] = ACTIONS(1132), + [sym_char_literal] = ACTIONS(1132), + [anon_sym_true] = ACTIONS(1134), + [anon_sym_false] = ACTIONS(1134), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1134), + [sym_super] = ACTIONS(1134), + [sym_crate] = ACTIONS(1134), + [sym_metavariable] = ACTIONS(1132), + [sym_raw_string_literal] = ACTIONS(1132), + [sym_float_literal] = ACTIONS(1132), [sym_block_comment] = ACTIONS(3), }, [269] = { - [ts_builtin_sym_end] = ACTIONS(1154), - [sym_identifier] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1154), - [anon_sym_macro_rules_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [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_SQUOTE] = ACTIONS(1156), - [anon_sym_async] = 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_while] = ACTIONS(1156), - [anon_sym_POUND] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1156), - [anon_sym_LT] = ACTIONS(1154), - [anon_sym_COLON_COLON] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PIPE] = ACTIONS(1154), - [anon_sym_yield] = ACTIONS(1156), - [anon_sym_move] = ACTIONS(1156), - [sym_integer_literal] = ACTIONS(1154), - [aux_sym_string_literal_token1] = ACTIONS(1154), - [sym_char_literal] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1156), - [anon_sym_false] = ACTIONS(1156), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1156), - [sym_super] = ACTIONS(1156), - [sym_crate] = ACTIONS(1156), - [sym_metavariable] = ACTIONS(1154), - [sym_raw_string_literal] = ACTIONS(1154), - [sym_float_literal] = ACTIONS(1154), + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_macro_rules_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_u8] = ACTIONS(1138), + [anon_sym_i8] = ACTIONS(1138), + [anon_sym_u16] = ACTIONS(1138), + [anon_sym_i16] = ACTIONS(1138), + [anon_sym_u32] = ACTIONS(1138), + [anon_sym_i32] = ACTIONS(1138), + [anon_sym_u64] = ACTIONS(1138), + [anon_sym_i64] = ACTIONS(1138), + [anon_sym_u128] = ACTIONS(1138), + [anon_sym_i128] = ACTIONS(1138), + [anon_sym_isize] = ACTIONS(1138), + [anon_sym_usize] = ACTIONS(1138), + [anon_sym_f32] = ACTIONS(1138), + [anon_sym_f64] = ACTIONS(1138), + [anon_sym_bool] = ACTIONS(1138), + [anon_sym_str] = ACTIONS(1138), + [anon_sym_char] = ACTIONS(1138), + [anon_sym_SQUOTE] = ACTIONS(1138), + [anon_sym_async] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_fn] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_impl] = ACTIONS(1138), + [anon_sym_let] = ACTIONS(1138), + [anon_sym_loop] = ACTIONS(1138), + [anon_sym_match] = ACTIONS(1138), + [anon_sym_mod] = ACTIONS(1138), + [anon_sym_pub] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_trait] = ACTIONS(1138), + [anon_sym_type] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_unsafe] = ACTIONS(1138), + [anon_sym_use] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_POUND] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym_LT] = ACTIONS(1136), + [anon_sym_COLON_COLON] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_yield] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1136), + [aux_sym_string_literal_token1] = ACTIONS(1136), + [sym_char_literal] = ACTIONS(1136), + [anon_sym_true] = ACTIONS(1138), + [anon_sym_false] = ACTIONS(1138), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1138), + [sym_super] = ACTIONS(1138), + [sym_crate] = ACTIONS(1138), + [sym_metavariable] = ACTIONS(1136), + [sym_raw_string_literal] = ACTIONS(1136), + [sym_float_literal] = ACTIONS(1136), [sym_block_comment] = ACTIONS(3), }, [270] = { - [ts_builtin_sym_end] = ACTIONS(1158), - [sym_identifier] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym_macro_rules_BANG] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1142), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_macro_rules_BANG] = ACTIONS(1140), + [anon_sym_LPAREN] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_u8] = ACTIONS(1142), + [anon_sym_i8] = ACTIONS(1142), + [anon_sym_u16] = ACTIONS(1142), + [anon_sym_i16] = ACTIONS(1142), + [anon_sym_u32] = ACTIONS(1142), + [anon_sym_i32] = ACTIONS(1142), + [anon_sym_u64] = ACTIONS(1142), + [anon_sym_i64] = ACTIONS(1142), + [anon_sym_u128] = ACTIONS(1142), + [anon_sym_i128] = ACTIONS(1142), + [anon_sym_isize] = ACTIONS(1142), + [anon_sym_usize] = ACTIONS(1142), + [anon_sym_f32] = ACTIONS(1142), + [anon_sym_f64] = ACTIONS(1142), + [anon_sym_bool] = ACTIONS(1142), + [anon_sym_str] = ACTIONS(1142), + [anon_sym_char] = ACTIONS(1142), + [anon_sym_SQUOTE] = ACTIONS(1142), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_fn] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_impl] = ACTIONS(1142), + [anon_sym_let] = ACTIONS(1142), + [anon_sym_loop] = ACTIONS(1142), + [anon_sym_match] = ACTIONS(1142), + [anon_sym_mod] = ACTIONS(1142), + [anon_sym_pub] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_trait] = ACTIONS(1142), + [anon_sym_type] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_unsafe] = ACTIONS(1142), + [anon_sym_use] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_POUND] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym_LT] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1140), + [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_move] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1140), + [aux_sym_string_literal_token1] = ACTIONS(1140), + [sym_char_literal] = ACTIONS(1140), + [anon_sym_true] = ACTIONS(1142), + [anon_sym_false] = ACTIONS(1142), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1142), + [sym_super] = ACTIONS(1142), + [sym_crate] = ACTIONS(1142), + [sym_metavariable] = ACTIONS(1140), + [sym_raw_string_literal] = ACTIONS(1140), + [sym_float_literal] = ACTIONS(1140), + [sym_block_comment] = ACTIONS(3), + }, + [271] = { + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_macro_rules_BANG] = ACTIONS(1144), + [anon_sym_LPAREN] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_u8] = ACTIONS(1146), + [anon_sym_i8] = ACTIONS(1146), + [anon_sym_u16] = ACTIONS(1146), + [anon_sym_i16] = ACTIONS(1146), + [anon_sym_u32] = ACTIONS(1146), + [anon_sym_i32] = ACTIONS(1146), + [anon_sym_u64] = ACTIONS(1146), + [anon_sym_i64] = ACTIONS(1146), + [anon_sym_u128] = ACTIONS(1146), + [anon_sym_i128] = ACTIONS(1146), + [anon_sym_isize] = ACTIONS(1146), + [anon_sym_usize] = ACTIONS(1146), + [anon_sym_f32] = ACTIONS(1146), + [anon_sym_f64] = ACTIONS(1146), + [anon_sym_bool] = ACTIONS(1146), + [anon_sym_str] = ACTIONS(1146), + [anon_sym_char] = ACTIONS(1146), + [anon_sym_SQUOTE] = ACTIONS(1146), + [anon_sym_async] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_impl] = ACTIONS(1146), + [anon_sym_let] = ACTIONS(1146), + [anon_sym_loop] = ACTIONS(1146), + [anon_sym_match] = ACTIONS(1146), + [anon_sym_mod] = ACTIONS(1146), + [anon_sym_pub] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_trait] = ACTIONS(1146), + [anon_sym_type] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_unsafe] = ACTIONS(1146), + [anon_sym_use] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_POUND] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1144), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1144), + [anon_sym_PIPE] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1146), + [anon_sym_move] = ACTIONS(1146), + [sym_integer_literal] = ACTIONS(1144), + [aux_sym_string_literal_token1] = ACTIONS(1144), + [sym_char_literal] = ACTIONS(1144), + [anon_sym_true] = ACTIONS(1146), + [anon_sym_false] = ACTIONS(1146), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1146), + [sym_super] = ACTIONS(1146), + [sym_crate] = ACTIONS(1146), + [sym_metavariable] = ACTIONS(1144), + [sym_raw_string_literal] = ACTIONS(1144), + [sym_float_literal] = ACTIONS(1144), + [sym_block_comment] = ACTIONS(3), + }, + [272] = { + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1150), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_macro_rules_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1148), + [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_SQUOTE] = ACTIONS(1150), + [anon_sym_async] = 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_while] = ACTIONS(1150), + [anon_sym_POUND] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_COLON_COLON] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_DOT_DOT] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_yield] = ACTIONS(1150), + [anon_sym_move] = ACTIONS(1150), + [sym_integer_literal] = ACTIONS(1148), + [aux_sym_string_literal_token1] = ACTIONS(1148), + [sym_char_literal] = ACTIONS(1148), + [anon_sym_true] = ACTIONS(1150), + [anon_sym_false] = ACTIONS(1150), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1148), + [sym_raw_string_literal] = ACTIONS(1148), + [sym_float_literal] = ACTIONS(1148), + [sym_block_comment] = ACTIONS(3), + }, + [273] = { + [sym_attribute_item] = STATE(554), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_macro_invocation] = STATE(2537), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier] = STATE(1941), + [sym_match_arm] = STATE(505), + [sym_last_match_arm] = STATE(2437), + [sym_match_pattern] = STATE(2393), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1956), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_enum_variant_list_repeat1] = STATE(554), + [aux_sym_match_block_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1156), [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), [anon_sym_u8] = ACTIONS(1160), [anon_sym_i8] = ACTIONS(1160), [anon_sym_u16] = ACTIONS(1160), @@ -42896,118 +44555,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1160), [anon_sym_str] = ACTIONS(1160), [anon_sym_char] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_async] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_default] = ACTIONS(1160), - [anon_sym_enum] = ACTIONS(1160), - [anon_sym_fn] = ACTIONS(1160), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_impl] = ACTIONS(1160), - [anon_sym_let] = ACTIONS(1160), - [anon_sym_loop] = ACTIONS(1160), - [anon_sym_match] = ACTIONS(1160), - [anon_sym_mod] = ACTIONS(1160), - [anon_sym_pub] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_struct] = ACTIONS(1160), - [anon_sym_trait] = ACTIONS(1160), - [anon_sym_type] = ACTIONS(1160), - [anon_sym_union] = ACTIONS(1160), - [anon_sym_unsafe] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [anon_sym_POUND] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1160), - [anon_sym_LT] = ACTIONS(1158), - [anon_sym_COLON_COLON] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_PIPE] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_move] = ACTIONS(1160), - [sym_integer_literal] = ACTIONS(1158), - [aux_sym_string_literal_token1] = ACTIONS(1158), - [sym_char_literal] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1160), - [anon_sym_false] = ACTIONS(1160), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1160), - [sym_super] = ACTIONS(1160), - [sym_crate] = ACTIONS(1160), - [sym_metavariable] = ACTIONS(1158), - [sym_raw_string_literal] = ACTIONS(1158), - [sym_float_literal] = ACTIONS(1158), - [sym_block_comment] = ACTIONS(3), - }, - [271] = { - [sym_attribute_item] = STATE(548), - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_macro_invocation] = STATE(2349), - [sym_scoped_identifier] = STATE(1578), - [sym_scoped_type_identifier] = STATE(1974), - [sym_match_arm] = STATE(487), - [sym_last_match_arm] = STATE(2418), - [sym_match_pattern] = STATE(2359), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2070), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RBRACE] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1164), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -43015,6560 +44573,6791 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(1184), - [sym_identifier] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_macro_rules_BANG] = ACTIONS(1184), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_u8] = ACTIONS(1186), - [anon_sym_i8] = ACTIONS(1186), - [anon_sym_u16] = ACTIONS(1186), - [anon_sym_i16] = ACTIONS(1186), - [anon_sym_u32] = ACTIONS(1186), - [anon_sym_i32] = ACTIONS(1186), - [anon_sym_u64] = ACTIONS(1186), - [anon_sym_i64] = ACTIONS(1186), - [anon_sym_u128] = ACTIONS(1186), - [anon_sym_i128] = ACTIONS(1186), - [anon_sym_isize] = ACTIONS(1186), - [anon_sym_usize] = ACTIONS(1186), - [anon_sym_f32] = ACTIONS(1186), - [anon_sym_f64] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_str] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_SQUOTE] = ACTIONS(1186), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_default] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(1186), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_impl] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_pub] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1186), - [anon_sym_trait] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(1186), - [anon_sym_union] = ACTIONS(1186), - [anon_sym_unsafe] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(1184), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_COLON_COLON] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_DOT_DOT] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_yield] = ACTIONS(1186), - [anon_sym_move] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1184), - [aux_sym_string_literal_token1] = ACTIONS(1184), - [sym_char_literal] = ACTIONS(1184), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1186), - [sym_super] = ACTIONS(1186), - [sym_crate] = ACTIONS(1186), - [sym_metavariable] = ACTIONS(1184), - [sym_raw_string_literal] = ACTIONS(1184), - [sym_float_literal] = ACTIONS(1184), - [sym_block_comment] = ACTIONS(3), - }, - [273] = { - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_macro_rules_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_DOT_DOT] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_move] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1188), - [aux_sym_string_literal_token1] = ACTIONS(1188), - [sym_char_literal] = ACTIONS(1188), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1188), - [sym_raw_string_literal] = ACTIONS(1188), - [sym_float_literal] = ACTIONS(1188), - [sym_block_comment] = ACTIONS(3), - }, [274] = { - [ts_builtin_sym_end] = ACTIONS(1192), - [sym_identifier] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym_macro_rules_BANG] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_u8] = ACTIONS(1194), - [anon_sym_i8] = ACTIONS(1194), - [anon_sym_u16] = ACTIONS(1194), - [anon_sym_i16] = ACTIONS(1194), - [anon_sym_u32] = ACTIONS(1194), - [anon_sym_i32] = ACTIONS(1194), - [anon_sym_u64] = ACTIONS(1194), - [anon_sym_i64] = ACTIONS(1194), - [anon_sym_u128] = ACTIONS(1194), - [anon_sym_i128] = ACTIONS(1194), - [anon_sym_isize] = ACTIONS(1194), - [anon_sym_usize] = ACTIONS(1194), - [anon_sym_f32] = ACTIONS(1194), - [anon_sym_f64] = ACTIONS(1194), - [anon_sym_bool] = ACTIONS(1194), - [anon_sym_str] = ACTIONS(1194), - [anon_sym_char] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1194), - [anon_sym_async] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_enum] = ACTIONS(1194), - [anon_sym_fn] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_impl] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_mod] = ACTIONS(1194), - [anon_sym_pub] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_static] = ACTIONS(1194), - [anon_sym_struct] = ACTIONS(1194), - [anon_sym_trait] = ACTIONS(1194), - [anon_sym_type] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_unsafe] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_COLON_COLON] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_DOT_DOT] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_yield] = ACTIONS(1194), - [anon_sym_move] = ACTIONS(1194), - [sym_integer_literal] = ACTIONS(1192), - [aux_sym_string_literal_token1] = ACTIONS(1192), - [sym_char_literal] = ACTIONS(1192), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1194), - [sym_super] = ACTIONS(1194), - [sym_crate] = ACTIONS(1194), - [sym_metavariable] = ACTIONS(1192), - [sym_raw_string_literal] = ACTIONS(1192), - [sym_float_literal] = ACTIONS(1192), + [ts_builtin_sym_end] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1174), + [anon_sym_macro_rules_BANG] = ACTIONS(1174), + [anon_sym_LPAREN] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_RBRACE] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_u8] = ACTIONS(1176), + [anon_sym_i8] = ACTIONS(1176), + [anon_sym_u16] = ACTIONS(1176), + [anon_sym_i16] = ACTIONS(1176), + [anon_sym_u32] = ACTIONS(1176), + [anon_sym_i32] = ACTIONS(1176), + [anon_sym_u64] = ACTIONS(1176), + [anon_sym_i64] = ACTIONS(1176), + [anon_sym_u128] = ACTIONS(1176), + [anon_sym_i128] = ACTIONS(1176), + [anon_sym_isize] = ACTIONS(1176), + [anon_sym_usize] = ACTIONS(1176), + [anon_sym_f32] = ACTIONS(1176), + [anon_sym_f64] = ACTIONS(1176), + [anon_sym_bool] = ACTIONS(1176), + [anon_sym_str] = ACTIONS(1176), + [anon_sym_char] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1176), + [anon_sym_break] = ACTIONS(1176), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_continue] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1176), + [anon_sym_enum] = ACTIONS(1176), + [anon_sym_fn] = ACTIONS(1176), + [anon_sym_for] = ACTIONS(1176), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_impl] = ACTIONS(1176), + [anon_sym_let] = ACTIONS(1176), + [anon_sym_loop] = ACTIONS(1176), + [anon_sym_match] = ACTIONS(1176), + [anon_sym_mod] = ACTIONS(1176), + [anon_sym_pub] = ACTIONS(1176), + [anon_sym_return] = ACTIONS(1176), + [anon_sym_static] = ACTIONS(1176), + [anon_sym_struct] = ACTIONS(1176), + [anon_sym_trait] = ACTIONS(1176), + [anon_sym_type] = ACTIONS(1176), + [anon_sym_union] = ACTIONS(1176), + [anon_sym_unsafe] = ACTIONS(1176), + [anon_sym_use] = ACTIONS(1176), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_POUND] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1176), + [anon_sym_LT] = ACTIONS(1174), + [anon_sym_COLON_COLON] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_DOT_DOT] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PIPE] = ACTIONS(1174), + [anon_sym_yield] = ACTIONS(1176), + [anon_sym_move] = ACTIONS(1176), + [sym_integer_literal] = ACTIONS(1174), + [aux_sym_string_literal_token1] = ACTIONS(1174), + [sym_char_literal] = ACTIONS(1174), + [anon_sym_true] = ACTIONS(1176), + [anon_sym_false] = ACTIONS(1176), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1176), + [sym_super] = ACTIONS(1176), + [sym_crate] = ACTIONS(1176), + [sym_metavariable] = ACTIONS(1174), + [sym_raw_string_literal] = ACTIONS(1174), + [sym_float_literal] = ACTIONS(1174), [sym_block_comment] = ACTIONS(3), }, [275] = { - [ts_builtin_sym_end] = ACTIONS(1196), - [sym_identifier] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym_macro_rules_BANG] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_u8] = ACTIONS(1198), - [anon_sym_i8] = ACTIONS(1198), - [anon_sym_u16] = ACTIONS(1198), - [anon_sym_i16] = ACTIONS(1198), - [anon_sym_u32] = ACTIONS(1198), - [anon_sym_i32] = ACTIONS(1198), - [anon_sym_u64] = ACTIONS(1198), - [anon_sym_i64] = ACTIONS(1198), - [anon_sym_u128] = ACTIONS(1198), - [anon_sym_i128] = ACTIONS(1198), - [anon_sym_isize] = ACTIONS(1198), - [anon_sym_usize] = ACTIONS(1198), - [anon_sym_f32] = ACTIONS(1198), - [anon_sym_f64] = ACTIONS(1198), - [anon_sym_bool] = ACTIONS(1198), - [anon_sym_str] = ACTIONS(1198), - [anon_sym_char] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_async] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_default] = ACTIONS(1198), - [anon_sym_enum] = ACTIONS(1198), - [anon_sym_fn] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_impl] = ACTIONS(1198), - [anon_sym_let] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1198), - [anon_sym_match] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_pub] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_static] = ACTIONS(1198), - [anon_sym_struct] = ACTIONS(1198), - [anon_sym_trait] = ACTIONS(1198), - [anon_sym_type] = ACTIONS(1198), - [anon_sym_union] = ACTIONS(1198), - [anon_sym_unsafe] = ACTIONS(1198), - [anon_sym_use] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_COLON_COLON] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_yield] = ACTIONS(1198), - [anon_sym_move] = ACTIONS(1198), - [sym_integer_literal] = ACTIONS(1196), - [aux_sym_string_literal_token1] = ACTIONS(1196), - [sym_char_literal] = ACTIONS(1196), - [anon_sym_true] = ACTIONS(1198), - [anon_sym_false] = ACTIONS(1198), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1198), - [sym_super] = ACTIONS(1198), - [sym_crate] = ACTIONS(1198), - [sym_metavariable] = ACTIONS(1196), - [sym_raw_string_literal] = ACTIONS(1196), - [sym_float_literal] = ACTIONS(1196), + [ts_builtin_sym_end] = ACTIONS(1178), + [sym_identifier] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1178), + [anon_sym_macro_rules_BANG] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1178), + [anon_sym_u8] = ACTIONS(1180), + [anon_sym_i8] = ACTIONS(1180), + [anon_sym_u16] = ACTIONS(1180), + [anon_sym_i16] = ACTIONS(1180), + [anon_sym_u32] = ACTIONS(1180), + [anon_sym_i32] = ACTIONS(1180), + [anon_sym_u64] = ACTIONS(1180), + [anon_sym_i64] = ACTIONS(1180), + [anon_sym_u128] = ACTIONS(1180), + [anon_sym_i128] = ACTIONS(1180), + [anon_sym_isize] = ACTIONS(1180), + [anon_sym_usize] = ACTIONS(1180), + [anon_sym_f32] = ACTIONS(1180), + [anon_sym_f64] = ACTIONS(1180), + [anon_sym_bool] = ACTIONS(1180), + [anon_sym_str] = ACTIONS(1180), + [anon_sym_char] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_async] = ACTIONS(1180), + [anon_sym_break] = ACTIONS(1180), + [anon_sym_const] = ACTIONS(1180), + [anon_sym_continue] = ACTIONS(1180), + [anon_sym_default] = ACTIONS(1180), + [anon_sym_enum] = ACTIONS(1180), + [anon_sym_fn] = ACTIONS(1180), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_if] = ACTIONS(1180), + [anon_sym_impl] = ACTIONS(1180), + [anon_sym_let] = ACTIONS(1180), + [anon_sym_loop] = ACTIONS(1180), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_mod] = ACTIONS(1180), + [anon_sym_pub] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1180), + [anon_sym_static] = ACTIONS(1180), + [anon_sym_struct] = ACTIONS(1180), + [anon_sym_trait] = ACTIONS(1180), + [anon_sym_type] = ACTIONS(1180), + [anon_sym_union] = ACTIONS(1180), + [anon_sym_unsafe] = ACTIONS(1180), + [anon_sym_use] = ACTIONS(1180), + [anon_sym_while] = ACTIONS(1180), + [anon_sym_POUND] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1180), + [anon_sym_LT] = ACTIONS(1178), + [anon_sym_COLON_COLON] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_DOT_DOT] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1178), + [anon_sym_yield] = ACTIONS(1180), + [anon_sym_move] = ACTIONS(1180), + [sym_integer_literal] = ACTIONS(1178), + [aux_sym_string_literal_token1] = ACTIONS(1178), + [sym_char_literal] = ACTIONS(1178), + [anon_sym_true] = ACTIONS(1180), + [anon_sym_false] = ACTIONS(1180), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1178), + [sym_raw_string_literal] = ACTIONS(1178), + [sym_float_literal] = ACTIONS(1178), [sym_block_comment] = ACTIONS(3), }, [276] = { - [ts_builtin_sym_end] = ACTIONS(1200), - [sym_identifier] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym_macro_rules_BANG] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1200), - [anon_sym_u8] = ACTIONS(1202), - [anon_sym_i8] = ACTIONS(1202), - [anon_sym_u16] = ACTIONS(1202), - [anon_sym_i16] = ACTIONS(1202), - [anon_sym_u32] = ACTIONS(1202), - [anon_sym_i32] = ACTIONS(1202), - [anon_sym_u64] = ACTIONS(1202), - [anon_sym_i64] = ACTIONS(1202), - [anon_sym_u128] = ACTIONS(1202), - [anon_sym_i128] = ACTIONS(1202), - [anon_sym_isize] = ACTIONS(1202), - [anon_sym_usize] = ACTIONS(1202), - [anon_sym_f32] = ACTIONS(1202), - [anon_sym_f64] = ACTIONS(1202), - [anon_sym_bool] = ACTIONS(1202), - [anon_sym_str] = ACTIONS(1202), - [anon_sym_char] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_async] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_fn] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_impl] = ACTIONS(1202), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_loop] = ACTIONS(1202), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_mod] = ACTIONS(1202), - [anon_sym_pub] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_trait] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_unsafe] = ACTIONS(1202), - [anon_sym_use] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_POUND] = ACTIONS(1200), - [anon_sym_BANG] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym_LT] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(1200), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_DOT_DOT] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PIPE] = ACTIONS(1200), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_move] = ACTIONS(1202), - [sym_integer_literal] = ACTIONS(1200), - [aux_sym_string_literal_token1] = ACTIONS(1200), - [sym_char_literal] = ACTIONS(1200), - [anon_sym_true] = ACTIONS(1202), - [anon_sym_false] = ACTIONS(1202), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1202), - [sym_super] = ACTIONS(1202), - [sym_crate] = ACTIONS(1202), - [sym_metavariable] = ACTIONS(1200), - [sym_raw_string_literal] = ACTIONS(1200), - [sym_float_literal] = ACTIONS(1200), + [ts_builtin_sym_end] = ACTIONS(1182), + [sym_identifier] = ACTIONS(1184), + [anon_sym_SEMI] = ACTIONS(1182), + [anon_sym_macro_rules_BANG] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1182), + [anon_sym_STAR] = ACTIONS(1182), + [anon_sym_u8] = ACTIONS(1184), + [anon_sym_i8] = ACTIONS(1184), + [anon_sym_u16] = ACTIONS(1184), + [anon_sym_i16] = ACTIONS(1184), + [anon_sym_u32] = ACTIONS(1184), + [anon_sym_i32] = ACTIONS(1184), + [anon_sym_u64] = ACTIONS(1184), + [anon_sym_i64] = ACTIONS(1184), + [anon_sym_u128] = ACTIONS(1184), + [anon_sym_i128] = ACTIONS(1184), + [anon_sym_isize] = ACTIONS(1184), + [anon_sym_usize] = ACTIONS(1184), + [anon_sym_f32] = ACTIONS(1184), + [anon_sym_f64] = ACTIONS(1184), + [anon_sym_bool] = ACTIONS(1184), + [anon_sym_str] = ACTIONS(1184), + [anon_sym_char] = ACTIONS(1184), + [anon_sym_SQUOTE] = ACTIONS(1184), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_const] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1184), + [anon_sym_default] = ACTIONS(1184), + [anon_sym_enum] = ACTIONS(1184), + [anon_sym_fn] = ACTIONS(1184), + [anon_sym_for] = ACTIONS(1184), + [anon_sym_if] = ACTIONS(1184), + [anon_sym_impl] = ACTIONS(1184), + [anon_sym_let] = ACTIONS(1184), + [anon_sym_loop] = ACTIONS(1184), + [anon_sym_match] = ACTIONS(1184), + [anon_sym_mod] = ACTIONS(1184), + [anon_sym_pub] = ACTIONS(1184), + [anon_sym_return] = ACTIONS(1184), + [anon_sym_static] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(1184), + [anon_sym_trait] = ACTIONS(1184), + [anon_sym_type] = ACTIONS(1184), + [anon_sym_union] = ACTIONS(1184), + [anon_sym_unsafe] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1184), + [anon_sym_while] = ACTIONS(1184), + [anon_sym_POUND] = ACTIONS(1182), + [anon_sym_BANG] = ACTIONS(1182), + [anon_sym_extern] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_COLON_COLON] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1182), + [anon_sym_DOT_DOT] = ACTIONS(1182), + [anon_sym_DASH] = ACTIONS(1182), + [anon_sym_PIPE] = ACTIONS(1182), + [anon_sym_yield] = ACTIONS(1184), + [anon_sym_move] = ACTIONS(1184), + [sym_integer_literal] = ACTIONS(1182), + [aux_sym_string_literal_token1] = ACTIONS(1182), + [sym_char_literal] = ACTIONS(1182), + [anon_sym_true] = ACTIONS(1184), + [anon_sym_false] = ACTIONS(1184), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(1182), + [sym_float_literal] = ACTIONS(1182), [sym_block_comment] = ACTIONS(3), }, [277] = { - [ts_builtin_sym_end] = ACTIONS(1204), - [sym_identifier] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym_macro_rules_BANG] = ACTIONS(1204), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_RBRACE] = ACTIONS(1204), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_async] = ACTIONS(1206), - [anon_sym_break] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1206), - [anon_sym_continue] = ACTIONS(1206), - [anon_sym_default] = ACTIONS(1206), - [anon_sym_enum] = ACTIONS(1206), - [anon_sym_fn] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_impl] = ACTIONS(1206), - [anon_sym_let] = ACTIONS(1206), - [anon_sym_loop] = ACTIONS(1206), - [anon_sym_match] = ACTIONS(1206), - [anon_sym_mod] = ACTIONS(1206), - [anon_sym_pub] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_static] = ACTIONS(1206), - [anon_sym_struct] = ACTIONS(1206), - [anon_sym_trait] = ACTIONS(1206), - [anon_sym_type] = ACTIONS(1206), - [anon_sym_union] = ACTIONS(1206), - [anon_sym_unsafe] = ACTIONS(1206), - [anon_sym_use] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_POUND] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1206), - [anon_sym_LT] = ACTIONS(1204), - [anon_sym_COLON_COLON] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_DOT_DOT] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PIPE] = ACTIONS(1204), - [anon_sym_yield] = ACTIONS(1206), - [anon_sym_move] = ACTIONS(1206), - [sym_integer_literal] = ACTIONS(1204), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1204), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1206), - [sym_super] = ACTIONS(1206), - [sym_crate] = ACTIONS(1206), - [sym_metavariable] = ACTIONS(1204), - [sym_raw_string_literal] = ACTIONS(1204), - [sym_float_literal] = ACTIONS(1204), + [ts_builtin_sym_end] = ACTIONS(1186), + [sym_identifier] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1186), + [anon_sym_macro_rules_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1186), + [anon_sym_RBRACE] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_STAR] = ACTIONS(1186), + [anon_sym_u8] = ACTIONS(1188), + [anon_sym_i8] = ACTIONS(1188), + [anon_sym_u16] = ACTIONS(1188), + [anon_sym_i16] = ACTIONS(1188), + [anon_sym_u32] = ACTIONS(1188), + [anon_sym_i32] = ACTIONS(1188), + [anon_sym_u64] = ACTIONS(1188), + [anon_sym_i64] = ACTIONS(1188), + [anon_sym_u128] = ACTIONS(1188), + [anon_sym_i128] = ACTIONS(1188), + [anon_sym_isize] = ACTIONS(1188), + [anon_sym_usize] = ACTIONS(1188), + [anon_sym_f32] = ACTIONS(1188), + [anon_sym_f64] = ACTIONS(1188), + [anon_sym_bool] = ACTIONS(1188), + [anon_sym_str] = ACTIONS(1188), + [anon_sym_char] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [anon_sym_async] = ACTIONS(1188), + [anon_sym_break] = ACTIONS(1188), + [anon_sym_const] = ACTIONS(1188), + [anon_sym_continue] = ACTIONS(1188), + [anon_sym_default] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(1188), + [anon_sym_fn] = ACTIONS(1188), + [anon_sym_for] = ACTIONS(1188), + [anon_sym_if] = ACTIONS(1188), + [anon_sym_impl] = ACTIONS(1188), + [anon_sym_let] = ACTIONS(1188), + [anon_sym_loop] = ACTIONS(1188), + [anon_sym_match] = ACTIONS(1188), + [anon_sym_mod] = ACTIONS(1188), + [anon_sym_pub] = ACTIONS(1188), + [anon_sym_return] = ACTIONS(1188), + [anon_sym_static] = ACTIONS(1188), + [anon_sym_struct] = ACTIONS(1188), + [anon_sym_trait] = ACTIONS(1188), + [anon_sym_type] = ACTIONS(1188), + [anon_sym_union] = ACTIONS(1188), + [anon_sym_unsafe] = ACTIONS(1188), + [anon_sym_use] = ACTIONS(1188), + [anon_sym_while] = ACTIONS(1188), + [anon_sym_POUND] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_extern] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_COLON_COLON] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(1186), + [anon_sym_DOT_DOT] = ACTIONS(1186), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_PIPE] = ACTIONS(1186), + [anon_sym_yield] = ACTIONS(1188), + [anon_sym_move] = ACTIONS(1188), + [sym_integer_literal] = ACTIONS(1186), + [aux_sym_string_literal_token1] = ACTIONS(1186), + [sym_char_literal] = ACTIONS(1186), + [anon_sym_true] = ACTIONS(1188), + [anon_sym_false] = ACTIONS(1188), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1188), + [sym_super] = ACTIONS(1188), + [sym_crate] = ACTIONS(1188), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(1186), + [sym_float_literal] = ACTIONS(1186), [sym_block_comment] = ACTIONS(3), }, [278] = { - [ts_builtin_sym_end] = ACTIONS(1208), - [sym_identifier] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym_macro_rules_BANG] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_u8] = ACTIONS(1210), - [anon_sym_i8] = ACTIONS(1210), - [anon_sym_u16] = ACTIONS(1210), - [anon_sym_i16] = ACTIONS(1210), - [anon_sym_u32] = ACTIONS(1210), - [anon_sym_i32] = ACTIONS(1210), - [anon_sym_u64] = ACTIONS(1210), - [anon_sym_i64] = ACTIONS(1210), - [anon_sym_u128] = ACTIONS(1210), - [anon_sym_i128] = ACTIONS(1210), - [anon_sym_isize] = ACTIONS(1210), - [anon_sym_usize] = ACTIONS(1210), - [anon_sym_f32] = ACTIONS(1210), - [anon_sym_f64] = ACTIONS(1210), - [anon_sym_bool] = ACTIONS(1210), - [anon_sym_str] = ACTIONS(1210), - [anon_sym_char] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_async] = ACTIONS(1210), - [anon_sym_break] = ACTIONS(1210), - [anon_sym_const] = ACTIONS(1210), - [anon_sym_continue] = ACTIONS(1210), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_enum] = ACTIONS(1210), - [anon_sym_fn] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1210), - [anon_sym_if] = ACTIONS(1210), - [anon_sym_impl] = ACTIONS(1210), - [anon_sym_let] = ACTIONS(1210), - [anon_sym_loop] = ACTIONS(1210), - [anon_sym_match] = ACTIONS(1210), - [anon_sym_mod] = ACTIONS(1210), - [anon_sym_pub] = ACTIONS(1210), - [anon_sym_return] = ACTIONS(1210), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_struct] = ACTIONS(1210), - [anon_sym_trait] = ACTIONS(1210), - [anon_sym_type] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_unsafe] = ACTIONS(1210), - [anon_sym_use] = ACTIONS(1210), - [anon_sym_while] = ACTIONS(1210), - [anon_sym_POUND] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1210), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1210), - [anon_sym_move] = ACTIONS(1210), - [sym_integer_literal] = ACTIONS(1208), - [aux_sym_string_literal_token1] = ACTIONS(1208), - [sym_char_literal] = ACTIONS(1208), - [anon_sym_true] = ACTIONS(1210), - [anon_sym_false] = ACTIONS(1210), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1210), - [sym_super] = ACTIONS(1210), - [sym_crate] = ACTIONS(1210), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1208), - [sym_float_literal] = ACTIONS(1208), + [ts_builtin_sym_end] = ACTIONS(1190), + [sym_identifier] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1190), + [anon_sym_macro_rules_BANG] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1190), + [anon_sym_RBRACE] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1190), + [anon_sym_u8] = ACTIONS(1192), + [anon_sym_i8] = ACTIONS(1192), + [anon_sym_u16] = ACTIONS(1192), + [anon_sym_i16] = ACTIONS(1192), + [anon_sym_u32] = ACTIONS(1192), + [anon_sym_i32] = ACTIONS(1192), + [anon_sym_u64] = ACTIONS(1192), + [anon_sym_i64] = ACTIONS(1192), + [anon_sym_u128] = ACTIONS(1192), + [anon_sym_i128] = ACTIONS(1192), + [anon_sym_isize] = ACTIONS(1192), + [anon_sym_usize] = ACTIONS(1192), + [anon_sym_f32] = ACTIONS(1192), + [anon_sym_f64] = ACTIONS(1192), + [anon_sym_bool] = ACTIONS(1192), + [anon_sym_str] = ACTIONS(1192), + [anon_sym_char] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_break] = ACTIONS(1192), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_continue] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(1192), + [anon_sym_enum] = ACTIONS(1192), + [anon_sym_fn] = ACTIONS(1192), + [anon_sym_for] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(1192), + [anon_sym_impl] = ACTIONS(1192), + [anon_sym_let] = ACTIONS(1192), + [anon_sym_loop] = ACTIONS(1192), + [anon_sym_match] = ACTIONS(1192), + [anon_sym_mod] = ACTIONS(1192), + [anon_sym_pub] = ACTIONS(1192), + [anon_sym_return] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1192), + [anon_sym_struct] = ACTIONS(1192), + [anon_sym_trait] = ACTIONS(1192), + [anon_sym_type] = ACTIONS(1192), + [anon_sym_union] = ACTIONS(1192), + [anon_sym_unsafe] = ACTIONS(1192), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_while] = ACTIONS(1192), + [anon_sym_POUND] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_COLON_COLON] = ACTIONS(1190), + [anon_sym_AMP] = ACTIONS(1190), + [anon_sym_DOT_DOT] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_yield] = ACTIONS(1192), + [anon_sym_move] = ACTIONS(1192), + [sym_integer_literal] = ACTIONS(1190), + [aux_sym_string_literal_token1] = ACTIONS(1190), + [sym_char_literal] = ACTIONS(1190), + [anon_sym_true] = ACTIONS(1192), + [anon_sym_false] = ACTIONS(1192), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1192), + [sym_super] = ACTIONS(1192), + [sym_crate] = ACTIONS(1192), + [sym_metavariable] = ACTIONS(1190), + [sym_raw_string_literal] = ACTIONS(1190), + [sym_float_literal] = ACTIONS(1190), [sym_block_comment] = ACTIONS(3), }, [279] = { - [ts_builtin_sym_end] = ACTIONS(1212), - [sym_identifier] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym_macro_rules_BANG] = ACTIONS(1212), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_RBRACE] = ACTIONS(1212), - [anon_sym_LBRACK] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_u8] = ACTIONS(1214), - [anon_sym_i8] = ACTIONS(1214), - [anon_sym_u16] = ACTIONS(1214), - [anon_sym_i16] = ACTIONS(1214), - [anon_sym_u32] = ACTIONS(1214), - [anon_sym_i32] = ACTIONS(1214), - [anon_sym_u64] = ACTIONS(1214), - [anon_sym_i64] = ACTIONS(1214), - [anon_sym_u128] = ACTIONS(1214), - [anon_sym_i128] = ACTIONS(1214), - [anon_sym_isize] = ACTIONS(1214), - [anon_sym_usize] = ACTIONS(1214), - [anon_sym_f32] = ACTIONS(1214), - [anon_sym_f64] = ACTIONS(1214), - [anon_sym_bool] = ACTIONS(1214), - [anon_sym_str] = ACTIONS(1214), - [anon_sym_char] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_async] = ACTIONS(1214), - [anon_sym_break] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(1214), - [anon_sym_default] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_fn] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1214), - [anon_sym_impl] = ACTIONS(1214), - [anon_sym_let] = ACTIONS(1214), - [anon_sym_loop] = ACTIONS(1214), - [anon_sym_match] = ACTIONS(1214), - [anon_sym_mod] = ACTIONS(1214), - [anon_sym_pub] = ACTIONS(1214), - [anon_sym_return] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [anon_sym_trait] = ACTIONS(1214), - [anon_sym_type] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_unsafe] = ACTIONS(1214), - [anon_sym_use] = ACTIONS(1214), - [anon_sym_while] = ACTIONS(1214), - [anon_sym_POUND] = ACTIONS(1212), - [anon_sym_BANG] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1214), - [anon_sym_LT] = ACTIONS(1212), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_DOT_DOT] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PIPE] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_move] = ACTIONS(1214), - [sym_integer_literal] = ACTIONS(1212), - [aux_sym_string_literal_token1] = ACTIONS(1212), - [sym_char_literal] = ACTIONS(1212), - [anon_sym_true] = ACTIONS(1214), - [anon_sym_false] = ACTIONS(1214), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1214), - [sym_super] = ACTIONS(1214), - [sym_crate] = ACTIONS(1214), - [sym_metavariable] = ACTIONS(1212), - [sym_raw_string_literal] = ACTIONS(1212), - [sym_float_literal] = ACTIONS(1212), + [ts_builtin_sym_end] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1194), + [anon_sym_macro_rules_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_u8] = ACTIONS(1196), + [anon_sym_i8] = ACTIONS(1196), + [anon_sym_u16] = ACTIONS(1196), + [anon_sym_i16] = ACTIONS(1196), + [anon_sym_u32] = ACTIONS(1196), + [anon_sym_i32] = ACTIONS(1196), + [anon_sym_u64] = ACTIONS(1196), + [anon_sym_i64] = ACTIONS(1196), + [anon_sym_u128] = ACTIONS(1196), + [anon_sym_i128] = ACTIONS(1196), + [anon_sym_isize] = ACTIONS(1196), + [anon_sym_usize] = ACTIONS(1196), + [anon_sym_f32] = ACTIONS(1196), + [anon_sym_f64] = ACTIONS(1196), + [anon_sym_bool] = ACTIONS(1196), + [anon_sym_str] = ACTIONS(1196), + [anon_sym_char] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_async] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_const] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_fn] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_impl] = ACTIONS(1196), + [anon_sym_let] = ACTIONS(1196), + [anon_sym_loop] = ACTIONS(1196), + [anon_sym_match] = ACTIONS(1196), + [anon_sym_mod] = ACTIONS(1196), + [anon_sym_pub] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_trait] = ACTIONS(1196), + [anon_sym_type] = ACTIONS(1196), + [anon_sym_union] = ACTIONS(1196), + [anon_sym_unsafe] = ACTIONS(1196), + [anon_sym_use] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_POUND] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [anon_sym_AMP] = ACTIONS(1194), + [anon_sym_DOT_DOT] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_yield] = ACTIONS(1196), + [anon_sym_move] = ACTIONS(1196), + [sym_integer_literal] = ACTIONS(1194), + [aux_sym_string_literal_token1] = ACTIONS(1194), + [sym_char_literal] = ACTIONS(1194), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1196), + [sym_super] = ACTIONS(1196), + [sym_crate] = ACTIONS(1196), + [sym_metavariable] = ACTIONS(1194), + [sym_raw_string_literal] = ACTIONS(1194), + [sym_float_literal] = ACTIONS(1194), [sym_block_comment] = ACTIONS(3), }, [280] = { - [ts_builtin_sym_end] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_macro_rules_BANG] = ACTIONS(1216), - [anon_sym_LPAREN] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_RBRACE] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1216), - [anon_sym_u8] = ACTIONS(1218), - [anon_sym_i8] = ACTIONS(1218), - [anon_sym_u16] = ACTIONS(1218), - [anon_sym_i16] = ACTIONS(1218), - [anon_sym_u32] = ACTIONS(1218), - [anon_sym_i32] = ACTIONS(1218), - [anon_sym_u64] = ACTIONS(1218), - [anon_sym_i64] = ACTIONS(1218), - [anon_sym_u128] = ACTIONS(1218), - [anon_sym_i128] = ACTIONS(1218), - [anon_sym_isize] = ACTIONS(1218), - [anon_sym_usize] = ACTIONS(1218), - [anon_sym_f32] = ACTIONS(1218), - [anon_sym_f64] = ACTIONS(1218), - [anon_sym_bool] = ACTIONS(1218), - [anon_sym_str] = ACTIONS(1218), - [anon_sym_char] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_default] = ACTIONS(1218), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_fn] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_impl] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1218), - [anon_sym_match] = ACTIONS(1218), - [anon_sym_mod] = ACTIONS(1218), - [anon_sym_pub] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_trait] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_union] = ACTIONS(1218), - [anon_sym_unsafe] = ACTIONS(1218), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym_LT] = ACTIONS(1216), - [anon_sym_COLON_COLON] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_DOT_DOT] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_yield] = ACTIONS(1218), - [anon_sym_move] = ACTIONS(1218), - [sym_integer_literal] = ACTIONS(1216), - [aux_sym_string_literal_token1] = ACTIONS(1216), - [sym_char_literal] = ACTIONS(1216), - [anon_sym_true] = ACTIONS(1218), - [anon_sym_false] = ACTIONS(1218), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1218), - [sym_super] = ACTIONS(1218), - [sym_crate] = ACTIONS(1218), - [sym_metavariable] = ACTIONS(1216), - [sym_raw_string_literal] = ACTIONS(1216), - [sym_float_literal] = ACTIONS(1216), + [ts_builtin_sym_end] = ACTIONS(1198), + [sym_identifier] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_macro_rules_BANG] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_u8] = ACTIONS(1200), + [anon_sym_i8] = ACTIONS(1200), + [anon_sym_u16] = ACTIONS(1200), + [anon_sym_i16] = ACTIONS(1200), + [anon_sym_u32] = ACTIONS(1200), + [anon_sym_i32] = ACTIONS(1200), + [anon_sym_u64] = ACTIONS(1200), + [anon_sym_i64] = ACTIONS(1200), + [anon_sym_u128] = ACTIONS(1200), + [anon_sym_i128] = ACTIONS(1200), + [anon_sym_isize] = ACTIONS(1200), + [anon_sym_usize] = ACTIONS(1200), + [anon_sym_f32] = ACTIONS(1200), + [anon_sym_f64] = ACTIONS(1200), + [anon_sym_bool] = ACTIONS(1200), + [anon_sym_str] = ACTIONS(1200), + [anon_sym_char] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_async] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_fn] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_impl] = ACTIONS(1200), + [anon_sym_let] = ACTIONS(1200), + [anon_sym_loop] = ACTIONS(1200), + [anon_sym_match] = ACTIONS(1200), + [anon_sym_mod] = ACTIONS(1200), + [anon_sym_pub] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_trait] = ACTIONS(1200), + [anon_sym_type] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_unsafe] = ACTIONS(1200), + [anon_sym_use] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_POUND] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_COLON_COLON] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_DOT_DOT] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_yield] = ACTIONS(1200), + [anon_sym_move] = ACTIONS(1200), + [sym_integer_literal] = ACTIONS(1198), + [aux_sym_string_literal_token1] = ACTIONS(1198), + [sym_char_literal] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1200), + [anon_sym_false] = ACTIONS(1200), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1198), + [sym_raw_string_literal] = ACTIONS(1198), + [sym_float_literal] = ACTIONS(1198), [sym_block_comment] = ACTIONS(3), }, [281] = { - [ts_builtin_sym_end] = ACTIONS(1220), - [sym_identifier] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_macro_rules_BANG] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_RBRACE] = ACTIONS(1220), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_u8] = ACTIONS(1222), - [anon_sym_i8] = ACTIONS(1222), - [anon_sym_u16] = ACTIONS(1222), - [anon_sym_i16] = ACTIONS(1222), - [anon_sym_u32] = ACTIONS(1222), - [anon_sym_i32] = ACTIONS(1222), - [anon_sym_u64] = ACTIONS(1222), - [anon_sym_i64] = ACTIONS(1222), - [anon_sym_u128] = ACTIONS(1222), - [anon_sym_i128] = ACTIONS(1222), - [anon_sym_isize] = ACTIONS(1222), - [anon_sym_usize] = ACTIONS(1222), - [anon_sym_f32] = ACTIONS(1222), - [anon_sym_f64] = ACTIONS(1222), - [anon_sym_bool] = ACTIONS(1222), - [anon_sym_str] = ACTIONS(1222), - [anon_sym_char] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_default] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_fn] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_impl] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_mod] = ACTIONS(1222), - [anon_sym_pub] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_trait] = ACTIONS(1222), - [anon_sym_type] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [anon_sym_unsafe] = ACTIONS(1222), - [anon_sym_use] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_POUND] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_COLON_COLON] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_DOT_DOT] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_yield] = ACTIONS(1222), - [anon_sym_move] = ACTIONS(1222), - [sym_integer_literal] = ACTIONS(1220), - [aux_sym_string_literal_token1] = ACTIONS(1220), - [sym_char_literal] = ACTIONS(1220), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1222), - [sym_super] = ACTIONS(1222), - [sym_crate] = ACTIONS(1222), - [sym_metavariable] = ACTIONS(1220), - [sym_raw_string_literal] = ACTIONS(1220), - [sym_float_literal] = ACTIONS(1220), + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_macro_rules_BANG] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_async] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [anon_sym_fn] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_impl] = ACTIONS(1204), + [anon_sym_let] = ACTIONS(1204), + [anon_sym_loop] = ACTIONS(1204), + [anon_sym_match] = ACTIONS(1204), + [anon_sym_mod] = ACTIONS(1204), + [anon_sym_pub] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_struct] = ACTIONS(1204), + [anon_sym_trait] = ACTIONS(1204), + [anon_sym_type] = ACTIONS(1204), + [anon_sym_union] = ACTIONS(1204), + [anon_sym_unsafe] = ACTIONS(1204), + [anon_sym_use] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_POUND] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1202), + [anon_sym_COLON_COLON] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_DOT_DOT] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PIPE] = ACTIONS(1202), + [anon_sym_yield] = ACTIONS(1204), + [anon_sym_move] = ACTIONS(1204), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1202), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1204), + [anon_sym_false] = ACTIONS(1204), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1204), + [sym_super] = ACTIONS(1204), + [sym_crate] = ACTIONS(1204), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, [282] = { - [ts_builtin_sym_end] = ACTIONS(1224), - [sym_identifier] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_macro_rules_BANG] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_RBRACE] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_u8] = ACTIONS(1226), - [anon_sym_i8] = ACTIONS(1226), - [anon_sym_u16] = ACTIONS(1226), - [anon_sym_i16] = ACTIONS(1226), - [anon_sym_u32] = ACTIONS(1226), - [anon_sym_i32] = ACTIONS(1226), - [anon_sym_u64] = ACTIONS(1226), - [anon_sym_i64] = ACTIONS(1226), - [anon_sym_u128] = ACTIONS(1226), - [anon_sym_i128] = ACTIONS(1226), - [anon_sym_isize] = ACTIONS(1226), - [anon_sym_usize] = ACTIONS(1226), - [anon_sym_f32] = ACTIONS(1226), - [anon_sym_f64] = ACTIONS(1226), - [anon_sym_bool] = ACTIONS(1226), - [anon_sym_str] = ACTIONS(1226), - [anon_sym_char] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_async] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_fn] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_impl] = ACTIONS(1226), - [anon_sym_let] = ACTIONS(1226), - [anon_sym_loop] = ACTIONS(1226), - [anon_sym_match] = ACTIONS(1226), - [anon_sym_mod] = ACTIONS(1226), - [anon_sym_pub] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_trait] = ACTIONS(1226), - [anon_sym_type] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_unsafe] = ACTIONS(1226), - [anon_sym_use] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_POUND] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_COLON_COLON] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_DOT_DOT] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_yield] = ACTIONS(1226), - [anon_sym_move] = ACTIONS(1226), - [sym_integer_literal] = ACTIONS(1224), - [aux_sym_string_literal_token1] = ACTIONS(1224), - [sym_char_literal] = ACTIONS(1224), - [anon_sym_true] = ACTIONS(1226), - [anon_sym_false] = ACTIONS(1226), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1226), - [sym_super] = ACTIONS(1226), - [sym_crate] = ACTIONS(1226), - [sym_metavariable] = ACTIONS(1224), - [sym_raw_string_literal] = ACTIONS(1224), - [sym_float_literal] = ACTIONS(1224), + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_macro_rules_BANG] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_u8] = ACTIONS(1208), + [anon_sym_i8] = ACTIONS(1208), + [anon_sym_u16] = ACTIONS(1208), + [anon_sym_i16] = ACTIONS(1208), + [anon_sym_u32] = ACTIONS(1208), + [anon_sym_i32] = ACTIONS(1208), + [anon_sym_u64] = ACTIONS(1208), + [anon_sym_i64] = ACTIONS(1208), + [anon_sym_u128] = ACTIONS(1208), + [anon_sym_i128] = ACTIONS(1208), + [anon_sym_isize] = ACTIONS(1208), + [anon_sym_usize] = ACTIONS(1208), + [anon_sym_f32] = ACTIONS(1208), + [anon_sym_f64] = ACTIONS(1208), + [anon_sym_bool] = ACTIONS(1208), + [anon_sym_str] = ACTIONS(1208), + [anon_sym_char] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_fn] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_impl] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_loop] = ACTIONS(1208), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_mod] = ACTIONS(1208), + [anon_sym_pub] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_trait] = ACTIONS(1208), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_unsafe] = ACTIONS(1208), + [anon_sym_use] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_POUND] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_DOT_DOT] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_PIPE] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_move] = ACTIONS(1208), + [sym_integer_literal] = ACTIONS(1206), + [aux_sym_string_literal_token1] = ACTIONS(1206), + [sym_char_literal] = ACTIONS(1206), + [anon_sym_true] = ACTIONS(1208), + [anon_sym_false] = ACTIONS(1208), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_crate] = ACTIONS(1208), + [sym_metavariable] = ACTIONS(1206), + [sym_raw_string_literal] = ACTIONS(1206), + [sym_float_literal] = ACTIONS(1206), [sym_block_comment] = ACTIONS(3), }, [283] = { - [ts_builtin_sym_end] = ACTIONS(1228), - [sym_identifier] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_macro_rules_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_u8] = ACTIONS(1230), - [anon_sym_i8] = ACTIONS(1230), - [anon_sym_u16] = ACTIONS(1230), - [anon_sym_i16] = ACTIONS(1230), - [anon_sym_u32] = ACTIONS(1230), - [anon_sym_i32] = ACTIONS(1230), - [anon_sym_u64] = ACTIONS(1230), - [anon_sym_i64] = ACTIONS(1230), - [anon_sym_u128] = ACTIONS(1230), - [anon_sym_i128] = ACTIONS(1230), - [anon_sym_isize] = ACTIONS(1230), - [anon_sym_usize] = ACTIONS(1230), - [anon_sym_f32] = ACTIONS(1230), - [anon_sym_f64] = ACTIONS(1230), - [anon_sym_bool] = ACTIONS(1230), - [anon_sym_str] = ACTIONS(1230), - [anon_sym_char] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_default] = ACTIONS(1230), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_fn] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_impl] = ACTIONS(1230), - [anon_sym_let] = ACTIONS(1230), - [anon_sym_loop] = ACTIONS(1230), - [anon_sym_match] = ACTIONS(1230), - [anon_sym_mod] = ACTIONS(1230), - [anon_sym_pub] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_trait] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1230), - [anon_sym_unsafe] = ACTIONS(1230), - [anon_sym_use] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_POUND] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_COLON_COLON] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_DOT_DOT] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [sym_integer_literal] = ACTIONS(1228), - [aux_sym_string_literal_token1] = ACTIONS(1228), - [sym_char_literal] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1230), - [anon_sym_false] = ACTIONS(1230), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1230), - [sym_super] = ACTIONS(1230), - [sym_crate] = ACTIONS(1230), - [sym_metavariable] = ACTIONS(1228), - [sym_raw_string_literal] = ACTIONS(1228), - [sym_float_literal] = ACTIONS(1228), + [ts_builtin_sym_end] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_macro_rules_BANG] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_u8] = ACTIONS(1212), + [anon_sym_i8] = ACTIONS(1212), + [anon_sym_u16] = ACTIONS(1212), + [anon_sym_i16] = ACTIONS(1212), + [anon_sym_u32] = ACTIONS(1212), + [anon_sym_i32] = ACTIONS(1212), + [anon_sym_u64] = ACTIONS(1212), + [anon_sym_i64] = ACTIONS(1212), + [anon_sym_u128] = ACTIONS(1212), + [anon_sym_i128] = ACTIONS(1212), + [anon_sym_isize] = ACTIONS(1212), + [anon_sym_usize] = ACTIONS(1212), + [anon_sym_f32] = ACTIONS(1212), + [anon_sym_f64] = ACTIONS(1212), + [anon_sym_bool] = ACTIONS(1212), + [anon_sym_str] = ACTIONS(1212), + [anon_sym_char] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_fn] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_impl] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_loop] = ACTIONS(1212), + [anon_sym_match] = ACTIONS(1212), + [anon_sym_mod] = ACTIONS(1212), + [anon_sym_pub] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_trait] = ACTIONS(1212), + [anon_sym_type] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_unsafe] = ACTIONS(1212), + [anon_sym_use] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_POUND] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_DOT_DOT] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PIPE] = ACTIONS(1210), + [anon_sym_yield] = ACTIONS(1212), + [anon_sym_move] = ACTIONS(1212), + [sym_integer_literal] = ACTIONS(1210), + [aux_sym_string_literal_token1] = ACTIONS(1210), + [sym_char_literal] = ACTIONS(1210), + [anon_sym_true] = ACTIONS(1212), + [anon_sym_false] = ACTIONS(1212), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1212), + [sym_super] = ACTIONS(1212), + [sym_crate] = ACTIONS(1212), + [sym_metavariable] = ACTIONS(1210), + [sym_raw_string_literal] = ACTIONS(1210), + [sym_float_literal] = ACTIONS(1210), [sym_block_comment] = ACTIONS(3), }, [284] = { - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym_macro_rules_BANG] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_fn] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_impl] = ACTIONS(1234), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_loop] = ACTIONS(1234), - [anon_sym_match] = ACTIONS(1234), - [anon_sym_mod] = ACTIONS(1234), - [anon_sym_pub] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_trait] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsafe] = ACTIONS(1234), - [anon_sym_use] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_DOT_DOT] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym_raw_string_literal] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_macro_rules_BANG] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_u8] = ACTIONS(1216), + [anon_sym_i8] = ACTIONS(1216), + [anon_sym_u16] = ACTIONS(1216), + [anon_sym_i16] = ACTIONS(1216), + [anon_sym_u32] = ACTIONS(1216), + [anon_sym_i32] = ACTIONS(1216), + [anon_sym_u64] = ACTIONS(1216), + [anon_sym_i64] = ACTIONS(1216), + [anon_sym_u128] = ACTIONS(1216), + [anon_sym_i128] = ACTIONS(1216), + [anon_sym_isize] = ACTIONS(1216), + [anon_sym_usize] = ACTIONS(1216), + [anon_sym_f32] = ACTIONS(1216), + [anon_sym_f64] = ACTIONS(1216), + [anon_sym_bool] = ACTIONS(1216), + [anon_sym_str] = ACTIONS(1216), + [anon_sym_char] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [anon_sym_async] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(1216), + [anon_sym_continue] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1216), + [anon_sym_fn] = ACTIONS(1216), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_impl] = ACTIONS(1216), + [anon_sym_let] = ACTIONS(1216), + [anon_sym_loop] = ACTIONS(1216), + [anon_sym_match] = ACTIONS(1216), + [anon_sym_mod] = ACTIONS(1216), + [anon_sym_pub] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_struct] = ACTIONS(1216), + [anon_sym_trait] = ACTIONS(1216), + [anon_sym_type] = ACTIONS(1216), + [anon_sym_union] = ACTIONS(1216), + [anon_sym_unsafe] = ACTIONS(1216), + [anon_sym_use] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1216), + [anon_sym_POUND] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1216), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_yield] = ACTIONS(1216), + [anon_sym_move] = ACTIONS(1216), + [sym_integer_literal] = ACTIONS(1214), + [aux_sym_string_literal_token1] = ACTIONS(1214), + [sym_char_literal] = ACTIONS(1214), + [anon_sym_true] = ACTIONS(1216), + [anon_sym_false] = ACTIONS(1216), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1214), + [sym_raw_string_literal] = ACTIONS(1214), + [sym_float_literal] = ACTIONS(1214), [sym_block_comment] = ACTIONS(3), }, [285] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_macro_rules_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_fn] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_impl] = ACTIONS(1238), - [anon_sym_let] = ACTIONS(1238), - [anon_sym_loop] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [anon_sym_mod] = ACTIONS(1238), - [anon_sym_pub] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsafe] = ACTIONS(1238), - [anon_sym_use] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PIPE] = ACTIONS(1236), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym_raw_string_literal] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), + [ts_builtin_sym_end] = ACTIONS(1218), + [sym_identifier] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_macro_rules_BANG] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_u8] = ACTIONS(1220), + [anon_sym_i8] = ACTIONS(1220), + [anon_sym_u16] = ACTIONS(1220), + [anon_sym_i16] = ACTIONS(1220), + [anon_sym_u32] = ACTIONS(1220), + [anon_sym_i32] = ACTIONS(1220), + [anon_sym_u64] = ACTIONS(1220), + [anon_sym_i64] = ACTIONS(1220), + [anon_sym_u128] = ACTIONS(1220), + [anon_sym_i128] = ACTIONS(1220), + [anon_sym_isize] = ACTIONS(1220), + [anon_sym_usize] = ACTIONS(1220), + [anon_sym_f32] = ACTIONS(1220), + [anon_sym_f64] = ACTIONS(1220), + [anon_sym_bool] = ACTIONS(1220), + [anon_sym_str] = ACTIONS(1220), + [anon_sym_char] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_fn] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_impl] = ACTIONS(1220), + [anon_sym_let] = ACTIONS(1220), + [anon_sym_loop] = ACTIONS(1220), + [anon_sym_match] = ACTIONS(1220), + [anon_sym_mod] = ACTIONS(1220), + [anon_sym_pub] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_trait] = ACTIONS(1220), + [anon_sym_type] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_unsafe] = ACTIONS(1220), + [anon_sym_use] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_POUND] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1218), + [anon_sym_COLON_COLON] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_DOT_DOT] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_yield] = ACTIONS(1220), + [anon_sym_move] = ACTIONS(1220), + [sym_integer_literal] = ACTIONS(1218), + [aux_sym_string_literal_token1] = ACTIONS(1218), + [sym_char_literal] = ACTIONS(1218), + [anon_sym_true] = ACTIONS(1220), + [anon_sym_false] = ACTIONS(1220), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1220), + [sym_super] = ACTIONS(1220), + [sym_crate] = ACTIONS(1220), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(1218), + [sym_float_literal] = ACTIONS(1218), [sym_block_comment] = ACTIONS(3), }, [286] = { - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_macro_rules_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_fn] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_impl] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1242), - [anon_sym_loop] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_mod] = ACTIONS(1242), - [anon_sym_pub] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_trait] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsafe] = ACTIONS(1242), - [anon_sym_use] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_DOT_DOT] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym_raw_string_literal] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_identifier] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_macro_rules_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_fn] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_impl] = ACTIONS(1224), + [anon_sym_let] = ACTIONS(1224), + [anon_sym_loop] = ACTIONS(1224), + [anon_sym_match] = ACTIONS(1224), + [anon_sym_mod] = ACTIONS(1224), + [anon_sym_pub] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_struct] = ACTIONS(1224), + [anon_sym_trait] = ACTIONS(1224), + [anon_sym_type] = ACTIONS(1224), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_unsafe] = ACTIONS(1224), + [anon_sym_use] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_POUND] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_COLON_COLON] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_DOT_DOT] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_yield] = ACTIONS(1224), + [anon_sym_move] = ACTIONS(1224), + [sym_integer_literal] = ACTIONS(1222), + [aux_sym_string_literal_token1] = ACTIONS(1222), + [sym_char_literal] = ACTIONS(1222), + [anon_sym_true] = ACTIONS(1224), + [anon_sym_false] = ACTIONS(1224), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1224), + [sym_super] = ACTIONS(1224), + [sym_crate] = ACTIONS(1224), + [sym_metavariable] = ACTIONS(1222), + [sym_raw_string_literal] = ACTIONS(1222), + [sym_float_literal] = ACTIONS(1222), [sym_block_comment] = ACTIONS(3), }, [287] = { - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_macro_rules_BANG] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_fn] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_impl] = ACTIONS(1246), - [anon_sym_let] = ACTIONS(1246), - [anon_sym_loop] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1246), - [anon_sym_pub] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_trait] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_unsafe] = ACTIONS(1246), - [anon_sym_use] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym_raw_string_literal] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_macro_rules_BANG] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_u8] = ACTIONS(1228), + [anon_sym_i8] = ACTIONS(1228), + [anon_sym_u16] = ACTIONS(1228), + [anon_sym_i16] = ACTIONS(1228), + [anon_sym_u32] = ACTIONS(1228), + [anon_sym_i32] = ACTIONS(1228), + [anon_sym_u64] = ACTIONS(1228), + [anon_sym_i64] = ACTIONS(1228), + [anon_sym_u128] = ACTIONS(1228), + [anon_sym_i128] = ACTIONS(1228), + [anon_sym_isize] = ACTIONS(1228), + [anon_sym_usize] = ACTIONS(1228), + [anon_sym_f32] = ACTIONS(1228), + [anon_sym_f64] = ACTIONS(1228), + [anon_sym_bool] = ACTIONS(1228), + [anon_sym_str] = ACTIONS(1228), + [anon_sym_char] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_async] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_const] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_impl] = ACTIONS(1228), + [anon_sym_let] = ACTIONS(1228), + [anon_sym_loop] = ACTIONS(1228), + [anon_sym_match] = ACTIONS(1228), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_pub] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1228), + [anon_sym_trait] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_unsafe] = ACTIONS(1228), + [anon_sym_use] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_POUND] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_extern] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_COLON_COLON] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_DOT_DOT] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_yield] = ACTIONS(1228), + [anon_sym_move] = ACTIONS(1228), + [sym_integer_literal] = ACTIONS(1226), + [aux_sym_string_literal_token1] = ACTIONS(1226), + [sym_char_literal] = ACTIONS(1226), + [anon_sym_true] = ACTIONS(1228), + [anon_sym_false] = ACTIONS(1228), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1228), + [sym_super] = ACTIONS(1228), + [sym_crate] = ACTIONS(1228), + [sym_metavariable] = ACTIONS(1226), + [sym_raw_string_literal] = ACTIONS(1226), + [sym_float_literal] = ACTIONS(1226), [sym_block_comment] = ACTIONS(3), }, [288] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym_macro_rules_BANG] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_u8] = ACTIONS(1250), - [anon_sym_i8] = ACTIONS(1250), - [anon_sym_u16] = ACTIONS(1250), - [anon_sym_i16] = ACTIONS(1250), - [anon_sym_u32] = ACTIONS(1250), - [anon_sym_i32] = ACTIONS(1250), - [anon_sym_u64] = ACTIONS(1250), - [anon_sym_i64] = ACTIONS(1250), - [anon_sym_u128] = ACTIONS(1250), - [anon_sym_i128] = ACTIONS(1250), - [anon_sym_isize] = ACTIONS(1250), - [anon_sym_usize] = ACTIONS(1250), - [anon_sym_f32] = ACTIONS(1250), - [anon_sym_f64] = ACTIONS(1250), - [anon_sym_bool] = ACTIONS(1250), - [anon_sym_str] = ACTIONS(1250), - [anon_sym_char] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_async] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_fn] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_impl] = ACTIONS(1250), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_loop] = ACTIONS(1250), - [anon_sym_match] = ACTIONS(1250), - [anon_sym_mod] = ACTIONS(1250), - [anon_sym_pub] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_trait] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_unsafe] = ACTIONS(1250), - [anon_sym_use] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_POUND] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_COLON_COLON] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_DOT_DOT] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_yield] = ACTIONS(1250), - [anon_sym_move] = ACTIONS(1250), - [sym_integer_literal] = ACTIONS(1248), - [aux_sym_string_literal_token1] = ACTIONS(1248), - [sym_char_literal] = ACTIONS(1248), - [anon_sym_true] = ACTIONS(1250), - [anon_sym_false] = ACTIONS(1250), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1250), - [sym_super] = ACTIONS(1250), - [sym_crate] = ACTIONS(1250), - [sym_metavariable] = ACTIONS(1248), - [sym_raw_string_literal] = ACTIONS(1248), - [sym_float_literal] = ACTIONS(1248), + [ts_builtin_sym_end] = ACTIONS(1230), + [sym_identifier] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_macro_rules_BANG] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_RBRACE] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_u8] = ACTIONS(1232), + [anon_sym_i8] = ACTIONS(1232), + [anon_sym_u16] = ACTIONS(1232), + [anon_sym_i16] = ACTIONS(1232), + [anon_sym_u32] = ACTIONS(1232), + [anon_sym_i32] = ACTIONS(1232), + [anon_sym_u64] = ACTIONS(1232), + [anon_sym_i64] = ACTIONS(1232), + [anon_sym_u128] = ACTIONS(1232), + [anon_sym_i128] = ACTIONS(1232), + [anon_sym_isize] = ACTIONS(1232), + [anon_sym_usize] = ACTIONS(1232), + [anon_sym_f32] = ACTIONS(1232), + [anon_sym_f64] = ACTIONS(1232), + [anon_sym_bool] = ACTIONS(1232), + [anon_sym_str] = ACTIONS(1232), + [anon_sym_char] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [anon_sym_async] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_fn] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_let] = ACTIONS(1232), + [anon_sym_loop] = ACTIONS(1232), + [anon_sym_match] = ACTIONS(1232), + [anon_sym_mod] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_trait] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_unsafe] = ACTIONS(1232), + [anon_sym_use] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_POUND] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_DOT_DOT] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_yield] = ACTIONS(1232), + [anon_sym_move] = ACTIONS(1232), + [sym_integer_literal] = ACTIONS(1230), + [aux_sym_string_literal_token1] = ACTIONS(1230), + [sym_char_literal] = ACTIONS(1230), + [anon_sym_true] = ACTIONS(1232), + [anon_sym_false] = ACTIONS(1232), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1232), + [sym_super] = ACTIONS(1232), + [sym_crate] = ACTIONS(1232), + [sym_metavariable] = ACTIONS(1230), + [sym_raw_string_literal] = ACTIONS(1230), + [sym_float_literal] = ACTIONS(1230), [sym_block_comment] = ACTIONS(3), }, [289] = { - [ts_builtin_sym_end] = ACTIONS(1252), - [sym_identifier] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_macro_rules_BANG] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_u8] = ACTIONS(1254), - [anon_sym_i8] = ACTIONS(1254), - [anon_sym_u16] = ACTIONS(1254), - [anon_sym_i16] = ACTIONS(1254), - [anon_sym_u32] = ACTIONS(1254), - [anon_sym_i32] = ACTIONS(1254), - [anon_sym_u64] = ACTIONS(1254), - [anon_sym_i64] = ACTIONS(1254), - [anon_sym_u128] = ACTIONS(1254), - [anon_sym_i128] = ACTIONS(1254), - [anon_sym_isize] = ACTIONS(1254), - [anon_sym_usize] = ACTIONS(1254), - [anon_sym_f32] = ACTIONS(1254), - [anon_sym_f64] = ACTIONS(1254), - [anon_sym_bool] = ACTIONS(1254), - [anon_sym_str] = ACTIONS(1254), - [anon_sym_char] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_async] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_const] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1254), - [anon_sym_default] = ACTIONS(1254), - [anon_sym_enum] = ACTIONS(1254), - [anon_sym_fn] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_impl] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(1254), - [anon_sym_loop] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1254), - [anon_sym_mod] = ACTIONS(1254), - [anon_sym_pub] = ACTIONS(1254), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_struct] = ACTIONS(1254), - [anon_sym_trait] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_union] = ACTIONS(1254), - [anon_sym_unsafe] = ACTIONS(1254), - [anon_sym_use] = ACTIONS(1254), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_POUND] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_COLON_COLON] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_DOT_DOT] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_yield] = ACTIONS(1254), - [anon_sym_move] = ACTIONS(1254), - [sym_integer_literal] = ACTIONS(1252), - [aux_sym_string_literal_token1] = ACTIONS(1252), - [sym_char_literal] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1254), - [anon_sym_false] = ACTIONS(1254), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1254), - [sym_super] = ACTIONS(1254), - [sym_crate] = ACTIONS(1254), - [sym_metavariable] = ACTIONS(1252), - [sym_raw_string_literal] = ACTIONS(1252), - [sym_float_literal] = ACTIONS(1252), + [ts_builtin_sym_end] = ACTIONS(1234), + [sym_identifier] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_macro_rules_BANG] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_u8] = ACTIONS(1236), + [anon_sym_i8] = ACTIONS(1236), + [anon_sym_u16] = ACTIONS(1236), + [anon_sym_i16] = ACTIONS(1236), + [anon_sym_u32] = ACTIONS(1236), + [anon_sym_i32] = ACTIONS(1236), + [anon_sym_u64] = ACTIONS(1236), + [anon_sym_i64] = ACTIONS(1236), + [anon_sym_u128] = ACTIONS(1236), + [anon_sym_i128] = ACTIONS(1236), + [anon_sym_isize] = ACTIONS(1236), + [anon_sym_usize] = ACTIONS(1236), + [anon_sym_f32] = ACTIONS(1236), + [anon_sym_f64] = ACTIONS(1236), + [anon_sym_bool] = ACTIONS(1236), + [anon_sym_str] = ACTIONS(1236), + [anon_sym_char] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_async] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_default] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_fn] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_impl] = ACTIONS(1236), + [anon_sym_let] = ACTIONS(1236), + [anon_sym_loop] = ACTIONS(1236), + [anon_sym_match] = ACTIONS(1236), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_pub] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_trait] = ACTIONS(1236), + [anon_sym_type] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_unsafe] = ACTIONS(1236), + [anon_sym_use] = ACTIONS(1236), + [anon_sym_while] = ACTIONS(1236), + [anon_sym_POUND] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_DOT_DOT] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1236), + [anon_sym_move] = ACTIONS(1236), + [sym_integer_literal] = ACTIONS(1234), + [aux_sym_string_literal_token1] = ACTIONS(1234), + [sym_char_literal] = ACTIONS(1234), + [anon_sym_true] = ACTIONS(1236), + [anon_sym_false] = ACTIONS(1236), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1236), + [sym_super] = ACTIONS(1236), + [sym_crate] = ACTIONS(1236), + [sym_metavariable] = ACTIONS(1234), + [sym_raw_string_literal] = ACTIONS(1234), + [sym_float_literal] = ACTIONS(1234), [sym_block_comment] = ACTIONS(3), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(1256), - [sym_identifier] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_macro_rules_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_RBRACE] = ACTIONS(1256), - [anon_sym_LBRACK] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_u8] = ACTIONS(1258), - [anon_sym_i8] = ACTIONS(1258), - [anon_sym_u16] = ACTIONS(1258), - [anon_sym_i16] = ACTIONS(1258), - [anon_sym_u32] = ACTIONS(1258), - [anon_sym_i32] = ACTIONS(1258), - [anon_sym_u64] = ACTIONS(1258), - [anon_sym_i64] = ACTIONS(1258), - [anon_sym_u128] = ACTIONS(1258), - [anon_sym_i128] = ACTIONS(1258), - [anon_sym_isize] = ACTIONS(1258), - [anon_sym_usize] = ACTIONS(1258), - [anon_sym_f32] = ACTIONS(1258), - [anon_sym_f64] = ACTIONS(1258), - [anon_sym_bool] = ACTIONS(1258), - [anon_sym_str] = ACTIONS(1258), - [anon_sym_char] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_async] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_default] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_fn] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_impl] = ACTIONS(1258), - [anon_sym_let] = ACTIONS(1258), - [anon_sym_loop] = ACTIONS(1258), - [anon_sym_match] = ACTIONS(1258), - [anon_sym_mod] = ACTIONS(1258), - [anon_sym_pub] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_trait] = ACTIONS(1258), - [anon_sym_type] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_unsafe] = ACTIONS(1258), - [anon_sym_use] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_POUND] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_COLON_COLON] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_DOT_DOT] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_yield] = ACTIONS(1258), - [anon_sym_move] = ACTIONS(1258), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1256), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1256), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [ts_builtin_sym_end] = ACTIONS(1238), + [sym_identifier] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_macro_rules_BANG] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_u8] = ACTIONS(1240), + [anon_sym_i8] = ACTIONS(1240), + [anon_sym_u16] = ACTIONS(1240), + [anon_sym_i16] = ACTIONS(1240), + [anon_sym_u32] = ACTIONS(1240), + [anon_sym_i32] = ACTIONS(1240), + [anon_sym_u64] = ACTIONS(1240), + [anon_sym_i64] = ACTIONS(1240), + [anon_sym_u128] = ACTIONS(1240), + [anon_sym_i128] = ACTIONS(1240), + [anon_sym_isize] = ACTIONS(1240), + [anon_sym_usize] = ACTIONS(1240), + [anon_sym_f32] = ACTIONS(1240), + [anon_sym_f64] = ACTIONS(1240), + [anon_sym_bool] = ACTIONS(1240), + [anon_sym_str] = ACTIONS(1240), + [anon_sym_char] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_async] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_fn] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_impl] = ACTIONS(1240), + [anon_sym_let] = ACTIONS(1240), + [anon_sym_loop] = ACTIONS(1240), + [anon_sym_match] = ACTIONS(1240), + [anon_sym_mod] = ACTIONS(1240), + [anon_sym_pub] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_trait] = ACTIONS(1240), + [anon_sym_type] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_unsafe] = ACTIONS(1240), + [anon_sym_use] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_COLON_COLON] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_DOT_DOT] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_move] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1238), + [aux_sym_string_literal_token1] = ACTIONS(1238), + [sym_char_literal] = ACTIONS(1238), + [anon_sym_true] = ACTIONS(1240), + [anon_sym_false] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1240), + [sym_super] = ACTIONS(1240), + [sym_crate] = ACTIONS(1240), + [sym_metavariable] = ACTIONS(1238), + [sym_raw_string_literal] = ACTIONS(1238), + [sym_float_literal] = ACTIONS(1238), [sym_block_comment] = ACTIONS(3), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_macro_rules_BANG] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_RBRACE] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_u8] = ACTIONS(1262), - [anon_sym_i8] = ACTIONS(1262), - [anon_sym_u16] = ACTIONS(1262), - [anon_sym_i16] = ACTIONS(1262), - [anon_sym_u32] = ACTIONS(1262), - [anon_sym_i32] = ACTIONS(1262), - [anon_sym_u64] = ACTIONS(1262), - [anon_sym_i64] = ACTIONS(1262), - [anon_sym_u128] = ACTIONS(1262), - [anon_sym_i128] = ACTIONS(1262), - [anon_sym_isize] = ACTIONS(1262), - [anon_sym_usize] = ACTIONS(1262), - [anon_sym_f32] = ACTIONS(1262), - [anon_sym_f64] = ACTIONS(1262), - [anon_sym_bool] = ACTIONS(1262), - [anon_sym_str] = ACTIONS(1262), - [anon_sym_char] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1262), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_fn] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_impl] = ACTIONS(1262), - [anon_sym_let] = ACTIONS(1262), - [anon_sym_loop] = ACTIONS(1262), - [anon_sym_match] = ACTIONS(1262), - [anon_sym_mod] = ACTIONS(1262), - [anon_sym_pub] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_trait] = ACTIONS(1262), - [anon_sym_type] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1262), - [anon_sym_unsafe] = ACTIONS(1262), - [anon_sym_use] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_POUND] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1262), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_COLON_COLON] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_DOT_DOT] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_yield] = ACTIONS(1262), - [anon_sym_move] = ACTIONS(1262), - [sym_integer_literal] = ACTIONS(1260), - [aux_sym_string_literal_token1] = ACTIONS(1260), - [sym_char_literal] = ACTIONS(1260), - [anon_sym_true] = ACTIONS(1262), - [anon_sym_false] = ACTIONS(1262), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1262), - [sym_super] = ACTIONS(1262), - [sym_crate] = ACTIONS(1262), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(1260), - [sym_float_literal] = ACTIONS(1260), + [ts_builtin_sym_end] = ACTIONS(1242), + [sym_identifier] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_macro_rules_BANG] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_const] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1244), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_fn] = ACTIONS(1244), + [anon_sym_for] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1244), + [anon_sym_impl] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_loop] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1244), + [anon_sym_mod] = ACTIONS(1244), + [anon_sym_pub] = ACTIONS(1244), + [anon_sym_return] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_struct] = ACTIONS(1244), + [anon_sym_trait] = ACTIONS(1244), + [anon_sym_type] = ACTIONS(1244), + [anon_sym_union] = ACTIONS(1244), + [anon_sym_unsafe] = ACTIONS(1244), + [anon_sym_use] = ACTIONS(1244), + [anon_sym_while] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_COLON_COLON] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_DOT_DOT] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_move] = ACTIONS(1244), + [sym_integer_literal] = ACTIONS(1242), + [aux_sym_string_literal_token1] = ACTIONS(1242), + [sym_char_literal] = ACTIONS(1242), + [anon_sym_true] = ACTIONS(1244), + [anon_sym_false] = ACTIONS(1244), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1244), + [sym_super] = ACTIONS(1244), + [sym_crate] = ACTIONS(1244), + [sym_metavariable] = ACTIONS(1242), + [sym_raw_string_literal] = ACTIONS(1242), + [sym_float_literal] = ACTIONS(1242), [sym_block_comment] = ACTIONS(3), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(1264), - [sym_identifier] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_macro_rules_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_u8] = ACTIONS(1266), - [anon_sym_i8] = ACTIONS(1266), - [anon_sym_u16] = ACTIONS(1266), - [anon_sym_i16] = ACTIONS(1266), - [anon_sym_u32] = ACTIONS(1266), - [anon_sym_i32] = ACTIONS(1266), - [anon_sym_u64] = ACTIONS(1266), - [anon_sym_i64] = ACTIONS(1266), - [anon_sym_u128] = ACTIONS(1266), - [anon_sym_i128] = ACTIONS(1266), - [anon_sym_isize] = ACTIONS(1266), - [anon_sym_usize] = ACTIONS(1266), - [anon_sym_f32] = ACTIONS(1266), - [anon_sym_f64] = ACTIONS(1266), - [anon_sym_bool] = ACTIONS(1266), - [anon_sym_str] = ACTIONS(1266), - [anon_sym_char] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_async] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [anon_sym_default] = ACTIONS(1266), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_fn] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_impl] = ACTIONS(1266), - [anon_sym_let] = ACTIONS(1266), - [anon_sym_loop] = ACTIONS(1266), - [anon_sym_match] = ACTIONS(1266), - [anon_sym_mod] = ACTIONS(1266), - [anon_sym_pub] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(1266), - [anon_sym_struct] = ACTIONS(1266), - [anon_sym_trait] = ACTIONS(1266), - [anon_sym_type] = ACTIONS(1266), - [anon_sym_union] = ACTIONS(1266), - [anon_sym_unsafe] = ACTIONS(1266), - [anon_sym_use] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_POUND] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_COLON_COLON] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_DOT_DOT] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_yield] = ACTIONS(1266), - [anon_sym_move] = ACTIONS(1266), - [sym_integer_literal] = ACTIONS(1264), - [aux_sym_string_literal_token1] = ACTIONS(1264), - [sym_char_literal] = ACTIONS(1264), - [anon_sym_true] = ACTIONS(1266), - [anon_sym_false] = ACTIONS(1266), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1266), - [sym_super] = ACTIONS(1266), - [sym_crate] = ACTIONS(1266), - [sym_metavariable] = ACTIONS(1264), - [sym_raw_string_literal] = ACTIONS(1264), - [sym_float_literal] = ACTIONS(1264), + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_identifier] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_macro_rules_BANG] = ACTIONS(1246), + [anon_sym_LPAREN] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_LBRACK] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_u8] = ACTIONS(1248), + [anon_sym_i8] = ACTIONS(1248), + [anon_sym_u16] = ACTIONS(1248), + [anon_sym_i16] = ACTIONS(1248), + [anon_sym_u32] = ACTIONS(1248), + [anon_sym_i32] = ACTIONS(1248), + [anon_sym_u64] = ACTIONS(1248), + [anon_sym_i64] = ACTIONS(1248), + [anon_sym_u128] = ACTIONS(1248), + [anon_sym_i128] = ACTIONS(1248), + [anon_sym_isize] = ACTIONS(1248), + [anon_sym_usize] = ACTIONS(1248), + [anon_sym_f32] = ACTIONS(1248), + [anon_sym_f64] = ACTIONS(1248), + [anon_sym_bool] = ACTIONS(1248), + [anon_sym_str] = ACTIONS(1248), + [anon_sym_char] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_async] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_fn] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_impl] = ACTIONS(1248), + [anon_sym_let] = ACTIONS(1248), + [anon_sym_loop] = ACTIONS(1248), + [anon_sym_match] = ACTIONS(1248), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_pub] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_trait] = ACTIONS(1248), + [anon_sym_type] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_unsafe] = ACTIONS(1248), + [anon_sym_use] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_POUND] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_COLON_COLON] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_DOT_DOT] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_move] = ACTIONS(1248), + [sym_integer_literal] = ACTIONS(1246), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1246), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1248), + [sym_super] = ACTIONS(1248), + [sym_crate] = ACTIONS(1248), + [sym_metavariable] = ACTIONS(1246), + [sym_raw_string_literal] = ACTIONS(1246), + [sym_float_literal] = ACTIONS(1246), [sym_block_comment] = ACTIONS(3), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(1268), - [sym_identifier] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_macro_rules_BANG] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_u8] = ACTIONS(1270), - [anon_sym_i8] = ACTIONS(1270), - [anon_sym_u16] = ACTIONS(1270), - [anon_sym_i16] = ACTIONS(1270), - [anon_sym_u32] = ACTIONS(1270), - [anon_sym_i32] = ACTIONS(1270), - [anon_sym_u64] = ACTIONS(1270), - [anon_sym_i64] = ACTIONS(1270), - [anon_sym_u128] = ACTIONS(1270), - [anon_sym_i128] = ACTIONS(1270), - [anon_sym_isize] = ACTIONS(1270), - [anon_sym_usize] = ACTIONS(1270), - [anon_sym_f32] = ACTIONS(1270), - [anon_sym_f64] = ACTIONS(1270), - [anon_sym_bool] = ACTIONS(1270), - [anon_sym_str] = ACTIONS(1270), - [anon_sym_char] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_fn] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_impl] = ACTIONS(1270), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_loop] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_mod] = ACTIONS(1270), - [anon_sym_pub] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_trait] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_unsafe] = ACTIONS(1270), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_POUND] = ACTIONS(1268), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_COLON_COLON] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_DOT_DOT] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_move] = ACTIONS(1270), - [sym_integer_literal] = ACTIONS(1268), - [aux_sym_string_literal_token1] = ACTIONS(1268), - [sym_char_literal] = ACTIONS(1268), - [anon_sym_true] = ACTIONS(1270), - [anon_sym_false] = ACTIONS(1270), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1268), - [sym_raw_string_literal] = ACTIONS(1268), - [sym_float_literal] = ACTIONS(1268), + [ts_builtin_sym_end] = ACTIONS(1250), + [sym_identifier] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_macro_rules_BANG] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_u8] = ACTIONS(1252), + [anon_sym_i8] = ACTIONS(1252), + [anon_sym_u16] = ACTIONS(1252), + [anon_sym_i16] = ACTIONS(1252), + [anon_sym_u32] = ACTIONS(1252), + [anon_sym_i32] = ACTIONS(1252), + [anon_sym_u64] = ACTIONS(1252), + [anon_sym_i64] = ACTIONS(1252), + [anon_sym_u128] = ACTIONS(1252), + [anon_sym_i128] = ACTIONS(1252), + [anon_sym_isize] = ACTIONS(1252), + [anon_sym_usize] = ACTIONS(1252), + [anon_sym_f32] = ACTIONS(1252), + [anon_sym_f64] = ACTIONS(1252), + [anon_sym_bool] = ACTIONS(1252), + [anon_sym_str] = ACTIONS(1252), + [anon_sym_char] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_async] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_fn] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_impl] = ACTIONS(1252), + [anon_sym_let] = ACTIONS(1252), + [anon_sym_loop] = ACTIONS(1252), + [anon_sym_match] = ACTIONS(1252), + [anon_sym_mod] = ACTIONS(1252), + [anon_sym_pub] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_trait] = ACTIONS(1252), + [anon_sym_type] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_unsafe] = ACTIONS(1252), + [anon_sym_use] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_COLON_COLON] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_yield] = ACTIONS(1252), + [anon_sym_move] = ACTIONS(1252), + [sym_integer_literal] = ACTIONS(1250), + [aux_sym_string_literal_token1] = ACTIONS(1250), + [sym_char_literal] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1252), + [anon_sym_false] = ACTIONS(1252), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1252), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1250), + [sym_raw_string_literal] = ACTIONS(1250), + [sym_float_literal] = ACTIONS(1250), [sym_block_comment] = ACTIONS(3), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_identifier] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_macro_rules_BANG] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_u8] = ACTIONS(1274), - [anon_sym_i8] = ACTIONS(1274), - [anon_sym_u16] = ACTIONS(1274), - [anon_sym_i16] = ACTIONS(1274), - [anon_sym_u32] = ACTIONS(1274), - [anon_sym_i32] = ACTIONS(1274), - [anon_sym_u64] = ACTIONS(1274), - [anon_sym_i64] = ACTIONS(1274), - [anon_sym_u128] = ACTIONS(1274), - [anon_sym_i128] = ACTIONS(1274), - [anon_sym_isize] = ACTIONS(1274), - [anon_sym_usize] = ACTIONS(1274), - [anon_sym_f32] = ACTIONS(1274), - [anon_sym_f64] = ACTIONS(1274), - [anon_sym_bool] = ACTIONS(1274), - [anon_sym_str] = ACTIONS(1274), - [anon_sym_char] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_async] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_fn] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_impl] = ACTIONS(1274), - [anon_sym_let] = ACTIONS(1274), - [anon_sym_loop] = ACTIONS(1274), - [anon_sym_match] = ACTIONS(1274), - [anon_sym_mod] = ACTIONS(1274), - [anon_sym_pub] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_trait] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_unsafe] = ACTIONS(1274), - [anon_sym_use] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_POUND] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_COLON_COLON] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_yield] = ACTIONS(1274), - [anon_sym_move] = ACTIONS(1274), - [sym_integer_literal] = ACTIONS(1272), - [aux_sym_string_literal_token1] = ACTIONS(1272), - [sym_char_literal] = ACTIONS(1272), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1274), - [sym_super] = ACTIONS(1274), - [sym_crate] = ACTIONS(1274), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(1272), - [sym_float_literal] = ACTIONS(1272), + [ts_builtin_sym_end] = ACTIONS(1254), + [sym_identifier] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_macro_rules_BANG] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_RBRACE] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1256), + [anon_sym_i8] = ACTIONS(1256), + [anon_sym_u16] = ACTIONS(1256), + [anon_sym_i16] = ACTIONS(1256), + [anon_sym_u32] = ACTIONS(1256), + [anon_sym_i32] = ACTIONS(1256), + [anon_sym_u64] = ACTIONS(1256), + [anon_sym_i64] = ACTIONS(1256), + [anon_sym_u128] = ACTIONS(1256), + [anon_sym_i128] = ACTIONS(1256), + [anon_sym_isize] = ACTIONS(1256), + [anon_sym_usize] = ACTIONS(1256), + [anon_sym_f32] = ACTIONS(1256), + [anon_sym_f64] = ACTIONS(1256), + [anon_sym_bool] = ACTIONS(1256), + [anon_sym_str] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_fn] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_impl] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1256), + [anon_sym_loop] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_mod] = ACTIONS(1256), + [anon_sym_pub] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_trait] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_unsafe] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_POUND] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_move] = ACTIONS(1256), + [sym_integer_literal] = ACTIONS(1254), + [aux_sym_string_literal_token1] = ACTIONS(1254), + [sym_char_literal] = ACTIONS(1254), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1256), + [sym_super] = ACTIONS(1256), + [sym_crate] = ACTIONS(1256), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1254), + [sym_float_literal] = ACTIONS(1254), [sym_block_comment] = ACTIONS(3), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_identifier] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_macro_rules_BANG] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_RBRACE] = ACTIONS(1276), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_u8] = ACTIONS(1278), - [anon_sym_i8] = ACTIONS(1278), - [anon_sym_u16] = ACTIONS(1278), - [anon_sym_i16] = ACTIONS(1278), - [anon_sym_u32] = ACTIONS(1278), - [anon_sym_i32] = ACTIONS(1278), - [anon_sym_u64] = ACTIONS(1278), - [anon_sym_i64] = ACTIONS(1278), - [anon_sym_u128] = ACTIONS(1278), - [anon_sym_i128] = ACTIONS(1278), - [anon_sym_isize] = ACTIONS(1278), - [anon_sym_usize] = ACTIONS(1278), - [anon_sym_f32] = ACTIONS(1278), - [anon_sym_f64] = ACTIONS(1278), - [anon_sym_bool] = ACTIONS(1278), - [anon_sym_str] = ACTIONS(1278), - [anon_sym_char] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_enum] = ACTIONS(1278), - [anon_sym_fn] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_impl] = ACTIONS(1278), - [anon_sym_let] = ACTIONS(1278), - [anon_sym_loop] = ACTIONS(1278), - [anon_sym_match] = ACTIONS(1278), - [anon_sym_mod] = ACTIONS(1278), - [anon_sym_pub] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_struct] = ACTIONS(1278), - [anon_sym_trait] = ACTIONS(1278), - [anon_sym_type] = ACTIONS(1278), - [anon_sym_union] = ACTIONS(1278), - [anon_sym_unsafe] = ACTIONS(1278), - [anon_sym_use] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_COLON_COLON] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_yield] = ACTIONS(1278), - [anon_sym_move] = ACTIONS(1278), - [sym_integer_literal] = ACTIONS(1276), - [aux_sym_string_literal_token1] = ACTIONS(1276), - [sym_char_literal] = ACTIONS(1276), - [anon_sym_true] = ACTIONS(1278), - [anon_sym_false] = ACTIONS(1278), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1278), - [sym_super] = ACTIONS(1278), - [sym_crate] = ACTIONS(1278), - [sym_metavariable] = ACTIONS(1276), - [sym_raw_string_literal] = ACTIONS(1276), - [sym_float_literal] = ACTIONS(1276), + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_identifier] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_macro_rules_BANG] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_async] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_fn] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_impl] = ACTIONS(1260), + [anon_sym_let] = ACTIONS(1260), + [anon_sym_loop] = ACTIONS(1260), + [anon_sym_match] = ACTIONS(1260), + [anon_sym_mod] = ACTIONS(1260), + [anon_sym_pub] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_trait] = ACTIONS(1260), + [anon_sym_type] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_unsafe] = ACTIONS(1260), + [anon_sym_use] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_POUND] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_COLON_COLON] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_DOT_DOT] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_move] = ACTIONS(1260), + [sym_integer_literal] = ACTIONS(1258), + [aux_sym_string_literal_token1] = ACTIONS(1258), + [sym_char_literal] = ACTIONS(1258), + [anon_sym_true] = ACTIONS(1260), + [anon_sym_false] = ACTIONS(1260), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1260), + [sym_super] = ACTIONS(1260), + [sym_crate] = ACTIONS(1260), + [sym_metavariable] = ACTIONS(1258), + [sym_raw_string_literal] = ACTIONS(1258), + [sym_float_literal] = ACTIONS(1258), [sym_block_comment] = ACTIONS(3), }, [296] = { - [ts_builtin_sym_end] = ACTIONS(1280), - [sym_identifier] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_macro_rules_BANG] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_u8] = ACTIONS(1282), - [anon_sym_i8] = ACTIONS(1282), - [anon_sym_u16] = ACTIONS(1282), - [anon_sym_i16] = ACTIONS(1282), - [anon_sym_u32] = ACTIONS(1282), - [anon_sym_i32] = ACTIONS(1282), - [anon_sym_u64] = ACTIONS(1282), - [anon_sym_i64] = ACTIONS(1282), - [anon_sym_u128] = ACTIONS(1282), - [anon_sym_i128] = ACTIONS(1282), - [anon_sym_isize] = ACTIONS(1282), - [anon_sym_usize] = ACTIONS(1282), - [anon_sym_f32] = ACTIONS(1282), - [anon_sym_f64] = ACTIONS(1282), - [anon_sym_bool] = ACTIONS(1282), - [anon_sym_str] = ACTIONS(1282), - [anon_sym_char] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_default] = ACTIONS(1282), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_fn] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_impl] = ACTIONS(1282), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_loop] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [anon_sym_mod] = ACTIONS(1282), - [anon_sym_pub] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(1282), - [anon_sym_trait] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_union] = ACTIONS(1282), - [anon_sym_unsafe] = ACTIONS(1282), - [anon_sym_use] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_COLON_COLON] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_yield] = ACTIONS(1282), - [anon_sym_move] = ACTIONS(1282), - [sym_integer_literal] = ACTIONS(1280), - [aux_sym_string_literal_token1] = ACTIONS(1280), - [sym_char_literal] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1282), - [sym_super] = ACTIONS(1282), - [sym_crate] = ACTIONS(1282), - [sym_metavariable] = ACTIONS(1280), - [sym_raw_string_literal] = ACTIONS(1280), - [sym_float_literal] = ACTIONS(1280), + [ts_builtin_sym_end] = ACTIONS(1262), + [sym_identifier] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_macro_rules_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_u8] = ACTIONS(1264), + [anon_sym_i8] = ACTIONS(1264), + [anon_sym_u16] = ACTIONS(1264), + [anon_sym_i16] = ACTIONS(1264), + [anon_sym_u32] = ACTIONS(1264), + [anon_sym_i32] = ACTIONS(1264), + [anon_sym_u64] = ACTIONS(1264), + [anon_sym_i64] = ACTIONS(1264), + [anon_sym_u128] = ACTIONS(1264), + [anon_sym_i128] = ACTIONS(1264), + [anon_sym_isize] = ACTIONS(1264), + [anon_sym_usize] = ACTIONS(1264), + [anon_sym_f32] = ACTIONS(1264), + [anon_sym_f64] = ACTIONS(1264), + [anon_sym_bool] = ACTIONS(1264), + [anon_sym_str] = ACTIONS(1264), + [anon_sym_char] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_async] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_fn] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_impl] = ACTIONS(1264), + [anon_sym_let] = ACTIONS(1264), + [anon_sym_loop] = ACTIONS(1264), + [anon_sym_match] = ACTIONS(1264), + [anon_sym_mod] = ACTIONS(1264), + [anon_sym_pub] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_trait] = ACTIONS(1264), + [anon_sym_type] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_unsafe] = ACTIONS(1264), + [anon_sym_use] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_POUND] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_COLON_COLON] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_DOT_DOT] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_yield] = ACTIONS(1264), + [anon_sym_move] = ACTIONS(1264), + [sym_integer_literal] = ACTIONS(1262), + [aux_sym_string_literal_token1] = ACTIONS(1262), + [sym_char_literal] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1264), + [anon_sym_false] = ACTIONS(1264), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1264), + [sym_super] = ACTIONS(1264), + [sym_crate] = ACTIONS(1264), + [sym_metavariable] = ACTIONS(1262), + [sym_raw_string_literal] = ACTIONS(1262), + [sym_float_literal] = ACTIONS(1262), [sym_block_comment] = ACTIONS(3), }, [297] = { - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_identifier] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_macro_rules_BANG] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_u8] = ACTIONS(1286), - [anon_sym_i8] = ACTIONS(1286), - [anon_sym_u16] = ACTIONS(1286), - [anon_sym_i16] = ACTIONS(1286), - [anon_sym_u32] = ACTIONS(1286), - [anon_sym_i32] = ACTIONS(1286), - [anon_sym_u64] = ACTIONS(1286), - [anon_sym_i64] = ACTIONS(1286), - [anon_sym_u128] = ACTIONS(1286), - [anon_sym_i128] = ACTIONS(1286), - [anon_sym_isize] = ACTIONS(1286), - [anon_sym_usize] = ACTIONS(1286), - [anon_sym_f32] = ACTIONS(1286), - [anon_sym_f64] = ACTIONS(1286), - [anon_sym_bool] = ACTIONS(1286), - [anon_sym_str] = ACTIONS(1286), - [anon_sym_char] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1286), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_fn] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_impl] = ACTIONS(1286), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_loop] = ACTIONS(1286), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_mod] = ACTIONS(1286), - [anon_sym_pub] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_trait] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_union] = ACTIONS(1286), - [anon_sym_unsafe] = ACTIONS(1286), - [anon_sym_use] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_COLON_COLON] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_DOT_DOT] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_yield] = ACTIONS(1286), - [anon_sym_move] = ACTIONS(1286), - [sym_integer_literal] = ACTIONS(1284), - [aux_sym_string_literal_token1] = ACTIONS(1284), - [sym_char_literal] = ACTIONS(1284), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1284), - [sym_raw_string_literal] = ACTIONS(1284), - [sym_float_literal] = ACTIONS(1284), + [ts_builtin_sym_end] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_macro_rules_BANG] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_u8] = ACTIONS(1268), + [anon_sym_i8] = ACTIONS(1268), + [anon_sym_u16] = ACTIONS(1268), + [anon_sym_i16] = ACTIONS(1268), + [anon_sym_u32] = ACTIONS(1268), + [anon_sym_i32] = ACTIONS(1268), + [anon_sym_u64] = ACTIONS(1268), + [anon_sym_i64] = ACTIONS(1268), + [anon_sym_u128] = ACTIONS(1268), + [anon_sym_i128] = ACTIONS(1268), + [anon_sym_isize] = ACTIONS(1268), + [anon_sym_usize] = ACTIONS(1268), + [anon_sym_f32] = ACTIONS(1268), + [anon_sym_f64] = ACTIONS(1268), + [anon_sym_bool] = ACTIONS(1268), + [anon_sym_str] = ACTIONS(1268), + [anon_sym_char] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_fn] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_impl] = ACTIONS(1268), + [anon_sym_let] = ACTIONS(1268), + [anon_sym_loop] = ACTIONS(1268), + [anon_sym_match] = ACTIONS(1268), + [anon_sym_mod] = ACTIONS(1268), + [anon_sym_pub] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_trait] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_unsafe] = ACTIONS(1268), + [anon_sym_use] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_COLON_COLON] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_DOT_DOT] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1268), + [anon_sym_move] = ACTIONS(1268), + [sym_integer_literal] = ACTIONS(1266), + [aux_sym_string_literal_token1] = ACTIONS(1266), + [sym_char_literal] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1268), + [anon_sym_false] = ACTIONS(1268), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1268), + [sym_super] = ACTIONS(1268), + [sym_crate] = ACTIONS(1268), + [sym_metavariable] = ACTIONS(1266), + [sym_raw_string_literal] = ACTIONS(1266), + [sym_float_literal] = ACTIONS(1266), [sym_block_comment] = ACTIONS(3), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_identifier] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_macro_rules_BANG] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_u8] = ACTIONS(1290), - [anon_sym_i8] = ACTIONS(1290), - [anon_sym_u16] = ACTIONS(1290), - [anon_sym_i16] = ACTIONS(1290), - [anon_sym_u32] = ACTIONS(1290), - [anon_sym_i32] = ACTIONS(1290), - [anon_sym_u64] = ACTIONS(1290), - [anon_sym_i64] = ACTIONS(1290), - [anon_sym_u128] = ACTIONS(1290), - [anon_sym_i128] = ACTIONS(1290), - [anon_sym_isize] = ACTIONS(1290), - [anon_sym_usize] = ACTIONS(1290), - [anon_sym_f32] = ACTIONS(1290), - [anon_sym_f64] = ACTIONS(1290), - [anon_sym_bool] = ACTIONS(1290), - [anon_sym_str] = ACTIONS(1290), - [anon_sym_char] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_async] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_impl] = ACTIONS(1290), - [anon_sym_let] = ACTIONS(1290), - [anon_sym_loop] = ACTIONS(1290), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_mod] = ACTIONS(1290), - [anon_sym_pub] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_struct] = ACTIONS(1290), - [anon_sym_trait] = ACTIONS(1290), - [anon_sym_type] = ACTIONS(1290), - [anon_sym_union] = ACTIONS(1290), - [anon_sym_unsafe] = ACTIONS(1290), - [anon_sym_use] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_POUND] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_COLON_COLON] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_DOT_DOT] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_yield] = ACTIONS(1290), - [anon_sym_move] = ACTIONS(1290), - [sym_integer_literal] = ACTIONS(1288), - [aux_sym_string_literal_token1] = ACTIONS(1288), - [sym_char_literal] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1290), - [anon_sym_false] = ACTIONS(1290), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1290), - [sym_super] = ACTIONS(1290), - [sym_crate] = ACTIONS(1290), - [sym_metavariable] = ACTIONS(1288), - [sym_raw_string_literal] = ACTIONS(1288), - [sym_float_literal] = ACTIONS(1288), + [ts_builtin_sym_end] = ACTIONS(1270), + [sym_identifier] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_macro_rules_BANG] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_async] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_fn] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_impl] = ACTIONS(1272), + [anon_sym_let] = ACTIONS(1272), + [anon_sym_loop] = ACTIONS(1272), + [anon_sym_match] = ACTIONS(1272), + [anon_sym_mod] = ACTIONS(1272), + [anon_sym_pub] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_trait] = ACTIONS(1272), + [anon_sym_type] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_unsafe] = ACTIONS(1272), + [anon_sym_use] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_POUND] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym_LT] = ACTIONS(1270), + [anon_sym_COLON_COLON] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_DOT_DOT] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PIPE] = ACTIONS(1270), + [anon_sym_yield] = ACTIONS(1272), + [anon_sym_move] = ACTIONS(1272), + [sym_integer_literal] = ACTIONS(1270), + [aux_sym_string_literal_token1] = ACTIONS(1270), + [sym_char_literal] = ACTIONS(1270), + [anon_sym_true] = ACTIONS(1272), + [anon_sym_false] = ACTIONS(1272), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1272), + [sym_super] = ACTIONS(1272), + [sym_crate] = ACTIONS(1272), + [sym_metavariable] = ACTIONS(1270), + [sym_raw_string_literal] = ACTIONS(1270), + [sym_float_literal] = ACTIONS(1270), [sym_block_comment] = ACTIONS(3), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(1292), - [sym_identifier] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_macro_rules_BANG] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_LBRACK] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_u8] = ACTIONS(1294), - [anon_sym_i8] = ACTIONS(1294), - [anon_sym_u16] = ACTIONS(1294), - [anon_sym_i16] = ACTIONS(1294), - [anon_sym_u32] = ACTIONS(1294), - [anon_sym_i32] = ACTIONS(1294), - [anon_sym_u64] = ACTIONS(1294), - [anon_sym_i64] = ACTIONS(1294), - [anon_sym_u128] = ACTIONS(1294), - [anon_sym_i128] = ACTIONS(1294), - [anon_sym_isize] = ACTIONS(1294), - [anon_sym_usize] = ACTIONS(1294), - [anon_sym_f32] = ACTIONS(1294), - [anon_sym_f64] = ACTIONS(1294), - [anon_sym_bool] = ACTIONS(1294), - [anon_sym_str] = ACTIONS(1294), - [anon_sym_char] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_async] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_trait] = ACTIONS(1294), - [anon_sym_type] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_unsafe] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1292), - [anon_sym_COLON_COLON] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_DOT_DOT] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_move] = ACTIONS(1294), - [sym_integer_literal] = ACTIONS(1292), - [aux_sym_string_literal_token1] = ACTIONS(1292), - [sym_char_literal] = ACTIONS(1292), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1294), - [sym_super] = ACTIONS(1294), - [sym_crate] = ACTIONS(1294), - [sym_metavariable] = ACTIONS(1292), - [sym_raw_string_literal] = ACTIONS(1292), - [sym_float_literal] = ACTIONS(1292), + [ts_builtin_sym_end] = ACTIONS(1274), + [sym_identifier] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_macro_rules_BANG] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_u8] = ACTIONS(1276), + [anon_sym_i8] = ACTIONS(1276), + [anon_sym_u16] = ACTIONS(1276), + [anon_sym_i16] = ACTIONS(1276), + [anon_sym_u32] = ACTIONS(1276), + [anon_sym_i32] = ACTIONS(1276), + [anon_sym_u64] = ACTIONS(1276), + [anon_sym_i64] = ACTIONS(1276), + [anon_sym_u128] = ACTIONS(1276), + [anon_sym_i128] = ACTIONS(1276), + [anon_sym_isize] = ACTIONS(1276), + [anon_sym_usize] = ACTIONS(1276), + [anon_sym_f32] = ACTIONS(1276), + [anon_sym_f64] = ACTIONS(1276), + [anon_sym_bool] = ACTIONS(1276), + [anon_sym_str] = ACTIONS(1276), + [anon_sym_char] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_async] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_impl] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1276), + [anon_sym_loop] = ACTIONS(1276), + [anon_sym_match] = ACTIONS(1276), + [anon_sym_mod] = ACTIONS(1276), + [anon_sym_pub] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_trait] = ACTIONS(1276), + [anon_sym_type] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_unsafe] = ACTIONS(1276), + [anon_sym_use] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_POUND] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym_LT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_DOT_DOT] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_yield] = ACTIONS(1276), + [anon_sym_move] = ACTIONS(1276), + [sym_integer_literal] = ACTIONS(1274), + [aux_sym_string_literal_token1] = ACTIONS(1274), + [sym_char_literal] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1276), + [sym_super] = ACTIONS(1276), + [sym_crate] = ACTIONS(1276), + [sym_metavariable] = ACTIONS(1274), + [sym_raw_string_literal] = ACTIONS(1274), + [sym_float_literal] = ACTIONS(1274), [sym_block_comment] = ACTIONS(3), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_identifier] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_macro_rules_BANG] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_u8] = ACTIONS(1298), - [anon_sym_i8] = ACTIONS(1298), - [anon_sym_u16] = ACTIONS(1298), - [anon_sym_i16] = ACTIONS(1298), - [anon_sym_u32] = ACTIONS(1298), - [anon_sym_i32] = ACTIONS(1298), - [anon_sym_u64] = ACTIONS(1298), - [anon_sym_i64] = ACTIONS(1298), - [anon_sym_u128] = ACTIONS(1298), - [anon_sym_i128] = ACTIONS(1298), - [anon_sym_isize] = ACTIONS(1298), - [anon_sym_usize] = ACTIONS(1298), - [anon_sym_f32] = ACTIONS(1298), - [anon_sym_f64] = ACTIONS(1298), - [anon_sym_bool] = ACTIONS(1298), - [anon_sym_str] = ACTIONS(1298), - [anon_sym_char] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_fn] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_pub] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_trait] = ACTIONS(1298), - [anon_sym_type] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_unsafe] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_COLON_COLON] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_DOT_DOT] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_yield] = ACTIONS(1298), - [anon_sym_move] = ACTIONS(1298), - [sym_integer_literal] = ACTIONS(1296), - [aux_sym_string_literal_token1] = ACTIONS(1296), - [sym_char_literal] = ACTIONS(1296), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1298), - [sym_super] = ACTIONS(1298), - [sym_crate] = ACTIONS(1298), - [sym_metavariable] = ACTIONS(1296), - [sym_raw_string_literal] = ACTIONS(1296), - [sym_float_literal] = ACTIONS(1296), + [ts_builtin_sym_end] = ACTIONS(1278), + [sym_identifier] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym_macro_rules_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_u8] = ACTIONS(1280), + [anon_sym_i8] = ACTIONS(1280), + [anon_sym_u16] = ACTIONS(1280), + [anon_sym_i16] = ACTIONS(1280), + [anon_sym_u32] = ACTIONS(1280), + [anon_sym_i32] = ACTIONS(1280), + [anon_sym_u64] = ACTIONS(1280), + [anon_sym_i64] = ACTIONS(1280), + [anon_sym_u128] = ACTIONS(1280), + [anon_sym_i128] = ACTIONS(1280), + [anon_sym_isize] = ACTIONS(1280), + [anon_sym_usize] = ACTIONS(1280), + [anon_sym_f32] = ACTIONS(1280), + [anon_sym_f64] = ACTIONS(1280), + [anon_sym_bool] = ACTIONS(1280), + [anon_sym_str] = ACTIONS(1280), + [anon_sym_char] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_fn] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1280), + [anon_sym_let] = ACTIONS(1280), + [anon_sym_loop] = ACTIONS(1280), + [anon_sym_match] = ACTIONS(1280), + [anon_sym_mod] = ACTIONS(1280), + [anon_sym_pub] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_trait] = ACTIONS(1280), + [anon_sym_type] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1280), + [anon_sym_use] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_POUND] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(1278), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_DOT_DOT] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), + [anon_sym_move] = ACTIONS(1280), + [sym_integer_literal] = ACTIONS(1278), + [aux_sym_string_literal_token1] = ACTIONS(1278), + [sym_char_literal] = ACTIONS(1278), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1280), + [sym_super] = ACTIONS(1280), + [sym_crate] = ACTIONS(1280), + [sym_metavariable] = ACTIONS(1278), + [sym_raw_string_literal] = ACTIONS(1278), + [sym_float_literal] = ACTIONS(1278), [sym_block_comment] = ACTIONS(3), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_macro_rules_BANG] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_u8] = ACTIONS(1302), - [anon_sym_i8] = ACTIONS(1302), - [anon_sym_u16] = ACTIONS(1302), - [anon_sym_i16] = ACTIONS(1302), - [anon_sym_u32] = ACTIONS(1302), - [anon_sym_i32] = ACTIONS(1302), - [anon_sym_u64] = ACTIONS(1302), - [anon_sym_i64] = ACTIONS(1302), - [anon_sym_u128] = ACTIONS(1302), - [anon_sym_i128] = ACTIONS(1302), - [anon_sym_isize] = ACTIONS(1302), - [anon_sym_usize] = ACTIONS(1302), - [anon_sym_f32] = ACTIONS(1302), - [anon_sym_f64] = ACTIONS(1302), - [anon_sym_bool] = ACTIONS(1302), - [anon_sym_str] = ACTIONS(1302), - [anon_sym_char] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_async] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_fn] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_impl] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_loop] = ACTIONS(1302), - [anon_sym_match] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1302), - [anon_sym_pub] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_trait] = ACTIONS(1302), - [anon_sym_type] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_unsafe] = ACTIONS(1302), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_COLON_COLON] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_DOT_DOT] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_yield] = ACTIONS(1302), - [anon_sym_move] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1300), - [aux_sym_string_literal_token1] = ACTIONS(1300), - [sym_char_literal] = ACTIONS(1300), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1302), - [sym_super] = ACTIONS(1302), - [sym_crate] = ACTIONS(1302), - [sym_metavariable] = ACTIONS(1300), - [sym_raw_string_literal] = ACTIONS(1300), - [sym_float_literal] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1282), + [sym_identifier] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_macro_rules_BANG] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_u8] = ACTIONS(1284), + [anon_sym_i8] = ACTIONS(1284), + [anon_sym_u16] = ACTIONS(1284), + [anon_sym_i16] = ACTIONS(1284), + [anon_sym_u32] = ACTIONS(1284), + [anon_sym_i32] = ACTIONS(1284), + [anon_sym_u64] = ACTIONS(1284), + [anon_sym_i64] = ACTIONS(1284), + [anon_sym_u128] = ACTIONS(1284), + [anon_sym_i128] = ACTIONS(1284), + [anon_sym_isize] = ACTIONS(1284), + [anon_sym_usize] = ACTIONS(1284), + [anon_sym_f32] = ACTIONS(1284), + [anon_sym_f64] = ACTIONS(1284), + [anon_sym_bool] = ACTIONS(1284), + [anon_sym_str] = ACTIONS(1284), + [anon_sym_char] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_fn] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_impl] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_loop] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1284), + [anon_sym_mod] = ACTIONS(1284), + [anon_sym_pub] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_trait] = ACTIONS(1284), + [anon_sym_type] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_use] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1282), + [anon_sym_COLON_COLON] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_DOT_DOT] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_move] = ACTIONS(1284), + [sym_integer_literal] = ACTIONS(1282), + [aux_sym_string_literal_token1] = ACTIONS(1282), + [sym_char_literal] = ACTIONS(1282), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1284), + [sym_super] = ACTIONS(1284), + [sym_crate] = ACTIONS(1284), + [sym_metavariable] = ACTIONS(1282), + [sym_raw_string_literal] = ACTIONS(1282), + [sym_float_literal] = ACTIONS(1282), [sym_block_comment] = ACTIONS(3), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_macro_rules_BANG] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_u8] = ACTIONS(1306), - [anon_sym_i8] = ACTIONS(1306), - [anon_sym_u16] = ACTIONS(1306), - [anon_sym_i16] = ACTIONS(1306), - [anon_sym_u32] = ACTIONS(1306), - [anon_sym_i32] = ACTIONS(1306), - [anon_sym_u64] = ACTIONS(1306), - [anon_sym_i64] = ACTIONS(1306), - [anon_sym_u128] = ACTIONS(1306), - [anon_sym_i128] = ACTIONS(1306), - [anon_sym_isize] = ACTIONS(1306), - [anon_sym_usize] = ACTIONS(1306), - [anon_sym_f32] = ACTIONS(1306), - [anon_sym_f64] = ACTIONS(1306), - [anon_sym_bool] = ACTIONS(1306), - [anon_sym_str] = ACTIONS(1306), - [anon_sym_char] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_async] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_impl] = ACTIONS(1306), - [anon_sym_let] = ACTIONS(1306), - [anon_sym_loop] = ACTIONS(1306), - [anon_sym_match] = ACTIONS(1306), - [anon_sym_mod] = ACTIONS(1306), - [anon_sym_pub] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_trait] = ACTIONS(1306), - [anon_sym_type] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_unsafe] = ACTIONS(1306), - [anon_sym_use] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_COLON_COLON] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_DOT_DOT] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_move] = ACTIONS(1306), - [sym_integer_literal] = ACTIONS(1304), - [aux_sym_string_literal_token1] = ACTIONS(1304), - [sym_char_literal] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1306), - [sym_super] = ACTIONS(1306), - [sym_crate] = ACTIONS(1306), - [sym_metavariable] = ACTIONS(1304), - [sym_raw_string_literal] = ACTIONS(1304), - [sym_float_literal] = ACTIONS(1304), + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_macro_rules_BANG] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_u8] = ACTIONS(1288), + [anon_sym_i8] = ACTIONS(1288), + [anon_sym_u16] = ACTIONS(1288), + [anon_sym_i16] = ACTIONS(1288), + [anon_sym_u32] = ACTIONS(1288), + [anon_sym_i32] = ACTIONS(1288), + [anon_sym_u64] = ACTIONS(1288), + [anon_sym_i64] = ACTIONS(1288), + [anon_sym_u128] = ACTIONS(1288), + [anon_sym_i128] = ACTIONS(1288), + [anon_sym_isize] = ACTIONS(1288), + [anon_sym_usize] = ACTIONS(1288), + [anon_sym_f32] = ACTIONS(1288), + [anon_sym_f64] = ACTIONS(1288), + [anon_sym_bool] = ACTIONS(1288), + [anon_sym_str] = ACTIONS(1288), + [anon_sym_char] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_impl] = ACTIONS(1288), + [anon_sym_let] = ACTIONS(1288), + [anon_sym_loop] = ACTIONS(1288), + [anon_sym_match] = ACTIONS(1288), + [anon_sym_mod] = ACTIONS(1288), + [anon_sym_pub] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_trait] = ACTIONS(1288), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_unsafe] = ACTIONS(1288), + [anon_sym_use] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_DOT_DOT] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1286), + [anon_sym_yield] = ACTIONS(1288), + [anon_sym_move] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1286), + [aux_sym_string_literal_token1] = ACTIONS(1286), + [sym_char_literal] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1288), + [anon_sym_false] = ACTIONS(1288), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1286), + [sym_raw_string_literal] = ACTIONS(1286), + [sym_float_literal] = ACTIONS(1286), [sym_block_comment] = ACTIONS(3), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_macro_rules_BANG] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [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_SQUOTE] = ACTIONS(1310), - [anon_sym_async] = 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_while] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_COLON_COLON] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_yield] = ACTIONS(1310), - [anon_sym_move] = ACTIONS(1310), - [sym_integer_literal] = ACTIONS(1308), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1310), - [sym_super] = ACTIONS(1310), - [sym_crate] = ACTIONS(1310), - [sym_metavariable] = ACTIONS(1308), - [sym_raw_string_literal] = ACTIONS(1308), - [sym_float_literal] = ACTIONS(1308), + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_macro_rules_BANG] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u128] = ACTIONS(1292), + [anon_sym_i128] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_str] = ACTIONS(1292), + [anon_sym_char] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_async] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_fn] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_loop] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_mod] = ACTIONS(1292), + [anon_sym_pub] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_trait] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_unsafe] = ACTIONS(1292), + [anon_sym_use] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_POUND] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PIPE] = ACTIONS(1290), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_move] = ACTIONS(1292), + [sym_integer_literal] = ACTIONS(1290), + [aux_sym_string_literal_token1] = ACTIONS(1290), + [sym_char_literal] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1292), + [sym_super] = ACTIONS(1292), + [sym_crate] = ACTIONS(1292), + [sym_metavariable] = ACTIONS(1290), + [sym_raw_string_literal] = ACTIONS(1290), + [sym_float_literal] = ACTIONS(1290), [sym_block_comment] = ACTIONS(3), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_macro_rules_BANG] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_POUND] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_COLON_COLON] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_yield] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1312), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1312), - [sym_raw_string_literal] = ACTIONS(1312), - [sym_float_literal] = ACTIONS(1312), + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_macro_rules_BANG] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_u8] = ACTIONS(1296), + [anon_sym_i8] = ACTIONS(1296), + [anon_sym_u16] = ACTIONS(1296), + [anon_sym_i16] = ACTIONS(1296), + [anon_sym_u32] = ACTIONS(1296), + [anon_sym_i32] = ACTIONS(1296), + [anon_sym_u64] = ACTIONS(1296), + [anon_sym_i64] = ACTIONS(1296), + [anon_sym_u128] = ACTIONS(1296), + [anon_sym_i128] = ACTIONS(1296), + [anon_sym_isize] = ACTIONS(1296), + [anon_sym_usize] = ACTIONS(1296), + [anon_sym_f32] = ACTIONS(1296), + [anon_sym_f64] = ACTIONS(1296), + [anon_sym_bool] = ACTIONS(1296), + [anon_sym_str] = ACTIONS(1296), + [anon_sym_char] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_fn] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_impl] = ACTIONS(1296), + [anon_sym_let] = ACTIONS(1296), + [anon_sym_loop] = ACTIONS(1296), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_mod] = ACTIONS(1296), + [anon_sym_pub] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_trait] = ACTIONS(1296), + [anon_sym_type] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_use] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_COLON_COLON] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_move] = ACTIONS(1296), + [sym_integer_literal] = ACTIONS(1294), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1294), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1296), + [sym_super] = ACTIONS(1296), + [sym_crate] = ACTIONS(1296), + [sym_metavariable] = ACTIONS(1294), + [sym_raw_string_literal] = ACTIONS(1294), + [sym_float_literal] = ACTIONS(1294), [sym_block_comment] = ACTIONS(3), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_macro_rules_BANG] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1318), - [anon_sym_i8] = ACTIONS(1318), - [anon_sym_u16] = ACTIONS(1318), - [anon_sym_i16] = ACTIONS(1318), - [anon_sym_u32] = ACTIONS(1318), - [anon_sym_i32] = ACTIONS(1318), - [anon_sym_u64] = ACTIONS(1318), - [anon_sym_i64] = ACTIONS(1318), - [anon_sym_u128] = ACTIONS(1318), - [anon_sym_i128] = ACTIONS(1318), - [anon_sym_isize] = ACTIONS(1318), - [anon_sym_usize] = ACTIONS(1318), - [anon_sym_f32] = ACTIONS(1318), - [anon_sym_f64] = ACTIONS(1318), - [anon_sym_bool] = ACTIONS(1318), - [anon_sym_str] = ACTIONS(1318), - [anon_sym_char] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_async] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_fn] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_impl] = ACTIONS(1318), - [anon_sym_let] = ACTIONS(1318), - [anon_sym_loop] = ACTIONS(1318), - [anon_sym_match] = ACTIONS(1318), - [anon_sym_mod] = ACTIONS(1318), - [anon_sym_pub] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_trait] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_unsafe] = ACTIONS(1318), - [anon_sym_use] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_yield] = ACTIONS(1318), - [anon_sym_move] = ACTIONS(1318), - [sym_integer_literal] = ACTIONS(1316), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1316), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1318), - [sym_super] = ACTIONS(1318), - [sym_crate] = ACTIONS(1318), - [sym_metavariable] = ACTIONS(1316), - [sym_raw_string_literal] = ACTIONS(1316), - [sym_float_literal] = ACTIONS(1316), + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_macro_rules_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_u8] = ACTIONS(1300), + [anon_sym_i8] = ACTIONS(1300), + [anon_sym_u16] = ACTIONS(1300), + [anon_sym_i16] = ACTIONS(1300), + [anon_sym_u32] = ACTIONS(1300), + [anon_sym_i32] = ACTIONS(1300), + [anon_sym_u64] = ACTIONS(1300), + [anon_sym_i64] = ACTIONS(1300), + [anon_sym_u128] = ACTIONS(1300), + [anon_sym_i128] = ACTIONS(1300), + [anon_sym_isize] = ACTIONS(1300), + [anon_sym_usize] = ACTIONS(1300), + [anon_sym_f32] = ACTIONS(1300), + [anon_sym_f64] = ACTIONS(1300), + [anon_sym_bool] = ACTIONS(1300), + [anon_sym_str] = ACTIONS(1300), + [anon_sym_char] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_async] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_impl] = ACTIONS(1300), + [anon_sym_let] = ACTIONS(1300), + [anon_sym_loop] = ACTIONS(1300), + [anon_sym_match] = ACTIONS(1300), + [anon_sym_mod] = ACTIONS(1300), + [anon_sym_pub] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_trait] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_unsafe] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_POUND] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1298), + [anon_sym_COLON_COLON] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_DOT_DOT] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1298), + [anon_sym_yield] = ACTIONS(1300), + [anon_sym_move] = ACTIONS(1300), + [sym_integer_literal] = ACTIONS(1298), + [aux_sym_string_literal_token1] = ACTIONS(1298), + [sym_char_literal] = ACTIONS(1298), + [anon_sym_true] = ACTIONS(1300), + [anon_sym_false] = ACTIONS(1300), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1300), + [sym_super] = ACTIONS(1300), + [sym_crate] = ACTIONS(1300), + [sym_metavariable] = ACTIONS(1298), + [sym_raw_string_literal] = ACTIONS(1298), + [sym_float_literal] = ACTIONS(1298), [sym_block_comment] = ACTIONS(3), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_macro_rules_BANG] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_u8] = ACTIONS(1322), - [anon_sym_i8] = ACTIONS(1322), - [anon_sym_u16] = ACTIONS(1322), - [anon_sym_i16] = ACTIONS(1322), - [anon_sym_u32] = ACTIONS(1322), - [anon_sym_i32] = ACTIONS(1322), - [anon_sym_u64] = ACTIONS(1322), - [anon_sym_i64] = ACTIONS(1322), - [anon_sym_u128] = ACTIONS(1322), - [anon_sym_i128] = ACTIONS(1322), - [anon_sym_isize] = ACTIONS(1322), - [anon_sym_usize] = ACTIONS(1322), - [anon_sym_f32] = ACTIONS(1322), - [anon_sym_f64] = ACTIONS(1322), - [anon_sym_bool] = ACTIONS(1322), - [anon_sym_str] = ACTIONS(1322), - [anon_sym_char] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_async] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_fn] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_impl] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_loop] = ACTIONS(1322), - [anon_sym_match] = ACTIONS(1322), - [anon_sym_mod] = ACTIONS(1322), - [anon_sym_pub] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_trait] = ACTIONS(1322), - [anon_sym_type] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_unsafe] = ACTIONS(1322), - [anon_sym_use] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_POUND] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_COLON_COLON] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_yield] = ACTIONS(1322), - [anon_sym_move] = ACTIONS(1322), - [sym_integer_literal] = ACTIONS(1320), - [aux_sym_string_literal_token1] = ACTIONS(1320), - [sym_char_literal] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1322), - [sym_super] = ACTIONS(1322), - [sym_crate] = ACTIONS(1322), - [sym_metavariable] = ACTIONS(1320), - [sym_raw_string_literal] = ACTIONS(1320), - [sym_float_literal] = ACTIONS(1320), + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_macro_rules_BANG] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_u8] = ACTIONS(1304), + [anon_sym_i8] = ACTIONS(1304), + [anon_sym_u16] = ACTIONS(1304), + [anon_sym_i16] = ACTIONS(1304), + [anon_sym_u32] = ACTIONS(1304), + [anon_sym_i32] = ACTIONS(1304), + [anon_sym_u64] = ACTIONS(1304), + [anon_sym_i64] = ACTIONS(1304), + [anon_sym_u128] = ACTIONS(1304), + [anon_sym_i128] = ACTIONS(1304), + [anon_sym_isize] = ACTIONS(1304), + [anon_sym_usize] = ACTIONS(1304), + [anon_sym_f32] = ACTIONS(1304), + [anon_sym_f64] = ACTIONS(1304), + [anon_sym_bool] = ACTIONS(1304), + [anon_sym_str] = ACTIONS(1304), + [anon_sym_char] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_fn] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1304), + [anon_sym_let] = ACTIONS(1304), + [anon_sym_loop] = ACTIONS(1304), + [anon_sym_match] = ACTIONS(1304), + [anon_sym_mod] = ACTIONS(1304), + [anon_sym_pub] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_trait] = ACTIONS(1304), + [anon_sym_type] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_unsafe] = ACTIONS(1304), + [anon_sym_use] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_POUND] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1302), + [anon_sym_COLON_COLON] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_DOT_DOT] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_yield] = ACTIONS(1304), + [anon_sym_move] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1302), + [aux_sym_string_literal_token1] = ACTIONS(1302), + [sym_char_literal] = ACTIONS(1302), + [anon_sym_true] = ACTIONS(1304), + [anon_sym_false] = ACTIONS(1304), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1304), + [sym_super] = ACTIONS(1304), + [sym_crate] = ACTIONS(1304), + [sym_metavariable] = ACTIONS(1302), + [sym_raw_string_literal] = ACTIONS(1302), + [sym_float_literal] = ACTIONS(1302), [sym_block_comment] = ACTIONS(3), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_macro_rules_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1326), - [anon_sym_i8] = ACTIONS(1326), - [anon_sym_u16] = ACTIONS(1326), - [anon_sym_i16] = ACTIONS(1326), - [anon_sym_u32] = ACTIONS(1326), - [anon_sym_i32] = ACTIONS(1326), - [anon_sym_u64] = ACTIONS(1326), - [anon_sym_i64] = ACTIONS(1326), - [anon_sym_u128] = ACTIONS(1326), - [anon_sym_i128] = ACTIONS(1326), - [anon_sym_isize] = ACTIONS(1326), - [anon_sym_usize] = ACTIONS(1326), - [anon_sym_f32] = ACTIONS(1326), - [anon_sym_f64] = ACTIONS(1326), - [anon_sym_bool] = ACTIONS(1326), - [anon_sym_str] = ACTIONS(1326), - [anon_sym_char] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_async] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_fn] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_impl] = ACTIONS(1326), - [anon_sym_let] = ACTIONS(1326), - [anon_sym_loop] = ACTIONS(1326), - [anon_sym_match] = ACTIONS(1326), - [anon_sym_mod] = ACTIONS(1326), - [anon_sym_pub] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_trait] = ACTIONS(1326), - [anon_sym_type] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_unsafe] = ACTIONS(1326), - [anon_sym_use] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_DOT_DOT] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_yield] = ACTIONS(1326), - [anon_sym_move] = ACTIONS(1326), - [sym_integer_literal] = ACTIONS(1324), - [aux_sym_string_literal_token1] = ACTIONS(1324), - [sym_char_literal] = ACTIONS(1324), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1326), - [sym_super] = ACTIONS(1326), - [sym_crate] = ACTIONS(1326), - [sym_metavariable] = ACTIONS(1324), - [sym_raw_string_literal] = ACTIONS(1324), - [sym_float_literal] = ACTIONS(1324), + [ts_builtin_sym_end] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_macro_rules_BANG] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(1308), + [anon_sym_i8] = ACTIONS(1308), + [anon_sym_u16] = ACTIONS(1308), + [anon_sym_i16] = ACTIONS(1308), + [anon_sym_u32] = ACTIONS(1308), + [anon_sym_i32] = ACTIONS(1308), + [anon_sym_u64] = ACTIONS(1308), + [anon_sym_i64] = ACTIONS(1308), + [anon_sym_u128] = ACTIONS(1308), + [anon_sym_i128] = ACTIONS(1308), + [anon_sym_isize] = ACTIONS(1308), + [anon_sym_usize] = ACTIONS(1308), + [anon_sym_f32] = ACTIONS(1308), + [anon_sym_f64] = ACTIONS(1308), + [anon_sym_bool] = ACTIONS(1308), + [anon_sym_str] = ACTIONS(1308), + [anon_sym_char] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_impl] = ACTIONS(1308), + [anon_sym_let] = ACTIONS(1308), + [anon_sym_loop] = ACTIONS(1308), + [anon_sym_match] = ACTIONS(1308), + [anon_sym_mod] = ACTIONS(1308), + [anon_sym_pub] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_trait] = ACTIONS(1308), + [anon_sym_type] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1308), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_COLON_COLON] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1306), + [anon_sym_yield] = ACTIONS(1308), + [anon_sym_move] = ACTIONS(1308), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1306), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1308), + [anon_sym_false] = ACTIONS(1308), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1308), + [sym_super] = ACTIONS(1308), + [sym_crate] = ACTIONS(1308), + [sym_metavariable] = ACTIONS(1306), + [sym_raw_string_literal] = ACTIONS(1306), + [sym_float_literal] = ACTIONS(1306), [sym_block_comment] = ACTIONS(3), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_macro_rules_BANG] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_async] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_fn] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_impl] = ACTIONS(1330), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_loop] = ACTIONS(1330), - [anon_sym_match] = ACTIONS(1330), - [anon_sym_mod] = ACTIONS(1330), - [anon_sym_pub] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_trait] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_unsafe] = ACTIONS(1330), - [anon_sym_use] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_POUND] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym_LT] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_DOT_DOT] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PIPE] = ACTIONS(1328), - [anon_sym_yield] = ACTIONS(1330), - [anon_sym_move] = ACTIONS(1330), - [sym_integer_literal] = ACTIONS(1328), - [aux_sym_string_literal_token1] = ACTIONS(1328), - [sym_char_literal] = ACTIONS(1328), - [anon_sym_true] = ACTIONS(1330), - [anon_sym_false] = ACTIONS(1330), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1330), - [sym_super] = ACTIONS(1330), - [sym_crate] = ACTIONS(1330), - [sym_metavariable] = ACTIONS(1328), - [sym_raw_string_literal] = ACTIONS(1328), - [sym_float_literal] = ACTIONS(1328), + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_macro_rules_BANG] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_async] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_impl] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(1312), + [anon_sym_loop] = ACTIONS(1312), + [anon_sym_match] = ACTIONS(1312), + [anon_sym_mod] = ACTIONS(1312), + [anon_sym_pub] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_trait] = ACTIONS(1312), + [anon_sym_type] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_unsafe] = ACTIONS(1312), + [anon_sym_use] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_move] = ACTIONS(1312), + [sym_integer_literal] = ACTIONS(1310), + [aux_sym_string_literal_token1] = ACTIONS(1310), + [sym_char_literal] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1312), + [anon_sym_false] = ACTIONS(1312), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1312), + [sym_super] = ACTIONS(1312), + [sym_crate] = ACTIONS(1312), + [sym_metavariable] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1310), + [sym_float_literal] = ACTIONS(1310), [sym_block_comment] = ACTIONS(3), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym_macro_rules_BANG] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_u8] = ACTIONS(1334), - [anon_sym_i8] = ACTIONS(1334), - [anon_sym_u16] = ACTIONS(1334), - [anon_sym_i16] = ACTIONS(1334), - [anon_sym_u32] = ACTIONS(1334), - [anon_sym_i32] = ACTIONS(1334), - [anon_sym_u64] = ACTIONS(1334), - [anon_sym_i64] = ACTIONS(1334), - [anon_sym_u128] = ACTIONS(1334), - [anon_sym_i128] = ACTIONS(1334), - [anon_sym_isize] = ACTIONS(1334), - [anon_sym_usize] = ACTIONS(1334), - [anon_sym_f32] = ACTIONS(1334), - [anon_sym_f64] = ACTIONS(1334), - [anon_sym_bool] = ACTIONS(1334), - [anon_sym_str] = ACTIONS(1334), - [anon_sym_char] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_async] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_fn] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_impl] = ACTIONS(1334), - [anon_sym_let] = ACTIONS(1334), - [anon_sym_loop] = ACTIONS(1334), - [anon_sym_match] = ACTIONS(1334), - [anon_sym_mod] = ACTIONS(1334), - [anon_sym_pub] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_trait] = ACTIONS(1334), - [anon_sym_type] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_unsafe] = ACTIONS(1334), - [anon_sym_use] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_POUND] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym_LT] = ACTIONS(1332), - [anon_sym_COLON_COLON] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1332), - [anon_sym_yield] = ACTIONS(1334), - [anon_sym_move] = ACTIONS(1334), - [sym_integer_literal] = ACTIONS(1332), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1334), - [sym_super] = ACTIONS(1334), - [sym_crate] = ACTIONS(1334), - [sym_metavariable] = ACTIONS(1332), - [sym_raw_string_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1332), + [ts_builtin_sym_end] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_macro_rules_BANG] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_RBRACE] = ACTIONS(1314), + [anon_sym_LBRACK] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_POUND] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_COLON_COLON] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_yield] = ACTIONS(1316), + [anon_sym_move] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1314), + [aux_sym_string_literal_token1] = ACTIONS(1314), + [sym_char_literal] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1316), + [anon_sym_false] = ACTIONS(1316), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1314), + [sym_raw_string_literal] = ACTIONS(1314), + [sym_float_literal] = ACTIONS(1314), [sym_block_comment] = ACTIONS(3), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(1336), - [sym_identifier] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym_macro_rules_BANG] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_async] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_impl] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_pub] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_trait] = ACTIONS(1338), - [anon_sym_type] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_unsafe] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(1336), - [anon_sym_COLON_COLON] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1336), - [anon_sym_yield] = ACTIONS(1338), - [anon_sym_move] = ACTIONS(1338), - [sym_integer_literal] = ACTIONS(1336), - [aux_sym_string_literal_token1] = ACTIONS(1336), - [sym_char_literal] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1338), - [sym_super] = ACTIONS(1338), - [sym_crate] = ACTIONS(1338), - [sym_metavariable] = ACTIONS(1336), - [sym_raw_string_literal] = ACTIONS(1336), - [sym_float_literal] = ACTIONS(1336), + [ts_builtin_sym_end] = ACTIONS(1318), + [sym_identifier] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_macro_rules_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_u8] = ACTIONS(1320), + [anon_sym_i8] = ACTIONS(1320), + [anon_sym_u16] = ACTIONS(1320), + [anon_sym_i16] = ACTIONS(1320), + [anon_sym_u32] = ACTIONS(1320), + [anon_sym_i32] = ACTIONS(1320), + [anon_sym_u64] = ACTIONS(1320), + [anon_sym_i64] = ACTIONS(1320), + [anon_sym_u128] = ACTIONS(1320), + [anon_sym_i128] = ACTIONS(1320), + [anon_sym_isize] = ACTIONS(1320), + [anon_sym_usize] = ACTIONS(1320), + [anon_sym_f32] = ACTIONS(1320), + [anon_sym_f64] = ACTIONS(1320), + [anon_sym_bool] = ACTIONS(1320), + [anon_sym_str] = ACTIONS(1320), + [anon_sym_char] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_async] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_fn] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_impl] = ACTIONS(1320), + [anon_sym_let] = ACTIONS(1320), + [anon_sym_loop] = ACTIONS(1320), + [anon_sym_match] = ACTIONS(1320), + [anon_sym_mod] = ACTIONS(1320), + [anon_sym_pub] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_trait] = ACTIONS(1320), + [anon_sym_type] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_unsafe] = ACTIONS(1320), + [anon_sym_use] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_COLON_COLON] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_DOT_DOT] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_yield] = ACTIONS(1320), + [anon_sym_move] = ACTIONS(1320), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = ACTIONS(1320), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1320), + [sym_super] = ACTIONS(1320), + [sym_crate] = ACTIONS(1320), + [sym_metavariable] = ACTIONS(1318), + [sym_raw_string_literal] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1318), [sym_block_comment] = ACTIONS(3), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_identifier] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym_macro_rules_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_u8] = ACTIONS(1342), - [anon_sym_i8] = ACTIONS(1342), - [anon_sym_u16] = ACTIONS(1342), - [anon_sym_i16] = ACTIONS(1342), - [anon_sym_u32] = ACTIONS(1342), - [anon_sym_i32] = ACTIONS(1342), - [anon_sym_u64] = ACTIONS(1342), - [anon_sym_i64] = ACTIONS(1342), - [anon_sym_u128] = ACTIONS(1342), - [anon_sym_i128] = ACTIONS(1342), - [anon_sym_isize] = ACTIONS(1342), - [anon_sym_usize] = ACTIONS(1342), - [anon_sym_f32] = ACTIONS(1342), - [anon_sym_f64] = ACTIONS(1342), - [anon_sym_bool] = ACTIONS(1342), - [anon_sym_str] = ACTIONS(1342), - [anon_sym_char] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_async] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_impl] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_pub] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_trait] = ACTIONS(1342), - [anon_sym_type] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1340), - [anon_sym_COLON_COLON] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_DOT_DOT] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1340), - [anon_sym_yield] = ACTIONS(1342), - [anon_sym_move] = ACTIONS(1342), - [sym_integer_literal] = ACTIONS(1340), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1342), - [sym_super] = ACTIONS(1342), - [sym_crate] = ACTIONS(1342), - [sym_metavariable] = ACTIONS(1340), - [sym_raw_string_literal] = ACTIONS(1340), - [sym_float_literal] = ACTIONS(1340), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_macro_rules_BANG] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_u8] = ACTIONS(1324), + [anon_sym_i8] = ACTIONS(1324), + [anon_sym_u16] = ACTIONS(1324), + [anon_sym_i16] = ACTIONS(1324), + [anon_sym_u32] = ACTIONS(1324), + [anon_sym_i32] = ACTIONS(1324), + [anon_sym_u64] = ACTIONS(1324), + [anon_sym_i64] = ACTIONS(1324), + [anon_sym_u128] = ACTIONS(1324), + [anon_sym_i128] = ACTIONS(1324), + [anon_sym_isize] = ACTIONS(1324), + [anon_sym_usize] = ACTIONS(1324), + [anon_sym_f32] = ACTIONS(1324), + [anon_sym_f64] = ACTIONS(1324), + [anon_sym_bool] = ACTIONS(1324), + [anon_sym_str] = ACTIONS(1324), + [anon_sym_char] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_async] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_fn] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1324), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_loop] = ACTIONS(1324), + [anon_sym_match] = ACTIONS(1324), + [anon_sym_mod] = ACTIONS(1324), + [anon_sym_pub] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_trait] = ACTIONS(1324), + [anon_sym_type] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1324), + [anon_sym_use] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_POUND] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_COLON_COLON] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_DOT_DOT] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_yield] = ACTIONS(1324), + [anon_sym_move] = ACTIONS(1324), + [sym_integer_literal] = ACTIONS(1322), + [aux_sym_string_literal_token1] = ACTIONS(1322), + [sym_char_literal] = ACTIONS(1322), + [anon_sym_true] = ACTIONS(1324), + [anon_sym_false] = ACTIONS(1324), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1324), + [sym_crate] = ACTIONS(1324), + [sym_metavariable] = ACTIONS(1322), + [sym_raw_string_literal] = ACTIONS(1322), + [sym_float_literal] = ACTIONS(1322), [sym_block_comment] = ACTIONS(3), }, [312] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym_macro_rules_BANG] = ACTIONS(1344), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_u8] = ACTIONS(1346), - [anon_sym_i8] = ACTIONS(1346), - [anon_sym_u16] = ACTIONS(1346), - [anon_sym_i16] = ACTIONS(1346), - [anon_sym_u32] = ACTIONS(1346), - [anon_sym_i32] = ACTIONS(1346), - [anon_sym_u64] = ACTIONS(1346), - [anon_sym_i64] = ACTIONS(1346), - [anon_sym_u128] = ACTIONS(1346), - [anon_sym_i128] = ACTIONS(1346), - [anon_sym_isize] = ACTIONS(1346), - [anon_sym_usize] = ACTIONS(1346), - [anon_sym_f32] = ACTIONS(1346), - [anon_sym_f64] = ACTIONS(1346), - [anon_sym_bool] = ACTIONS(1346), - [anon_sym_str] = ACTIONS(1346), - [anon_sym_char] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_fn] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_impl] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_pub] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_trait] = ACTIONS(1346), - [anon_sym_type] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_unsafe] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_LT] = ACTIONS(1344), - [anon_sym_COLON_COLON] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_DOT_DOT] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PIPE] = ACTIONS(1344), - [anon_sym_yield] = ACTIONS(1346), - [anon_sym_move] = ACTIONS(1346), - [sym_integer_literal] = ACTIONS(1344), - [aux_sym_string_literal_token1] = ACTIONS(1344), - [sym_char_literal] = ACTIONS(1344), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1344), - [sym_raw_string_literal] = ACTIONS(1344), - [sym_float_literal] = ACTIONS(1344), + [ts_builtin_sym_end] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_macro_rules_BANG] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_u8] = ACTIONS(1328), + [anon_sym_i8] = ACTIONS(1328), + [anon_sym_u16] = ACTIONS(1328), + [anon_sym_i16] = ACTIONS(1328), + [anon_sym_u32] = ACTIONS(1328), + [anon_sym_i32] = ACTIONS(1328), + [anon_sym_u64] = ACTIONS(1328), + [anon_sym_i64] = ACTIONS(1328), + [anon_sym_u128] = ACTIONS(1328), + [anon_sym_i128] = ACTIONS(1328), + [anon_sym_isize] = ACTIONS(1328), + [anon_sym_usize] = ACTIONS(1328), + [anon_sym_f32] = ACTIONS(1328), + [anon_sym_f64] = ACTIONS(1328), + [anon_sym_bool] = ACTIONS(1328), + [anon_sym_str] = ACTIONS(1328), + [anon_sym_char] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_async] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_fn] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_impl] = ACTIONS(1328), + [anon_sym_let] = ACTIONS(1328), + [anon_sym_loop] = ACTIONS(1328), + [anon_sym_match] = ACTIONS(1328), + [anon_sym_mod] = ACTIONS(1328), + [anon_sym_pub] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_trait] = ACTIONS(1328), + [anon_sym_type] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_unsafe] = ACTIONS(1328), + [anon_sym_use] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_POUND] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym_LT] = ACTIONS(1326), + [anon_sym_COLON_COLON] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_DOT_DOT] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PIPE] = ACTIONS(1326), + [anon_sym_yield] = ACTIONS(1328), + [anon_sym_move] = ACTIONS(1328), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1326), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1328), + [anon_sym_false] = ACTIONS(1328), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1328), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1326), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), [sym_block_comment] = ACTIONS(3), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_macro_rules_BANG] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_LT] = ACTIONS(1348), - [anon_sym_COLON_COLON] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_DOT_DOT] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PIPE] = ACTIONS(1348), - [anon_sym_yield] = ACTIONS(1350), - [anon_sym_move] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1348), - [aux_sym_string_literal_token1] = ACTIONS(1348), - [sym_char_literal] = ACTIONS(1348), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_metavariable] = ACTIONS(1348), - [sym_raw_string_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1348), + [ts_builtin_sym_end] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_macro_rules_BANG] = ACTIONS(1330), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_u8] = ACTIONS(1332), + [anon_sym_i8] = ACTIONS(1332), + [anon_sym_u16] = ACTIONS(1332), + [anon_sym_i16] = ACTIONS(1332), + [anon_sym_u32] = ACTIONS(1332), + [anon_sym_i32] = ACTIONS(1332), + [anon_sym_u64] = ACTIONS(1332), + [anon_sym_i64] = ACTIONS(1332), + [anon_sym_u128] = ACTIONS(1332), + [anon_sym_i128] = ACTIONS(1332), + [anon_sym_isize] = ACTIONS(1332), + [anon_sym_usize] = ACTIONS(1332), + [anon_sym_f32] = ACTIONS(1332), + [anon_sym_f64] = ACTIONS(1332), + [anon_sym_bool] = ACTIONS(1332), + [anon_sym_str] = ACTIONS(1332), + [anon_sym_char] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_async] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_fn] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_impl] = ACTIONS(1332), + [anon_sym_let] = ACTIONS(1332), + [anon_sym_loop] = ACTIONS(1332), + [anon_sym_match] = ACTIONS(1332), + [anon_sym_mod] = ACTIONS(1332), + [anon_sym_pub] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_trait] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_unsafe] = ACTIONS(1332), + [anon_sym_use] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_POUND] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1330), + [anon_sym_COLON_COLON] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_DOT_DOT] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PIPE] = ACTIONS(1330), + [anon_sym_yield] = ACTIONS(1332), + [anon_sym_move] = ACTIONS(1332), + [sym_integer_literal] = ACTIONS(1330), + [aux_sym_string_literal_token1] = ACTIONS(1330), + [sym_char_literal] = ACTIONS(1330), + [anon_sym_true] = ACTIONS(1332), + [anon_sym_false] = ACTIONS(1332), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1332), + [sym_super] = ACTIONS(1332), + [sym_crate] = ACTIONS(1332), + [sym_metavariable] = ACTIONS(1330), + [sym_raw_string_literal] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1330), [sym_block_comment] = ACTIONS(3), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_macro_rules_BANG] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_u8] = ACTIONS(1354), - [anon_sym_i8] = ACTIONS(1354), - [anon_sym_u16] = ACTIONS(1354), - [anon_sym_i16] = ACTIONS(1354), - [anon_sym_u32] = ACTIONS(1354), - [anon_sym_i32] = ACTIONS(1354), - [anon_sym_u64] = ACTIONS(1354), - [anon_sym_i64] = ACTIONS(1354), - [anon_sym_u128] = ACTIONS(1354), - [anon_sym_i128] = ACTIONS(1354), - [anon_sym_isize] = ACTIONS(1354), - [anon_sym_usize] = ACTIONS(1354), - [anon_sym_f32] = ACTIONS(1354), - [anon_sym_f64] = ACTIONS(1354), - [anon_sym_bool] = ACTIONS(1354), - [anon_sym_str] = ACTIONS(1354), - [anon_sym_char] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_fn] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_impl] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_pub] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_trait] = ACTIONS(1354), - [anon_sym_type] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_unsafe] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_COLON_COLON] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_DOT_DOT] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_yield] = ACTIONS(1354), - [anon_sym_move] = ACTIONS(1354), - [sym_integer_literal] = ACTIONS(1352), - [aux_sym_string_literal_token1] = ACTIONS(1352), - [sym_char_literal] = ACTIONS(1352), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1354), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1352), - [sym_float_literal] = ACTIONS(1352), + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_macro_rules_BANG] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_u8] = ACTIONS(1336), + [anon_sym_i8] = ACTIONS(1336), + [anon_sym_u16] = ACTIONS(1336), + [anon_sym_i16] = ACTIONS(1336), + [anon_sym_u32] = ACTIONS(1336), + [anon_sym_i32] = ACTIONS(1336), + [anon_sym_u64] = ACTIONS(1336), + [anon_sym_i64] = ACTIONS(1336), + [anon_sym_u128] = ACTIONS(1336), + [anon_sym_i128] = ACTIONS(1336), + [anon_sym_isize] = ACTIONS(1336), + [anon_sym_usize] = ACTIONS(1336), + [anon_sym_f32] = ACTIONS(1336), + [anon_sym_f64] = ACTIONS(1336), + [anon_sym_bool] = ACTIONS(1336), + [anon_sym_str] = ACTIONS(1336), + [anon_sym_char] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_fn] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_impl] = ACTIONS(1336), + [anon_sym_let] = ACTIONS(1336), + [anon_sym_loop] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_mod] = ACTIONS(1336), + [anon_sym_pub] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_trait] = ACTIONS(1336), + [anon_sym_type] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_unsafe] = ACTIONS(1336), + [anon_sym_use] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1334), + [anon_sym_COLON_COLON] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PIPE] = ACTIONS(1334), + [anon_sym_yield] = ACTIONS(1336), + [anon_sym_move] = ACTIONS(1336), + [sym_integer_literal] = ACTIONS(1334), + [aux_sym_string_literal_token1] = ACTIONS(1334), + [sym_char_literal] = ACTIONS(1334), + [anon_sym_true] = ACTIONS(1336), + [anon_sym_false] = ACTIONS(1336), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1336), + [sym_super] = ACTIONS(1336), + [sym_crate] = ACTIONS(1336), + [sym_metavariable] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1334), + [sym_float_literal] = ACTIONS(1334), [sym_block_comment] = ACTIONS(3), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_identifier] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_macro_rules_BANG] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_u8] = ACTIONS(1358), - [anon_sym_i8] = ACTIONS(1358), - [anon_sym_u16] = ACTIONS(1358), - [anon_sym_i16] = ACTIONS(1358), - [anon_sym_u32] = ACTIONS(1358), - [anon_sym_i32] = ACTIONS(1358), - [anon_sym_u64] = ACTIONS(1358), - [anon_sym_i64] = ACTIONS(1358), - [anon_sym_u128] = ACTIONS(1358), - [anon_sym_i128] = ACTIONS(1358), - [anon_sym_isize] = ACTIONS(1358), - [anon_sym_usize] = ACTIONS(1358), - [anon_sym_f32] = ACTIONS(1358), - [anon_sym_f64] = ACTIONS(1358), - [anon_sym_bool] = ACTIONS(1358), - [anon_sym_str] = ACTIONS(1358), - [anon_sym_char] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_async] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_fn] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_impl] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_pub] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_trait] = ACTIONS(1358), - [anon_sym_type] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_unsafe] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_COLON_COLON] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_yield] = ACTIONS(1358), - [anon_sym_move] = ACTIONS(1358), - [sym_integer_literal] = ACTIONS(1356), - [aux_sym_string_literal_token1] = ACTIONS(1356), - [sym_char_literal] = ACTIONS(1356), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1358), - [sym_super] = ACTIONS(1358), - [sym_crate] = ACTIONS(1358), - [sym_metavariable] = ACTIONS(1356), - [sym_raw_string_literal] = ACTIONS(1356), - [sym_float_literal] = ACTIONS(1356), + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_macro_rules_BANG] = ACTIONS(1338), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1338), + [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_SQUOTE] = ACTIONS(1340), + [anon_sym_async] = 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_while] = ACTIONS(1340), + [anon_sym_POUND] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1338), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_DOT_DOT] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(1338), + [anon_sym_yield] = ACTIONS(1340), + [anon_sym_move] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1338), + [aux_sym_string_literal_token1] = ACTIONS(1338), + [sym_char_literal] = ACTIONS(1338), + [anon_sym_true] = ACTIONS(1340), + [anon_sym_false] = ACTIONS(1340), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1338), + [sym_raw_string_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1338), [sym_block_comment] = ACTIONS(3), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym_macro_rules_BANG] = ACTIONS(1360), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_u8] = ACTIONS(1362), - [anon_sym_i8] = ACTIONS(1362), - [anon_sym_u16] = ACTIONS(1362), - [anon_sym_i16] = ACTIONS(1362), - [anon_sym_u32] = ACTIONS(1362), - [anon_sym_i32] = ACTIONS(1362), - [anon_sym_u64] = ACTIONS(1362), - [anon_sym_i64] = ACTIONS(1362), - [anon_sym_u128] = ACTIONS(1362), - [anon_sym_i128] = ACTIONS(1362), - [anon_sym_isize] = ACTIONS(1362), - [anon_sym_usize] = ACTIONS(1362), - [anon_sym_f32] = ACTIONS(1362), - [anon_sym_f64] = ACTIONS(1362), - [anon_sym_bool] = ACTIONS(1362), - [anon_sym_str] = ACTIONS(1362), - [anon_sym_char] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_impl] = ACTIONS(1362), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_loop] = ACTIONS(1362), - [anon_sym_match] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_pub] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_trait] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_unsafe] = ACTIONS(1362), - [anon_sym_use] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1360), - [anon_sym_COLON_COLON] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_DOT_DOT] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PIPE] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_move] = ACTIONS(1362), - [sym_integer_literal] = ACTIONS(1360), - [aux_sym_string_literal_token1] = ACTIONS(1360), - [sym_char_literal] = ACTIONS(1360), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1362), - [sym_super] = ACTIONS(1362), - [sym_crate] = ACTIONS(1362), - [sym_metavariable] = ACTIONS(1360), - [sym_raw_string_literal] = ACTIONS(1360), - [sym_float_literal] = ACTIONS(1360), + [ts_builtin_sym_end] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_macro_rules_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1342), + [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_SQUOTE] = ACTIONS(1344), + [anon_sym_async] = 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_while] = ACTIONS(1344), + [anon_sym_POUND] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_COLON_COLON] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_DOT_DOT] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_yield] = ACTIONS(1344), + [anon_sym_move] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1342), + [aux_sym_string_literal_token1] = ACTIONS(1342), + [sym_char_literal] = ACTIONS(1342), + [anon_sym_true] = ACTIONS(1344), + [anon_sym_false] = ACTIONS(1344), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1342), + [sym_raw_string_literal] = ACTIONS(1342), + [sym_float_literal] = ACTIONS(1342), [sym_block_comment] = ACTIONS(3), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym_macro_rules_BANG] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_u8] = ACTIONS(1366), - [anon_sym_i8] = ACTIONS(1366), - [anon_sym_u16] = ACTIONS(1366), - [anon_sym_i16] = ACTIONS(1366), - [anon_sym_u32] = ACTIONS(1366), - [anon_sym_i32] = ACTIONS(1366), - [anon_sym_u64] = ACTIONS(1366), - [anon_sym_i64] = ACTIONS(1366), - [anon_sym_u128] = ACTIONS(1366), - [anon_sym_i128] = ACTIONS(1366), - [anon_sym_isize] = ACTIONS(1366), - [anon_sym_usize] = ACTIONS(1366), - [anon_sym_f32] = ACTIONS(1366), - [anon_sym_f64] = ACTIONS(1366), - [anon_sym_bool] = ACTIONS(1366), - [anon_sym_str] = ACTIONS(1366), - [anon_sym_char] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_impl] = ACTIONS(1366), - [anon_sym_let] = ACTIONS(1366), - [anon_sym_loop] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1366), - [anon_sym_mod] = ACTIONS(1366), - [anon_sym_pub] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_trait] = ACTIONS(1366), - [anon_sym_type] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_unsafe] = ACTIONS(1366), - [anon_sym_use] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_COLON_COLON] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1364), - [anon_sym_yield] = ACTIONS(1366), - [anon_sym_move] = ACTIONS(1366), - [sym_integer_literal] = ACTIONS(1364), - [aux_sym_string_literal_token1] = ACTIONS(1364), - [sym_char_literal] = ACTIONS(1364), - [anon_sym_true] = ACTIONS(1366), - [anon_sym_false] = ACTIONS(1366), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1366), - [sym_super] = ACTIONS(1366), - [sym_crate] = ACTIONS(1366), - [sym_metavariable] = ACTIONS(1364), - [sym_raw_string_literal] = ACTIONS(1364), - [sym_float_literal] = ACTIONS(1364), + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_macro_rules_BANG] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_u8] = ACTIONS(1348), + [anon_sym_i8] = ACTIONS(1348), + [anon_sym_u16] = ACTIONS(1348), + [anon_sym_i16] = ACTIONS(1348), + [anon_sym_u32] = ACTIONS(1348), + [anon_sym_i32] = ACTIONS(1348), + [anon_sym_u64] = ACTIONS(1348), + [anon_sym_i64] = ACTIONS(1348), + [anon_sym_u128] = ACTIONS(1348), + [anon_sym_i128] = ACTIONS(1348), + [anon_sym_isize] = ACTIONS(1348), + [anon_sym_usize] = ACTIONS(1348), + [anon_sym_f32] = ACTIONS(1348), + [anon_sym_f64] = ACTIONS(1348), + [anon_sym_bool] = ACTIONS(1348), + [anon_sym_str] = ACTIONS(1348), + [anon_sym_char] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_async] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_fn] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_impl] = ACTIONS(1348), + [anon_sym_let] = ACTIONS(1348), + [anon_sym_loop] = ACTIONS(1348), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_mod] = ACTIONS(1348), + [anon_sym_pub] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_trait] = ACTIONS(1348), + [anon_sym_type] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1348), + [anon_sym_use] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1346), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_DOT_DOT] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_yield] = ACTIONS(1348), + [anon_sym_move] = ACTIONS(1348), + [sym_integer_literal] = ACTIONS(1346), + [aux_sym_string_literal_token1] = ACTIONS(1346), + [sym_char_literal] = ACTIONS(1346), + [anon_sym_true] = ACTIONS(1348), + [anon_sym_false] = ACTIONS(1348), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1348), + [sym_super] = ACTIONS(1348), + [sym_crate] = ACTIONS(1348), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(1346), + [sym_float_literal] = ACTIONS(1346), [sym_block_comment] = ACTIONS(3), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_identifier] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_macro_rules_BANG] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_u8] = ACTIONS(1370), - [anon_sym_i8] = ACTIONS(1370), - [anon_sym_u16] = ACTIONS(1370), - [anon_sym_i16] = ACTIONS(1370), - [anon_sym_u32] = ACTIONS(1370), - [anon_sym_i32] = ACTIONS(1370), - [anon_sym_u64] = ACTIONS(1370), - [anon_sym_i64] = ACTIONS(1370), - [anon_sym_u128] = ACTIONS(1370), - [anon_sym_i128] = ACTIONS(1370), - [anon_sym_isize] = ACTIONS(1370), - [anon_sym_usize] = ACTIONS(1370), - [anon_sym_f32] = ACTIONS(1370), - [anon_sym_f64] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_str] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_async] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_impl] = ACTIONS(1370), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_loop] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1370), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_pub] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_trait] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_unsafe] = ACTIONS(1370), - [anon_sym_use] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_yield] = ACTIONS(1370), - [anon_sym_move] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1368), - [aux_sym_string_literal_token1] = ACTIONS(1368), - [sym_char_literal] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1370), - [sym_super] = ACTIONS(1370), - [sym_crate] = ACTIONS(1370), - [sym_metavariable] = ACTIONS(1368), - [sym_raw_string_literal] = ACTIONS(1368), - [sym_float_literal] = ACTIONS(1368), + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_macro_rules_BANG] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_u8] = ACTIONS(1352), + [anon_sym_i8] = ACTIONS(1352), + [anon_sym_u16] = ACTIONS(1352), + [anon_sym_i16] = ACTIONS(1352), + [anon_sym_u32] = ACTIONS(1352), + [anon_sym_i32] = ACTIONS(1352), + [anon_sym_u64] = ACTIONS(1352), + [anon_sym_i64] = ACTIONS(1352), + [anon_sym_u128] = ACTIONS(1352), + [anon_sym_i128] = ACTIONS(1352), + [anon_sym_isize] = ACTIONS(1352), + [anon_sym_usize] = ACTIONS(1352), + [anon_sym_f32] = ACTIONS(1352), + [anon_sym_f64] = ACTIONS(1352), + [anon_sym_bool] = ACTIONS(1352), + [anon_sym_str] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_async] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_fn] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_impl] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1352), + [anon_sym_loop] = ACTIONS(1352), + [anon_sym_match] = ACTIONS(1352), + [anon_sym_mod] = ACTIONS(1352), + [anon_sym_pub] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_trait] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_unsafe] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_POUND] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_COLON_COLON] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_DOT_DOT] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_yield] = ACTIONS(1352), + [anon_sym_move] = ACTIONS(1352), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1350), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1352), + [anon_sym_false] = ACTIONS(1352), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1352), + [sym_super] = ACTIONS(1352), + [sym_crate] = ACTIONS(1352), + [sym_metavariable] = ACTIONS(1350), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), [sym_block_comment] = ACTIONS(3), }, [319] = { - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_identifier] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_macro_rules_BANG] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [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_SQUOTE] = ACTIONS(1374), - [anon_sym_async] = 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_while] = ACTIONS(1374), - [anon_sym_POUND] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym_LT] = ACTIONS(1372), - [anon_sym_COLON_COLON] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_move] = ACTIONS(1374), - [sym_integer_literal] = ACTIONS(1372), - [aux_sym_string_literal_token1] = ACTIONS(1372), - [sym_char_literal] = ACTIONS(1372), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1374), - [sym_super] = ACTIONS(1374), - [sym_crate] = ACTIONS(1374), - [sym_metavariable] = ACTIONS(1372), - [sym_raw_string_literal] = ACTIONS(1372), - [sym_float_literal] = ACTIONS(1372), + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_macro_rules_BANG] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_u8] = ACTIONS(1356), + [anon_sym_i8] = ACTIONS(1356), + [anon_sym_u16] = ACTIONS(1356), + [anon_sym_i16] = ACTIONS(1356), + [anon_sym_u32] = ACTIONS(1356), + [anon_sym_i32] = ACTIONS(1356), + [anon_sym_u64] = ACTIONS(1356), + [anon_sym_i64] = ACTIONS(1356), + [anon_sym_u128] = ACTIONS(1356), + [anon_sym_i128] = ACTIONS(1356), + [anon_sym_isize] = ACTIONS(1356), + [anon_sym_usize] = ACTIONS(1356), + [anon_sym_f32] = ACTIONS(1356), + [anon_sym_f64] = ACTIONS(1356), + [anon_sym_bool] = ACTIONS(1356), + [anon_sym_str] = ACTIONS(1356), + [anon_sym_char] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_async] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_fn] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_impl] = ACTIONS(1356), + [anon_sym_let] = ACTIONS(1356), + [anon_sym_loop] = ACTIONS(1356), + [anon_sym_match] = ACTIONS(1356), + [anon_sym_mod] = ACTIONS(1356), + [anon_sym_pub] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_trait] = ACTIONS(1356), + [anon_sym_type] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_unsafe] = ACTIONS(1356), + [anon_sym_use] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_COLON_COLON] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_DOT_DOT] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_yield] = ACTIONS(1356), + [anon_sym_move] = ACTIONS(1356), + [sym_integer_literal] = ACTIONS(1354), + [aux_sym_string_literal_token1] = ACTIONS(1354), + [sym_char_literal] = ACTIONS(1354), + [anon_sym_true] = ACTIONS(1356), + [anon_sym_false] = ACTIONS(1356), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1356), + [sym_super] = ACTIONS(1356), + [sym_crate] = ACTIONS(1356), + [sym_metavariable] = ACTIONS(1354), + [sym_raw_string_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1354), [sym_block_comment] = ACTIONS(3), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_macro_rules_BANG] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_u8] = ACTIONS(1378), - [anon_sym_i8] = ACTIONS(1378), - [anon_sym_u16] = ACTIONS(1378), - [anon_sym_i16] = ACTIONS(1378), - [anon_sym_u32] = ACTIONS(1378), - [anon_sym_i32] = ACTIONS(1378), - [anon_sym_u64] = ACTIONS(1378), - [anon_sym_i64] = ACTIONS(1378), - [anon_sym_u128] = ACTIONS(1378), - [anon_sym_i128] = ACTIONS(1378), - [anon_sym_isize] = ACTIONS(1378), - [anon_sym_usize] = ACTIONS(1378), - [anon_sym_f32] = ACTIONS(1378), - [anon_sym_f64] = ACTIONS(1378), - [anon_sym_bool] = ACTIONS(1378), - [anon_sym_str] = ACTIONS(1378), - [anon_sym_char] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_fn] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_impl] = ACTIONS(1378), - [anon_sym_let] = ACTIONS(1378), - [anon_sym_loop] = ACTIONS(1378), - [anon_sym_match] = ACTIONS(1378), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_pub] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_trait] = ACTIONS(1378), - [anon_sym_type] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_unsafe] = ACTIONS(1378), - [anon_sym_use] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym_LT] = ACTIONS(1376), - [anon_sym_COLON_COLON] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_yield] = ACTIONS(1378), - [anon_sym_move] = ACTIONS(1378), - [sym_integer_literal] = ACTIONS(1376), - [aux_sym_string_literal_token1] = ACTIONS(1376), - [sym_char_literal] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1378), - [sym_super] = ACTIONS(1378), - [sym_crate] = ACTIONS(1378), - [sym_metavariable] = ACTIONS(1376), - [sym_raw_string_literal] = ACTIONS(1376), - [sym_float_literal] = ACTIONS(1376), + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_macro_rules_BANG] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1360), + [anon_sym_i8] = ACTIONS(1360), + [anon_sym_u16] = ACTIONS(1360), + [anon_sym_i16] = ACTIONS(1360), + [anon_sym_u32] = ACTIONS(1360), + [anon_sym_i32] = ACTIONS(1360), + [anon_sym_u64] = ACTIONS(1360), + [anon_sym_i64] = ACTIONS(1360), + [anon_sym_u128] = ACTIONS(1360), + [anon_sym_i128] = ACTIONS(1360), + [anon_sym_isize] = ACTIONS(1360), + [anon_sym_usize] = ACTIONS(1360), + [anon_sym_f32] = ACTIONS(1360), + [anon_sym_f64] = ACTIONS(1360), + [anon_sym_bool] = ACTIONS(1360), + [anon_sym_str] = ACTIONS(1360), + [anon_sym_char] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_async] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_fn] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_impl] = ACTIONS(1360), + [anon_sym_let] = ACTIONS(1360), + [anon_sym_loop] = ACTIONS(1360), + [anon_sym_match] = ACTIONS(1360), + [anon_sym_mod] = ACTIONS(1360), + [anon_sym_pub] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_trait] = ACTIONS(1360), + [anon_sym_type] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_unsafe] = ACTIONS(1360), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_COLON_COLON] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_DOT_DOT] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_yield] = ACTIONS(1360), + [anon_sym_move] = ACTIONS(1360), + [sym_integer_literal] = ACTIONS(1358), + [aux_sym_string_literal_token1] = ACTIONS(1358), + [sym_char_literal] = ACTIONS(1358), + [anon_sym_true] = ACTIONS(1360), + [anon_sym_false] = ACTIONS(1360), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1360), + [sym_super] = ACTIONS(1360), + [sym_crate] = ACTIONS(1360), + [sym_metavariable] = ACTIONS(1358), + [sym_raw_string_literal] = ACTIONS(1358), + [sym_float_literal] = ACTIONS(1358), [sym_block_comment] = ACTIONS(3), }, [321] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_macro_rules_BANG] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_u8] = ACTIONS(1382), - [anon_sym_i8] = ACTIONS(1382), - [anon_sym_u16] = ACTIONS(1382), - [anon_sym_i16] = ACTIONS(1382), - [anon_sym_u32] = ACTIONS(1382), - [anon_sym_i32] = ACTIONS(1382), - [anon_sym_u64] = ACTIONS(1382), - [anon_sym_i64] = ACTIONS(1382), - [anon_sym_u128] = ACTIONS(1382), - [anon_sym_i128] = ACTIONS(1382), - [anon_sym_isize] = ACTIONS(1382), - [anon_sym_usize] = ACTIONS(1382), - [anon_sym_f32] = ACTIONS(1382), - [anon_sym_f64] = ACTIONS(1382), - [anon_sym_bool] = ACTIONS(1382), - [anon_sym_str] = ACTIONS(1382), - [anon_sym_char] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_async] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_impl] = ACTIONS(1382), - [anon_sym_let] = ACTIONS(1382), - [anon_sym_loop] = ACTIONS(1382), - [anon_sym_match] = ACTIONS(1382), - [anon_sym_mod] = ACTIONS(1382), - [anon_sym_pub] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_trait] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_unsafe] = ACTIONS(1382), - [anon_sym_use] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_COLON_COLON] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_DOT_DOT] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_move] = ACTIONS(1382), - [sym_integer_literal] = ACTIONS(1380), - [aux_sym_string_literal_token1] = ACTIONS(1380), - [sym_char_literal] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1382), - [anon_sym_false] = ACTIONS(1382), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1382), - [sym_super] = ACTIONS(1382), - [sym_crate] = ACTIONS(1382), - [sym_metavariable] = ACTIONS(1380), - [sym_raw_string_literal] = ACTIONS(1380), - [sym_float_literal] = ACTIONS(1380), + [ts_builtin_sym_end] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_macro_rules_BANG] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_u8] = ACTIONS(1364), + [anon_sym_i8] = ACTIONS(1364), + [anon_sym_u16] = ACTIONS(1364), + [anon_sym_i16] = ACTIONS(1364), + [anon_sym_u32] = ACTIONS(1364), + [anon_sym_i32] = ACTIONS(1364), + [anon_sym_u64] = ACTIONS(1364), + [anon_sym_i64] = ACTIONS(1364), + [anon_sym_u128] = ACTIONS(1364), + [anon_sym_i128] = ACTIONS(1364), + [anon_sym_isize] = ACTIONS(1364), + [anon_sym_usize] = ACTIONS(1364), + [anon_sym_f32] = ACTIONS(1364), + [anon_sym_f64] = ACTIONS(1364), + [anon_sym_bool] = ACTIONS(1364), + [anon_sym_str] = ACTIONS(1364), + [anon_sym_char] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_async] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_impl] = ACTIONS(1364), + [anon_sym_let] = ACTIONS(1364), + [anon_sym_loop] = ACTIONS(1364), + [anon_sym_match] = ACTIONS(1364), + [anon_sym_mod] = ACTIONS(1364), + [anon_sym_pub] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_trait] = ACTIONS(1364), + [anon_sym_type] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_unsafe] = ACTIONS(1364), + [anon_sym_use] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_POUND] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_COLON_COLON] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_DOT_DOT] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_yield] = ACTIONS(1364), + [anon_sym_move] = ACTIONS(1364), + [sym_integer_literal] = ACTIONS(1362), + [aux_sym_string_literal_token1] = ACTIONS(1362), + [sym_char_literal] = ACTIONS(1362), + [anon_sym_true] = ACTIONS(1364), + [anon_sym_false] = ACTIONS(1364), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1364), + [sym_super] = ACTIONS(1364), + [sym_crate] = ACTIONS(1364), + [sym_metavariable] = ACTIONS(1362), + [sym_raw_string_literal] = ACTIONS(1362), + [sym_float_literal] = ACTIONS(1362), [sym_block_comment] = ACTIONS(3), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_macro_rules_BANG] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_LBRACK] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_u8] = ACTIONS(1386), - [anon_sym_i8] = ACTIONS(1386), - [anon_sym_u16] = ACTIONS(1386), - [anon_sym_i16] = ACTIONS(1386), - [anon_sym_u32] = ACTIONS(1386), - [anon_sym_i32] = ACTIONS(1386), - [anon_sym_u64] = ACTIONS(1386), - [anon_sym_i64] = ACTIONS(1386), - [anon_sym_u128] = ACTIONS(1386), - [anon_sym_i128] = ACTIONS(1386), - [anon_sym_isize] = ACTIONS(1386), - [anon_sym_usize] = ACTIONS(1386), - [anon_sym_f32] = ACTIONS(1386), - [anon_sym_f64] = ACTIONS(1386), - [anon_sym_bool] = ACTIONS(1386), - [anon_sym_str] = ACTIONS(1386), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_fn] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_impl] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_loop] = ACTIONS(1386), - [anon_sym_match] = ACTIONS(1386), - [anon_sym_mod] = ACTIONS(1386), - [anon_sym_pub] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_trait] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_unsafe] = ACTIONS(1386), - [anon_sym_use] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym_LT] = ACTIONS(1384), - [anon_sym_COLON_COLON] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1384), - [anon_sym_yield] = ACTIONS(1386), - [anon_sym_move] = ACTIONS(1386), - [sym_integer_literal] = ACTIONS(1384), - [aux_sym_string_literal_token1] = ACTIONS(1384), - [sym_char_literal] = ACTIONS(1384), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1386), - [sym_super] = ACTIONS(1386), - [sym_crate] = ACTIONS(1386), - [sym_metavariable] = ACTIONS(1384), - [sym_raw_string_literal] = ACTIONS(1384), - [sym_float_literal] = ACTIONS(1384), + [ts_builtin_sym_end] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_macro_rules_BANG] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_u8] = ACTIONS(1368), + [anon_sym_i8] = ACTIONS(1368), + [anon_sym_u16] = ACTIONS(1368), + [anon_sym_i16] = ACTIONS(1368), + [anon_sym_u32] = ACTIONS(1368), + [anon_sym_i32] = ACTIONS(1368), + [anon_sym_u64] = ACTIONS(1368), + [anon_sym_i64] = ACTIONS(1368), + [anon_sym_u128] = ACTIONS(1368), + [anon_sym_i128] = ACTIONS(1368), + [anon_sym_isize] = ACTIONS(1368), + [anon_sym_usize] = ACTIONS(1368), + [anon_sym_f32] = ACTIONS(1368), + [anon_sym_f64] = ACTIONS(1368), + [anon_sym_bool] = ACTIONS(1368), + [anon_sym_str] = ACTIONS(1368), + [anon_sym_char] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_async] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_impl] = ACTIONS(1368), + [anon_sym_let] = ACTIONS(1368), + [anon_sym_loop] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1368), + [anon_sym_mod] = ACTIONS(1368), + [anon_sym_pub] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_trait] = ACTIONS(1368), + [anon_sym_type] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_unsafe] = ACTIONS(1368), + [anon_sym_use] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_POUND] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_COLON_COLON] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_DOT_DOT] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_move] = ACTIONS(1368), + [sym_integer_literal] = ACTIONS(1366), + [aux_sym_string_literal_token1] = ACTIONS(1366), + [sym_char_literal] = ACTIONS(1366), + [anon_sym_true] = ACTIONS(1368), + [anon_sym_false] = ACTIONS(1368), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1368), + [sym_super] = ACTIONS(1368), + [sym_crate] = ACTIONS(1368), + [sym_metavariable] = ACTIONS(1366), + [sym_raw_string_literal] = ACTIONS(1366), + [sym_float_literal] = ACTIONS(1366), [sym_block_comment] = ACTIONS(3), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_macro_rules_BANG] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_u8] = ACTIONS(1390), - [anon_sym_i8] = ACTIONS(1390), - [anon_sym_u16] = ACTIONS(1390), - [anon_sym_i16] = ACTIONS(1390), - [anon_sym_u32] = ACTIONS(1390), - [anon_sym_i32] = ACTIONS(1390), - [anon_sym_u64] = ACTIONS(1390), - [anon_sym_i64] = ACTIONS(1390), - [anon_sym_u128] = ACTIONS(1390), - [anon_sym_i128] = ACTIONS(1390), - [anon_sym_isize] = ACTIONS(1390), - [anon_sym_usize] = ACTIONS(1390), - [anon_sym_f32] = ACTIONS(1390), - [anon_sym_f64] = ACTIONS(1390), - [anon_sym_bool] = ACTIONS(1390), - [anon_sym_str] = ACTIONS(1390), - [anon_sym_char] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_async] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_fn] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_impl] = ACTIONS(1390), - [anon_sym_let] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1390), - [anon_sym_mod] = ACTIONS(1390), - [anon_sym_pub] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_trait] = ACTIONS(1390), - [anon_sym_type] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_unsafe] = ACTIONS(1390), - [anon_sym_use] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_COLON_COLON] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_DOT_DOT] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1388), - [anon_sym_yield] = ACTIONS(1390), - [anon_sym_move] = ACTIONS(1390), - [sym_integer_literal] = ACTIONS(1388), - [aux_sym_string_literal_token1] = ACTIONS(1388), - [sym_char_literal] = ACTIONS(1388), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1390), - [sym_super] = ACTIONS(1390), - [sym_crate] = ACTIONS(1390), - [sym_metavariable] = ACTIONS(1388), - [sym_raw_string_literal] = ACTIONS(1388), - [sym_float_literal] = ACTIONS(1388), + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_macro_rules_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_u8] = ACTIONS(1372), + [anon_sym_i8] = ACTIONS(1372), + [anon_sym_u16] = ACTIONS(1372), + [anon_sym_i16] = ACTIONS(1372), + [anon_sym_u32] = ACTIONS(1372), + [anon_sym_i32] = ACTIONS(1372), + [anon_sym_u64] = ACTIONS(1372), + [anon_sym_i64] = ACTIONS(1372), + [anon_sym_u128] = ACTIONS(1372), + [anon_sym_i128] = ACTIONS(1372), + [anon_sym_isize] = ACTIONS(1372), + [anon_sym_usize] = ACTIONS(1372), + [anon_sym_f32] = ACTIONS(1372), + [anon_sym_f64] = ACTIONS(1372), + [anon_sym_bool] = ACTIONS(1372), + [anon_sym_str] = ACTIONS(1372), + [anon_sym_char] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_impl] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_loop] = ACTIONS(1372), + [anon_sym_match] = ACTIONS(1372), + [anon_sym_mod] = ACTIONS(1372), + [anon_sym_pub] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_trait] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_unsafe] = ACTIONS(1372), + [anon_sym_use] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_POUND] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_COLON_COLON] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_DOT_DOT] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1370), + [anon_sym_yield] = ACTIONS(1372), + [anon_sym_move] = ACTIONS(1372), + [sym_integer_literal] = ACTIONS(1370), + [aux_sym_string_literal_token1] = ACTIONS(1370), + [sym_char_literal] = ACTIONS(1370), + [anon_sym_true] = ACTIONS(1372), + [anon_sym_false] = ACTIONS(1372), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1372), + [sym_super] = ACTIONS(1372), + [sym_crate] = ACTIONS(1372), + [sym_metavariable] = ACTIONS(1370), + [sym_raw_string_literal] = ACTIONS(1370), + [sym_float_literal] = ACTIONS(1370), [sym_block_comment] = ACTIONS(3), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_macro_rules_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [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_SQUOTE] = ACTIONS(1394), - [anon_sym_async] = 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_while] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_COLON_COLON] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_yield] = ACTIONS(1394), - [anon_sym_move] = ACTIONS(1394), - [sym_integer_literal] = ACTIONS(1392), - [aux_sym_string_literal_token1] = ACTIONS(1392), - [sym_char_literal] = ACTIONS(1392), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1394), - [sym_super] = ACTIONS(1394), - [sym_crate] = ACTIONS(1394), - [sym_metavariable] = ACTIONS(1392), - [sym_raw_string_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1392), + [ts_builtin_sym_end] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_macro_rules_BANG] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_u8] = ACTIONS(1376), + [anon_sym_i8] = ACTIONS(1376), + [anon_sym_u16] = ACTIONS(1376), + [anon_sym_i16] = ACTIONS(1376), + [anon_sym_u32] = ACTIONS(1376), + [anon_sym_i32] = ACTIONS(1376), + [anon_sym_u64] = ACTIONS(1376), + [anon_sym_i64] = ACTIONS(1376), + [anon_sym_u128] = ACTIONS(1376), + [anon_sym_i128] = ACTIONS(1376), + [anon_sym_isize] = ACTIONS(1376), + [anon_sym_usize] = ACTIONS(1376), + [anon_sym_f32] = ACTIONS(1376), + [anon_sym_f64] = ACTIONS(1376), + [anon_sym_bool] = ACTIONS(1376), + [anon_sym_str] = ACTIONS(1376), + [anon_sym_char] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_async] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_fn] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_impl] = ACTIONS(1376), + [anon_sym_let] = ACTIONS(1376), + [anon_sym_loop] = ACTIONS(1376), + [anon_sym_match] = ACTIONS(1376), + [anon_sym_mod] = ACTIONS(1376), + [anon_sym_pub] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_trait] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_unsafe] = ACTIONS(1376), + [anon_sym_use] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_POUND] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(1374), + [anon_sym_COLON_COLON] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_DOT_DOT] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_yield] = ACTIONS(1376), + [anon_sym_move] = ACTIONS(1376), + [sym_integer_literal] = ACTIONS(1374), + [aux_sym_string_literal_token1] = ACTIONS(1374), + [sym_char_literal] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1376), + [sym_super] = ACTIONS(1376), + [sym_crate] = ACTIONS(1376), + [sym_metavariable] = ACTIONS(1374), + [sym_raw_string_literal] = ACTIONS(1374), + [sym_float_literal] = ACTIONS(1374), [sym_block_comment] = ACTIONS(3), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_macro_rules_BANG] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_u8] = ACTIONS(1398), - [anon_sym_i8] = ACTIONS(1398), - [anon_sym_u16] = ACTIONS(1398), - [anon_sym_i16] = ACTIONS(1398), - [anon_sym_u32] = ACTIONS(1398), - [anon_sym_i32] = ACTIONS(1398), - [anon_sym_u64] = ACTIONS(1398), - [anon_sym_i64] = ACTIONS(1398), - [anon_sym_u128] = ACTIONS(1398), - [anon_sym_i128] = ACTIONS(1398), - [anon_sym_isize] = ACTIONS(1398), - [anon_sym_usize] = ACTIONS(1398), - [anon_sym_f32] = ACTIONS(1398), - [anon_sym_f64] = ACTIONS(1398), - [anon_sym_bool] = ACTIONS(1398), - [anon_sym_str] = ACTIONS(1398), - [anon_sym_char] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_async] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_fn] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_impl] = ACTIONS(1398), - [anon_sym_let] = ACTIONS(1398), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1398), - [anon_sym_pub] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_trait] = ACTIONS(1398), - [anon_sym_type] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_unsafe] = ACTIONS(1398), - [anon_sym_use] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_COLON_COLON] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_yield] = ACTIONS(1398), - [anon_sym_move] = ACTIONS(1398), - [sym_integer_literal] = ACTIONS(1396), - [aux_sym_string_literal_token1] = ACTIONS(1396), - [sym_char_literal] = ACTIONS(1396), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1398), - [sym_super] = ACTIONS(1398), - [sym_crate] = ACTIONS(1398), - [sym_metavariable] = ACTIONS(1396), - [sym_raw_string_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1396), + [ts_builtin_sym_end] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_macro_rules_BANG] = ACTIONS(1378), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_u8] = ACTIONS(1380), + [anon_sym_i8] = ACTIONS(1380), + [anon_sym_u16] = ACTIONS(1380), + [anon_sym_i16] = ACTIONS(1380), + [anon_sym_u32] = ACTIONS(1380), + [anon_sym_i32] = ACTIONS(1380), + [anon_sym_u64] = ACTIONS(1380), + [anon_sym_i64] = ACTIONS(1380), + [anon_sym_u128] = ACTIONS(1380), + [anon_sym_i128] = ACTIONS(1380), + [anon_sym_isize] = ACTIONS(1380), + [anon_sym_usize] = ACTIONS(1380), + [anon_sym_f32] = ACTIONS(1380), + [anon_sym_f64] = ACTIONS(1380), + [anon_sym_bool] = ACTIONS(1380), + [anon_sym_str] = ACTIONS(1380), + [anon_sym_char] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_async] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_impl] = ACTIONS(1380), + [anon_sym_let] = ACTIONS(1380), + [anon_sym_loop] = ACTIONS(1380), + [anon_sym_match] = ACTIONS(1380), + [anon_sym_mod] = ACTIONS(1380), + [anon_sym_pub] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_trait] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_unsafe] = ACTIONS(1380), + [anon_sym_use] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_POUND] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym_LT] = ACTIONS(1378), + [anon_sym_COLON_COLON] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_DOT_DOT] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PIPE] = ACTIONS(1378), + [anon_sym_yield] = ACTIONS(1380), + [anon_sym_move] = ACTIONS(1380), + [sym_integer_literal] = ACTIONS(1378), + [aux_sym_string_literal_token1] = ACTIONS(1378), + [sym_char_literal] = ACTIONS(1378), + [anon_sym_true] = ACTIONS(1380), + [anon_sym_false] = ACTIONS(1380), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1380), + [sym_super] = ACTIONS(1380), + [sym_crate] = ACTIONS(1380), + [sym_metavariable] = ACTIONS(1378), + [sym_raw_string_literal] = ACTIONS(1378), + [sym_float_literal] = ACTIONS(1378), [sym_block_comment] = ACTIONS(3), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_macro_rules_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_u8] = ACTIONS(1402), - [anon_sym_i8] = ACTIONS(1402), - [anon_sym_u16] = ACTIONS(1402), - [anon_sym_i16] = ACTIONS(1402), - [anon_sym_u32] = ACTIONS(1402), - [anon_sym_i32] = ACTIONS(1402), - [anon_sym_u64] = ACTIONS(1402), - [anon_sym_i64] = ACTIONS(1402), - [anon_sym_u128] = ACTIONS(1402), - [anon_sym_i128] = ACTIONS(1402), - [anon_sym_isize] = ACTIONS(1402), - [anon_sym_usize] = ACTIONS(1402), - [anon_sym_f32] = ACTIONS(1402), - [anon_sym_f64] = ACTIONS(1402), - [anon_sym_bool] = ACTIONS(1402), - [anon_sym_str] = ACTIONS(1402), - [anon_sym_char] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_async] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_fn] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_impl] = ACTIONS(1402), - [anon_sym_let] = ACTIONS(1402), - [anon_sym_loop] = ACTIONS(1402), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_mod] = ACTIONS(1402), - [anon_sym_pub] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_trait] = ACTIONS(1402), - [anon_sym_type] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1402), - [anon_sym_use] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_COLON_COLON] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_yield] = ACTIONS(1402), - [anon_sym_move] = ACTIONS(1402), - [sym_integer_literal] = ACTIONS(1400), - [aux_sym_string_literal_token1] = ACTIONS(1400), - [sym_char_literal] = ACTIONS(1400), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1402), - [sym_super] = ACTIONS(1402), - [sym_crate] = ACTIONS(1402), - [sym_metavariable] = ACTIONS(1400), - [sym_raw_string_literal] = ACTIONS(1400), - [sym_float_literal] = ACTIONS(1400), + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_macro_rules_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_u8] = ACTIONS(1384), + [anon_sym_i8] = ACTIONS(1384), + [anon_sym_u16] = ACTIONS(1384), + [anon_sym_i16] = ACTIONS(1384), + [anon_sym_u32] = ACTIONS(1384), + [anon_sym_i32] = ACTIONS(1384), + [anon_sym_u64] = ACTIONS(1384), + [anon_sym_i64] = ACTIONS(1384), + [anon_sym_u128] = ACTIONS(1384), + [anon_sym_i128] = ACTIONS(1384), + [anon_sym_isize] = ACTIONS(1384), + [anon_sym_usize] = ACTIONS(1384), + [anon_sym_f32] = ACTIONS(1384), + [anon_sym_f64] = ACTIONS(1384), + [anon_sym_bool] = ACTIONS(1384), + [anon_sym_str] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_impl] = ACTIONS(1384), + [anon_sym_let] = ACTIONS(1384), + [anon_sym_loop] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_mod] = ACTIONS(1384), + [anon_sym_pub] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_trait] = ACTIONS(1384), + [anon_sym_type] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_unsafe] = ACTIONS(1384), + [anon_sym_use] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_POUND] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1382), + [anon_sym_COLON_COLON] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_DOT_DOT] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PIPE] = ACTIONS(1382), + [anon_sym_yield] = ACTIONS(1384), + [anon_sym_move] = ACTIONS(1384), + [sym_integer_literal] = ACTIONS(1382), + [aux_sym_string_literal_token1] = ACTIONS(1382), + [sym_char_literal] = ACTIONS(1382), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1384), + [sym_super] = ACTIONS(1384), + [sym_crate] = ACTIONS(1384), + [sym_metavariable] = ACTIONS(1382), + [sym_raw_string_literal] = ACTIONS(1382), + [sym_float_literal] = ACTIONS(1382), [sym_block_comment] = ACTIONS(3), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_macro_rules_BANG] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [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_SQUOTE] = ACTIONS(1406), - [anon_sym_async] = 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_while] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_LT] = ACTIONS(1404), - [anon_sym_COLON_COLON] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_yield] = ACTIONS(1406), - [anon_sym_move] = ACTIONS(1406), - [sym_integer_literal] = ACTIONS(1404), - [aux_sym_string_literal_token1] = ACTIONS(1404), - [sym_char_literal] = ACTIONS(1404), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1406), - [sym_super] = ACTIONS(1406), - [sym_crate] = ACTIONS(1406), - [sym_metavariable] = ACTIONS(1404), - [sym_raw_string_literal] = ACTIONS(1404), - [sym_float_literal] = ACTIONS(1404), + [ts_builtin_sym_end] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_macro_rules_BANG] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_u8] = ACTIONS(1388), + [anon_sym_i8] = ACTIONS(1388), + [anon_sym_u16] = ACTIONS(1388), + [anon_sym_i16] = ACTIONS(1388), + [anon_sym_u32] = ACTIONS(1388), + [anon_sym_i32] = ACTIONS(1388), + [anon_sym_u64] = ACTIONS(1388), + [anon_sym_i64] = ACTIONS(1388), + [anon_sym_u128] = ACTIONS(1388), + [anon_sym_i128] = ACTIONS(1388), + [anon_sym_isize] = ACTIONS(1388), + [anon_sym_usize] = ACTIONS(1388), + [anon_sym_f32] = ACTIONS(1388), + [anon_sym_f64] = ACTIONS(1388), + [anon_sym_bool] = ACTIONS(1388), + [anon_sym_str] = ACTIONS(1388), + [anon_sym_char] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_fn] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_impl] = ACTIONS(1388), + [anon_sym_let] = ACTIONS(1388), + [anon_sym_loop] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_mod] = ACTIONS(1388), + [anon_sym_pub] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_trait] = ACTIONS(1388), + [anon_sym_type] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_unsafe] = ACTIONS(1388), + [anon_sym_use] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_POUND] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_COLON_COLON] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_DOT_DOT] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_yield] = ACTIONS(1388), + [anon_sym_move] = ACTIONS(1388), + [sym_integer_literal] = ACTIONS(1386), + [aux_sym_string_literal_token1] = ACTIONS(1386), + [sym_char_literal] = ACTIONS(1386), + [anon_sym_true] = ACTIONS(1388), + [anon_sym_false] = ACTIONS(1388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1388), + [sym_super] = ACTIONS(1388), + [sym_crate] = ACTIONS(1388), + [sym_metavariable] = ACTIONS(1386), + [sym_raw_string_literal] = ACTIONS(1386), + [sym_float_literal] = ACTIONS(1386), [sym_block_comment] = ACTIONS(3), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_macro_rules_BANG] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_impl] = ACTIONS(1410), - [anon_sym_let] = ACTIONS(1410), - [anon_sym_loop] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1410), - [anon_sym_pub] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_trait] = ACTIONS(1410), - [anon_sym_type] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_unsafe] = ACTIONS(1410), - [anon_sym_use] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1408), - [anon_sym_COLON_COLON] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_DOT_DOT] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_PIPE] = ACTIONS(1408), - [anon_sym_yield] = ACTIONS(1410), - [anon_sym_move] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1408), - [aux_sym_string_literal_token1] = ACTIONS(1408), - [sym_char_literal] = ACTIONS(1408), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1410), - [sym_super] = ACTIONS(1410), - [sym_crate] = ACTIONS(1410), - [sym_metavariable] = ACTIONS(1408), - [sym_raw_string_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1408), + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_macro_rules_BANG] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_u8] = ACTIONS(1392), + [anon_sym_i8] = ACTIONS(1392), + [anon_sym_u16] = ACTIONS(1392), + [anon_sym_i16] = ACTIONS(1392), + [anon_sym_u32] = ACTIONS(1392), + [anon_sym_i32] = ACTIONS(1392), + [anon_sym_u64] = ACTIONS(1392), + [anon_sym_i64] = ACTIONS(1392), + [anon_sym_u128] = ACTIONS(1392), + [anon_sym_i128] = ACTIONS(1392), + [anon_sym_isize] = ACTIONS(1392), + [anon_sym_usize] = ACTIONS(1392), + [anon_sym_f32] = ACTIONS(1392), + [anon_sym_f64] = ACTIONS(1392), + [anon_sym_bool] = ACTIONS(1392), + [anon_sym_str] = ACTIONS(1392), + [anon_sym_char] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_fn] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_impl] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_loop] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1392), + [anon_sym_mod] = ACTIONS(1392), + [anon_sym_pub] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_trait] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_unsafe] = ACTIONS(1392), + [anon_sym_use] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_POUND] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_COLON_COLON] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_DOT_DOT] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_move] = ACTIONS(1392), + [sym_integer_literal] = ACTIONS(1390), + [aux_sym_string_literal_token1] = ACTIONS(1390), + [sym_char_literal] = ACTIONS(1390), + [anon_sym_true] = ACTIONS(1392), + [anon_sym_false] = ACTIONS(1392), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1392), + [sym_super] = ACTIONS(1392), + [sym_crate] = ACTIONS(1392), + [sym_metavariable] = ACTIONS(1390), + [sym_raw_string_literal] = ACTIONS(1390), + [sym_float_literal] = ACTIONS(1390), [sym_block_comment] = ACTIONS(3), }, [329] = { - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_macro_rules_BANG] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_u8] = ACTIONS(1414), - [anon_sym_i8] = ACTIONS(1414), - [anon_sym_u16] = ACTIONS(1414), - [anon_sym_i16] = ACTIONS(1414), - [anon_sym_u32] = ACTIONS(1414), - [anon_sym_i32] = ACTIONS(1414), - [anon_sym_u64] = ACTIONS(1414), - [anon_sym_i64] = ACTIONS(1414), - [anon_sym_u128] = ACTIONS(1414), - [anon_sym_i128] = ACTIONS(1414), - [anon_sym_isize] = ACTIONS(1414), - [anon_sym_usize] = ACTIONS(1414), - [anon_sym_f32] = ACTIONS(1414), - [anon_sym_f64] = ACTIONS(1414), - [anon_sym_bool] = ACTIONS(1414), - [anon_sym_str] = ACTIONS(1414), - [anon_sym_char] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_async] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_impl] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_pub] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_trait] = ACTIONS(1414), - [anon_sym_type] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_unsafe] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_LT] = ACTIONS(1412), - [anon_sym_COLON_COLON] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_DOT_DOT] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1412), - [anon_sym_yield] = ACTIONS(1414), - [anon_sym_move] = ACTIONS(1414), - [sym_integer_literal] = ACTIONS(1412), - [aux_sym_string_literal_token1] = ACTIONS(1412), - [sym_char_literal] = ACTIONS(1412), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1414), - [sym_super] = ACTIONS(1414), - [sym_crate] = ACTIONS(1414), - [sym_metavariable] = ACTIONS(1412), - [sym_raw_string_literal] = ACTIONS(1412), - [sym_float_literal] = ACTIONS(1412), + [ts_builtin_sym_end] = ACTIONS(1394), + [sym_identifier] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_macro_rules_BANG] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u128] = ACTIONS(1396), + [anon_sym_i128] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_str] = ACTIONS(1396), + [anon_sym_char] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_async] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_fn] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_impl] = ACTIONS(1396), + [anon_sym_let] = ACTIONS(1396), + [anon_sym_loop] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1396), + [anon_sym_mod] = ACTIONS(1396), + [anon_sym_pub] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_trait] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_unsafe] = ACTIONS(1396), + [anon_sym_use] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_DOT_DOT] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_move] = ACTIONS(1396), + [sym_integer_literal] = ACTIONS(1394), + [aux_sym_string_literal_token1] = ACTIONS(1394), + [sym_char_literal] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1396), + [anon_sym_false] = ACTIONS(1396), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1396), + [sym_super] = ACTIONS(1396), + [sym_crate] = ACTIONS(1396), + [sym_metavariable] = ACTIONS(1394), + [sym_raw_string_literal] = ACTIONS(1394), + [sym_float_literal] = ACTIONS(1394), [sym_block_comment] = ACTIONS(3), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_identifier] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_macro_rules_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_u8] = ACTIONS(1418), - [anon_sym_i8] = ACTIONS(1418), - [anon_sym_u16] = ACTIONS(1418), - [anon_sym_i16] = ACTIONS(1418), - [anon_sym_u32] = ACTIONS(1418), - [anon_sym_i32] = ACTIONS(1418), - [anon_sym_u64] = ACTIONS(1418), - [anon_sym_i64] = ACTIONS(1418), - [anon_sym_u128] = ACTIONS(1418), - [anon_sym_i128] = ACTIONS(1418), - [anon_sym_isize] = ACTIONS(1418), - [anon_sym_usize] = ACTIONS(1418), - [anon_sym_f32] = ACTIONS(1418), - [anon_sym_f64] = ACTIONS(1418), - [anon_sym_bool] = ACTIONS(1418), - [anon_sym_str] = ACTIONS(1418), - [anon_sym_char] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_fn] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_impl] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_pub] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_trait] = ACTIONS(1418), - [anon_sym_type] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_yield] = ACTIONS(1418), - [anon_sym_move] = ACTIONS(1418), - [sym_integer_literal] = ACTIONS(1416), - [aux_sym_string_literal_token1] = ACTIONS(1416), - [sym_char_literal] = ACTIONS(1416), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1418), - [sym_super] = ACTIONS(1418), - [sym_crate] = ACTIONS(1418), - [sym_metavariable] = ACTIONS(1416), - [sym_raw_string_literal] = ACTIONS(1416), - [sym_float_literal] = ACTIONS(1416), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_macro_rules_BANG] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_u8] = ACTIONS(1400), + [anon_sym_i8] = ACTIONS(1400), + [anon_sym_u16] = ACTIONS(1400), + [anon_sym_i16] = ACTIONS(1400), + [anon_sym_u32] = ACTIONS(1400), + [anon_sym_i32] = ACTIONS(1400), + [anon_sym_u64] = ACTIONS(1400), + [anon_sym_i64] = ACTIONS(1400), + [anon_sym_u128] = ACTIONS(1400), + [anon_sym_i128] = ACTIONS(1400), + [anon_sym_isize] = ACTIONS(1400), + [anon_sym_usize] = ACTIONS(1400), + [anon_sym_f32] = ACTIONS(1400), + [anon_sym_f64] = ACTIONS(1400), + [anon_sym_bool] = ACTIONS(1400), + [anon_sym_str] = ACTIONS(1400), + [anon_sym_char] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_fn] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_impl] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_pub] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_trait] = ACTIONS(1400), + [anon_sym_type] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_unsafe] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_COLON_COLON] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_DOT_DOT] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1398), + [anon_sym_yield] = ACTIONS(1400), + [anon_sym_move] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1398), + [aux_sym_string_literal_token1] = ACTIONS(1398), + [sym_char_literal] = ACTIONS(1398), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1400), + [sym_super] = ACTIONS(1400), + [sym_crate] = ACTIONS(1400), + [sym_metavariable] = ACTIONS(1398), + [sym_raw_string_literal] = ACTIONS(1398), + [sym_float_literal] = ACTIONS(1398), [sym_block_comment] = ACTIONS(3), }, [331] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_macro_rules_BANG] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_u8] = ACTIONS(1422), - [anon_sym_i8] = ACTIONS(1422), - [anon_sym_u16] = ACTIONS(1422), - [anon_sym_i16] = ACTIONS(1422), - [anon_sym_u32] = ACTIONS(1422), - [anon_sym_i32] = ACTIONS(1422), - [anon_sym_u64] = ACTIONS(1422), - [anon_sym_i64] = ACTIONS(1422), - [anon_sym_u128] = ACTIONS(1422), - [anon_sym_i128] = ACTIONS(1422), - [anon_sym_isize] = ACTIONS(1422), - [anon_sym_usize] = ACTIONS(1422), - [anon_sym_f32] = ACTIONS(1422), - [anon_sym_f64] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_str] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_fn] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_impl] = ACTIONS(1422), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_loop] = ACTIONS(1422), - [anon_sym_match] = ACTIONS(1422), - [anon_sym_mod] = ACTIONS(1422), - [anon_sym_pub] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_trait] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_unsafe] = ACTIONS(1422), - [anon_sym_use] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_COLON_COLON] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_DOT_DOT] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_yield] = ACTIONS(1422), - [anon_sym_move] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1420), - [aux_sym_string_literal_token1] = ACTIONS(1420), - [sym_char_literal] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1422), - [sym_super] = ACTIONS(1422), - [sym_crate] = ACTIONS(1422), - [sym_metavariable] = ACTIONS(1420), - [sym_raw_string_literal] = ACTIONS(1420), - [sym_float_literal] = ACTIONS(1420), + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_macro_rules_BANG] = ACTIONS(1402), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_u8] = ACTIONS(1404), + [anon_sym_i8] = ACTIONS(1404), + [anon_sym_u16] = ACTIONS(1404), + [anon_sym_i16] = ACTIONS(1404), + [anon_sym_u32] = ACTIONS(1404), + [anon_sym_i32] = ACTIONS(1404), + [anon_sym_u64] = ACTIONS(1404), + [anon_sym_i64] = ACTIONS(1404), + [anon_sym_u128] = ACTIONS(1404), + [anon_sym_i128] = ACTIONS(1404), + [anon_sym_isize] = ACTIONS(1404), + [anon_sym_usize] = ACTIONS(1404), + [anon_sym_f32] = ACTIONS(1404), + [anon_sym_f64] = ACTIONS(1404), + [anon_sym_bool] = ACTIONS(1404), + [anon_sym_str] = ACTIONS(1404), + [anon_sym_char] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_async] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_fn] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_impl] = ACTIONS(1404), + [anon_sym_let] = ACTIONS(1404), + [anon_sym_loop] = ACTIONS(1404), + [anon_sym_match] = ACTIONS(1404), + [anon_sym_mod] = ACTIONS(1404), + [anon_sym_pub] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_trait] = ACTIONS(1404), + [anon_sym_type] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_unsafe] = ACTIONS(1404), + [anon_sym_use] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_POUND] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym_LT] = ACTIONS(1402), + [anon_sym_COLON_COLON] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_move] = ACTIONS(1404), + [sym_integer_literal] = ACTIONS(1402), + [aux_sym_string_literal_token1] = ACTIONS(1402), + [sym_char_literal] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1404), + [anon_sym_false] = ACTIONS(1404), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1404), + [sym_super] = ACTIONS(1404), + [sym_crate] = ACTIONS(1404), + [sym_metavariable] = ACTIONS(1402), + [sym_raw_string_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1402), [sym_block_comment] = ACTIONS(3), }, [332] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_macro_rules_BANG] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_u8] = ACTIONS(1426), - [anon_sym_i8] = ACTIONS(1426), - [anon_sym_u16] = ACTIONS(1426), - [anon_sym_i16] = ACTIONS(1426), - [anon_sym_u32] = ACTIONS(1426), - [anon_sym_i32] = ACTIONS(1426), - [anon_sym_u64] = ACTIONS(1426), - [anon_sym_i64] = ACTIONS(1426), - [anon_sym_u128] = ACTIONS(1426), - [anon_sym_i128] = ACTIONS(1426), - [anon_sym_isize] = ACTIONS(1426), - [anon_sym_usize] = ACTIONS(1426), - [anon_sym_f32] = ACTIONS(1426), - [anon_sym_f64] = ACTIONS(1426), - [anon_sym_bool] = ACTIONS(1426), - [anon_sym_str] = ACTIONS(1426), - [anon_sym_char] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_fn] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_impl] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_pub] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_trait] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_unsafe] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_POUND] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_DOT_DOT] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PIPE] = ACTIONS(1424), - [anon_sym_yield] = ACTIONS(1426), - [anon_sym_move] = ACTIONS(1426), - [sym_integer_literal] = ACTIONS(1424), - [aux_sym_string_literal_token1] = ACTIONS(1424), - [sym_char_literal] = ACTIONS(1424), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_crate] = ACTIONS(1426), - [sym_metavariable] = ACTIONS(1424), - [sym_raw_string_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_identifier] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_macro_rules_BANG] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_u8] = ACTIONS(1408), + [anon_sym_i8] = ACTIONS(1408), + [anon_sym_u16] = ACTIONS(1408), + [anon_sym_i16] = ACTIONS(1408), + [anon_sym_u32] = ACTIONS(1408), + [anon_sym_i32] = ACTIONS(1408), + [anon_sym_u64] = ACTIONS(1408), + [anon_sym_i64] = ACTIONS(1408), + [anon_sym_u128] = ACTIONS(1408), + [anon_sym_i128] = ACTIONS(1408), + [anon_sym_isize] = ACTIONS(1408), + [anon_sym_usize] = ACTIONS(1408), + [anon_sym_f32] = ACTIONS(1408), + [anon_sym_f64] = ACTIONS(1408), + [anon_sym_bool] = ACTIONS(1408), + [anon_sym_str] = ACTIONS(1408), + [anon_sym_char] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_impl] = ACTIONS(1408), + [anon_sym_let] = ACTIONS(1408), + [anon_sym_loop] = ACTIONS(1408), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_mod] = ACTIONS(1408), + [anon_sym_pub] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_trait] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_unsafe] = ACTIONS(1408), + [anon_sym_use] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym_LT] = ACTIONS(1406), + [anon_sym_COLON_COLON] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_DOT_DOT] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PIPE] = ACTIONS(1406), + [anon_sym_yield] = ACTIONS(1408), + [anon_sym_move] = ACTIONS(1408), + [sym_integer_literal] = ACTIONS(1406), + [aux_sym_string_literal_token1] = ACTIONS(1406), + [sym_char_literal] = ACTIONS(1406), + [anon_sym_true] = ACTIONS(1408), + [anon_sym_false] = ACTIONS(1408), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1408), + [sym_super] = ACTIONS(1408), + [sym_crate] = ACTIONS(1408), + [sym_metavariable] = ACTIONS(1406), + [sym_raw_string_literal] = ACTIONS(1406), + [sym_float_literal] = ACTIONS(1406), [sym_block_comment] = ACTIONS(3), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_macro_rules_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_u8] = ACTIONS(1430), - [anon_sym_i8] = ACTIONS(1430), - [anon_sym_u16] = ACTIONS(1430), - [anon_sym_i16] = ACTIONS(1430), - [anon_sym_u32] = ACTIONS(1430), - [anon_sym_i32] = ACTIONS(1430), - [anon_sym_u64] = ACTIONS(1430), - [anon_sym_i64] = ACTIONS(1430), - [anon_sym_u128] = ACTIONS(1430), - [anon_sym_i128] = ACTIONS(1430), - [anon_sym_isize] = ACTIONS(1430), - [anon_sym_usize] = ACTIONS(1430), - [anon_sym_f32] = ACTIONS(1430), - [anon_sym_f64] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_str] = ACTIONS(1430), - [anon_sym_char] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_async] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_fn] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_impl] = ACTIONS(1430), - [anon_sym_let] = ACTIONS(1430), - [anon_sym_loop] = ACTIONS(1430), - [anon_sym_match] = ACTIONS(1430), - [anon_sym_mod] = ACTIONS(1430), - [anon_sym_pub] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_trait] = ACTIONS(1430), - [anon_sym_type] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_unsafe] = ACTIONS(1430), - [anon_sym_use] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_DOT_DOT] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_move] = ACTIONS(1430), - [sym_integer_literal] = ACTIONS(1428), - [aux_sym_string_literal_token1] = ACTIONS(1428), - [sym_char_literal] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_crate] = ACTIONS(1430), - [sym_metavariable] = ACTIONS(1428), - [sym_raw_string_literal] = ACTIONS(1428), - [sym_float_literal] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_macro_rules_BANG] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_u8] = ACTIONS(1412), + [anon_sym_i8] = ACTIONS(1412), + [anon_sym_u16] = ACTIONS(1412), + [anon_sym_i16] = ACTIONS(1412), + [anon_sym_u32] = ACTIONS(1412), + [anon_sym_i32] = ACTIONS(1412), + [anon_sym_u64] = ACTIONS(1412), + [anon_sym_i64] = ACTIONS(1412), + [anon_sym_u128] = ACTIONS(1412), + [anon_sym_i128] = ACTIONS(1412), + [anon_sym_isize] = ACTIONS(1412), + [anon_sym_usize] = ACTIONS(1412), + [anon_sym_f32] = ACTIONS(1412), + [anon_sym_f64] = ACTIONS(1412), + [anon_sym_bool] = ACTIONS(1412), + [anon_sym_str] = ACTIONS(1412), + [anon_sym_char] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_async] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_fn] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_impl] = ACTIONS(1412), + [anon_sym_let] = ACTIONS(1412), + [anon_sym_loop] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1412), + [anon_sym_mod] = ACTIONS(1412), + [anon_sym_pub] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_trait] = ACTIONS(1412), + [anon_sym_type] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_POUND] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_COLON_COLON] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_yield] = ACTIONS(1412), + [anon_sym_move] = ACTIONS(1412), + [sym_integer_literal] = ACTIONS(1410), + [aux_sym_string_literal_token1] = ACTIONS(1410), + [sym_char_literal] = ACTIONS(1410), + [anon_sym_true] = ACTIONS(1412), + [anon_sym_false] = ACTIONS(1412), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1412), + [sym_super] = ACTIONS(1412), + [sym_crate] = ACTIONS(1412), + [sym_metavariable] = ACTIONS(1410), + [sym_raw_string_literal] = ACTIONS(1410), + [sym_float_literal] = ACTIONS(1410), [sym_block_comment] = ACTIONS(3), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u128] = ACTIONS(1434), - [anon_sym_i128] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_str] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_impl] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_mod] = ACTIONS(1434), - [anon_sym_pub] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_trait] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_unsafe] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_DOT_DOT] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1434), - [sym_integer_literal] = ACTIONS(1432), - [aux_sym_string_literal_token1] = ACTIONS(1432), - [sym_char_literal] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym_raw_string_literal] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), + [ts_builtin_sym_end] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_macro_rules_BANG] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_u8] = ACTIONS(1416), + [anon_sym_i8] = ACTIONS(1416), + [anon_sym_u16] = ACTIONS(1416), + [anon_sym_i16] = ACTIONS(1416), + [anon_sym_u32] = ACTIONS(1416), + [anon_sym_i32] = ACTIONS(1416), + [anon_sym_u64] = ACTIONS(1416), + [anon_sym_i64] = ACTIONS(1416), + [anon_sym_u128] = ACTIONS(1416), + [anon_sym_i128] = ACTIONS(1416), + [anon_sym_isize] = ACTIONS(1416), + [anon_sym_usize] = ACTIONS(1416), + [anon_sym_f32] = ACTIONS(1416), + [anon_sym_f64] = ACTIONS(1416), + [anon_sym_bool] = ACTIONS(1416), + [anon_sym_str] = ACTIONS(1416), + [anon_sym_char] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_async] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_fn] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_impl] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_loop] = ACTIONS(1416), + [anon_sym_match] = ACTIONS(1416), + [anon_sym_mod] = ACTIONS(1416), + [anon_sym_pub] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_trait] = ACTIONS(1416), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_unsafe] = ACTIONS(1416), + [anon_sym_use] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1414), + [anon_sym_COLON_COLON] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_yield] = ACTIONS(1416), + [anon_sym_move] = ACTIONS(1416), + [sym_integer_literal] = ACTIONS(1414), + [aux_sym_string_literal_token1] = ACTIONS(1414), + [sym_char_literal] = ACTIONS(1414), + [anon_sym_true] = ACTIONS(1416), + [anon_sym_false] = ACTIONS(1416), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1416), + [sym_super] = ACTIONS(1416), + [sym_crate] = ACTIONS(1416), + [sym_metavariable] = ACTIONS(1414), + [sym_raw_string_literal] = ACTIONS(1414), + [sym_float_literal] = ACTIONS(1414), [sym_block_comment] = ACTIONS(3), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_macro_rules_BANG] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [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_SQUOTE] = ACTIONS(1438), - [anon_sym_async] = 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_while] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1436), - [anon_sym_COLON_COLON] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_DOT_DOT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_yield] = ACTIONS(1438), - [anon_sym_move] = ACTIONS(1438), - [sym_integer_literal] = ACTIONS(1436), - [aux_sym_string_literal_token1] = ACTIONS(1436), - [sym_char_literal] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1438), - [anon_sym_false] = ACTIONS(1438), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1438), - [sym_super] = ACTIONS(1438), - [sym_crate] = ACTIONS(1438), - [sym_metavariable] = ACTIONS(1436), - [sym_raw_string_literal] = ACTIONS(1436), - [sym_float_literal] = ACTIONS(1436), + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_macro_rules_BANG] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1418), + [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_SQUOTE] = ACTIONS(1420), + [anon_sym_async] = 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_while] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_DOT_DOT] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PIPE] = ACTIONS(1418), + [anon_sym_yield] = ACTIONS(1420), + [anon_sym_move] = ACTIONS(1420), + [sym_integer_literal] = ACTIONS(1418), + [aux_sym_string_literal_token1] = ACTIONS(1418), + [sym_char_literal] = ACTIONS(1418), + [anon_sym_true] = ACTIONS(1420), + [anon_sym_false] = ACTIONS(1420), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1420), + [sym_super] = ACTIONS(1420), + [sym_crate] = ACTIONS(1420), + [sym_metavariable] = ACTIONS(1418), + [sym_raw_string_literal] = ACTIONS(1418), + [sym_float_literal] = ACTIONS(1418), [sym_block_comment] = ACTIONS(3), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_macro_rules_BANG] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_u8] = ACTIONS(1442), - [anon_sym_i8] = ACTIONS(1442), - [anon_sym_u16] = ACTIONS(1442), - [anon_sym_i16] = ACTIONS(1442), - [anon_sym_u32] = ACTIONS(1442), - [anon_sym_i32] = ACTIONS(1442), - [anon_sym_u64] = ACTIONS(1442), - [anon_sym_i64] = ACTIONS(1442), - [anon_sym_u128] = ACTIONS(1442), - [anon_sym_i128] = ACTIONS(1442), - [anon_sym_isize] = ACTIONS(1442), - [anon_sym_usize] = ACTIONS(1442), - [anon_sym_f32] = ACTIONS(1442), - [anon_sym_f64] = ACTIONS(1442), - [anon_sym_bool] = ACTIONS(1442), - [anon_sym_str] = ACTIONS(1442), - [anon_sym_char] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_async] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_impl] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1442), - [anon_sym_loop] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1442), - [anon_sym_mod] = ACTIONS(1442), - [anon_sym_pub] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_trait] = ACTIONS(1442), - [anon_sym_type] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_unsafe] = ACTIONS(1442), - [anon_sym_use] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym_LT] = ACTIONS(1440), - [anon_sym_COLON_COLON] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_DOT_DOT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_yield] = ACTIONS(1442), - [anon_sym_move] = ACTIONS(1442), - [sym_integer_literal] = ACTIONS(1440), - [aux_sym_string_literal_token1] = ACTIONS(1440), - [sym_char_literal] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1442), - [anon_sym_false] = ACTIONS(1442), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1442), - [sym_super] = ACTIONS(1442), - [sym_crate] = ACTIONS(1442), - [sym_metavariable] = ACTIONS(1440), - [sym_raw_string_literal] = ACTIONS(1440), - [sym_float_literal] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym_macro_rules_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1422), + [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_SQUOTE] = ACTIONS(1424), + [anon_sym_async] = 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_while] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PIPE] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_move] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1422), + [aux_sym_string_literal_token1] = ACTIONS(1422), + [sym_char_literal] = ACTIONS(1422), + [anon_sym_true] = ACTIONS(1424), + [anon_sym_false] = ACTIONS(1424), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1424), + [sym_super] = ACTIONS(1424), + [sym_crate] = ACTIONS(1424), + [sym_metavariable] = ACTIONS(1422), + [sym_raw_string_literal] = ACTIONS(1422), + [sym_float_literal] = ACTIONS(1422), [sym_block_comment] = ACTIONS(3), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(1444), - [sym_identifier] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_macro_rules_BANG] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_u8] = ACTIONS(1446), - [anon_sym_i8] = ACTIONS(1446), - [anon_sym_u16] = ACTIONS(1446), - [anon_sym_i16] = ACTIONS(1446), - [anon_sym_u32] = ACTIONS(1446), - [anon_sym_i32] = ACTIONS(1446), - [anon_sym_u64] = ACTIONS(1446), - [anon_sym_i64] = ACTIONS(1446), - [anon_sym_u128] = ACTIONS(1446), - [anon_sym_i128] = ACTIONS(1446), - [anon_sym_isize] = ACTIONS(1446), - [anon_sym_usize] = ACTIONS(1446), - [anon_sym_f32] = ACTIONS(1446), - [anon_sym_f64] = ACTIONS(1446), - [anon_sym_bool] = ACTIONS(1446), - [anon_sym_str] = ACTIONS(1446), - [anon_sym_char] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_async] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_fn] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_impl] = ACTIONS(1446), - [anon_sym_let] = ACTIONS(1446), - [anon_sym_loop] = ACTIONS(1446), - [anon_sym_match] = ACTIONS(1446), - [anon_sym_mod] = ACTIONS(1446), - [anon_sym_pub] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_trait] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_unsafe] = ACTIONS(1446), - [anon_sym_use] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_DOT_DOT] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_move] = ACTIONS(1446), - [sym_integer_literal] = ACTIONS(1444), - [aux_sym_string_literal_token1] = ACTIONS(1444), - [sym_char_literal] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1446), - [anon_sym_false] = ACTIONS(1446), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1446), - [sym_super] = ACTIONS(1446), - [sym_crate] = ACTIONS(1446), - [sym_metavariable] = ACTIONS(1444), - [sym_raw_string_literal] = ACTIONS(1444), - [sym_float_literal] = ACTIONS(1444), + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_macro_rules_BANG] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1426), + [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_SQUOTE] = ACTIONS(1428), + [anon_sym_async] = 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_while] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_COLON_COLON] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_DOT_DOT] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_yield] = ACTIONS(1428), + [anon_sym_move] = ACTIONS(1428), + [sym_integer_literal] = ACTIONS(1426), + [aux_sym_string_literal_token1] = ACTIONS(1426), + [sym_char_literal] = ACTIONS(1426), + [anon_sym_true] = ACTIONS(1428), + [anon_sym_false] = ACTIONS(1428), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1428), + [sym_super] = ACTIONS(1428), + [sym_crate] = ACTIONS(1428), + [sym_metavariable] = ACTIONS(1426), + [sym_raw_string_literal] = ACTIONS(1426), + [sym_float_literal] = ACTIONS(1426), [sym_block_comment] = ACTIONS(3), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_macro_rules_BANG] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_u8] = ACTIONS(1450), - [anon_sym_i8] = ACTIONS(1450), - [anon_sym_u16] = ACTIONS(1450), - [anon_sym_i16] = ACTIONS(1450), - [anon_sym_u32] = ACTIONS(1450), - [anon_sym_i32] = ACTIONS(1450), - [anon_sym_u64] = ACTIONS(1450), - [anon_sym_i64] = ACTIONS(1450), - [anon_sym_u128] = ACTIONS(1450), - [anon_sym_i128] = ACTIONS(1450), - [anon_sym_isize] = ACTIONS(1450), - [anon_sym_usize] = ACTIONS(1450), - [anon_sym_f32] = ACTIONS(1450), - [anon_sym_f64] = ACTIONS(1450), - [anon_sym_bool] = ACTIONS(1450), - [anon_sym_str] = ACTIONS(1450), - [anon_sym_char] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_async] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_fn] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_impl] = ACTIONS(1450), - [anon_sym_let] = ACTIONS(1450), - [anon_sym_loop] = ACTIONS(1450), - [anon_sym_match] = ACTIONS(1450), - [anon_sym_mod] = ACTIONS(1450), - [anon_sym_pub] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_trait] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_unsafe] = ACTIONS(1450), - [anon_sym_use] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_COLON_COLON] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_DOT_DOT] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_yield] = ACTIONS(1450), - [anon_sym_move] = ACTIONS(1450), - [sym_integer_literal] = ACTIONS(1448), - [aux_sym_string_literal_token1] = ACTIONS(1448), - [sym_char_literal] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1450), - [anon_sym_false] = ACTIONS(1450), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1450), - [sym_super] = ACTIONS(1450), - [sym_crate] = ACTIONS(1450), - [sym_metavariable] = ACTIONS(1448), - [sym_raw_string_literal] = ACTIONS(1448), - [sym_float_literal] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_macro_rules_BANG] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1430), + [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_SQUOTE] = ACTIONS(1432), + [anon_sym_async] = 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_while] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_DOT_DOT] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [sym_integer_literal] = ACTIONS(1430), + [aux_sym_string_literal_token1] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_crate] = ACTIONS(1432), + [sym_metavariable] = ACTIONS(1430), + [sym_raw_string_literal] = ACTIONS(1430), + [sym_float_literal] = ACTIONS(1430), [sym_block_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_identifier] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_macro_rules_BANG] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_u8] = ACTIONS(1454), - [anon_sym_i8] = ACTIONS(1454), - [anon_sym_u16] = ACTIONS(1454), - [anon_sym_i16] = ACTIONS(1454), - [anon_sym_u32] = ACTIONS(1454), - [anon_sym_i32] = ACTIONS(1454), - [anon_sym_u64] = ACTIONS(1454), - [anon_sym_i64] = ACTIONS(1454), - [anon_sym_u128] = ACTIONS(1454), - [anon_sym_i128] = ACTIONS(1454), - [anon_sym_isize] = ACTIONS(1454), - [anon_sym_usize] = ACTIONS(1454), - [anon_sym_f32] = ACTIONS(1454), - [anon_sym_f64] = ACTIONS(1454), - [anon_sym_bool] = ACTIONS(1454), - [anon_sym_str] = ACTIONS(1454), - [anon_sym_char] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_async] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_fn] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_impl] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_pub] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_trait] = ACTIONS(1454), - [anon_sym_type] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_unsafe] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_COLON_COLON] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_yield] = ACTIONS(1454), - [anon_sym_move] = ACTIONS(1454), - [sym_integer_literal] = ACTIONS(1452), - [aux_sym_string_literal_token1] = ACTIONS(1452), - [sym_char_literal] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1454), - [sym_super] = ACTIONS(1454), - [sym_crate] = ACTIONS(1454), - [sym_metavariable] = ACTIONS(1452), - [sym_raw_string_literal] = ACTIONS(1452), - [sym_float_literal] = ACTIONS(1452), + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_macro_rules_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u128] = ACTIONS(1436), + [anon_sym_i128] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_str] = ACTIONS(1436), + [anon_sym_char] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_async] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_impl] = ACTIONS(1436), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_loop] = ACTIONS(1436), + [anon_sym_match] = ACTIONS(1436), + [anon_sym_mod] = ACTIONS(1436), + [anon_sym_pub] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_trait] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1436), + [anon_sym_use] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_COLON_COLON] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_DOT_DOT] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_yield] = ACTIONS(1436), + [anon_sym_move] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1434), + [aux_sym_string_literal_token1] = ACTIONS(1434), + [sym_char_literal] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1436), + [sym_super] = ACTIONS(1436), + [sym_crate] = ACTIONS(1436), + [sym_metavariable] = ACTIONS(1434), + [sym_raw_string_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1434), [sym_block_comment] = ACTIONS(3), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_macro_rules_BANG] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_u8] = ACTIONS(1458), - [anon_sym_i8] = ACTIONS(1458), - [anon_sym_u16] = ACTIONS(1458), - [anon_sym_i16] = ACTIONS(1458), - [anon_sym_u32] = ACTIONS(1458), - [anon_sym_i32] = ACTIONS(1458), - [anon_sym_u64] = ACTIONS(1458), - [anon_sym_i64] = ACTIONS(1458), - [anon_sym_u128] = ACTIONS(1458), - [anon_sym_i128] = ACTIONS(1458), - [anon_sym_isize] = ACTIONS(1458), - [anon_sym_usize] = ACTIONS(1458), - [anon_sym_f32] = ACTIONS(1458), - [anon_sym_f64] = ACTIONS(1458), - [anon_sym_bool] = ACTIONS(1458), - [anon_sym_str] = ACTIONS(1458), - [anon_sym_char] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_async] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_fn] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_impl] = ACTIONS(1458), - [anon_sym_let] = ACTIONS(1458), - [anon_sym_loop] = ACTIONS(1458), - [anon_sym_match] = ACTIONS(1458), - [anon_sym_mod] = ACTIONS(1458), - [anon_sym_pub] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_trait] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_unsafe] = ACTIONS(1458), - [anon_sym_use] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_COLON_COLON] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1458), - [anon_sym_move] = ACTIONS(1458), - [sym_integer_literal] = ACTIONS(1456), - [aux_sym_string_literal_token1] = ACTIONS(1456), - [sym_char_literal] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1458), - [anon_sym_false] = ACTIONS(1458), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1458), - [sym_super] = ACTIONS(1458), - [sym_crate] = ACTIONS(1458), - [sym_metavariable] = ACTIONS(1456), - [sym_raw_string_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1456), + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_macro_rules_BANG] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u128] = ACTIONS(1440), + [anon_sym_i128] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_str] = ACTIONS(1440), + [anon_sym_char] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_fn] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_impl] = ACTIONS(1440), + [anon_sym_let] = ACTIONS(1440), + [anon_sym_loop] = ACTIONS(1440), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_mod] = ACTIONS(1440), + [anon_sym_pub] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_trait] = ACTIONS(1440), + [anon_sym_type] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_unsafe] = ACTIONS(1440), + [anon_sym_use] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_COLON_COLON] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_DOT_DOT] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_yield] = ACTIONS(1440), + [anon_sym_move] = ACTIONS(1440), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1438), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1438), + [sym_raw_string_literal] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), [sym_block_comment] = ACTIONS(3), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_macro_rules_BANG] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [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_SQUOTE] = ACTIONS(1462), - [anon_sym_async] = 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_while] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_COLON_COLON] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_DOT_DOT] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_move] = ACTIONS(1462), - [sym_integer_literal] = ACTIONS(1460), - [aux_sym_string_literal_token1] = ACTIONS(1460), - [sym_char_literal] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1462), - [anon_sym_false] = ACTIONS(1462), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1462), - [sym_super] = ACTIONS(1462), - [sym_crate] = ACTIONS(1462), - [sym_metavariable] = ACTIONS(1460), - [sym_raw_string_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1460), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_macro_rules_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u128] = ACTIONS(1444), + [anon_sym_i128] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_str] = ACTIONS(1444), + [anon_sym_char] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_fn] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_impl] = ACTIONS(1444), + [anon_sym_let] = ACTIONS(1444), + [anon_sym_loop] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_mod] = ACTIONS(1444), + [anon_sym_pub] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_trait] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1444), + [anon_sym_use] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_COLON_COLON] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_DOT_DOT] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_yield] = ACTIONS(1444), + [anon_sym_move] = ACTIONS(1444), + [sym_integer_literal] = ACTIONS(1442), + [aux_sym_string_literal_token1] = ACTIONS(1442), + [sym_char_literal] = ACTIONS(1442), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1444), + [sym_super] = ACTIONS(1444), + [sym_crate] = ACTIONS(1444), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1442), + [sym_float_literal] = ACTIONS(1442), [sym_block_comment] = ACTIONS(3), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_macro_rules_BANG] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_u8] = ACTIONS(1466), - [anon_sym_i8] = ACTIONS(1466), - [anon_sym_u16] = ACTIONS(1466), - [anon_sym_i16] = ACTIONS(1466), - [anon_sym_u32] = ACTIONS(1466), - [anon_sym_i32] = ACTIONS(1466), - [anon_sym_u64] = ACTIONS(1466), - [anon_sym_i64] = ACTIONS(1466), - [anon_sym_u128] = ACTIONS(1466), - [anon_sym_i128] = ACTIONS(1466), - [anon_sym_isize] = ACTIONS(1466), - [anon_sym_usize] = ACTIONS(1466), - [anon_sym_f32] = ACTIONS(1466), - [anon_sym_f64] = ACTIONS(1466), - [anon_sym_bool] = ACTIONS(1466), - [anon_sym_str] = ACTIONS(1466), - [anon_sym_char] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [anon_sym_fn] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_impl] = ACTIONS(1466), - [anon_sym_let] = ACTIONS(1466), - [anon_sym_loop] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_mod] = ACTIONS(1466), - [anon_sym_pub] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_trait] = ACTIONS(1466), - [anon_sym_type] = ACTIONS(1466), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1466), - [anon_sym_use] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_COLON_COLON] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_DOT_DOT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_yield] = ACTIONS(1466), - [anon_sym_move] = ACTIONS(1466), - [sym_integer_literal] = ACTIONS(1464), - [aux_sym_string_literal_token1] = ACTIONS(1464), - [sym_char_literal] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1466), - [anon_sym_false] = ACTIONS(1466), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1466), - [sym_super] = ACTIONS(1466), - [sym_crate] = ACTIONS(1466), - [sym_metavariable] = ACTIONS(1464), - [sym_raw_string_literal] = ACTIONS(1464), - [sym_float_literal] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_macro_rules_BANG] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u128] = ACTIONS(1448), + [anon_sym_i128] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_str] = ACTIONS(1448), + [anon_sym_char] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_fn] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_impl] = ACTIONS(1448), + [anon_sym_let] = ACTIONS(1448), + [anon_sym_loop] = ACTIONS(1448), + [anon_sym_match] = ACTIONS(1448), + [anon_sym_mod] = ACTIONS(1448), + [anon_sym_pub] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_trait] = ACTIONS(1448), + [anon_sym_type] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_unsafe] = ACTIONS(1448), + [anon_sym_use] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_COLON_COLON] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_yield] = ACTIONS(1448), + [anon_sym_move] = ACTIONS(1448), + [sym_integer_literal] = ACTIONS(1446), + [aux_sym_string_literal_token1] = ACTIONS(1446), + [sym_char_literal] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1448), + [sym_super] = ACTIONS(1448), + [sym_crate] = ACTIONS(1448), + [sym_metavariable] = ACTIONS(1446), + [sym_raw_string_literal] = ACTIONS(1446), + [sym_float_literal] = ACTIONS(1446), [sym_block_comment] = ACTIONS(3), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1468), - [sym_identifier] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_macro_rules_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_u8] = ACTIONS(1470), - [anon_sym_i8] = ACTIONS(1470), - [anon_sym_u16] = ACTIONS(1470), - [anon_sym_i16] = ACTIONS(1470), - [anon_sym_u32] = ACTIONS(1470), - [anon_sym_i32] = ACTIONS(1470), - [anon_sym_u64] = ACTIONS(1470), - [anon_sym_i64] = ACTIONS(1470), - [anon_sym_u128] = ACTIONS(1470), - [anon_sym_i128] = ACTIONS(1470), - [anon_sym_isize] = ACTIONS(1470), - [anon_sym_usize] = ACTIONS(1470), - [anon_sym_f32] = ACTIONS(1470), - [anon_sym_f64] = ACTIONS(1470), - [anon_sym_bool] = ACTIONS(1470), - [anon_sym_str] = ACTIONS(1470), - [anon_sym_char] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_default] = ACTIONS(1470), - [anon_sym_enum] = ACTIONS(1470), - [anon_sym_fn] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_impl] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_mod] = ACTIONS(1470), - [anon_sym_pub] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_static] = ACTIONS(1470), - [anon_sym_struct] = ACTIONS(1470), - [anon_sym_trait] = ACTIONS(1470), - [anon_sym_type] = ACTIONS(1470), - [anon_sym_union] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_COLON_COLON] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_DOT_DOT] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_yield] = ACTIONS(1470), - [anon_sym_move] = ACTIONS(1470), - [sym_integer_literal] = ACTIONS(1468), - [aux_sym_string_literal_token1] = ACTIONS(1468), - [sym_char_literal] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1470), - [sym_super] = ACTIONS(1470), - [sym_crate] = ACTIONS(1470), - [sym_metavariable] = ACTIONS(1468), - [sym_raw_string_literal] = ACTIONS(1468), - [sym_float_literal] = ACTIONS(1468), + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_macro_rules_BANG] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_u8] = ACTIONS(1452), + [anon_sym_i8] = ACTIONS(1452), + [anon_sym_u16] = ACTIONS(1452), + [anon_sym_i16] = ACTIONS(1452), + [anon_sym_u32] = ACTIONS(1452), + [anon_sym_i32] = ACTIONS(1452), + [anon_sym_u64] = ACTIONS(1452), + [anon_sym_i64] = ACTIONS(1452), + [anon_sym_u128] = ACTIONS(1452), + [anon_sym_i128] = ACTIONS(1452), + [anon_sym_isize] = ACTIONS(1452), + [anon_sym_usize] = ACTIONS(1452), + [anon_sym_f32] = ACTIONS(1452), + [anon_sym_f64] = ACTIONS(1452), + [anon_sym_bool] = ACTIONS(1452), + [anon_sym_str] = ACTIONS(1452), + [anon_sym_char] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_async] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_fn] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_impl] = ACTIONS(1452), + [anon_sym_let] = ACTIONS(1452), + [anon_sym_loop] = ACTIONS(1452), + [anon_sym_match] = ACTIONS(1452), + [anon_sym_mod] = ACTIONS(1452), + [anon_sym_pub] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_trait] = ACTIONS(1452), + [anon_sym_type] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_unsafe] = ACTIONS(1452), + [anon_sym_use] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_COLON_COLON] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_DOT_DOT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_yield] = ACTIONS(1452), + [anon_sym_move] = ACTIONS(1452), + [sym_integer_literal] = ACTIONS(1450), + [aux_sym_string_literal_token1] = ACTIONS(1450), + [sym_char_literal] = ACTIONS(1450), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1452), + [sym_super] = ACTIONS(1452), + [sym_crate] = ACTIONS(1452), + [sym_metavariable] = ACTIONS(1450), + [sym_raw_string_literal] = ACTIONS(1450), + [sym_float_literal] = ACTIONS(1450), [sym_block_comment] = ACTIONS(3), }, [344] = { - [ts_builtin_sym_end] = ACTIONS(1472), - [sym_identifier] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_macro_rules_BANG] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_u8] = ACTIONS(1474), - [anon_sym_i8] = ACTIONS(1474), - [anon_sym_u16] = ACTIONS(1474), - [anon_sym_i16] = ACTIONS(1474), - [anon_sym_u32] = ACTIONS(1474), - [anon_sym_i32] = ACTIONS(1474), - [anon_sym_u64] = ACTIONS(1474), - [anon_sym_i64] = ACTIONS(1474), - [anon_sym_u128] = ACTIONS(1474), - [anon_sym_i128] = ACTIONS(1474), - [anon_sym_isize] = ACTIONS(1474), - [anon_sym_usize] = ACTIONS(1474), - [anon_sym_f32] = ACTIONS(1474), - [anon_sym_f64] = ACTIONS(1474), - [anon_sym_bool] = ACTIONS(1474), - [anon_sym_str] = ACTIONS(1474), - [anon_sym_char] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_async] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_enum] = ACTIONS(1474), - [anon_sym_fn] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_impl] = ACTIONS(1474), - [anon_sym_let] = ACTIONS(1474), - [anon_sym_loop] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_mod] = ACTIONS(1474), - [anon_sym_pub] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_static] = ACTIONS(1474), - [anon_sym_struct] = ACTIONS(1474), - [anon_sym_trait] = ACTIONS(1474), - [anon_sym_type] = ACTIONS(1474), - [anon_sym_union] = ACTIONS(1474), - [anon_sym_unsafe] = ACTIONS(1474), - [anon_sym_use] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_COLON_COLON] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_move] = ACTIONS(1474), - [sym_integer_literal] = ACTIONS(1472), - [aux_sym_string_literal_token1] = ACTIONS(1472), - [sym_char_literal] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1474), - [sym_super] = ACTIONS(1474), - [sym_crate] = ACTIONS(1474), - [sym_metavariable] = ACTIONS(1472), - [sym_raw_string_literal] = ACTIONS(1472), - [sym_float_literal] = ACTIONS(1472), + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_macro_rules_BANG] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_u8] = ACTIONS(1456), + [anon_sym_i8] = ACTIONS(1456), + [anon_sym_u16] = ACTIONS(1456), + [anon_sym_i16] = ACTIONS(1456), + [anon_sym_u32] = ACTIONS(1456), + [anon_sym_i32] = ACTIONS(1456), + [anon_sym_u64] = ACTIONS(1456), + [anon_sym_i64] = ACTIONS(1456), + [anon_sym_u128] = ACTIONS(1456), + [anon_sym_i128] = ACTIONS(1456), + [anon_sym_isize] = ACTIONS(1456), + [anon_sym_usize] = ACTIONS(1456), + [anon_sym_f32] = ACTIONS(1456), + [anon_sym_f64] = ACTIONS(1456), + [anon_sym_bool] = ACTIONS(1456), + [anon_sym_str] = ACTIONS(1456), + [anon_sym_char] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_async] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_fn] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_impl] = ACTIONS(1456), + [anon_sym_let] = ACTIONS(1456), + [anon_sym_loop] = ACTIONS(1456), + [anon_sym_match] = ACTIONS(1456), + [anon_sym_mod] = ACTIONS(1456), + [anon_sym_pub] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_trait] = ACTIONS(1456), + [anon_sym_type] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_unsafe] = ACTIONS(1456), + [anon_sym_use] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_COLON_COLON] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_move] = ACTIONS(1456), + [sym_integer_literal] = ACTIONS(1454), + [aux_sym_string_literal_token1] = ACTIONS(1454), + [sym_char_literal] = ACTIONS(1454), + [anon_sym_true] = ACTIONS(1456), + [anon_sym_false] = ACTIONS(1456), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1456), + [sym_super] = ACTIONS(1456), + [sym_crate] = ACTIONS(1456), + [sym_metavariable] = ACTIONS(1454), + [sym_raw_string_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1454), [sym_block_comment] = ACTIONS(3), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_macro_rules_BANG] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_u8] = ACTIONS(1478), - [anon_sym_i8] = ACTIONS(1478), - [anon_sym_u16] = ACTIONS(1478), - [anon_sym_i16] = ACTIONS(1478), - [anon_sym_u32] = ACTIONS(1478), - [anon_sym_i32] = ACTIONS(1478), - [anon_sym_u64] = ACTIONS(1478), - [anon_sym_i64] = ACTIONS(1478), - [anon_sym_u128] = ACTIONS(1478), - [anon_sym_i128] = ACTIONS(1478), - [anon_sym_isize] = ACTIONS(1478), - [anon_sym_usize] = ACTIONS(1478), - [anon_sym_f32] = ACTIONS(1478), - [anon_sym_f64] = ACTIONS(1478), - [anon_sym_bool] = ACTIONS(1478), - [anon_sym_str] = ACTIONS(1478), - [anon_sym_char] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_async] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_impl] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_pub] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_trait] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_yield] = ACTIONS(1478), - [anon_sym_move] = ACTIONS(1478), - [sym_integer_literal] = ACTIONS(1476), - [aux_sym_string_literal_token1] = ACTIONS(1476), - [sym_char_literal] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1478), - [sym_super] = ACTIONS(1478), - [sym_crate] = ACTIONS(1478), - [sym_metavariable] = ACTIONS(1476), - [sym_raw_string_literal] = ACTIONS(1476), - [sym_float_literal] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1458), + [sym_identifier] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_macro_rules_BANG] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_u8] = ACTIONS(1460), + [anon_sym_i8] = ACTIONS(1460), + [anon_sym_u16] = ACTIONS(1460), + [anon_sym_i16] = ACTIONS(1460), + [anon_sym_u32] = ACTIONS(1460), + [anon_sym_i32] = ACTIONS(1460), + [anon_sym_u64] = ACTIONS(1460), + [anon_sym_i64] = ACTIONS(1460), + [anon_sym_u128] = ACTIONS(1460), + [anon_sym_i128] = ACTIONS(1460), + [anon_sym_isize] = ACTIONS(1460), + [anon_sym_usize] = ACTIONS(1460), + [anon_sym_f32] = ACTIONS(1460), + [anon_sym_f64] = ACTIONS(1460), + [anon_sym_bool] = ACTIONS(1460), + [anon_sym_str] = ACTIONS(1460), + [anon_sym_char] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_fn] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_impl] = ACTIONS(1460), + [anon_sym_let] = ACTIONS(1460), + [anon_sym_loop] = ACTIONS(1460), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_mod] = ACTIONS(1460), + [anon_sym_pub] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_trait] = ACTIONS(1460), + [anon_sym_type] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_unsafe] = ACTIONS(1460), + [anon_sym_use] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_COLON_COLON] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_DOT_DOT] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_yield] = ACTIONS(1460), + [anon_sym_move] = ACTIONS(1460), + [sym_integer_literal] = ACTIONS(1458), + [aux_sym_string_literal_token1] = ACTIONS(1458), + [sym_char_literal] = ACTIONS(1458), + [anon_sym_true] = ACTIONS(1460), + [anon_sym_false] = ACTIONS(1460), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1460), + [sym_super] = ACTIONS(1460), + [sym_crate] = ACTIONS(1460), + [sym_metavariable] = ACTIONS(1458), + [sym_raw_string_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1458), [sym_block_comment] = ACTIONS(3), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_macro_rules_BANG] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_u8] = ACTIONS(1482), - [anon_sym_i8] = ACTIONS(1482), - [anon_sym_u16] = ACTIONS(1482), - [anon_sym_i16] = ACTIONS(1482), - [anon_sym_u32] = ACTIONS(1482), - [anon_sym_i32] = ACTIONS(1482), - [anon_sym_u64] = ACTIONS(1482), - [anon_sym_i64] = ACTIONS(1482), - [anon_sym_u128] = ACTIONS(1482), - [anon_sym_i128] = ACTIONS(1482), - [anon_sym_isize] = ACTIONS(1482), - [anon_sym_usize] = ACTIONS(1482), - [anon_sym_f32] = ACTIONS(1482), - [anon_sym_f64] = ACTIONS(1482), - [anon_sym_bool] = ACTIONS(1482), - [anon_sym_str] = ACTIONS(1482), - [anon_sym_char] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_impl] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_loop] = ACTIONS(1482), - [anon_sym_match] = ACTIONS(1482), - [anon_sym_mod] = ACTIONS(1482), - [anon_sym_pub] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_trait] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_unsafe] = ACTIONS(1482), - [anon_sym_use] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1482), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_COLON_COLON] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_yield] = ACTIONS(1482), - [anon_sym_move] = ACTIONS(1482), - [sym_integer_literal] = ACTIONS(1480), - [aux_sym_string_literal_token1] = ACTIONS(1480), - [sym_char_literal] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_crate] = ACTIONS(1482), - [sym_metavariable] = ACTIONS(1480), - [sym_raw_string_literal] = ACTIONS(1480), - [sym_float_literal] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1462), + [sym_identifier] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_macro_rules_BANG] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_u8] = ACTIONS(1464), + [anon_sym_i8] = ACTIONS(1464), + [anon_sym_u16] = ACTIONS(1464), + [anon_sym_i16] = ACTIONS(1464), + [anon_sym_u32] = ACTIONS(1464), + [anon_sym_i32] = ACTIONS(1464), + [anon_sym_u64] = ACTIONS(1464), + [anon_sym_i64] = ACTIONS(1464), + [anon_sym_u128] = ACTIONS(1464), + [anon_sym_i128] = ACTIONS(1464), + [anon_sym_isize] = ACTIONS(1464), + [anon_sym_usize] = ACTIONS(1464), + [anon_sym_f32] = ACTIONS(1464), + [anon_sym_f64] = ACTIONS(1464), + [anon_sym_bool] = ACTIONS(1464), + [anon_sym_str] = ACTIONS(1464), + [anon_sym_char] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_fn] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_impl] = ACTIONS(1464), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_loop] = ACTIONS(1464), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_mod] = ACTIONS(1464), + [anon_sym_pub] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_trait] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1464), + [anon_sym_use] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym_LT] = ACTIONS(1462), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_DOT_DOT] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_yield] = ACTIONS(1464), + [anon_sym_move] = ACTIONS(1464), + [sym_integer_literal] = ACTIONS(1462), + [aux_sym_string_literal_token1] = ACTIONS(1462), + [sym_char_literal] = ACTIONS(1462), + [anon_sym_true] = ACTIONS(1464), + [anon_sym_false] = ACTIONS(1464), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1464), + [sym_super] = ACTIONS(1464), + [sym_crate] = ACTIONS(1464), + [sym_metavariable] = ACTIONS(1462), + [sym_raw_string_literal] = ACTIONS(1462), + [sym_float_literal] = ACTIONS(1462), [sym_block_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_macro_rules_BANG] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u128] = ACTIONS(1486), - [anon_sym_i128] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_str] = ACTIONS(1486), - [anon_sym_char] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_impl] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_pub] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_trait] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_unsafe] = ACTIONS(1486), - [anon_sym_use] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_POUND] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_move] = ACTIONS(1486), - [sym_integer_literal] = ACTIONS(1484), - [aux_sym_string_literal_token1] = ACTIONS(1484), - [sym_char_literal] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_crate] = ACTIONS(1486), - [sym_metavariable] = ACTIONS(1484), - [sym_raw_string_literal] = ACTIONS(1484), - [sym_float_literal] = ACTIONS(1484), + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_macro_rules_BANG] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_u8] = ACTIONS(1468), + [anon_sym_i8] = ACTIONS(1468), + [anon_sym_u16] = ACTIONS(1468), + [anon_sym_i16] = ACTIONS(1468), + [anon_sym_u32] = ACTIONS(1468), + [anon_sym_i32] = ACTIONS(1468), + [anon_sym_u64] = ACTIONS(1468), + [anon_sym_i64] = ACTIONS(1468), + [anon_sym_u128] = ACTIONS(1468), + [anon_sym_i128] = ACTIONS(1468), + [anon_sym_isize] = ACTIONS(1468), + [anon_sym_usize] = ACTIONS(1468), + [anon_sym_f32] = ACTIONS(1468), + [anon_sym_f64] = ACTIONS(1468), + [anon_sym_bool] = ACTIONS(1468), + [anon_sym_str] = ACTIONS(1468), + [anon_sym_char] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_async] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_fn] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_impl] = ACTIONS(1468), + [anon_sym_let] = ACTIONS(1468), + [anon_sym_loop] = ACTIONS(1468), + [anon_sym_match] = ACTIONS(1468), + [anon_sym_mod] = ACTIONS(1468), + [anon_sym_pub] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_trait] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1468), + [anon_sym_use] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_COLON_COLON] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_DOT_DOT] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_yield] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [sym_integer_literal] = ACTIONS(1466), + [aux_sym_string_literal_token1] = ACTIONS(1466), + [sym_char_literal] = ACTIONS(1466), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1468), + [sym_super] = ACTIONS(1468), + [sym_crate] = ACTIONS(1468), + [sym_metavariable] = ACTIONS(1466), + [sym_raw_string_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1466), [sym_block_comment] = ACTIONS(3), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_identifier] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_macro_rules_BANG] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u128] = ACTIONS(1490), - [anon_sym_i128] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_str] = ACTIONS(1490), - [anon_sym_char] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_async] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_impl] = ACTIONS(1490), - [anon_sym_let] = ACTIONS(1490), - [anon_sym_loop] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_mod] = ACTIONS(1490), - [anon_sym_pub] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_trait] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_unsafe] = ACTIONS(1490), - [anon_sym_use] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_POUND] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_yield] = ACTIONS(1490), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1488), - [aux_sym_string_literal_token1] = ACTIONS(1488), - [sym_char_literal] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_crate] = ACTIONS(1490), - [sym_metavariable] = ACTIONS(1488), - [sym_raw_string_literal] = ACTIONS(1488), - [sym_float_literal] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_macro_rules_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_u8] = ACTIONS(1472), + [anon_sym_i8] = ACTIONS(1472), + [anon_sym_u16] = ACTIONS(1472), + [anon_sym_i16] = ACTIONS(1472), + [anon_sym_u32] = ACTIONS(1472), + [anon_sym_i32] = ACTIONS(1472), + [anon_sym_u64] = ACTIONS(1472), + [anon_sym_i64] = ACTIONS(1472), + [anon_sym_u128] = ACTIONS(1472), + [anon_sym_i128] = ACTIONS(1472), + [anon_sym_isize] = ACTIONS(1472), + [anon_sym_usize] = ACTIONS(1472), + [anon_sym_f32] = ACTIONS(1472), + [anon_sym_f64] = ACTIONS(1472), + [anon_sym_bool] = ACTIONS(1472), + [anon_sym_str] = ACTIONS(1472), + [anon_sym_char] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_async] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_fn] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_impl] = ACTIONS(1472), + [anon_sym_let] = ACTIONS(1472), + [anon_sym_loop] = ACTIONS(1472), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_mod] = ACTIONS(1472), + [anon_sym_pub] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_trait] = ACTIONS(1472), + [anon_sym_type] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_unsafe] = ACTIONS(1472), + [anon_sym_use] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_COLON_COLON] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_move] = ACTIONS(1472), + [sym_integer_literal] = ACTIONS(1470), + [aux_sym_string_literal_token1] = ACTIONS(1470), + [sym_char_literal] = ACTIONS(1470), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1472), + [sym_super] = ACTIONS(1472), + [sym_crate] = ACTIONS(1472), + [sym_metavariable] = ACTIONS(1470), + [sym_raw_string_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1470), [sym_block_comment] = ACTIONS(3), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_macro_rules_BANG] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u128] = ACTIONS(1494), - [anon_sym_i128] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_str] = ACTIONS(1494), - [anon_sym_char] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_async] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_impl] = ACTIONS(1494), - [anon_sym_let] = ACTIONS(1494), - [anon_sym_loop] = ACTIONS(1494), - [anon_sym_match] = ACTIONS(1494), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_pub] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_trait] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_unsafe] = ACTIONS(1494), - [anon_sym_use] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_COLON_COLON] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_move] = ACTIONS(1494), - [sym_integer_literal] = ACTIONS(1492), - [aux_sym_string_literal_token1] = ACTIONS(1492), - [sym_char_literal] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1494), - [sym_super] = ACTIONS(1494), - [sym_crate] = ACTIONS(1494), - [sym_metavariable] = ACTIONS(1492), - [sym_raw_string_literal] = ACTIONS(1492), - [sym_float_literal] = ACTIONS(1492), + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_macro_rules_BANG] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_u8] = ACTIONS(1476), + [anon_sym_i8] = ACTIONS(1476), + [anon_sym_u16] = ACTIONS(1476), + [anon_sym_i16] = ACTIONS(1476), + [anon_sym_u32] = ACTIONS(1476), + [anon_sym_i32] = ACTIONS(1476), + [anon_sym_u64] = ACTIONS(1476), + [anon_sym_i64] = ACTIONS(1476), + [anon_sym_u128] = ACTIONS(1476), + [anon_sym_i128] = ACTIONS(1476), + [anon_sym_isize] = ACTIONS(1476), + [anon_sym_usize] = ACTIONS(1476), + [anon_sym_f32] = ACTIONS(1476), + [anon_sym_f64] = ACTIONS(1476), + [anon_sym_bool] = ACTIONS(1476), + [anon_sym_str] = ACTIONS(1476), + [anon_sym_char] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_fn] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_impl] = ACTIONS(1476), + [anon_sym_let] = ACTIONS(1476), + [anon_sym_loop] = ACTIONS(1476), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_mod] = ACTIONS(1476), + [anon_sym_pub] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_trait] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1476), + [anon_sym_use] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_COLON_COLON] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_DOT_DOT] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_move] = ACTIONS(1476), + [sym_integer_literal] = ACTIONS(1474), + [aux_sym_string_literal_token1] = ACTIONS(1474), + [sym_char_literal] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1476), + [sym_super] = ACTIONS(1476), + [sym_crate] = ACTIONS(1476), + [sym_metavariable] = ACTIONS(1474), + [sym_raw_string_literal] = ACTIONS(1474), + [sym_float_literal] = ACTIONS(1474), [sym_block_comment] = ACTIONS(3), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(1496), - [sym_identifier] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_macro_rules_BANG] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_u8] = ACTIONS(1498), - [anon_sym_i8] = ACTIONS(1498), - [anon_sym_u16] = ACTIONS(1498), - [anon_sym_i16] = ACTIONS(1498), - [anon_sym_u32] = ACTIONS(1498), - [anon_sym_i32] = ACTIONS(1498), - [anon_sym_u64] = ACTIONS(1498), - [anon_sym_i64] = ACTIONS(1498), - [anon_sym_u128] = ACTIONS(1498), - [anon_sym_i128] = ACTIONS(1498), - [anon_sym_isize] = ACTIONS(1498), - [anon_sym_usize] = ACTIONS(1498), - [anon_sym_f32] = ACTIONS(1498), - [anon_sym_f64] = ACTIONS(1498), - [anon_sym_bool] = ACTIONS(1498), - [anon_sym_str] = ACTIONS(1498), - [anon_sym_char] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_async] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_enum] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_impl] = ACTIONS(1498), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_loop] = ACTIONS(1498), - [anon_sym_match] = ACTIONS(1498), - [anon_sym_mod] = ACTIONS(1498), - [anon_sym_pub] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1498), - [anon_sym_trait] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_unsafe] = ACTIONS(1498), - [anon_sym_use] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1496), - [anon_sym_yield] = ACTIONS(1498), - [anon_sym_move] = ACTIONS(1498), - [sym_integer_literal] = ACTIONS(1496), - [aux_sym_string_literal_token1] = ACTIONS(1496), - [sym_char_literal] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1498), - [anon_sym_false] = ACTIONS(1498), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1498), - [sym_super] = ACTIONS(1498), - [sym_crate] = ACTIONS(1498), - [sym_metavariable] = ACTIONS(1496), - [sym_raw_string_literal] = ACTIONS(1496), - [sym_float_literal] = ACTIONS(1496), + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_macro_rules_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [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_SQUOTE] = ACTIONS(1480), + [anon_sym_async] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_fn] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_impl] = ACTIONS(1480), + [anon_sym_let] = ACTIONS(1480), + [anon_sym_loop] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_mod] = ACTIONS(1480), + [anon_sym_pub] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_trait] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1480), + [anon_sym_use] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_COLON_COLON] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_yield] = ACTIONS(1480), + [anon_sym_move] = ACTIONS(1480), + [sym_integer_literal] = ACTIONS(1478), + [aux_sym_string_literal_token1] = ACTIONS(1478), + [sym_char_literal] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1480), + [anon_sym_false] = ACTIONS(1480), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1480), + [sym_super] = ACTIONS(1480), + [sym_crate] = ACTIONS(1480), + [sym_metavariable] = ACTIONS(1478), + [sym_raw_string_literal] = ACTIONS(1478), + [sym_float_literal] = ACTIONS(1478), [sym_block_comment] = ACTIONS(3), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_macro_rules_BANG] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1500), - [anon_sym_u8] = ACTIONS(1502), - [anon_sym_i8] = ACTIONS(1502), - [anon_sym_u16] = ACTIONS(1502), - [anon_sym_i16] = ACTIONS(1502), - [anon_sym_u32] = ACTIONS(1502), - [anon_sym_i32] = ACTIONS(1502), - [anon_sym_u64] = ACTIONS(1502), - [anon_sym_i64] = ACTIONS(1502), - [anon_sym_u128] = ACTIONS(1502), - [anon_sym_i128] = ACTIONS(1502), - [anon_sym_isize] = ACTIONS(1502), - [anon_sym_usize] = ACTIONS(1502), - [anon_sym_f32] = ACTIONS(1502), - [anon_sym_f64] = ACTIONS(1502), - [anon_sym_bool] = ACTIONS(1502), - [anon_sym_str] = ACTIONS(1502), - [anon_sym_char] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_impl] = ACTIONS(1502), - [anon_sym_let] = ACTIONS(1502), - [anon_sym_loop] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_mod] = ACTIONS(1502), - [anon_sym_pub] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_trait] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_unsafe] = ACTIONS(1502), - [anon_sym_use] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_POUND] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_COLON_COLON] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_yield] = ACTIONS(1502), - [anon_sym_move] = ACTIONS(1502), - [sym_integer_literal] = ACTIONS(1500), - [aux_sym_string_literal_token1] = ACTIONS(1500), - [sym_char_literal] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1502), - [anon_sym_false] = ACTIONS(1502), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1502), - [sym_super] = ACTIONS(1502), - [sym_crate] = ACTIONS(1502), - [sym_metavariable] = ACTIONS(1500), - [sym_raw_string_literal] = ACTIONS(1500), - [sym_float_literal] = ACTIONS(1500), + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_macro_rules_BANG] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_u8] = ACTIONS(1484), + [anon_sym_i8] = ACTIONS(1484), + [anon_sym_u16] = ACTIONS(1484), + [anon_sym_i16] = ACTIONS(1484), + [anon_sym_u32] = ACTIONS(1484), + [anon_sym_i32] = ACTIONS(1484), + [anon_sym_u64] = ACTIONS(1484), + [anon_sym_i64] = ACTIONS(1484), + [anon_sym_u128] = ACTIONS(1484), + [anon_sym_i128] = ACTIONS(1484), + [anon_sym_isize] = ACTIONS(1484), + [anon_sym_usize] = ACTIONS(1484), + [anon_sym_f32] = ACTIONS(1484), + [anon_sym_f64] = ACTIONS(1484), + [anon_sym_bool] = ACTIONS(1484), + [anon_sym_str] = ACTIONS(1484), + [anon_sym_char] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_async] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_fn] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_impl] = ACTIONS(1484), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_loop] = ACTIONS(1484), + [anon_sym_match] = ACTIONS(1484), + [anon_sym_mod] = ACTIONS(1484), + [anon_sym_pub] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_trait] = ACTIONS(1484), + [anon_sym_type] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_unsafe] = ACTIONS(1484), + [anon_sym_use] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_yield] = ACTIONS(1484), + [anon_sym_move] = ACTIONS(1484), + [sym_integer_literal] = ACTIONS(1482), + [aux_sym_string_literal_token1] = ACTIONS(1482), + [sym_char_literal] = ACTIONS(1482), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1484), + [sym_super] = ACTIONS(1484), + [sym_crate] = ACTIONS(1484), + [sym_metavariable] = ACTIONS(1482), + [sym_raw_string_literal] = ACTIONS(1482), + [sym_float_literal] = ACTIONS(1482), [sym_block_comment] = ACTIONS(3), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(1504), - [sym_identifier] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_macro_rules_BANG] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1504), - [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_SQUOTE] = ACTIONS(1506), - [anon_sym_async] = 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_while] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_DOT_DOT] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_yield] = ACTIONS(1506), - [anon_sym_move] = ACTIONS(1506), - [sym_integer_literal] = ACTIONS(1504), - [aux_sym_string_literal_token1] = ACTIONS(1504), - [sym_char_literal] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1506), - [sym_super] = ACTIONS(1506), - [sym_crate] = ACTIONS(1506), - [sym_metavariable] = ACTIONS(1504), - [sym_raw_string_literal] = ACTIONS(1504), - [sym_float_literal] = ACTIONS(1504), + [ts_builtin_sym_end] = ACTIONS(1486), + [sym_identifier] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_macro_rules_BANG] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_u8] = ACTIONS(1488), + [anon_sym_i8] = ACTIONS(1488), + [anon_sym_u16] = ACTIONS(1488), + [anon_sym_i16] = ACTIONS(1488), + [anon_sym_u32] = ACTIONS(1488), + [anon_sym_i32] = ACTIONS(1488), + [anon_sym_u64] = ACTIONS(1488), + [anon_sym_i64] = ACTIONS(1488), + [anon_sym_u128] = ACTIONS(1488), + [anon_sym_i128] = ACTIONS(1488), + [anon_sym_isize] = ACTIONS(1488), + [anon_sym_usize] = ACTIONS(1488), + [anon_sym_f32] = ACTIONS(1488), + [anon_sym_f64] = ACTIONS(1488), + [anon_sym_bool] = ACTIONS(1488), + [anon_sym_str] = ACTIONS(1488), + [anon_sym_char] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_async] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_fn] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_impl] = ACTIONS(1488), + [anon_sym_let] = ACTIONS(1488), + [anon_sym_loop] = ACTIONS(1488), + [anon_sym_match] = ACTIONS(1488), + [anon_sym_mod] = ACTIONS(1488), + [anon_sym_pub] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_trait] = ACTIONS(1488), + [anon_sym_type] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_unsafe] = ACTIONS(1488), + [anon_sym_use] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_COLON_COLON] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_yield] = ACTIONS(1488), + [anon_sym_move] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1486), + [aux_sym_string_literal_token1] = ACTIONS(1486), + [sym_char_literal] = ACTIONS(1486), + [anon_sym_true] = ACTIONS(1488), + [anon_sym_false] = ACTIONS(1488), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1488), + [sym_super] = ACTIONS(1488), + [sym_crate] = ACTIONS(1488), + [sym_metavariable] = ACTIONS(1486), + [sym_raw_string_literal] = ACTIONS(1486), + [sym_float_literal] = ACTIONS(1486), [sym_block_comment] = ACTIONS(3), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(1508), - [sym_identifier] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_macro_rules_BANG] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_impl] = ACTIONS(1510), - [anon_sym_let] = ACTIONS(1510), - [anon_sym_loop] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_mod] = ACTIONS(1510), - [anon_sym_pub] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_trait] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_unsafe] = ACTIONS(1510), - [anon_sym_use] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_COLON_COLON] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_DOT_DOT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_move] = ACTIONS(1510), - [sym_integer_literal] = ACTIONS(1508), - [aux_sym_string_literal_token1] = ACTIONS(1508), - [sym_char_literal] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1510), - [sym_super] = ACTIONS(1510), - [sym_crate] = ACTIONS(1510), - [sym_metavariable] = ACTIONS(1508), - [sym_raw_string_literal] = ACTIONS(1508), - [sym_float_literal] = ACTIONS(1508), + [ts_builtin_sym_end] = ACTIONS(1490), + [sym_identifier] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_macro_rules_BANG] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_async] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_fn] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_impl] = ACTIONS(1492), + [anon_sym_let] = ACTIONS(1492), + [anon_sym_loop] = ACTIONS(1492), + [anon_sym_match] = ACTIONS(1492), + [anon_sym_mod] = ACTIONS(1492), + [anon_sym_pub] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_trait] = ACTIONS(1492), + [anon_sym_type] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_unsafe] = ACTIONS(1492), + [anon_sym_use] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1490), + [anon_sym_COLON_COLON] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_DOT_DOT] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_move] = ACTIONS(1492), + [sym_integer_literal] = ACTIONS(1490), + [aux_sym_string_literal_token1] = ACTIONS(1490), + [sym_char_literal] = ACTIONS(1490), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1492), + [sym_super] = ACTIONS(1492), + [sym_crate] = ACTIONS(1492), + [sym_metavariable] = ACTIONS(1490), + [sym_raw_string_literal] = ACTIONS(1490), + [sym_float_literal] = ACTIONS(1490), [sym_block_comment] = ACTIONS(3), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_identifier] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_macro_rules_BANG] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_u8] = ACTIONS(1514), - [anon_sym_i8] = ACTIONS(1514), - [anon_sym_u16] = ACTIONS(1514), - [anon_sym_i16] = ACTIONS(1514), - [anon_sym_u32] = ACTIONS(1514), - [anon_sym_i32] = ACTIONS(1514), - [anon_sym_u64] = ACTIONS(1514), - [anon_sym_i64] = ACTIONS(1514), - [anon_sym_u128] = ACTIONS(1514), - [anon_sym_i128] = ACTIONS(1514), - [anon_sym_isize] = ACTIONS(1514), - [anon_sym_usize] = ACTIONS(1514), - [anon_sym_f32] = ACTIONS(1514), - [anon_sym_f64] = ACTIONS(1514), - [anon_sym_bool] = ACTIONS(1514), - [anon_sym_str] = ACTIONS(1514), - [anon_sym_char] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_impl] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_pub] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_trait] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_unsafe] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_COLON_COLON] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_DOT_DOT] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_move] = ACTIONS(1514), - [sym_integer_literal] = ACTIONS(1512), - [aux_sym_string_literal_token1] = ACTIONS(1512), - [sym_char_literal] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1514), - [sym_super] = ACTIONS(1514), - [sym_crate] = ACTIONS(1514), - [sym_metavariable] = ACTIONS(1512), - [sym_raw_string_literal] = ACTIONS(1512), - [sym_float_literal] = ACTIONS(1512), + [ts_builtin_sym_end] = ACTIONS(1494), + [sym_identifier] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_macro_rules_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_u8] = ACTIONS(1496), + [anon_sym_i8] = ACTIONS(1496), + [anon_sym_u16] = ACTIONS(1496), + [anon_sym_i16] = ACTIONS(1496), + [anon_sym_u32] = ACTIONS(1496), + [anon_sym_i32] = ACTIONS(1496), + [anon_sym_u64] = ACTIONS(1496), + [anon_sym_i64] = ACTIONS(1496), + [anon_sym_u128] = ACTIONS(1496), + [anon_sym_i128] = ACTIONS(1496), + [anon_sym_isize] = ACTIONS(1496), + [anon_sym_usize] = ACTIONS(1496), + [anon_sym_f32] = ACTIONS(1496), + [anon_sym_f64] = ACTIONS(1496), + [anon_sym_bool] = ACTIONS(1496), + [anon_sym_str] = ACTIONS(1496), + [anon_sym_char] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_fn] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_impl] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_mod] = ACTIONS(1496), + [anon_sym_pub] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_trait] = ACTIONS(1496), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_unsafe] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1494), + [anon_sym_COLON_COLON] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_DOT_DOT] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_move] = ACTIONS(1496), + [sym_integer_literal] = ACTIONS(1494), + [aux_sym_string_literal_token1] = ACTIONS(1494), + [sym_char_literal] = ACTIONS(1494), + [anon_sym_true] = ACTIONS(1496), + [anon_sym_false] = ACTIONS(1496), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1496), + [sym_super] = ACTIONS(1496), + [sym_crate] = ACTIONS(1496), + [sym_metavariable] = ACTIONS(1494), + [sym_raw_string_literal] = ACTIONS(1494), + [sym_float_literal] = ACTIONS(1494), [sym_block_comment] = ACTIONS(3), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_macro_rules_BANG] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_impl] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_mod] = ACTIONS(1518), - [anon_sym_pub] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_trait] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_unsafe] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_DOT_DOT] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_yield] = ACTIONS(1518), - [anon_sym_move] = ACTIONS(1518), - [sym_integer_literal] = ACTIONS(1516), - [aux_sym_string_literal_token1] = ACTIONS(1516), - [sym_char_literal] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1518), - [sym_super] = ACTIONS(1518), - [sym_crate] = ACTIONS(1518), - [sym_metavariable] = ACTIONS(1516), - [sym_raw_string_literal] = ACTIONS(1516), - [sym_float_literal] = ACTIONS(1516), + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_identifier] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_macro_rules_BANG] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_u8] = ACTIONS(1500), + [anon_sym_i8] = ACTIONS(1500), + [anon_sym_u16] = ACTIONS(1500), + [anon_sym_i16] = ACTIONS(1500), + [anon_sym_u32] = ACTIONS(1500), + [anon_sym_i32] = ACTIONS(1500), + [anon_sym_u64] = ACTIONS(1500), + [anon_sym_i64] = ACTIONS(1500), + [anon_sym_u128] = ACTIONS(1500), + [anon_sym_i128] = ACTIONS(1500), + [anon_sym_isize] = ACTIONS(1500), + [anon_sym_usize] = ACTIONS(1500), + [anon_sym_f32] = ACTIONS(1500), + [anon_sym_f64] = ACTIONS(1500), + [anon_sym_bool] = ACTIONS(1500), + [anon_sym_str] = ACTIONS(1500), + [anon_sym_char] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_async] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_fn] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_impl] = ACTIONS(1500), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_loop] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_mod] = ACTIONS(1500), + [anon_sym_pub] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_trait] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_unsafe] = ACTIONS(1500), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_move] = ACTIONS(1500), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1498), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1500), + [anon_sym_false] = ACTIONS(1500), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1500), + [sym_super] = ACTIONS(1500), + [sym_crate] = ACTIONS(1500), + [sym_metavariable] = ACTIONS(1498), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_macro_rules_BANG] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_u8] = ACTIONS(1522), - [anon_sym_i8] = ACTIONS(1522), - [anon_sym_u16] = ACTIONS(1522), - [anon_sym_i16] = ACTIONS(1522), - [anon_sym_u32] = ACTIONS(1522), - [anon_sym_i32] = ACTIONS(1522), - [anon_sym_u64] = ACTIONS(1522), - [anon_sym_i64] = ACTIONS(1522), - [anon_sym_u128] = ACTIONS(1522), - [anon_sym_i128] = ACTIONS(1522), - [anon_sym_isize] = ACTIONS(1522), - [anon_sym_usize] = ACTIONS(1522), - [anon_sym_f32] = ACTIONS(1522), - [anon_sym_f64] = ACTIONS(1522), - [anon_sym_bool] = ACTIONS(1522), - [anon_sym_str] = ACTIONS(1522), - [anon_sym_char] = ACTIONS(1522), - [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_impl] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_loop] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_mod] = ACTIONS(1522), - [anon_sym_pub] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_trait] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_unsafe] = ACTIONS(1522), - [anon_sym_use] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_yield] = ACTIONS(1522), - [anon_sym_move] = ACTIONS(1522), - [sym_integer_literal] = ACTIONS(1520), - [aux_sym_string_literal_token1] = ACTIONS(1520), - [sym_char_literal] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1522), - [anon_sym_false] = ACTIONS(1522), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1520), - [sym_raw_string_literal] = ACTIONS(1520), - [sym_float_literal] = ACTIONS(1520), + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_macro_rules_BANG] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_u8] = ACTIONS(1504), + [anon_sym_i8] = ACTIONS(1504), + [anon_sym_u16] = ACTIONS(1504), + [anon_sym_i16] = ACTIONS(1504), + [anon_sym_u32] = ACTIONS(1504), + [anon_sym_i32] = ACTIONS(1504), + [anon_sym_u64] = ACTIONS(1504), + [anon_sym_i64] = ACTIONS(1504), + [anon_sym_u128] = ACTIONS(1504), + [anon_sym_i128] = ACTIONS(1504), + [anon_sym_isize] = ACTIONS(1504), + [anon_sym_usize] = ACTIONS(1504), + [anon_sym_f32] = ACTIONS(1504), + [anon_sym_f64] = ACTIONS(1504), + [anon_sym_bool] = ACTIONS(1504), + [anon_sym_str] = ACTIONS(1504), + [anon_sym_char] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_fn] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_impl] = ACTIONS(1504), + [anon_sym_let] = ACTIONS(1504), + [anon_sym_loop] = ACTIONS(1504), + [anon_sym_match] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1504), + [anon_sym_pub] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_trait] = ACTIONS(1504), + [anon_sym_type] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_unsafe] = ACTIONS(1504), + [anon_sym_use] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_DOT_DOT] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_yield] = ACTIONS(1504), + [anon_sym_move] = ACTIONS(1504), + [sym_integer_literal] = ACTIONS(1502), + [aux_sym_string_literal_token1] = ACTIONS(1502), + [sym_char_literal] = ACTIONS(1502), + [anon_sym_true] = ACTIONS(1504), + [anon_sym_false] = ACTIONS(1504), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1504), + [sym_super] = ACTIONS(1504), + [sym_crate] = ACTIONS(1504), + [sym_metavariable] = ACTIONS(1502), + [sym_raw_string_literal] = ACTIONS(1502), + [sym_float_literal] = ACTIONS(1502), [sym_block_comment] = ACTIONS(3), }, [357] = { + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_identifier] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_macro_rules_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_u8] = ACTIONS(1508), + [anon_sym_i8] = ACTIONS(1508), + [anon_sym_u16] = ACTIONS(1508), + [anon_sym_i16] = ACTIONS(1508), + [anon_sym_u32] = ACTIONS(1508), + [anon_sym_i32] = ACTIONS(1508), + [anon_sym_u64] = ACTIONS(1508), + [anon_sym_i64] = ACTIONS(1508), + [anon_sym_u128] = ACTIONS(1508), + [anon_sym_i128] = ACTIONS(1508), + [anon_sym_isize] = ACTIONS(1508), + [anon_sym_usize] = ACTIONS(1508), + [anon_sym_f32] = ACTIONS(1508), + [anon_sym_f64] = ACTIONS(1508), + [anon_sym_bool] = ACTIONS(1508), + [anon_sym_str] = ACTIONS(1508), + [anon_sym_char] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_fn] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_impl] = ACTIONS(1508), + [anon_sym_let] = ACTIONS(1508), + [anon_sym_loop] = ACTIONS(1508), + [anon_sym_match] = ACTIONS(1508), + [anon_sym_mod] = ACTIONS(1508), + [anon_sym_pub] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_trait] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_unsafe] = ACTIONS(1508), + [anon_sym_use] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1506), + [anon_sym_COLON_COLON] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_DOT_DOT] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_yield] = ACTIONS(1508), + [anon_sym_move] = ACTIONS(1508), + [sym_integer_literal] = ACTIONS(1506), + [aux_sym_string_literal_token1] = ACTIONS(1506), + [sym_char_literal] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1508), + [anon_sym_false] = ACTIONS(1508), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1508), + [sym_super] = ACTIONS(1508), + [sym_crate] = ACTIONS(1508), + [sym_metavariable] = ACTIONS(1506), + [sym_raw_string_literal] = ACTIONS(1506), + [sym_float_literal] = ACTIONS(1506), + [sym_block_comment] = ACTIONS(3), + }, + [358] = { + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_identifier] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_macro_rules_BANG] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_u8] = ACTIONS(1512), + [anon_sym_i8] = ACTIONS(1512), + [anon_sym_u16] = ACTIONS(1512), + [anon_sym_i16] = ACTIONS(1512), + [anon_sym_u32] = ACTIONS(1512), + [anon_sym_i32] = ACTIONS(1512), + [anon_sym_u64] = ACTIONS(1512), + [anon_sym_i64] = ACTIONS(1512), + [anon_sym_u128] = ACTIONS(1512), + [anon_sym_i128] = ACTIONS(1512), + [anon_sym_isize] = ACTIONS(1512), + [anon_sym_usize] = ACTIONS(1512), + [anon_sym_f32] = ACTIONS(1512), + [anon_sym_f64] = ACTIONS(1512), + [anon_sym_bool] = ACTIONS(1512), + [anon_sym_str] = ACTIONS(1512), + [anon_sym_char] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_fn] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_impl] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1512), + [anon_sym_loop] = ACTIONS(1512), + [anon_sym_match] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1512), + [anon_sym_pub] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_trait] = ACTIONS(1512), + [anon_sym_type] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_unsafe] = ACTIONS(1512), + [anon_sym_use] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1510), + [anon_sym_COLON_COLON] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_move] = ACTIONS(1512), + [sym_integer_literal] = ACTIONS(1510), + [aux_sym_string_literal_token1] = ACTIONS(1510), + [sym_char_literal] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1512), + [anon_sym_false] = ACTIONS(1512), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1512), + [sym_super] = ACTIONS(1512), + [sym_crate] = ACTIONS(1512), + [sym_metavariable] = ACTIONS(1510), + [sym_raw_string_literal] = ACTIONS(1510), + [sym_float_literal] = ACTIONS(1510), + [sym_block_comment] = ACTIONS(3), + }, + [359] = { + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_identifier] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_macro_rules_BANG] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_u8] = ACTIONS(1516), + [anon_sym_i8] = ACTIONS(1516), + [anon_sym_u16] = ACTIONS(1516), + [anon_sym_i16] = ACTIONS(1516), + [anon_sym_u32] = ACTIONS(1516), + [anon_sym_i32] = ACTIONS(1516), + [anon_sym_u64] = ACTIONS(1516), + [anon_sym_i64] = ACTIONS(1516), + [anon_sym_u128] = ACTIONS(1516), + [anon_sym_i128] = ACTIONS(1516), + [anon_sym_isize] = ACTIONS(1516), + [anon_sym_usize] = ACTIONS(1516), + [anon_sym_f32] = ACTIONS(1516), + [anon_sym_f64] = ACTIONS(1516), + [anon_sym_bool] = ACTIONS(1516), + [anon_sym_str] = ACTIONS(1516), + [anon_sym_char] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_fn] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_impl] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_mod] = ACTIONS(1516), + [anon_sym_pub] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_trait] = ACTIONS(1516), + [anon_sym_type] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_unsafe] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1514), + [anon_sym_COLON_COLON] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_yield] = ACTIONS(1516), + [anon_sym_move] = ACTIONS(1516), + [sym_integer_literal] = ACTIONS(1514), + [aux_sym_string_literal_token1] = ACTIONS(1514), + [sym_char_literal] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1516), + [sym_super] = ACTIONS(1516), + [sym_crate] = ACTIONS(1516), + [sym_metavariable] = ACTIONS(1514), + [sym_raw_string_literal] = ACTIONS(1514), + [sym_float_literal] = ACTIONS(1514), + [sym_block_comment] = ACTIONS(3), + }, + [360] = { + [ts_builtin_sym_end] = ACTIONS(1518), + [sym_identifier] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_macro_rules_BANG] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_u8] = ACTIONS(1520), + [anon_sym_i8] = ACTIONS(1520), + [anon_sym_u16] = ACTIONS(1520), + [anon_sym_i16] = ACTIONS(1520), + [anon_sym_u32] = ACTIONS(1520), + [anon_sym_i32] = ACTIONS(1520), + [anon_sym_u64] = ACTIONS(1520), + [anon_sym_i64] = ACTIONS(1520), + [anon_sym_u128] = ACTIONS(1520), + [anon_sym_i128] = ACTIONS(1520), + [anon_sym_isize] = ACTIONS(1520), + [anon_sym_usize] = ACTIONS(1520), + [anon_sym_f32] = ACTIONS(1520), + [anon_sym_f64] = ACTIONS(1520), + [anon_sym_bool] = ACTIONS(1520), + [anon_sym_str] = ACTIONS(1520), + [anon_sym_char] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_async] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_fn] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_impl] = ACTIONS(1520), + [anon_sym_let] = ACTIONS(1520), + [anon_sym_loop] = ACTIONS(1520), + [anon_sym_match] = ACTIONS(1520), + [anon_sym_mod] = ACTIONS(1520), + [anon_sym_pub] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_trait] = ACTIONS(1520), + [anon_sym_type] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_unsafe] = ACTIONS(1520), + [anon_sym_use] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_COLON_COLON] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_yield] = ACTIONS(1520), + [anon_sym_move] = ACTIONS(1520), + [sym_integer_literal] = ACTIONS(1518), + [aux_sym_string_literal_token1] = ACTIONS(1518), + [sym_char_literal] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1520), + [sym_super] = ACTIONS(1520), + [sym_crate] = ACTIONS(1520), + [sym_metavariable] = ACTIONS(1518), + [sym_raw_string_literal] = ACTIONS(1518), + [sym_float_literal] = ACTIONS(1518), + [sym_block_comment] = ACTIONS(3), + }, + [361] = { + [sym_attribute_item] = STATE(554), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_macro_invocation] = STATE(2537), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier] = STATE(1941), + [sym_match_arm] = STATE(491), + [sym_last_match_arm] = STATE(2414), + [sym_match_pattern] = STATE(2393), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1956), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_enum_variant_list_repeat1] = STATE(554), + [aux_sym_match_block_repeat1] = STATE(491), + [sym_identifier] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1164), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [362] = { [ts_builtin_sym_end] = ACTIONS(1524), [sym_identifier] = ACTIONS(1526), [anon_sym_SEMI] = ACTIONS(1524), @@ -49645,7 +51434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1524), [sym_block_comment] = ACTIONS(3), }, - [358] = { + [363] = { [ts_builtin_sym_end] = ACTIONS(1528), [sym_identifier] = ACTIONS(1530), [anon_sym_SEMI] = ACTIONS(1528), @@ -49722,7 +51511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1528), [sym_block_comment] = ACTIONS(3), }, - [359] = { + [364] = { [ts_builtin_sym_end] = ACTIONS(1532), [sym_identifier] = ACTIONS(1534), [anon_sym_SEMI] = ACTIONS(1532), @@ -49799,7 +51588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1532), [sym_block_comment] = ACTIONS(3), }, - [360] = { + [365] = { [ts_builtin_sym_end] = ACTIONS(1536), [sym_identifier] = ACTIONS(1538), [anon_sym_SEMI] = ACTIONS(1536), @@ -49876,1239 +51665,1239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1536), [sym_block_comment] = ACTIONS(3), }, - [361] = { - [sym_attribute_item] = STATE(548), - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_macro_invocation] = STATE(2349), - [sym_scoped_identifier] = STATE(1578), - [sym_scoped_type_identifier] = STATE(1974), - [sym_match_arm] = STATE(482), - [sym_last_match_arm] = STATE(2356), - [sym_match_pattern] = STATE(2359), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2070), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(482), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [362] = { - [ts_builtin_sym_end] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_macro_rules_BANG] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_u8] = ACTIONS(1544), - [anon_sym_i8] = ACTIONS(1544), - [anon_sym_u16] = ACTIONS(1544), - [anon_sym_i16] = ACTIONS(1544), - [anon_sym_u32] = ACTIONS(1544), - [anon_sym_i32] = ACTIONS(1544), - [anon_sym_u64] = ACTIONS(1544), - [anon_sym_i64] = ACTIONS(1544), - [anon_sym_u128] = ACTIONS(1544), - [anon_sym_i128] = ACTIONS(1544), - [anon_sym_isize] = ACTIONS(1544), - [anon_sym_usize] = ACTIONS(1544), - [anon_sym_f32] = ACTIONS(1544), - [anon_sym_f64] = ACTIONS(1544), - [anon_sym_bool] = ACTIONS(1544), - [anon_sym_str] = ACTIONS(1544), - [anon_sym_char] = ACTIONS(1544), - [anon_sym_SQUOTE] = ACTIONS(1544), - [anon_sym_async] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_default] = ACTIONS(1544), - [anon_sym_enum] = ACTIONS(1544), - [anon_sym_fn] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_impl] = ACTIONS(1544), - [anon_sym_let] = ACTIONS(1544), - [anon_sym_loop] = ACTIONS(1544), - [anon_sym_match] = ACTIONS(1544), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_pub] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_static] = ACTIONS(1544), - [anon_sym_struct] = ACTIONS(1544), - [anon_sym_trait] = ACTIONS(1544), - [anon_sym_type] = ACTIONS(1544), - [anon_sym_union] = ACTIONS(1544), - [anon_sym_unsafe] = ACTIONS(1544), - [anon_sym_use] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_POUND] = ACTIONS(1542), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_extern] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_COLON_COLON] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1542), - [anon_sym_DOT_DOT] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_move] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1542), - [aux_sym_string_literal_token1] = ACTIONS(1542), - [sym_char_literal] = ACTIONS(1542), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1544), - [sym_super] = ACTIONS(1544), - [sym_crate] = ACTIONS(1544), - [sym_metavariable] = ACTIONS(1542), - [sym_raw_string_literal] = ACTIONS(1542), - [sym_float_literal] = ACTIONS(1542), - [sym_block_comment] = ACTIONS(3), - }, - [363] = { - [ts_builtin_sym_end] = ACTIONS(1546), - [sym_identifier] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1546), - [anon_sym_macro_rules_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1546), - [anon_sym_RBRACE] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1546), - [anon_sym_STAR] = 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_SQUOTE] = ACTIONS(1548), - [anon_sym_async] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_enum] = ACTIONS(1548), - [anon_sym_fn] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_impl] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1548), - [anon_sym_loop] = ACTIONS(1548), - [anon_sym_match] = ACTIONS(1548), - [anon_sym_mod] = ACTIONS(1548), - [anon_sym_pub] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1548), - [anon_sym_struct] = ACTIONS(1548), - [anon_sym_trait] = ACTIONS(1548), - [anon_sym_type] = ACTIONS(1548), - [anon_sym_union] = ACTIONS(1548), - [anon_sym_unsafe] = ACTIONS(1548), - [anon_sym_use] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_POUND] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_extern] = ACTIONS(1548), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_COLON_COLON] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_yield] = ACTIONS(1548), - [anon_sym_move] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1546), - [aux_sym_string_literal_token1] = ACTIONS(1546), - [sym_char_literal] = ACTIONS(1546), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1548), - [sym_super] = ACTIONS(1548), - [sym_crate] = ACTIONS(1548), - [sym_metavariable] = ACTIONS(1546), - [sym_raw_string_literal] = ACTIONS(1546), - [sym_float_literal] = ACTIONS(1546), - [sym_block_comment] = ACTIONS(3), - }, - [364] = { - [ts_builtin_sym_end] = ACTIONS(1550), - [sym_identifier] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_macro_rules_BANG] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1552), - [anon_sym_async] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_const] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1552), - [anon_sym_enum] = ACTIONS(1552), - [anon_sym_fn] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_impl] = ACTIONS(1552), - [anon_sym_let] = ACTIONS(1552), - [anon_sym_loop] = ACTIONS(1552), - [anon_sym_match] = ACTIONS(1552), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_pub] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_static] = ACTIONS(1552), - [anon_sym_struct] = ACTIONS(1552), - [anon_sym_trait] = ACTIONS(1552), - [anon_sym_type] = ACTIONS(1552), - [anon_sym_union] = ACTIONS(1552), - [anon_sym_unsafe] = ACTIONS(1552), - [anon_sym_use] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(1550), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_extern] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_COLON_COLON] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_yield] = ACTIONS(1552), - [anon_sym_move] = ACTIONS(1552), - [sym_integer_literal] = ACTIONS(1550), - [aux_sym_string_literal_token1] = ACTIONS(1550), - [sym_char_literal] = ACTIONS(1550), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1552), - [sym_super] = ACTIONS(1552), - [sym_crate] = ACTIONS(1552), - [sym_metavariable] = ACTIONS(1550), - [sym_raw_string_literal] = ACTIONS(1550), - [sym_float_literal] = ACTIONS(1550), - [sym_block_comment] = ACTIONS(3), - }, - [365] = { - [ts_builtin_sym_end] = ACTIONS(1554), - [sym_identifier] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_macro_rules_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_u8] = ACTIONS(1556), - [anon_sym_i8] = ACTIONS(1556), - [anon_sym_u16] = ACTIONS(1556), - [anon_sym_i16] = ACTIONS(1556), - [anon_sym_u32] = ACTIONS(1556), - [anon_sym_i32] = ACTIONS(1556), - [anon_sym_u64] = ACTIONS(1556), - [anon_sym_i64] = ACTIONS(1556), - [anon_sym_u128] = ACTIONS(1556), - [anon_sym_i128] = ACTIONS(1556), - [anon_sym_isize] = ACTIONS(1556), - [anon_sym_usize] = ACTIONS(1556), - [anon_sym_f32] = ACTIONS(1556), - [anon_sym_f64] = ACTIONS(1556), - [anon_sym_bool] = ACTIONS(1556), - [anon_sym_str] = ACTIONS(1556), - [anon_sym_char] = ACTIONS(1556), - [anon_sym_SQUOTE] = ACTIONS(1556), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_default] = ACTIONS(1556), - [anon_sym_enum] = ACTIONS(1556), - [anon_sym_fn] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_impl] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_pub] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_static] = ACTIONS(1556), - [anon_sym_struct] = ACTIONS(1556), - [anon_sym_trait] = ACTIONS(1556), - [anon_sym_type] = ACTIONS(1556), - [anon_sym_union] = ACTIONS(1556), - [anon_sym_unsafe] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(1554), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1554), - [anon_sym_COLON_COLON] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1554), - [anon_sym_DOT_DOT] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_yield] = ACTIONS(1556), - [anon_sym_move] = ACTIONS(1556), - [sym_integer_literal] = ACTIONS(1554), - [aux_sym_string_literal_token1] = ACTIONS(1554), - [sym_char_literal] = ACTIONS(1554), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1556), - [sym_super] = ACTIONS(1556), - [sym_crate] = ACTIONS(1556), - [sym_metavariable] = ACTIONS(1554), - [sym_raw_string_literal] = ACTIONS(1554), - [sym_float_literal] = ACTIONS(1554), - [sym_block_comment] = ACTIONS(3), - }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1558), - [sym_identifier] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_macro_rules_BANG] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1558), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_u8] = ACTIONS(1560), - [anon_sym_i8] = ACTIONS(1560), - [anon_sym_u16] = ACTIONS(1560), - [anon_sym_i16] = ACTIONS(1560), - [anon_sym_u32] = ACTIONS(1560), - [anon_sym_i32] = ACTIONS(1560), - [anon_sym_u64] = ACTIONS(1560), - [anon_sym_i64] = ACTIONS(1560), - [anon_sym_u128] = ACTIONS(1560), - [anon_sym_i128] = ACTIONS(1560), - [anon_sym_isize] = ACTIONS(1560), - [anon_sym_usize] = ACTIONS(1560), - [anon_sym_f32] = ACTIONS(1560), - [anon_sym_f64] = ACTIONS(1560), - [anon_sym_bool] = ACTIONS(1560), - [anon_sym_str] = ACTIONS(1560), - [anon_sym_char] = ACTIONS(1560), - [anon_sym_SQUOTE] = ACTIONS(1560), - [anon_sym_async] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_enum] = ACTIONS(1560), - [anon_sym_fn] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_impl] = ACTIONS(1560), - [anon_sym_let] = ACTIONS(1560), - [anon_sym_loop] = ACTIONS(1560), - [anon_sym_match] = ACTIONS(1560), - [anon_sym_mod] = ACTIONS(1560), - [anon_sym_pub] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1560), - [anon_sym_struct] = ACTIONS(1560), - [anon_sym_trait] = ACTIONS(1560), - [anon_sym_type] = ACTIONS(1560), - [anon_sym_union] = ACTIONS(1560), - [anon_sym_unsafe] = ACTIONS(1560), - [anon_sym_use] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(1558), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_extern] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(1558), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1558), - [anon_sym_DOT_DOT] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_yield] = ACTIONS(1560), - [anon_sym_move] = ACTIONS(1560), - [sym_integer_literal] = ACTIONS(1558), - [aux_sym_string_literal_token1] = ACTIONS(1558), - [sym_char_literal] = ACTIONS(1558), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1560), - [sym_super] = ACTIONS(1560), - [sym_crate] = ACTIONS(1560), - [sym_metavariable] = ACTIONS(1558), - [sym_raw_string_literal] = ACTIONS(1558), - [sym_float_literal] = ACTIONS(1558), + [ts_builtin_sym_end] = ACTIONS(1540), + [sym_identifier] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_macro_rules_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_u8] = ACTIONS(1542), + [anon_sym_i8] = ACTIONS(1542), + [anon_sym_u16] = ACTIONS(1542), + [anon_sym_i16] = ACTIONS(1542), + [anon_sym_u32] = ACTIONS(1542), + [anon_sym_i32] = ACTIONS(1542), + [anon_sym_u64] = ACTIONS(1542), + [anon_sym_i64] = ACTIONS(1542), + [anon_sym_u128] = ACTIONS(1542), + [anon_sym_i128] = ACTIONS(1542), + [anon_sym_isize] = ACTIONS(1542), + [anon_sym_usize] = ACTIONS(1542), + [anon_sym_f32] = ACTIONS(1542), + [anon_sym_f64] = ACTIONS(1542), + [anon_sym_bool] = ACTIONS(1542), + [anon_sym_str] = ACTIONS(1542), + [anon_sym_char] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_enum] = ACTIONS(1542), + [anon_sym_fn] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_impl] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1542), + [anon_sym_loop] = ACTIONS(1542), + [anon_sym_match] = ACTIONS(1542), + [anon_sym_mod] = ACTIONS(1542), + [anon_sym_pub] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_static] = ACTIONS(1542), + [anon_sym_struct] = ACTIONS(1542), + [anon_sym_trait] = ACTIONS(1542), + [anon_sym_type] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_unsafe] = ACTIONS(1542), + [anon_sym_use] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_COLON_COLON] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_DOT_DOT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_move] = ACTIONS(1542), + [sym_integer_literal] = ACTIONS(1540), + [aux_sym_string_literal_token1] = ACTIONS(1540), + [sym_char_literal] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1540), + [sym_raw_string_literal] = ACTIONS(1540), + [sym_float_literal] = ACTIONS(1540), [sym_block_comment] = ACTIONS(3), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1562), - [sym_identifier] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_macro_rules_BANG] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_RBRACE] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_u8] = ACTIONS(1564), - [anon_sym_i8] = ACTIONS(1564), - [anon_sym_u16] = ACTIONS(1564), - [anon_sym_i16] = ACTIONS(1564), - [anon_sym_u32] = ACTIONS(1564), - [anon_sym_i32] = ACTIONS(1564), - [anon_sym_u64] = ACTIONS(1564), - [anon_sym_i64] = ACTIONS(1564), - [anon_sym_u128] = ACTIONS(1564), - [anon_sym_i128] = ACTIONS(1564), - [anon_sym_isize] = ACTIONS(1564), - [anon_sym_usize] = ACTIONS(1564), - [anon_sym_f32] = ACTIONS(1564), - [anon_sym_f64] = ACTIONS(1564), - [anon_sym_bool] = ACTIONS(1564), - [anon_sym_str] = ACTIONS(1564), - [anon_sym_char] = ACTIONS(1564), - [anon_sym_SQUOTE] = ACTIONS(1564), - [anon_sym_async] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_const] = ACTIONS(1564), - [anon_sym_continue] = ACTIONS(1564), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_enum] = ACTIONS(1564), - [anon_sym_fn] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_impl] = ACTIONS(1564), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_loop] = ACTIONS(1564), - [anon_sym_match] = ACTIONS(1564), - [anon_sym_mod] = ACTIONS(1564), - [anon_sym_pub] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_struct] = ACTIONS(1564), - [anon_sym_trait] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_unsafe] = ACTIONS(1564), - [anon_sym_use] = ACTIONS(1564), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_POUND] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1562), - [anon_sym_extern] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_COLON_COLON] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(1562), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_yield] = ACTIONS(1564), - [anon_sym_move] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [aux_sym_string_literal_token1] = ACTIONS(1562), - [sym_char_literal] = ACTIONS(1562), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1564), - [sym_super] = ACTIONS(1564), - [sym_crate] = ACTIONS(1564), - [sym_metavariable] = ACTIONS(1562), - [sym_raw_string_literal] = ACTIONS(1562), - [sym_float_literal] = ACTIONS(1562), + [ts_builtin_sym_end] = ACTIONS(1544), + [sym_identifier] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_macro_rules_BANG] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_u8] = ACTIONS(1546), + [anon_sym_i8] = ACTIONS(1546), + [anon_sym_u16] = ACTIONS(1546), + [anon_sym_i16] = ACTIONS(1546), + [anon_sym_u32] = ACTIONS(1546), + [anon_sym_i32] = ACTIONS(1546), + [anon_sym_u64] = ACTIONS(1546), + [anon_sym_i64] = ACTIONS(1546), + [anon_sym_u128] = ACTIONS(1546), + [anon_sym_i128] = ACTIONS(1546), + [anon_sym_isize] = ACTIONS(1546), + [anon_sym_usize] = ACTIONS(1546), + [anon_sym_f32] = ACTIONS(1546), + [anon_sym_f64] = ACTIONS(1546), + [anon_sym_bool] = ACTIONS(1546), + [anon_sym_str] = ACTIONS(1546), + [anon_sym_char] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_default] = ACTIONS(1546), + [anon_sym_enum] = ACTIONS(1546), + [anon_sym_fn] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_impl] = ACTIONS(1546), + [anon_sym_let] = ACTIONS(1546), + [anon_sym_loop] = ACTIONS(1546), + [anon_sym_match] = ACTIONS(1546), + [anon_sym_mod] = ACTIONS(1546), + [anon_sym_pub] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1546), + [anon_sym_struct] = ACTIONS(1546), + [anon_sym_trait] = ACTIONS(1546), + [anon_sym_type] = ACTIONS(1546), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1546), + [anon_sym_use] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_COLON_COLON] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_yield] = ACTIONS(1546), + [anon_sym_move] = ACTIONS(1546), + [sym_integer_literal] = ACTIONS(1544), + [aux_sym_string_literal_token1] = ACTIONS(1544), + [sym_char_literal] = ACTIONS(1544), + [anon_sym_true] = ACTIONS(1546), + [anon_sym_false] = ACTIONS(1546), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1546), + [sym_super] = ACTIONS(1546), + [sym_crate] = ACTIONS(1546), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(1544), + [sym_float_literal] = ACTIONS(1544), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1566), - [sym_identifier] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_macro_rules_BANG] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_u8] = ACTIONS(1568), - [anon_sym_i8] = ACTIONS(1568), - [anon_sym_u16] = ACTIONS(1568), - [anon_sym_i16] = ACTIONS(1568), - [anon_sym_u32] = ACTIONS(1568), - [anon_sym_i32] = ACTIONS(1568), - [anon_sym_u64] = ACTIONS(1568), - [anon_sym_i64] = ACTIONS(1568), - [anon_sym_u128] = ACTIONS(1568), - [anon_sym_i128] = ACTIONS(1568), - [anon_sym_isize] = ACTIONS(1568), - [anon_sym_usize] = ACTIONS(1568), - [anon_sym_f32] = ACTIONS(1568), - [anon_sym_f64] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_str] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_SQUOTE] = ACTIONS(1568), - [anon_sym_async] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1568), - [anon_sym_enum] = ACTIONS(1568), - [anon_sym_fn] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_impl] = ACTIONS(1568), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_loop] = ACTIONS(1568), - [anon_sym_match] = ACTIONS(1568), - [anon_sym_mod] = ACTIONS(1568), - [anon_sym_pub] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_struct] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_union] = ACTIONS(1568), - [anon_sym_unsafe] = ACTIONS(1568), - [anon_sym_use] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_POUND] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_extern] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(1566), - [anon_sym_COLON_COLON] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1566), - [anon_sym_DOT_DOT] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1566), - [anon_sym_yield] = ACTIONS(1568), - [anon_sym_move] = ACTIONS(1568), - [sym_integer_literal] = ACTIONS(1566), - [aux_sym_string_literal_token1] = ACTIONS(1566), - [sym_char_literal] = ACTIONS(1566), - [anon_sym_true] = ACTIONS(1568), - [anon_sym_false] = ACTIONS(1568), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1568), - [sym_super] = ACTIONS(1568), - [sym_crate] = ACTIONS(1568), - [sym_metavariable] = ACTIONS(1566), - [sym_raw_string_literal] = ACTIONS(1566), - [sym_float_literal] = ACTIONS(1566), + [ts_builtin_sym_end] = ACTIONS(1548), + [sym_identifier] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_macro_rules_BANG] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_u8] = ACTIONS(1550), + [anon_sym_i8] = ACTIONS(1550), + [anon_sym_u16] = ACTIONS(1550), + [anon_sym_i16] = ACTIONS(1550), + [anon_sym_u32] = ACTIONS(1550), + [anon_sym_i32] = ACTIONS(1550), + [anon_sym_u64] = ACTIONS(1550), + [anon_sym_i64] = ACTIONS(1550), + [anon_sym_u128] = ACTIONS(1550), + [anon_sym_i128] = ACTIONS(1550), + [anon_sym_isize] = ACTIONS(1550), + [anon_sym_usize] = ACTIONS(1550), + [anon_sym_f32] = ACTIONS(1550), + [anon_sym_f64] = ACTIONS(1550), + [anon_sym_bool] = ACTIONS(1550), + [anon_sym_str] = ACTIONS(1550), + [anon_sym_char] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_async] = ACTIONS(1550), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_const] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_default] = ACTIONS(1550), + [anon_sym_enum] = ACTIONS(1550), + [anon_sym_fn] = ACTIONS(1550), + [anon_sym_for] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_impl] = ACTIONS(1550), + [anon_sym_let] = ACTIONS(1550), + [anon_sym_loop] = ACTIONS(1550), + [anon_sym_match] = ACTIONS(1550), + [anon_sym_mod] = ACTIONS(1550), + [anon_sym_pub] = ACTIONS(1550), + [anon_sym_return] = ACTIONS(1550), + [anon_sym_static] = ACTIONS(1550), + [anon_sym_struct] = ACTIONS(1550), + [anon_sym_trait] = ACTIONS(1550), + [anon_sym_type] = ACTIONS(1550), + [anon_sym_union] = ACTIONS(1550), + [anon_sym_unsafe] = ACTIONS(1550), + [anon_sym_use] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1550), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_COLON_COLON] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_DOT_DOT] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_yield] = ACTIONS(1550), + [anon_sym_move] = ACTIONS(1550), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1548), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1550), + [anon_sym_false] = ACTIONS(1550), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1548), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), [sym_block_comment] = ACTIONS(3), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1570), - [sym_identifier] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_macro_rules_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1570), - [anon_sym_STAR] = ACTIONS(1570), - [anon_sym_u8] = ACTIONS(1572), - [anon_sym_i8] = ACTIONS(1572), - [anon_sym_u16] = ACTIONS(1572), - [anon_sym_i16] = ACTIONS(1572), - [anon_sym_u32] = ACTIONS(1572), - [anon_sym_i32] = ACTIONS(1572), - [anon_sym_u64] = ACTIONS(1572), - [anon_sym_i64] = ACTIONS(1572), - [anon_sym_u128] = ACTIONS(1572), - [anon_sym_i128] = ACTIONS(1572), - [anon_sym_isize] = ACTIONS(1572), - [anon_sym_usize] = ACTIONS(1572), - [anon_sym_f32] = ACTIONS(1572), - [anon_sym_f64] = ACTIONS(1572), - [anon_sym_bool] = ACTIONS(1572), - [anon_sym_str] = ACTIONS(1572), - [anon_sym_char] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1572), - [anon_sym_async] = ACTIONS(1572), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), - [anon_sym_default] = ACTIONS(1572), - [anon_sym_enum] = ACTIONS(1572), - [anon_sym_fn] = ACTIONS(1572), - [anon_sym_for] = ACTIONS(1572), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_impl] = ACTIONS(1572), - [anon_sym_let] = ACTIONS(1572), - [anon_sym_loop] = ACTIONS(1572), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_mod] = ACTIONS(1572), - [anon_sym_pub] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1572), - [anon_sym_static] = ACTIONS(1572), - [anon_sym_struct] = ACTIONS(1572), - [anon_sym_trait] = ACTIONS(1572), - [anon_sym_type] = ACTIONS(1572), - [anon_sym_union] = ACTIONS(1572), - [anon_sym_unsafe] = ACTIONS(1572), - [anon_sym_use] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(1570), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_extern] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1570), - [anon_sym_COLON_COLON] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1570), - [aux_sym_string_literal_token1] = ACTIONS(1570), - [sym_char_literal] = ACTIONS(1570), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1572), - [sym_super] = ACTIONS(1572), - [sym_crate] = ACTIONS(1572), - [sym_metavariable] = ACTIONS(1570), - [sym_raw_string_literal] = ACTIONS(1570), - [sym_float_literal] = ACTIONS(1570), + [ts_builtin_sym_end] = ACTIONS(1552), + [sym_identifier] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_macro_rules_BANG] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_u8] = ACTIONS(1554), + [anon_sym_i8] = ACTIONS(1554), + [anon_sym_u16] = ACTIONS(1554), + [anon_sym_i16] = ACTIONS(1554), + [anon_sym_u32] = ACTIONS(1554), + [anon_sym_i32] = ACTIONS(1554), + [anon_sym_u64] = ACTIONS(1554), + [anon_sym_i64] = ACTIONS(1554), + [anon_sym_u128] = ACTIONS(1554), + [anon_sym_i128] = ACTIONS(1554), + [anon_sym_isize] = ACTIONS(1554), + [anon_sym_usize] = ACTIONS(1554), + [anon_sym_f32] = ACTIONS(1554), + [anon_sym_f64] = ACTIONS(1554), + [anon_sym_bool] = ACTIONS(1554), + [anon_sym_str] = ACTIONS(1554), + [anon_sym_char] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_fn] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_impl] = ACTIONS(1554), + [anon_sym_let] = ACTIONS(1554), + [anon_sym_loop] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1554), + [anon_sym_mod] = ACTIONS(1554), + [anon_sym_pub] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_trait] = ACTIONS(1554), + [anon_sym_type] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_unsafe] = ACTIONS(1554), + [anon_sym_use] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_DOT_DOT] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_yield] = ACTIONS(1554), + [anon_sym_move] = ACTIONS(1554), + [sym_integer_literal] = ACTIONS(1552), + [aux_sym_string_literal_token1] = ACTIONS(1552), + [sym_char_literal] = ACTIONS(1552), + [anon_sym_true] = ACTIONS(1554), + [anon_sym_false] = ACTIONS(1554), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1554), + [sym_super] = ACTIONS(1554), + [sym_crate] = ACTIONS(1554), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1552), + [sym_float_literal] = ACTIONS(1552), [sym_block_comment] = ACTIONS(3), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(1574), - [sym_identifier] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_macro_rules_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1574), - [anon_sym_LBRACE] = ACTIONS(1574), - [anon_sym_RBRACE] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(1574), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_u8] = ACTIONS(1576), - [anon_sym_i8] = ACTIONS(1576), - [anon_sym_u16] = ACTIONS(1576), - [anon_sym_i16] = ACTIONS(1576), - [anon_sym_u32] = ACTIONS(1576), - [anon_sym_i32] = ACTIONS(1576), - [anon_sym_u64] = ACTIONS(1576), - [anon_sym_i64] = ACTIONS(1576), - [anon_sym_u128] = ACTIONS(1576), - [anon_sym_i128] = ACTIONS(1576), - [anon_sym_isize] = ACTIONS(1576), - [anon_sym_usize] = ACTIONS(1576), - [anon_sym_f32] = ACTIONS(1576), - [anon_sym_f64] = ACTIONS(1576), - [anon_sym_bool] = ACTIONS(1576), - [anon_sym_str] = ACTIONS(1576), - [anon_sym_char] = ACTIONS(1576), - [anon_sym_SQUOTE] = ACTIONS(1576), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_enum] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_impl] = ACTIONS(1576), - [anon_sym_let] = ACTIONS(1576), - [anon_sym_loop] = ACTIONS(1576), - [anon_sym_match] = ACTIONS(1576), - [anon_sym_mod] = ACTIONS(1576), - [anon_sym_pub] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_static] = ACTIONS(1576), - [anon_sym_struct] = ACTIONS(1576), - [anon_sym_trait] = ACTIONS(1576), - [anon_sym_type] = ACTIONS(1576), - [anon_sym_union] = ACTIONS(1576), - [anon_sym_unsafe] = ACTIONS(1576), - [anon_sym_use] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(1574), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_extern] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1574), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_DOT_DOT] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_yield] = ACTIONS(1576), - [anon_sym_move] = ACTIONS(1576), - [sym_integer_literal] = ACTIONS(1574), - [aux_sym_string_literal_token1] = ACTIONS(1574), - [sym_char_literal] = ACTIONS(1574), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1576), - [sym_super] = ACTIONS(1576), - [sym_crate] = ACTIONS(1576), - [sym_metavariable] = ACTIONS(1574), - [sym_raw_string_literal] = ACTIONS(1574), - [sym_float_literal] = ACTIONS(1574), + [ts_builtin_sym_end] = ACTIONS(1556), + [sym_identifier] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_macro_rules_BANG] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_u8] = ACTIONS(1558), + [anon_sym_i8] = ACTIONS(1558), + [anon_sym_u16] = ACTIONS(1558), + [anon_sym_i16] = ACTIONS(1558), + [anon_sym_u32] = ACTIONS(1558), + [anon_sym_i32] = ACTIONS(1558), + [anon_sym_u64] = ACTIONS(1558), + [anon_sym_i64] = ACTIONS(1558), + [anon_sym_u128] = ACTIONS(1558), + [anon_sym_i128] = ACTIONS(1558), + [anon_sym_isize] = ACTIONS(1558), + [anon_sym_usize] = ACTIONS(1558), + [anon_sym_f32] = ACTIONS(1558), + [anon_sym_f64] = ACTIONS(1558), + [anon_sym_bool] = ACTIONS(1558), + [anon_sym_str] = ACTIONS(1558), + [anon_sym_char] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_fn] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_impl] = ACTIONS(1558), + [anon_sym_let] = ACTIONS(1558), + [anon_sym_loop] = ACTIONS(1558), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_mod] = ACTIONS(1558), + [anon_sym_pub] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_trait] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_unsafe] = ACTIONS(1558), + [anon_sym_use] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_COLON_COLON] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_yield] = ACTIONS(1558), + [anon_sym_move] = ACTIONS(1558), + [sym_integer_literal] = ACTIONS(1556), + [aux_sym_string_literal_token1] = ACTIONS(1556), + [sym_char_literal] = ACTIONS(1556), + [anon_sym_true] = ACTIONS(1558), + [anon_sym_false] = ACTIONS(1558), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1558), + [sym_super] = ACTIONS(1558), + [sym_crate] = ACTIONS(1558), + [sym_metavariable] = ACTIONS(1556), + [sym_raw_string_literal] = ACTIONS(1556), + [sym_float_literal] = ACTIONS(1556), [sym_block_comment] = ACTIONS(3), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1578), - [sym_identifier] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1578), - [anon_sym_macro_rules_BANG] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_RBRACE] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_u8] = ACTIONS(1580), - [anon_sym_i8] = ACTIONS(1580), - [anon_sym_u16] = ACTIONS(1580), - [anon_sym_i16] = ACTIONS(1580), - [anon_sym_u32] = ACTIONS(1580), - [anon_sym_i32] = ACTIONS(1580), - [anon_sym_u64] = ACTIONS(1580), - [anon_sym_i64] = ACTIONS(1580), - [anon_sym_u128] = ACTIONS(1580), - [anon_sym_i128] = ACTIONS(1580), - [anon_sym_isize] = ACTIONS(1580), - [anon_sym_usize] = ACTIONS(1580), - [anon_sym_f32] = ACTIONS(1580), - [anon_sym_f64] = ACTIONS(1580), - [anon_sym_bool] = ACTIONS(1580), - [anon_sym_str] = ACTIONS(1580), - [anon_sym_char] = ACTIONS(1580), - [anon_sym_SQUOTE] = ACTIONS(1580), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_const] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_default] = ACTIONS(1580), - [anon_sym_enum] = ACTIONS(1580), - [anon_sym_fn] = ACTIONS(1580), - [anon_sym_for] = ACTIONS(1580), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_impl] = ACTIONS(1580), - [anon_sym_let] = ACTIONS(1580), - [anon_sym_loop] = ACTIONS(1580), - [anon_sym_match] = ACTIONS(1580), - [anon_sym_mod] = ACTIONS(1580), - [anon_sym_pub] = ACTIONS(1580), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_struct] = ACTIONS(1580), - [anon_sym_trait] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_union] = ACTIONS(1580), - [anon_sym_unsafe] = ACTIONS(1580), - [anon_sym_use] = ACTIONS(1580), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_POUND] = ACTIONS(1578), - [anon_sym_BANG] = ACTIONS(1578), - [anon_sym_extern] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1578), - [anon_sym_COLON_COLON] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1578), - [anon_sym_DOT_DOT] = ACTIONS(1578), - [anon_sym_DASH] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1578), - [anon_sym_yield] = ACTIONS(1580), - [anon_sym_move] = ACTIONS(1580), - [sym_integer_literal] = ACTIONS(1578), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1578), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1580), - [sym_super] = ACTIONS(1580), - [sym_crate] = ACTIONS(1580), - [sym_metavariable] = ACTIONS(1578), - [sym_raw_string_literal] = ACTIONS(1578), - [sym_float_literal] = ACTIONS(1578), + [ts_builtin_sym_end] = ACTIONS(1560), + [sym_identifier] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_macro_rules_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1560), + [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_SQUOTE] = ACTIONS(1562), + [anon_sym_async] = 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_while] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_COLON_COLON] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_DOT_DOT] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_yield] = ACTIONS(1562), + [anon_sym_move] = ACTIONS(1562), + [sym_integer_literal] = ACTIONS(1560), + [aux_sym_string_literal_token1] = ACTIONS(1560), + [sym_char_literal] = ACTIONS(1560), + [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(1560), + [sym_raw_string_literal] = ACTIONS(1560), + [sym_float_literal] = ACTIONS(1560), [sym_block_comment] = ACTIONS(3), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(1582), - [sym_identifier] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_macro_rules_BANG] = ACTIONS(1582), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(1582), - [anon_sym_u8] = ACTIONS(1584), - [anon_sym_i8] = ACTIONS(1584), - [anon_sym_u16] = ACTIONS(1584), - [anon_sym_i16] = ACTIONS(1584), - [anon_sym_u32] = ACTIONS(1584), - [anon_sym_i32] = ACTIONS(1584), - [anon_sym_u64] = ACTIONS(1584), - [anon_sym_i64] = ACTIONS(1584), - [anon_sym_u128] = ACTIONS(1584), - [anon_sym_i128] = ACTIONS(1584), - [anon_sym_isize] = ACTIONS(1584), - [anon_sym_usize] = ACTIONS(1584), - [anon_sym_f32] = ACTIONS(1584), - [anon_sym_f64] = ACTIONS(1584), - [anon_sym_bool] = ACTIONS(1584), - [anon_sym_str] = ACTIONS(1584), - [anon_sym_char] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1584), - [anon_sym_async] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_default] = ACTIONS(1584), - [anon_sym_enum] = ACTIONS(1584), - [anon_sym_fn] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_impl] = ACTIONS(1584), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_loop] = ACTIONS(1584), - [anon_sym_match] = ACTIONS(1584), - [anon_sym_mod] = ACTIONS(1584), - [anon_sym_pub] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_static] = ACTIONS(1584), - [anon_sym_struct] = ACTIONS(1584), - [anon_sym_trait] = ACTIONS(1584), - [anon_sym_type] = ACTIONS(1584), - [anon_sym_union] = ACTIONS(1584), - [anon_sym_unsafe] = ACTIONS(1584), - [anon_sym_use] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(1582), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_extern] = ACTIONS(1584), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_COLON_COLON] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_yield] = ACTIONS(1584), - [anon_sym_move] = ACTIONS(1584), - [sym_integer_literal] = ACTIONS(1582), - [aux_sym_string_literal_token1] = ACTIONS(1582), - [sym_char_literal] = ACTIONS(1582), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1584), - [sym_super] = ACTIONS(1584), - [sym_crate] = ACTIONS(1584), - [sym_metavariable] = ACTIONS(1582), - [sym_raw_string_literal] = ACTIONS(1582), - [sym_float_literal] = ACTIONS(1582), + [ts_builtin_sym_end] = ACTIONS(1564), + [sym_identifier] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_macro_rules_BANG] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [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_SQUOTE] = ACTIONS(1566), + [anon_sym_async] = 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_while] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_COLON_COLON] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_DOT_DOT] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_yield] = ACTIONS(1566), + [anon_sym_move] = ACTIONS(1566), + [sym_integer_literal] = ACTIONS(1564), + [aux_sym_string_literal_token1] = ACTIONS(1564), + [sym_char_literal] = ACTIONS(1564), + [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(1564), + [sym_raw_string_literal] = ACTIONS(1564), + [sym_float_literal] = ACTIONS(1564), [sym_block_comment] = ACTIONS(3), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(1586), - [sym_identifier] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_macro_rules_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_RBRACE] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_u8] = ACTIONS(1588), - [anon_sym_i8] = ACTIONS(1588), - [anon_sym_u16] = ACTIONS(1588), - [anon_sym_i16] = ACTIONS(1588), - [anon_sym_u32] = ACTIONS(1588), - [anon_sym_i32] = ACTIONS(1588), - [anon_sym_u64] = ACTIONS(1588), - [anon_sym_i64] = ACTIONS(1588), - [anon_sym_u128] = ACTIONS(1588), - [anon_sym_i128] = ACTIONS(1588), - [anon_sym_isize] = ACTIONS(1588), - [anon_sym_usize] = ACTIONS(1588), - [anon_sym_f32] = ACTIONS(1588), - [anon_sym_f64] = ACTIONS(1588), - [anon_sym_bool] = ACTIONS(1588), - [anon_sym_str] = ACTIONS(1588), - [anon_sym_char] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1588), - [anon_sym_async] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_default] = ACTIONS(1588), - [anon_sym_enum] = ACTIONS(1588), - [anon_sym_fn] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_impl] = ACTIONS(1588), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_loop] = ACTIONS(1588), - [anon_sym_match] = ACTIONS(1588), - [anon_sym_mod] = ACTIONS(1588), - [anon_sym_pub] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_static] = ACTIONS(1588), - [anon_sym_struct] = ACTIONS(1588), - [anon_sym_trait] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1588), - [anon_sym_union] = ACTIONS(1588), - [anon_sym_unsafe] = ACTIONS(1588), - [anon_sym_use] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_POUND] = ACTIONS(1586), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_extern] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_COLON_COLON] = ACTIONS(1586), - [anon_sym_AMP] = ACTIONS(1586), - [anon_sym_DOT_DOT] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_PIPE] = ACTIONS(1586), - [anon_sym_yield] = ACTIONS(1588), - [anon_sym_move] = ACTIONS(1588), - [sym_integer_literal] = ACTIONS(1586), - [aux_sym_string_literal_token1] = ACTIONS(1586), - [sym_char_literal] = ACTIONS(1586), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1588), - [sym_super] = ACTIONS(1588), - [sym_crate] = ACTIONS(1588), - [sym_metavariable] = ACTIONS(1586), - [sym_raw_string_literal] = ACTIONS(1586), - [sym_float_literal] = ACTIONS(1586), + [ts_builtin_sym_end] = ACTIONS(1568), + [sym_identifier] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym_macro_rules_BANG] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1568), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1568), + [anon_sym_STAR] = ACTIONS(1568), + [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_SQUOTE] = ACTIONS(1570), + [anon_sym_async] = 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_while] = ACTIONS(1570), + [anon_sym_POUND] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_extern] = ACTIONS(1570), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_COLON_COLON] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1568), + [aux_sym_string_literal_token1] = ACTIONS(1568), + [sym_char_literal] = ACTIONS(1568), + [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(1568), + [sym_raw_string_literal] = ACTIONS(1568), + [sym_float_literal] = ACTIONS(1568), [sym_block_comment] = ACTIONS(3), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1590), - [sym_identifier] = ACTIONS(1592), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_macro_rules_BANG] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1590), - [anon_sym_STAR] = ACTIONS(1590), - [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_SQUOTE] = ACTIONS(1592), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_const] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1592), - [anon_sym_default] = ACTIONS(1592), - [anon_sym_enum] = ACTIONS(1592), - [anon_sym_fn] = ACTIONS(1592), - [anon_sym_for] = ACTIONS(1592), - [anon_sym_if] = ACTIONS(1592), - [anon_sym_impl] = ACTIONS(1592), - [anon_sym_let] = ACTIONS(1592), - [anon_sym_loop] = ACTIONS(1592), - [anon_sym_match] = ACTIONS(1592), - [anon_sym_mod] = ACTIONS(1592), - [anon_sym_pub] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1592), - [anon_sym_static] = ACTIONS(1592), - [anon_sym_struct] = ACTIONS(1592), - [anon_sym_trait] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(1592), - [anon_sym_union] = ACTIONS(1592), - [anon_sym_unsafe] = ACTIONS(1592), - [anon_sym_use] = ACTIONS(1592), - [anon_sym_while] = ACTIONS(1592), - [anon_sym_POUND] = ACTIONS(1590), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_extern] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(1590), - [anon_sym_COLON_COLON] = ACTIONS(1590), - [anon_sym_AMP] = ACTIONS(1590), - [anon_sym_DOT_DOT] = ACTIONS(1590), - [anon_sym_DASH] = ACTIONS(1590), - [anon_sym_PIPE] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_move] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(1590), - [aux_sym_string_literal_token1] = ACTIONS(1590), - [sym_char_literal] = ACTIONS(1590), - [anon_sym_true] = ACTIONS(1592), - [anon_sym_false] = ACTIONS(1592), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1592), - [sym_super] = ACTIONS(1592), - [sym_crate] = ACTIONS(1592), - [sym_metavariable] = ACTIONS(1590), - [sym_raw_string_literal] = ACTIONS(1590), - [sym_float_literal] = ACTIONS(1590), + [ts_builtin_sym_end] = ACTIONS(1572), + [sym_identifier] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_macro_rules_BANG] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [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_SQUOTE] = ACTIONS(1574), + [anon_sym_async] = 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_while] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_extern] = ACTIONS(1574), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_DOT_DOT] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_move] = ACTIONS(1574), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1572), + [sym_char_literal] = ACTIONS(1572), + [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_metavariable] = ACTIONS(1572), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), [sym_block_comment] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1594), - [sym_identifier] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym_macro_rules_BANG] = ACTIONS(1594), - [anon_sym_LPAREN] = ACTIONS(1594), - [anon_sym_LBRACE] = ACTIONS(1594), - [anon_sym_RBRACE] = ACTIONS(1594), - [anon_sym_LBRACK] = ACTIONS(1594), - [anon_sym_STAR] = ACTIONS(1594), - [anon_sym_u8] = ACTIONS(1596), - [anon_sym_i8] = ACTIONS(1596), - [anon_sym_u16] = ACTIONS(1596), - [anon_sym_i16] = ACTIONS(1596), - [anon_sym_u32] = ACTIONS(1596), - [anon_sym_i32] = ACTIONS(1596), - [anon_sym_u64] = ACTIONS(1596), - [anon_sym_i64] = ACTIONS(1596), - [anon_sym_u128] = ACTIONS(1596), - [anon_sym_i128] = ACTIONS(1596), - [anon_sym_isize] = ACTIONS(1596), - [anon_sym_usize] = ACTIONS(1596), - [anon_sym_f32] = ACTIONS(1596), - [anon_sym_f64] = ACTIONS(1596), - [anon_sym_bool] = ACTIONS(1596), - [anon_sym_str] = ACTIONS(1596), - [anon_sym_char] = ACTIONS(1596), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_default] = ACTIONS(1596), - [anon_sym_enum] = ACTIONS(1596), - [anon_sym_fn] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_impl] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_loop] = ACTIONS(1596), - [anon_sym_match] = ACTIONS(1596), - [anon_sym_mod] = ACTIONS(1596), - [anon_sym_pub] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_struct] = ACTIONS(1596), - [anon_sym_trait] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_union] = ACTIONS(1596), - [anon_sym_unsafe] = ACTIONS(1596), - [anon_sym_use] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1594), - [anon_sym_BANG] = ACTIONS(1594), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_LT] = ACTIONS(1594), - [anon_sym_COLON_COLON] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1594), - [anon_sym_DOT_DOT] = ACTIONS(1594), - [anon_sym_DASH] = ACTIONS(1594), - [anon_sym_PIPE] = ACTIONS(1594), - [anon_sym_yield] = ACTIONS(1596), - [anon_sym_move] = ACTIONS(1596), - [sym_integer_literal] = ACTIONS(1594), - [aux_sym_string_literal_token1] = ACTIONS(1594), - [sym_char_literal] = ACTIONS(1594), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1596), - [sym_super] = ACTIONS(1596), - [sym_crate] = ACTIONS(1596), - [sym_metavariable] = ACTIONS(1594), - [sym_raw_string_literal] = ACTIONS(1594), - [sym_float_literal] = ACTIONS(1594), + [ts_builtin_sym_end] = ACTIONS(1576), + [sym_identifier] = ACTIONS(1578), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_macro_rules_BANG] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_u8] = ACTIONS(1578), + [anon_sym_i8] = ACTIONS(1578), + [anon_sym_u16] = ACTIONS(1578), + [anon_sym_i16] = ACTIONS(1578), + [anon_sym_u32] = ACTIONS(1578), + [anon_sym_i32] = ACTIONS(1578), + [anon_sym_u64] = ACTIONS(1578), + [anon_sym_i64] = ACTIONS(1578), + [anon_sym_u128] = ACTIONS(1578), + [anon_sym_i128] = ACTIONS(1578), + [anon_sym_isize] = ACTIONS(1578), + [anon_sym_usize] = ACTIONS(1578), + [anon_sym_f32] = ACTIONS(1578), + [anon_sym_f64] = ACTIONS(1578), + [anon_sym_bool] = ACTIONS(1578), + [anon_sym_str] = ACTIONS(1578), + [anon_sym_char] = ACTIONS(1578), + [anon_sym_SQUOTE] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_break] = ACTIONS(1578), + [anon_sym_const] = ACTIONS(1578), + [anon_sym_continue] = ACTIONS(1578), + [anon_sym_default] = ACTIONS(1578), + [anon_sym_enum] = ACTIONS(1578), + [anon_sym_fn] = ACTIONS(1578), + [anon_sym_for] = ACTIONS(1578), + [anon_sym_if] = ACTIONS(1578), + [anon_sym_impl] = ACTIONS(1578), + [anon_sym_let] = ACTIONS(1578), + [anon_sym_loop] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_mod] = ACTIONS(1578), + [anon_sym_pub] = ACTIONS(1578), + [anon_sym_return] = ACTIONS(1578), + [anon_sym_static] = ACTIONS(1578), + [anon_sym_struct] = ACTIONS(1578), + [anon_sym_trait] = ACTIONS(1578), + [anon_sym_type] = ACTIONS(1578), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1578), + [anon_sym_use] = ACTIONS(1578), + [anon_sym_while] = ACTIONS(1578), + [anon_sym_POUND] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_extern] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1576), + [anon_sym_COLON_COLON] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_DOT_DOT] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_move] = ACTIONS(1578), + [sym_integer_literal] = ACTIONS(1576), + [aux_sym_string_literal_token1] = ACTIONS(1576), + [sym_char_literal] = ACTIONS(1576), + [anon_sym_true] = ACTIONS(1578), + [anon_sym_false] = ACTIONS(1578), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1576), + [sym_raw_string_literal] = ACTIONS(1576), + [sym_float_literal] = ACTIONS(1576), [sym_block_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1598), - [sym_identifier] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_macro_rules_BANG] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_STAR] = ACTIONS(1598), - [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_SQUOTE] = ACTIONS(1600), - [anon_sym_async] = 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_while] = ACTIONS(1600), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1598), - [anon_sym_extern] = ACTIONS(1600), - [anon_sym_LT] = ACTIONS(1598), - [anon_sym_COLON_COLON] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1598), - [anon_sym_DOT_DOT] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_yield] = ACTIONS(1600), - [anon_sym_move] = ACTIONS(1600), - [sym_integer_literal] = ACTIONS(1598), - [aux_sym_string_literal_token1] = ACTIONS(1598), - [sym_char_literal] = ACTIONS(1598), - [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(1598), - [sym_raw_string_literal] = ACTIONS(1598), - [sym_float_literal] = ACTIONS(1598), + [ts_builtin_sym_end] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_macro_rules_BANG] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [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_SQUOTE] = ACTIONS(1582), + [anon_sym_async] = 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_while] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_COLON_COLON] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_yield] = ACTIONS(1582), + [anon_sym_move] = ACTIONS(1582), + [sym_integer_literal] = ACTIONS(1580), + [aux_sym_string_literal_token1] = ACTIONS(1580), + [sym_char_literal] = ACTIONS(1580), + [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(1580), + [sym_raw_string_literal] = ACTIONS(1580), + [sym_float_literal] = ACTIONS(1580), [sym_block_comment] = ACTIONS(3), }, [377] = { + [ts_builtin_sym_end] = ACTIONS(1584), + [sym_identifier] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_macro_rules_BANG] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [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_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = 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_while] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_extern] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_COLON_COLON] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_yield] = ACTIONS(1586), + [anon_sym_move] = ACTIONS(1586), + [sym_integer_literal] = ACTIONS(1584), + [aux_sym_string_literal_token1] = ACTIONS(1584), + [sym_char_literal] = ACTIONS(1584), + [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(1584), + [sym_raw_string_literal] = ACTIONS(1584), + [sym_float_literal] = ACTIONS(1584), + [sym_block_comment] = ACTIONS(3), + }, + [378] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_macro_rules_BANG] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [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_SQUOTE] = ACTIONS(1590), + [anon_sym_async] = 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_while] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_extern] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_yield] = ACTIONS(1590), + [anon_sym_move] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(1588), + [aux_sym_string_literal_token1] = ACTIONS(1588), + [sym_char_literal] = ACTIONS(1588), + [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(1588), + [sym_raw_string_literal] = ACTIONS(1588), + [sym_float_literal] = ACTIONS(1588), + [sym_block_comment] = ACTIONS(3), + }, + [379] = { + [ts_builtin_sym_end] = ACTIONS(1592), + [sym_identifier] = ACTIONS(1594), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_macro_rules_BANG] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_u8] = ACTIONS(1594), + [anon_sym_i8] = ACTIONS(1594), + [anon_sym_u16] = ACTIONS(1594), + [anon_sym_i16] = ACTIONS(1594), + [anon_sym_u32] = ACTIONS(1594), + [anon_sym_i32] = ACTIONS(1594), + [anon_sym_u64] = ACTIONS(1594), + [anon_sym_i64] = ACTIONS(1594), + [anon_sym_u128] = ACTIONS(1594), + [anon_sym_i128] = ACTIONS(1594), + [anon_sym_isize] = ACTIONS(1594), + [anon_sym_usize] = ACTIONS(1594), + [anon_sym_f32] = ACTIONS(1594), + [anon_sym_f64] = ACTIONS(1594), + [anon_sym_bool] = ACTIONS(1594), + [anon_sym_str] = ACTIONS(1594), + [anon_sym_char] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1594), + [anon_sym_break] = ACTIONS(1594), + [anon_sym_const] = ACTIONS(1594), + [anon_sym_continue] = ACTIONS(1594), + [anon_sym_default] = ACTIONS(1594), + [anon_sym_enum] = ACTIONS(1594), + [anon_sym_fn] = ACTIONS(1594), + [anon_sym_for] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1594), + [anon_sym_impl] = ACTIONS(1594), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_loop] = ACTIONS(1594), + [anon_sym_match] = ACTIONS(1594), + [anon_sym_mod] = ACTIONS(1594), + [anon_sym_pub] = ACTIONS(1594), + [anon_sym_return] = ACTIONS(1594), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_struct] = ACTIONS(1594), + [anon_sym_trait] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_union] = ACTIONS(1594), + [anon_sym_unsafe] = ACTIONS(1594), + [anon_sym_use] = ACTIONS(1594), + [anon_sym_while] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_extern] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_DOT_DOT] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_yield] = ACTIONS(1594), + [anon_sym_move] = ACTIONS(1594), + [sym_integer_literal] = ACTIONS(1592), + [aux_sym_string_literal_token1] = ACTIONS(1592), + [sym_char_literal] = ACTIONS(1592), + [anon_sym_true] = ACTIONS(1594), + [anon_sym_false] = ACTIONS(1594), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1594), + [sym_super] = ACTIONS(1594), + [sym_crate] = ACTIONS(1594), + [sym_metavariable] = ACTIONS(1592), + [sym_raw_string_literal] = ACTIONS(1592), + [sym_float_literal] = ACTIONS(1592), + [sym_block_comment] = ACTIONS(3), + }, + [380] = { + [ts_builtin_sym_end] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_macro_rules_BANG] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_u8] = ACTIONS(1598), + [anon_sym_i8] = ACTIONS(1598), + [anon_sym_u16] = ACTIONS(1598), + [anon_sym_i16] = ACTIONS(1598), + [anon_sym_u32] = ACTIONS(1598), + [anon_sym_i32] = ACTIONS(1598), + [anon_sym_u64] = ACTIONS(1598), + [anon_sym_i64] = ACTIONS(1598), + [anon_sym_u128] = ACTIONS(1598), + [anon_sym_i128] = ACTIONS(1598), + [anon_sym_isize] = ACTIONS(1598), + [anon_sym_usize] = ACTIONS(1598), + [anon_sym_f32] = ACTIONS(1598), + [anon_sym_f64] = ACTIONS(1598), + [anon_sym_bool] = ACTIONS(1598), + [anon_sym_str] = ACTIONS(1598), + [anon_sym_char] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1598), + [anon_sym_async] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_const] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_default] = ACTIONS(1598), + [anon_sym_enum] = ACTIONS(1598), + [anon_sym_fn] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_impl] = ACTIONS(1598), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_loop] = ACTIONS(1598), + [anon_sym_match] = ACTIONS(1598), + [anon_sym_mod] = ACTIONS(1598), + [anon_sym_pub] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_struct] = ACTIONS(1598), + [anon_sym_trait] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_union] = ACTIONS(1598), + [anon_sym_unsafe] = ACTIONS(1598), + [anon_sym_use] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_extern] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_COLON_COLON] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_yield] = ACTIONS(1598), + [anon_sym_move] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(1596), + [aux_sym_string_literal_token1] = ACTIONS(1596), + [sym_char_literal] = ACTIONS(1596), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1598), + [sym_super] = ACTIONS(1598), + [sym_crate] = ACTIONS(1598), + [sym_metavariable] = ACTIONS(1596), + [sym_raw_string_literal] = ACTIONS(1596), + [sym_float_literal] = ACTIONS(1596), + [sym_block_comment] = ACTIONS(3), + }, + [381] = { + [sym_attribute_item] = STATE(554), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_macro_invocation] = STATE(2537), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier] = STATE(1941), + [sym_match_arm] = STATE(504), + [sym_last_match_arm] = STATE(2528), + [sym_match_pattern] = STATE(2393), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1956), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_enum_variant_list_repeat1] = STATE(554), + [aux_sym_match_block_repeat1] = STATE(504), + [sym_identifier] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1164), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [382] = { [ts_builtin_sym_end] = ACTIONS(1602), [sym_identifier] = ACTIONS(1604), [anon_sym_SEMI] = ACTIONS(1602), @@ -51185,7 +52974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1602), [sym_block_comment] = ACTIONS(3), }, - [378] = { + [383] = { [ts_builtin_sym_end] = ACTIONS(1606), [sym_identifier] = ACTIONS(1608), [anon_sym_SEMI] = ACTIONS(1606), @@ -51262,7 +53051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1606), [sym_block_comment] = ACTIONS(3), }, - [379] = { + [384] = { [ts_builtin_sym_end] = ACTIONS(1610), [sym_identifier] = ACTIONS(1612), [anon_sym_SEMI] = ACTIONS(1610), @@ -51339,7 +53128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1610), [sym_block_comment] = ACTIONS(3), }, - [380] = { + [385] = { [ts_builtin_sym_end] = ACTIONS(1614), [sym_identifier] = ACTIONS(1616), [anon_sym_SEMI] = ACTIONS(1614), @@ -51416,5474 +53205,5012 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1614), [sym_block_comment] = ACTIONS(3), }, - [381] = { - [sym_attribute_item] = STATE(548), - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_macro_invocation] = STATE(2349), - [sym_scoped_identifier] = STATE(1578), - [sym_scoped_type_identifier] = STATE(1974), - [sym_match_arm] = STATE(491), - [sym_last_match_arm] = STATE(2544), - [sym_match_pattern] = STATE(2359), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2070), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(491), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RBRACE] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [382] = { - [ts_builtin_sym_end] = ACTIONS(1620), - [sym_identifier] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_macro_rules_BANG] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_u8] = ACTIONS(1622), - [anon_sym_i8] = ACTIONS(1622), - [anon_sym_u16] = ACTIONS(1622), - [anon_sym_i16] = ACTIONS(1622), - [anon_sym_u32] = ACTIONS(1622), - [anon_sym_i32] = ACTIONS(1622), - [anon_sym_u64] = ACTIONS(1622), - [anon_sym_i64] = ACTIONS(1622), - [anon_sym_u128] = ACTIONS(1622), - [anon_sym_i128] = ACTIONS(1622), - [anon_sym_isize] = ACTIONS(1622), - [anon_sym_usize] = ACTIONS(1622), - [anon_sym_f32] = ACTIONS(1622), - [anon_sym_f64] = ACTIONS(1622), - [anon_sym_bool] = ACTIONS(1622), - [anon_sym_str] = ACTIONS(1622), - [anon_sym_char] = ACTIONS(1622), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_async] = ACTIONS(1622), - [anon_sym_break] = ACTIONS(1622), - [anon_sym_const] = ACTIONS(1622), - [anon_sym_continue] = ACTIONS(1622), - [anon_sym_default] = ACTIONS(1622), - [anon_sym_enum] = ACTIONS(1622), - [anon_sym_fn] = ACTIONS(1622), - [anon_sym_for] = ACTIONS(1622), - [anon_sym_if] = ACTIONS(1622), - [anon_sym_impl] = ACTIONS(1622), - [anon_sym_let] = ACTIONS(1622), - [anon_sym_loop] = ACTIONS(1622), - [anon_sym_match] = ACTIONS(1622), - [anon_sym_mod] = ACTIONS(1622), - [anon_sym_pub] = ACTIONS(1622), - [anon_sym_return] = ACTIONS(1622), - [anon_sym_static] = ACTIONS(1622), - [anon_sym_struct] = ACTIONS(1622), - [anon_sym_trait] = ACTIONS(1622), - [anon_sym_type] = ACTIONS(1622), - [anon_sym_union] = ACTIONS(1622), - [anon_sym_unsafe] = ACTIONS(1622), - [anon_sym_use] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1622), - [anon_sym_POUND] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1620), - [anon_sym_extern] = ACTIONS(1622), - [anon_sym_LT] = ACTIONS(1620), - [anon_sym_COLON_COLON] = ACTIONS(1620), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_yield] = ACTIONS(1622), - [anon_sym_move] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(1620), - [aux_sym_string_literal_token1] = ACTIONS(1620), - [sym_char_literal] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1622), - [sym_super] = ACTIONS(1622), - [sym_crate] = ACTIONS(1622), - [sym_metavariable] = ACTIONS(1620), - [sym_raw_string_literal] = ACTIONS(1620), - [sym_float_literal] = ACTIONS(1620), - [sym_block_comment] = ACTIONS(3), - }, - [383] = { - [ts_builtin_sym_end] = ACTIONS(1624), - [sym_identifier] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1624), - [anon_sym_macro_rules_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1624), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_u8] = ACTIONS(1626), - [anon_sym_i8] = ACTIONS(1626), - [anon_sym_u16] = ACTIONS(1626), - [anon_sym_i16] = ACTIONS(1626), - [anon_sym_u32] = ACTIONS(1626), - [anon_sym_i32] = ACTIONS(1626), - [anon_sym_u64] = ACTIONS(1626), - [anon_sym_i64] = ACTIONS(1626), - [anon_sym_u128] = ACTIONS(1626), - [anon_sym_i128] = ACTIONS(1626), - [anon_sym_isize] = ACTIONS(1626), - [anon_sym_usize] = ACTIONS(1626), - [anon_sym_f32] = ACTIONS(1626), - [anon_sym_f64] = ACTIONS(1626), - [anon_sym_bool] = ACTIONS(1626), - [anon_sym_str] = ACTIONS(1626), - [anon_sym_char] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_async] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_default] = ACTIONS(1626), - [anon_sym_enum] = ACTIONS(1626), - [anon_sym_fn] = ACTIONS(1626), - [anon_sym_for] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_impl] = ACTIONS(1626), - [anon_sym_let] = ACTIONS(1626), - [anon_sym_loop] = ACTIONS(1626), - [anon_sym_match] = ACTIONS(1626), - [anon_sym_mod] = ACTIONS(1626), - [anon_sym_pub] = ACTIONS(1626), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_static] = ACTIONS(1626), - [anon_sym_struct] = ACTIONS(1626), - [anon_sym_trait] = ACTIONS(1626), - [anon_sym_type] = ACTIONS(1626), - [anon_sym_union] = ACTIONS(1626), - [anon_sym_unsafe] = ACTIONS(1626), - [anon_sym_use] = ACTIONS(1626), - [anon_sym_while] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_extern] = ACTIONS(1626), - [anon_sym_LT] = ACTIONS(1624), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1624), - [anon_sym_DOT_DOT] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_PIPE] = ACTIONS(1624), - [anon_sym_yield] = ACTIONS(1626), - [anon_sym_move] = ACTIONS(1626), - [sym_integer_literal] = ACTIONS(1624), - [aux_sym_string_literal_token1] = ACTIONS(1624), - [sym_char_literal] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1626), - [anon_sym_false] = ACTIONS(1626), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1626), - [sym_super] = ACTIONS(1626), - [sym_crate] = ACTIONS(1626), - [sym_metavariable] = ACTIONS(1624), - [sym_raw_string_literal] = ACTIONS(1624), - [sym_float_literal] = ACTIONS(1624), - [sym_block_comment] = ACTIONS(3), - }, - [384] = { - [ts_builtin_sym_end] = ACTIONS(1628), - [sym_identifier] = ACTIONS(1630), - [anon_sym_SEMI] = ACTIONS(1628), - [anon_sym_macro_rules_BANG] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_u8] = ACTIONS(1630), - [anon_sym_i8] = ACTIONS(1630), - [anon_sym_u16] = ACTIONS(1630), - [anon_sym_i16] = ACTIONS(1630), - [anon_sym_u32] = ACTIONS(1630), - [anon_sym_i32] = ACTIONS(1630), - [anon_sym_u64] = ACTIONS(1630), - [anon_sym_i64] = ACTIONS(1630), - [anon_sym_u128] = ACTIONS(1630), - [anon_sym_i128] = ACTIONS(1630), - [anon_sym_isize] = ACTIONS(1630), - [anon_sym_usize] = ACTIONS(1630), - [anon_sym_f32] = ACTIONS(1630), - [anon_sym_f64] = ACTIONS(1630), - [anon_sym_bool] = ACTIONS(1630), - [anon_sym_str] = ACTIONS(1630), - [anon_sym_char] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_break] = ACTIONS(1630), - [anon_sym_const] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(1630), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_enum] = ACTIONS(1630), - [anon_sym_fn] = ACTIONS(1630), - [anon_sym_for] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1630), - [anon_sym_impl] = ACTIONS(1630), - [anon_sym_let] = ACTIONS(1630), - [anon_sym_loop] = ACTIONS(1630), - [anon_sym_match] = ACTIONS(1630), - [anon_sym_mod] = ACTIONS(1630), - [anon_sym_pub] = ACTIONS(1630), - [anon_sym_return] = ACTIONS(1630), - [anon_sym_static] = ACTIONS(1630), - [anon_sym_struct] = ACTIONS(1630), - [anon_sym_trait] = ACTIONS(1630), - [anon_sym_type] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_unsafe] = ACTIONS(1630), - [anon_sym_use] = ACTIONS(1630), - [anon_sym_while] = ACTIONS(1630), - [anon_sym_POUND] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1628), - [anon_sym_extern] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(1628), - [anon_sym_COLON_COLON] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1628), - [anon_sym_DOT_DOT] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_PIPE] = ACTIONS(1628), - [anon_sym_yield] = ACTIONS(1630), - [anon_sym_move] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(1628), - [aux_sym_string_literal_token1] = ACTIONS(1628), - [sym_char_literal] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1630), - [anon_sym_false] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1630), - [sym_super] = ACTIONS(1630), - [sym_crate] = ACTIONS(1630), - [sym_metavariable] = ACTIONS(1628), - [sym_raw_string_literal] = ACTIONS(1628), - [sym_float_literal] = ACTIONS(1628), - [sym_block_comment] = ACTIONS(3), - }, - [385] = { - [ts_builtin_sym_end] = ACTIONS(1632), - [sym_identifier] = ACTIONS(1634), - [anon_sym_SEMI] = ACTIONS(1632), - [anon_sym_macro_rules_BANG] = ACTIONS(1632), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_RBRACE] = ACTIONS(1632), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1632), - [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_SQUOTE] = ACTIONS(1634), - [anon_sym_async] = 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_while] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1632), - [anon_sym_extern] = ACTIONS(1634), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_COLON_COLON] = ACTIONS(1632), - [anon_sym_AMP] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_yield] = ACTIONS(1634), - [anon_sym_move] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1632), - [aux_sym_string_literal_token1] = ACTIONS(1632), - [sym_char_literal] = ACTIONS(1632), - [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(1632), - [sym_raw_string_literal] = ACTIONS(1632), - [sym_float_literal] = ACTIONS(1632), - [sym_block_comment] = ACTIONS(3), - }, [386] = { - [ts_builtin_sym_end] = ACTIONS(1636), - [sym_identifier] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_macro_rules_BANG] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1636), - [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_SQUOTE] = ACTIONS(1638), - [anon_sym_async] = 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_while] = ACTIONS(1638), - [anon_sym_POUND] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_extern] = ACTIONS(1638), - [anon_sym_LT] = ACTIONS(1636), - [anon_sym_COLON_COLON] = ACTIONS(1636), - [anon_sym_AMP] = ACTIONS(1636), - [anon_sym_DOT_DOT] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_yield] = ACTIONS(1638), - [anon_sym_move] = ACTIONS(1638), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1636), - [sym_char_literal] = ACTIONS(1636), - [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(1636), - [sym_raw_string_literal] = ACTIONS(1636), - [sym_float_literal] = ACTIONS(1636), + [ts_builtin_sym_end] = ACTIONS(1618), + [sym_identifier] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_macro_rules_BANG] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1618), + [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_SQUOTE] = ACTIONS(1620), + [anon_sym_async] = 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_while] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(1618), + [anon_sym_BANG] = ACTIONS(1618), + [anon_sym_extern] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_COLON_COLON] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1618), + [anon_sym_DOT_DOT] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_yield] = ACTIONS(1620), + [anon_sym_move] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(1618), + [aux_sym_string_literal_token1] = ACTIONS(1618), + [sym_char_literal] = ACTIONS(1618), + [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(1618), + [sym_raw_string_literal] = ACTIONS(1618), + [sym_float_literal] = ACTIONS(1618), [sym_block_comment] = ACTIONS(3), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(1640), - [sym_identifier] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_macro_rules_BANG] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1640), - [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_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_enum] = ACTIONS(1642), - [anon_sym_fn] = ACTIONS(1642), - [anon_sym_for] = ACTIONS(1642), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1642), - [anon_sym_let] = ACTIONS(1642), - [anon_sym_loop] = ACTIONS(1642), - [anon_sym_match] = ACTIONS(1642), - [anon_sym_mod] = ACTIONS(1642), - [anon_sym_pub] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1642), - [anon_sym_static] = ACTIONS(1642), - [anon_sym_struct] = ACTIONS(1642), - [anon_sym_trait] = ACTIONS(1642), - [anon_sym_type] = ACTIONS(1642), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_use] = ACTIONS(1642), - [anon_sym_while] = ACTIONS(1642), - [anon_sym_POUND] = ACTIONS(1640), - [anon_sym_BANG] = ACTIONS(1640), - [anon_sym_extern] = ACTIONS(1642), - [anon_sym_LT] = ACTIONS(1640), - [anon_sym_COLON_COLON] = ACTIONS(1640), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_DOT_DOT] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_move] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1640), - [aux_sym_string_literal_token1] = ACTIONS(1640), - [sym_char_literal] = ACTIONS(1640), - [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(1640), - [sym_raw_string_literal] = ACTIONS(1640), - [sym_float_literal] = ACTIONS(1640), + [ts_builtin_sym_end] = ACTIONS(1622), + [sym_identifier] = ACTIONS(1624), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_macro_rules_BANG] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1622), + [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_SQUOTE] = ACTIONS(1624), + [anon_sym_async] = 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_while] = ACTIONS(1624), + [anon_sym_POUND] = ACTIONS(1622), + [anon_sym_BANG] = ACTIONS(1622), + [anon_sym_extern] = ACTIONS(1624), + [anon_sym_LT] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(1622), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_DOT_DOT] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_yield] = ACTIONS(1624), + [anon_sym_move] = ACTIONS(1624), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1622), + [sym_char_literal] = ACTIONS(1622), + [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(1622), + [sym_raw_string_literal] = ACTIONS(1622), + [sym_float_literal] = ACTIONS(1622), [sym_block_comment] = ACTIONS(3), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(1644), - [sym_identifier] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_macro_rules_BANG] = ACTIONS(1644), - [anon_sym_LPAREN] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1644), - [anon_sym_RBRACE] = ACTIONS(1644), - [anon_sym_LBRACK] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1644), - [anon_sym_u8] = ACTIONS(1646), - [anon_sym_i8] = ACTIONS(1646), - [anon_sym_u16] = ACTIONS(1646), - [anon_sym_i16] = ACTIONS(1646), - [anon_sym_u32] = ACTIONS(1646), - [anon_sym_i32] = ACTIONS(1646), - [anon_sym_u64] = ACTIONS(1646), - [anon_sym_i64] = ACTIONS(1646), - [anon_sym_u128] = ACTIONS(1646), - [anon_sym_i128] = ACTIONS(1646), - [anon_sym_isize] = ACTIONS(1646), - [anon_sym_usize] = ACTIONS(1646), - [anon_sym_f32] = ACTIONS(1646), - [anon_sym_f64] = ACTIONS(1646), - [anon_sym_bool] = ACTIONS(1646), - [anon_sym_str] = ACTIONS(1646), - [anon_sym_char] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1646), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1646), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_enum] = ACTIONS(1646), - [anon_sym_fn] = ACTIONS(1646), - [anon_sym_for] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1646), - [anon_sym_impl] = ACTIONS(1646), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_loop] = ACTIONS(1646), - [anon_sym_match] = ACTIONS(1646), - [anon_sym_mod] = ACTIONS(1646), - [anon_sym_pub] = ACTIONS(1646), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1646), - [anon_sym_trait] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_union] = ACTIONS(1646), - [anon_sym_unsafe] = ACTIONS(1646), - [anon_sym_use] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [anon_sym_POUND] = ACTIONS(1644), - [anon_sym_BANG] = ACTIONS(1644), - [anon_sym_extern] = ACTIONS(1646), - [anon_sym_LT] = ACTIONS(1644), - [anon_sym_COLON_COLON] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_DOT_DOT] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_PIPE] = ACTIONS(1644), - [anon_sym_yield] = ACTIONS(1646), - [anon_sym_move] = ACTIONS(1646), - [sym_integer_literal] = ACTIONS(1644), - [aux_sym_string_literal_token1] = ACTIONS(1644), - [sym_char_literal] = ACTIONS(1644), - [anon_sym_true] = ACTIONS(1646), - [anon_sym_false] = ACTIONS(1646), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1646), - [sym_super] = ACTIONS(1646), - [sym_crate] = ACTIONS(1646), - [sym_metavariable] = ACTIONS(1644), - [sym_raw_string_literal] = ACTIONS(1644), - [sym_float_literal] = ACTIONS(1644), + [ts_builtin_sym_end] = ACTIONS(1626), + [sym_identifier] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1626), + [anon_sym_macro_rules_BANG] = ACTIONS(1626), + [anon_sym_LPAREN] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_RBRACE] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_STAR] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = 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_while] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(1626), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_extern] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_DOT_DOT] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1626), + [anon_sym_yield] = ACTIONS(1628), + [anon_sym_move] = ACTIONS(1628), + [sym_integer_literal] = ACTIONS(1626), + [aux_sym_string_literal_token1] = ACTIONS(1626), + [sym_char_literal] = ACTIONS(1626), + [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(1626), + [sym_raw_string_literal] = ACTIONS(1626), + [sym_float_literal] = ACTIONS(1626), [sym_block_comment] = ACTIONS(3), }, [389] = { - [ts_builtin_sym_end] = ACTIONS(1648), - [sym_identifier] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_macro_rules_BANG] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_u8] = ACTIONS(1650), - [anon_sym_i8] = ACTIONS(1650), - [anon_sym_u16] = ACTIONS(1650), - [anon_sym_i16] = ACTIONS(1650), - [anon_sym_u32] = ACTIONS(1650), - [anon_sym_i32] = ACTIONS(1650), - [anon_sym_u64] = ACTIONS(1650), - [anon_sym_i64] = ACTIONS(1650), - [anon_sym_u128] = ACTIONS(1650), - [anon_sym_i128] = ACTIONS(1650), - [anon_sym_isize] = ACTIONS(1650), - [anon_sym_usize] = ACTIONS(1650), - [anon_sym_f32] = ACTIONS(1650), - [anon_sym_f64] = ACTIONS(1650), - [anon_sym_bool] = ACTIONS(1650), - [anon_sym_str] = ACTIONS(1650), - [anon_sym_char] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1650), - [anon_sym_async] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1650), - [anon_sym_default] = ACTIONS(1650), - [anon_sym_enum] = ACTIONS(1650), - [anon_sym_fn] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_impl] = ACTIONS(1650), - [anon_sym_let] = ACTIONS(1650), - [anon_sym_loop] = ACTIONS(1650), - [anon_sym_match] = ACTIONS(1650), - [anon_sym_mod] = ACTIONS(1650), - [anon_sym_pub] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_static] = ACTIONS(1650), - [anon_sym_struct] = ACTIONS(1650), - [anon_sym_trait] = ACTIONS(1650), - [anon_sym_type] = ACTIONS(1650), - [anon_sym_union] = ACTIONS(1650), - [anon_sym_unsafe] = ACTIONS(1650), - [anon_sym_use] = ACTIONS(1650), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_POUND] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1648), - [anon_sym_COLON_COLON] = ACTIONS(1648), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_yield] = ACTIONS(1650), - [anon_sym_move] = ACTIONS(1650), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1648), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1648), - [sym_raw_string_literal] = ACTIONS(1648), - [sym_float_literal] = ACTIONS(1648), + [ts_builtin_sym_end] = ACTIONS(1630), + [sym_identifier] = ACTIONS(1632), + [anon_sym_SEMI] = ACTIONS(1630), + [anon_sym_macro_rules_BANG] = ACTIONS(1630), + [anon_sym_LPAREN] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1630), + [anon_sym_RBRACE] = ACTIONS(1630), + [anon_sym_LBRACK] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(1630), + [anon_sym_u8] = ACTIONS(1632), + [anon_sym_i8] = ACTIONS(1632), + [anon_sym_u16] = ACTIONS(1632), + [anon_sym_i16] = ACTIONS(1632), + [anon_sym_u32] = ACTIONS(1632), + [anon_sym_i32] = ACTIONS(1632), + [anon_sym_u64] = ACTIONS(1632), + [anon_sym_i64] = ACTIONS(1632), + [anon_sym_u128] = ACTIONS(1632), + [anon_sym_i128] = ACTIONS(1632), + [anon_sym_isize] = ACTIONS(1632), + [anon_sym_usize] = ACTIONS(1632), + [anon_sym_f32] = ACTIONS(1632), + [anon_sym_f64] = ACTIONS(1632), + [anon_sym_bool] = ACTIONS(1632), + [anon_sym_str] = ACTIONS(1632), + [anon_sym_char] = ACTIONS(1632), + [anon_sym_SQUOTE] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1632), + [anon_sym_break] = ACTIONS(1632), + [anon_sym_const] = ACTIONS(1632), + [anon_sym_continue] = ACTIONS(1632), + [anon_sym_default] = ACTIONS(1632), + [anon_sym_enum] = ACTIONS(1632), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1632), + [anon_sym_if] = ACTIONS(1632), + [anon_sym_impl] = ACTIONS(1632), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_loop] = ACTIONS(1632), + [anon_sym_match] = ACTIONS(1632), + [anon_sym_mod] = ACTIONS(1632), + [anon_sym_pub] = ACTIONS(1632), + [anon_sym_return] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_struct] = ACTIONS(1632), + [anon_sym_trait] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_union] = ACTIONS(1632), + [anon_sym_unsafe] = ACTIONS(1632), + [anon_sym_use] = ACTIONS(1632), + [anon_sym_while] = ACTIONS(1632), + [anon_sym_POUND] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_extern] = ACTIONS(1632), + [anon_sym_LT] = ACTIONS(1630), + [anon_sym_COLON_COLON] = ACTIONS(1630), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_yield] = ACTIONS(1632), + [anon_sym_move] = ACTIONS(1632), + [sym_integer_literal] = ACTIONS(1630), + [aux_sym_string_literal_token1] = ACTIONS(1630), + [sym_char_literal] = ACTIONS(1630), + [anon_sym_true] = ACTIONS(1632), + [anon_sym_false] = ACTIONS(1632), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1632), + [sym_super] = ACTIONS(1632), + [sym_crate] = ACTIONS(1632), + [sym_metavariable] = ACTIONS(1630), + [sym_raw_string_literal] = ACTIONS(1630), + [sym_float_literal] = ACTIONS(1630), [sym_block_comment] = ACTIONS(3), }, [390] = { - [ts_builtin_sym_end] = ACTIONS(1652), - [sym_identifier] = ACTIONS(1654), - [anon_sym_SEMI] = ACTIONS(1652), - [anon_sym_macro_rules_BANG] = ACTIONS(1652), - [anon_sym_LPAREN] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_RBRACE] = ACTIONS(1652), - [anon_sym_LBRACK] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_u8] = ACTIONS(1654), - [anon_sym_i8] = ACTIONS(1654), - [anon_sym_u16] = ACTIONS(1654), - [anon_sym_i16] = ACTIONS(1654), - [anon_sym_u32] = ACTIONS(1654), - [anon_sym_i32] = ACTIONS(1654), - [anon_sym_u64] = ACTIONS(1654), - [anon_sym_i64] = ACTIONS(1654), - [anon_sym_u128] = ACTIONS(1654), - [anon_sym_i128] = ACTIONS(1654), - [anon_sym_isize] = ACTIONS(1654), - [anon_sym_usize] = ACTIONS(1654), - [anon_sym_f32] = ACTIONS(1654), - [anon_sym_f64] = ACTIONS(1654), - [anon_sym_bool] = ACTIONS(1654), - [anon_sym_str] = ACTIONS(1654), - [anon_sym_char] = ACTIONS(1654), - [anon_sym_SQUOTE] = ACTIONS(1654), - [anon_sym_async] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_const] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_default] = ACTIONS(1654), - [anon_sym_enum] = ACTIONS(1654), - [anon_sym_fn] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_impl] = ACTIONS(1654), - [anon_sym_let] = ACTIONS(1654), - [anon_sym_loop] = ACTIONS(1654), - [anon_sym_match] = ACTIONS(1654), - [anon_sym_mod] = ACTIONS(1654), - [anon_sym_pub] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_static] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1654), - [anon_sym_trait] = ACTIONS(1654), - [anon_sym_type] = ACTIONS(1654), - [anon_sym_union] = ACTIONS(1654), - [anon_sym_unsafe] = ACTIONS(1654), - [anon_sym_use] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [anon_sym_POUND] = ACTIONS(1652), - [anon_sym_BANG] = ACTIONS(1652), - [anon_sym_extern] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_COLON_COLON] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_DOT_DOT] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_yield] = ACTIONS(1654), - [anon_sym_move] = ACTIONS(1654), - [sym_integer_literal] = ACTIONS(1652), - [aux_sym_string_literal_token1] = ACTIONS(1652), - [sym_char_literal] = ACTIONS(1652), - [anon_sym_true] = ACTIONS(1654), - [anon_sym_false] = ACTIONS(1654), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1654), - [sym_super] = ACTIONS(1654), - [sym_crate] = ACTIONS(1654), - [sym_metavariable] = ACTIONS(1652), - [sym_raw_string_literal] = ACTIONS(1652), - [sym_float_literal] = ACTIONS(1652), + [ts_builtin_sym_end] = ACTIONS(1634), + [sym_identifier] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_macro_rules_BANG] = ACTIONS(1634), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1634), + [anon_sym_u8] = ACTIONS(1636), + [anon_sym_i8] = ACTIONS(1636), + [anon_sym_u16] = ACTIONS(1636), + [anon_sym_i16] = ACTIONS(1636), + [anon_sym_u32] = ACTIONS(1636), + [anon_sym_i32] = ACTIONS(1636), + [anon_sym_u64] = ACTIONS(1636), + [anon_sym_i64] = ACTIONS(1636), + [anon_sym_u128] = ACTIONS(1636), + [anon_sym_i128] = ACTIONS(1636), + [anon_sym_isize] = ACTIONS(1636), + [anon_sym_usize] = ACTIONS(1636), + [anon_sym_f32] = ACTIONS(1636), + [anon_sym_f64] = ACTIONS(1636), + [anon_sym_bool] = ACTIONS(1636), + [anon_sym_str] = ACTIONS(1636), + [anon_sym_char] = ACTIONS(1636), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1636), + [anon_sym_break] = ACTIONS(1636), + [anon_sym_const] = ACTIONS(1636), + [anon_sym_continue] = ACTIONS(1636), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_enum] = ACTIONS(1636), + [anon_sym_fn] = ACTIONS(1636), + [anon_sym_for] = ACTIONS(1636), + [anon_sym_if] = ACTIONS(1636), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_let] = ACTIONS(1636), + [anon_sym_loop] = ACTIONS(1636), + [anon_sym_match] = ACTIONS(1636), + [anon_sym_mod] = ACTIONS(1636), + [anon_sym_pub] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1636), + [anon_sym_struct] = ACTIONS(1636), + [anon_sym_trait] = ACTIONS(1636), + [anon_sym_type] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1636), + [anon_sym_unsafe] = ACTIONS(1636), + [anon_sym_use] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(1634), + [anon_sym_BANG] = ACTIONS(1634), + [anon_sym_extern] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1634), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1634), + [anon_sym_DOT_DOT] = ACTIONS(1634), + [anon_sym_DASH] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1634), + [anon_sym_yield] = ACTIONS(1636), + [anon_sym_move] = ACTIONS(1636), + [sym_integer_literal] = ACTIONS(1634), + [aux_sym_string_literal_token1] = ACTIONS(1634), + [sym_char_literal] = ACTIONS(1634), + [anon_sym_true] = ACTIONS(1636), + [anon_sym_false] = ACTIONS(1636), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1636), + [sym_super] = ACTIONS(1636), + [sym_crate] = ACTIONS(1636), + [sym_metavariable] = ACTIONS(1634), + [sym_raw_string_literal] = ACTIONS(1634), + [sym_float_literal] = ACTIONS(1634), [sym_block_comment] = ACTIONS(3), }, [391] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [sym_identifier] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_macro_rules_BANG] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_u8] = ACTIONS(1658), - [anon_sym_i8] = ACTIONS(1658), - [anon_sym_u16] = ACTIONS(1658), - [anon_sym_i16] = ACTIONS(1658), - [anon_sym_u32] = ACTIONS(1658), - [anon_sym_i32] = ACTIONS(1658), - [anon_sym_u64] = ACTIONS(1658), - [anon_sym_i64] = ACTIONS(1658), - [anon_sym_u128] = ACTIONS(1658), - [anon_sym_i128] = ACTIONS(1658), - [anon_sym_isize] = ACTIONS(1658), - [anon_sym_usize] = ACTIONS(1658), - [anon_sym_f32] = ACTIONS(1658), - [anon_sym_f64] = ACTIONS(1658), - [anon_sym_bool] = ACTIONS(1658), - [anon_sym_str] = ACTIONS(1658), - [anon_sym_char] = ACTIONS(1658), - [anon_sym_SQUOTE] = ACTIONS(1658), - [anon_sym_async] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_continue] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1658), - [anon_sym_fn] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_impl] = ACTIONS(1658), - [anon_sym_let] = ACTIONS(1658), - [anon_sym_loop] = ACTIONS(1658), - [anon_sym_match] = ACTIONS(1658), - [anon_sym_mod] = ACTIONS(1658), - [anon_sym_pub] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_static] = ACTIONS(1658), - [anon_sym_struct] = ACTIONS(1658), - [anon_sym_trait] = ACTIONS(1658), - [anon_sym_type] = ACTIONS(1658), - [anon_sym_union] = ACTIONS(1658), - [anon_sym_unsafe] = ACTIONS(1658), - [anon_sym_use] = ACTIONS(1658), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_COLON_COLON] = ACTIONS(1656), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_DOT_DOT] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_yield] = ACTIONS(1658), - [anon_sym_move] = ACTIONS(1658), - [sym_integer_literal] = ACTIONS(1656), - [aux_sym_string_literal_token1] = ACTIONS(1656), - [sym_char_literal] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1658), - [anon_sym_false] = ACTIONS(1658), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1658), - [sym_super] = ACTIONS(1658), - [sym_crate] = ACTIONS(1658), - [sym_metavariable] = ACTIONS(1656), - [sym_raw_string_literal] = ACTIONS(1656), - [sym_float_literal] = ACTIONS(1656), + [ts_builtin_sym_end] = ACTIONS(1638), + [sym_identifier] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_macro_rules_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_LBRACE] = ACTIONS(1638), + [anon_sym_RBRACE] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1638), + [anon_sym_u8] = ACTIONS(1640), + [anon_sym_i8] = ACTIONS(1640), + [anon_sym_u16] = ACTIONS(1640), + [anon_sym_i16] = ACTIONS(1640), + [anon_sym_u32] = ACTIONS(1640), + [anon_sym_i32] = ACTIONS(1640), + [anon_sym_u64] = ACTIONS(1640), + [anon_sym_i64] = ACTIONS(1640), + [anon_sym_u128] = ACTIONS(1640), + [anon_sym_i128] = ACTIONS(1640), + [anon_sym_isize] = ACTIONS(1640), + [anon_sym_usize] = ACTIONS(1640), + [anon_sym_f32] = ACTIONS(1640), + [anon_sym_f64] = ACTIONS(1640), + [anon_sym_bool] = ACTIONS(1640), + [anon_sym_str] = ACTIONS(1640), + [anon_sym_char] = ACTIONS(1640), + [anon_sym_SQUOTE] = ACTIONS(1640), + [anon_sym_async] = ACTIONS(1640), + [anon_sym_break] = ACTIONS(1640), + [anon_sym_const] = ACTIONS(1640), + [anon_sym_continue] = ACTIONS(1640), + [anon_sym_default] = ACTIONS(1640), + [anon_sym_enum] = ACTIONS(1640), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1640), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_impl] = ACTIONS(1640), + [anon_sym_let] = ACTIONS(1640), + [anon_sym_loop] = ACTIONS(1640), + [anon_sym_match] = ACTIONS(1640), + [anon_sym_mod] = ACTIONS(1640), + [anon_sym_pub] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1640), + [anon_sym_static] = ACTIONS(1640), + [anon_sym_struct] = ACTIONS(1640), + [anon_sym_trait] = ACTIONS(1640), + [anon_sym_type] = ACTIONS(1640), + [anon_sym_union] = ACTIONS(1640), + [anon_sym_unsafe] = ACTIONS(1640), + [anon_sym_use] = ACTIONS(1640), + [anon_sym_while] = ACTIONS(1640), + [anon_sym_POUND] = ACTIONS(1638), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_extern] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_COLON_COLON] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_DOT_DOT] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_move] = ACTIONS(1640), + [sym_integer_literal] = ACTIONS(1638), + [aux_sym_string_literal_token1] = ACTIONS(1638), + [sym_char_literal] = ACTIONS(1638), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1640), + [sym_super] = ACTIONS(1640), + [sym_crate] = ACTIONS(1640), + [sym_metavariable] = ACTIONS(1638), + [sym_raw_string_literal] = ACTIONS(1638), + [sym_float_literal] = ACTIONS(1638), [sym_block_comment] = ACTIONS(3), }, [392] = { - [ts_builtin_sym_end] = ACTIONS(1660), - [sym_identifier] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_macro_rules_BANG] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1660), - [anon_sym_u8] = ACTIONS(1662), - [anon_sym_i8] = ACTIONS(1662), - [anon_sym_u16] = ACTIONS(1662), - [anon_sym_i16] = ACTIONS(1662), - [anon_sym_u32] = ACTIONS(1662), - [anon_sym_i32] = ACTIONS(1662), - [anon_sym_u64] = ACTIONS(1662), - [anon_sym_i64] = ACTIONS(1662), - [anon_sym_u128] = ACTIONS(1662), - [anon_sym_i128] = ACTIONS(1662), - [anon_sym_isize] = ACTIONS(1662), - [anon_sym_usize] = ACTIONS(1662), - [anon_sym_f32] = ACTIONS(1662), - [anon_sym_f64] = ACTIONS(1662), - [anon_sym_bool] = ACTIONS(1662), - [anon_sym_str] = ACTIONS(1662), - [anon_sym_char] = ACTIONS(1662), - [anon_sym_SQUOTE] = ACTIONS(1662), - [anon_sym_async] = ACTIONS(1662), - [anon_sym_break] = ACTIONS(1662), - [anon_sym_const] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(1662), - [anon_sym_default] = ACTIONS(1662), - [anon_sym_enum] = ACTIONS(1662), - [anon_sym_fn] = ACTIONS(1662), - [anon_sym_for] = ACTIONS(1662), - [anon_sym_if] = ACTIONS(1662), - [anon_sym_impl] = ACTIONS(1662), - [anon_sym_let] = ACTIONS(1662), - [anon_sym_loop] = ACTIONS(1662), - [anon_sym_match] = ACTIONS(1662), - [anon_sym_mod] = ACTIONS(1662), - [anon_sym_pub] = ACTIONS(1662), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_static] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(1662), - [anon_sym_trait] = ACTIONS(1662), - [anon_sym_type] = ACTIONS(1662), - [anon_sym_union] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1662), - [anon_sym_use] = ACTIONS(1662), - [anon_sym_while] = ACTIONS(1662), - [anon_sym_POUND] = ACTIONS(1660), - [anon_sym_BANG] = ACTIONS(1660), - [anon_sym_extern] = ACTIONS(1662), - [anon_sym_LT] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1660), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_DOT_DOT] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_PIPE] = ACTIONS(1660), - [anon_sym_yield] = ACTIONS(1662), - [anon_sym_move] = ACTIONS(1662), - [sym_integer_literal] = ACTIONS(1660), - [aux_sym_string_literal_token1] = ACTIONS(1660), - [sym_char_literal] = ACTIONS(1660), - [anon_sym_true] = ACTIONS(1662), - [anon_sym_false] = ACTIONS(1662), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1662), - [sym_super] = ACTIONS(1662), - [sym_crate] = ACTIONS(1662), - [sym_metavariable] = ACTIONS(1660), - [sym_raw_string_literal] = ACTIONS(1660), - [sym_float_literal] = ACTIONS(1660), + [ts_builtin_sym_end] = ACTIONS(1642), + [sym_identifier] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_macro_rules_BANG] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_LBRACE] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_STAR] = ACTIONS(1642), + [anon_sym_u8] = ACTIONS(1644), + [anon_sym_i8] = ACTIONS(1644), + [anon_sym_u16] = ACTIONS(1644), + [anon_sym_i16] = ACTIONS(1644), + [anon_sym_u32] = ACTIONS(1644), + [anon_sym_i32] = ACTIONS(1644), + [anon_sym_u64] = ACTIONS(1644), + [anon_sym_i64] = ACTIONS(1644), + [anon_sym_u128] = ACTIONS(1644), + [anon_sym_i128] = ACTIONS(1644), + [anon_sym_isize] = ACTIONS(1644), + [anon_sym_usize] = ACTIONS(1644), + [anon_sym_f32] = ACTIONS(1644), + [anon_sym_f64] = ACTIONS(1644), + [anon_sym_bool] = ACTIONS(1644), + [anon_sym_str] = ACTIONS(1644), + [anon_sym_char] = ACTIONS(1644), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_break] = ACTIONS(1644), + [anon_sym_const] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(1644), + [anon_sym_default] = ACTIONS(1644), + [anon_sym_enum] = ACTIONS(1644), + [anon_sym_fn] = ACTIONS(1644), + [anon_sym_for] = ACTIONS(1644), + [anon_sym_if] = ACTIONS(1644), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_let] = ACTIONS(1644), + [anon_sym_loop] = ACTIONS(1644), + [anon_sym_match] = ACTIONS(1644), + [anon_sym_mod] = ACTIONS(1644), + [anon_sym_pub] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_static] = ACTIONS(1644), + [anon_sym_struct] = ACTIONS(1644), + [anon_sym_trait] = ACTIONS(1644), + [anon_sym_type] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1644), + [anon_sym_unsafe] = ACTIONS(1644), + [anon_sym_use] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1644), + [anon_sym_POUND] = ACTIONS(1642), + [anon_sym_BANG] = ACTIONS(1642), + [anon_sym_extern] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_COLON_COLON] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1642), + [anon_sym_DOT_DOT] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_yield] = ACTIONS(1644), + [anon_sym_move] = ACTIONS(1644), + [sym_integer_literal] = ACTIONS(1642), + [aux_sym_string_literal_token1] = ACTIONS(1642), + [sym_char_literal] = ACTIONS(1642), + [anon_sym_true] = ACTIONS(1644), + [anon_sym_false] = ACTIONS(1644), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1644), + [sym_super] = ACTIONS(1644), + [sym_crate] = ACTIONS(1644), + [sym_metavariable] = ACTIONS(1642), + [sym_raw_string_literal] = ACTIONS(1642), + [sym_float_literal] = ACTIONS(1642), [sym_block_comment] = ACTIONS(3), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(1664), - [sym_identifier] = ACTIONS(1666), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_macro_rules_BANG] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_u8] = ACTIONS(1666), - [anon_sym_i8] = ACTIONS(1666), - [anon_sym_u16] = ACTIONS(1666), - [anon_sym_i16] = ACTIONS(1666), - [anon_sym_u32] = ACTIONS(1666), - [anon_sym_i32] = ACTIONS(1666), - [anon_sym_u64] = ACTIONS(1666), - [anon_sym_i64] = ACTIONS(1666), - [anon_sym_u128] = ACTIONS(1666), - [anon_sym_i128] = ACTIONS(1666), - [anon_sym_isize] = ACTIONS(1666), - [anon_sym_usize] = ACTIONS(1666), - [anon_sym_f32] = ACTIONS(1666), - [anon_sym_f64] = ACTIONS(1666), - [anon_sym_bool] = ACTIONS(1666), - [anon_sym_str] = ACTIONS(1666), - [anon_sym_char] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1666), - [anon_sym_async] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1666), - [anon_sym_enum] = ACTIONS(1666), - [anon_sym_fn] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_impl] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_mod] = ACTIONS(1666), - [anon_sym_pub] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_static] = ACTIONS(1666), - [anon_sym_struct] = ACTIONS(1666), - [anon_sym_trait] = ACTIONS(1666), - [anon_sym_type] = ACTIONS(1666), - [anon_sym_union] = ACTIONS(1666), - [anon_sym_unsafe] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(1664), - [anon_sym_COLON_COLON] = ACTIONS(1664), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_DOT_DOT] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_yield] = ACTIONS(1666), - [anon_sym_move] = ACTIONS(1666), - [sym_integer_literal] = ACTIONS(1664), - [aux_sym_string_literal_token1] = ACTIONS(1664), - [sym_char_literal] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1666), - [anon_sym_false] = ACTIONS(1666), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1666), - [sym_super] = ACTIONS(1666), - [sym_crate] = ACTIONS(1666), - [sym_metavariable] = ACTIONS(1664), - [sym_raw_string_literal] = ACTIONS(1664), - [sym_float_literal] = ACTIONS(1664), + [ts_builtin_sym_end] = ACTIONS(1646), + [sym_identifier] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1646), + [anon_sym_macro_rules_BANG] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1646), + [anon_sym_u8] = ACTIONS(1648), + [anon_sym_i8] = ACTIONS(1648), + [anon_sym_u16] = ACTIONS(1648), + [anon_sym_i16] = ACTIONS(1648), + [anon_sym_u32] = ACTIONS(1648), + [anon_sym_i32] = ACTIONS(1648), + [anon_sym_u64] = ACTIONS(1648), + [anon_sym_i64] = ACTIONS(1648), + [anon_sym_u128] = ACTIONS(1648), + [anon_sym_i128] = ACTIONS(1648), + [anon_sym_isize] = ACTIONS(1648), + [anon_sym_usize] = ACTIONS(1648), + [anon_sym_f32] = ACTIONS(1648), + [anon_sym_f64] = ACTIONS(1648), + [anon_sym_bool] = ACTIONS(1648), + [anon_sym_str] = ACTIONS(1648), + [anon_sym_char] = ACTIONS(1648), + [anon_sym_SQUOTE] = ACTIONS(1648), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_default] = ACTIONS(1648), + [anon_sym_enum] = ACTIONS(1648), + [anon_sym_fn] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_impl] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_mod] = ACTIONS(1648), + [anon_sym_pub] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1648), + [anon_sym_trait] = ACTIONS(1648), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_union] = ACTIONS(1648), + [anon_sym_unsafe] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1646), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1646), + [anon_sym_COLON_COLON] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1646), + [anon_sym_DOT_DOT] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_yield] = ACTIONS(1648), + [anon_sym_move] = ACTIONS(1648), + [sym_integer_literal] = ACTIONS(1646), + [aux_sym_string_literal_token1] = ACTIONS(1646), + [sym_char_literal] = ACTIONS(1646), + [anon_sym_true] = ACTIONS(1648), + [anon_sym_false] = ACTIONS(1648), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1648), + [sym_super] = ACTIONS(1648), + [sym_crate] = ACTIONS(1648), + [sym_metavariable] = ACTIONS(1646), + [sym_raw_string_literal] = ACTIONS(1646), + [sym_float_literal] = ACTIONS(1646), [sym_block_comment] = ACTIONS(3), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [sym_identifier] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_macro_rules_BANG] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_u8] = ACTIONS(1670), - [anon_sym_i8] = ACTIONS(1670), - [anon_sym_u16] = ACTIONS(1670), - [anon_sym_i16] = ACTIONS(1670), - [anon_sym_u32] = ACTIONS(1670), - [anon_sym_i32] = ACTIONS(1670), - [anon_sym_u64] = ACTIONS(1670), - [anon_sym_i64] = ACTIONS(1670), - [anon_sym_u128] = ACTIONS(1670), - [anon_sym_i128] = ACTIONS(1670), - [anon_sym_isize] = ACTIONS(1670), - [anon_sym_usize] = ACTIONS(1670), - [anon_sym_f32] = ACTIONS(1670), - [anon_sym_f64] = ACTIONS(1670), - [anon_sym_bool] = ACTIONS(1670), - [anon_sym_str] = ACTIONS(1670), - [anon_sym_char] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [anon_sym_async] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_enum] = ACTIONS(1670), - [anon_sym_fn] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_impl] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1670), - [anon_sym_loop] = ACTIONS(1670), - [anon_sym_match] = ACTIONS(1670), - [anon_sym_mod] = ACTIONS(1670), - [anon_sym_pub] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1670), - [anon_sym_struct] = ACTIONS(1670), - [anon_sym_trait] = ACTIONS(1670), - [anon_sym_type] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1670), - [anon_sym_use] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_POUND] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1668), - [anon_sym_COLON_COLON] = ACTIONS(1668), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_yield] = ACTIONS(1670), - [anon_sym_move] = ACTIONS(1670), - [sym_integer_literal] = ACTIONS(1668), - [aux_sym_string_literal_token1] = ACTIONS(1668), - [sym_char_literal] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1670), - [anon_sym_false] = ACTIONS(1670), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1670), - [sym_super] = ACTIONS(1670), - [sym_crate] = ACTIONS(1670), - [sym_metavariable] = ACTIONS(1668), - [sym_raw_string_literal] = ACTIONS(1668), - [sym_float_literal] = ACTIONS(1668), + [ts_builtin_sym_end] = ACTIONS(1650), + [sym_identifier] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_macro_rules_BANG] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_u8] = ACTIONS(1652), + [anon_sym_i8] = ACTIONS(1652), + [anon_sym_u16] = ACTIONS(1652), + [anon_sym_i16] = ACTIONS(1652), + [anon_sym_u32] = ACTIONS(1652), + [anon_sym_i32] = ACTIONS(1652), + [anon_sym_u64] = ACTIONS(1652), + [anon_sym_i64] = ACTIONS(1652), + [anon_sym_u128] = ACTIONS(1652), + [anon_sym_i128] = ACTIONS(1652), + [anon_sym_isize] = ACTIONS(1652), + [anon_sym_usize] = ACTIONS(1652), + [anon_sym_f32] = ACTIONS(1652), + [anon_sym_f64] = ACTIONS(1652), + [anon_sym_bool] = ACTIONS(1652), + [anon_sym_str] = ACTIONS(1652), + [anon_sym_char] = ACTIONS(1652), + [anon_sym_SQUOTE] = ACTIONS(1652), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_break] = ACTIONS(1652), + [anon_sym_const] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(1652), + [anon_sym_default] = ACTIONS(1652), + [anon_sym_enum] = ACTIONS(1652), + [anon_sym_fn] = ACTIONS(1652), + [anon_sym_for] = ACTIONS(1652), + [anon_sym_if] = ACTIONS(1652), + [anon_sym_impl] = ACTIONS(1652), + [anon_sym_let] = ACTIONS(1652), + [anon_sym_loop] = ACTIONS(1652), + [anon_sym_match] = ACTIONS(1652), + [anon_sym_mod] = ACTIONS(1652), + [anon_sym_pub] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_static] = ACTIONS(1652), + [anon_sym_struct] = ACTIONS(1652), + [anon_sym_trait] = ACTIONS(1652), + [anon_sym_type] = ACTIONS(1652), + [anon_sym_union] = ACTIONS(1652), + [anon_sym_unsafe] = ACTIONS(1652), + [anon_sym_use] = ACTIONS(1652), + [anon_sym_while] = ACTIONS(1652), + [anon_sym_POUND] = ACTIONS(1650), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_extern] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_COLON_COLON] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_DOT_DOT] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_yield] = ACTIONS(1652), + [anon_sym_move] = ACTIONS(1652), + [sym_integer_literal] = ACTIONS(1650), + [aux_sym_string_literal_token1] = ACTIONS(1650), + [sym_char_literal] = ACTIONS(1650), + [anon_sym_true] = ACTIONS(1652), + [anon_sym_false] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1652), + [sym_super] = ACTIONS(1652), + [sym_crate] = ACTIONS(1652), + [sym_metavariable] = ACTIONS(1650), + [sym_raw_string_literal] = ACTIONS(1650), + [sym_float_literal] = ACTIONS(1650), [sym_block_comment] = ACTIONS(3), }, [395] = { - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_macro_rules_BANG] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_u8] = ACTIONS(1674), - [anon_sym_i8] = ACTIONS(1674), - [anon_sym_u16] = ACTIONS(1674), - [anon_sym_i16] = ACTIONS(1674), - [anon_sym_u32] = ACTIONS(1674), - [anon_sym_i32] = ACTIONS(1674), - [anon_sym_u64] = ACTIONS(1674), - [anon_sym_i64] = ACTIONS(1674), - [anon_sym_u128] = ACTIONS(1674), - [anon_sym_i128] = ACTIONS(1674), - [anon_sym_isize] = ACTIONS(1674), - [anon_sym_usize] = ACTIONS(1674), - [anon_sym_f32] = ACTIONS(1674), - [anon_sym_f64] = ACTIONS(1674), - [anon_sym_bool] = ACTIONS(1674), - [anon_sym_str] = ACTIONS(1674), - [anon_sym_char] = ACTIONS(1674), - [anon_sym_SQUOTE] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), - [anon_sym_fn] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_impl] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_loop] = ACTIONS(1674), - [anon_sym_match] = ACTIONS(1674), - [anon_sym_mod] = ACTIONS(1674), - [anon_sym_pub] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_struct] = ACTIONS(1674), - [anon_sym_trait] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_union] = ACTIONS(1674), - [anon_sym_unsafe] = ACTIONS(1674), - [anon_sym_use] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_POUND] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_extern] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_COLON_COLON] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_DOT_DOT] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_yield] = ACTIONS(1674), - [anon_sym_move] = ACTIONS(1674), - [sym_integer_literal] = ACTIONS(1672), - [aux_sym_string_literal_token1] = ACTIONS(1672), - [sym_char_literal] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1674), - [anon_sym_false] = ACTIONS(1674), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_crate] = ACTIONS(1674), - [sym_metavariable] = ACTIONS(1672), - [sym_raw_string_literal] = ACTIONS(1672), - [sym_float_literal] = ACTIONS(1672), + [ts_builtin_sym_end] = ACTIONS(1654), + [sym_identifier] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1654), + [anon_sym_macro_rules_BANG] = ACTIONS(1654), + [anon_sym_LPAREN] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(1654), + [anon_sym_RBRACE] = ACTIONS(1654), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_STAR] = 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_SQUOTE] = ACTIONS(1656), + [anon_sym_async] = ACTIONS(1656), + [anon_sym_break] = ACTIONS(1656), + [anon_sym_const] = ACTIONS(1656), + [anon_sym_continue] = ACTIONS(1656), + [anon_sym_default] = ACTIONS(1656), + [anon_sym_enum] = ACTIONS(1656), + [anon_sym_fn] = ACTIONS(1656), + [anon_sym_for] = ACTIONS(1656), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_impl] = ACTIONS(1656), + [anon_sym_let] = ACTIONS(1656), + [anon_sym_loop] = ACTIONS(1656), + [anon_sym_match] = ACTIONS(1656), + [anon_sym_mod] = ACTIONS(1656), + [anon_sym_pub] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1656), + [anon_sym_static] = ACTIONS(1656), + [anon_sym_struct] = ACTIONS(1656), + [anon_sym_trait] = ACTIONS(1656), + [anon_sym_type] = ACTIONS(1656), + [anon_sym_union] = ACTIONS(1656), + [anon_sym_unsafe] = ACTIONS(1656), + [anon_sym_use] = ACTIONS(1656), + [anon_sym_while] = ACTIONS(1656), + [anon_sym_POUND] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(1654), + [anon_sym_extern] = ACTIONS(1656), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_COLON_COLON] = ACTIONS(1654), + [anon_sym_AMP] = ACTIONS(1654), + [anon_sym_DOT_DOT] = ACTIONS(1654), + [anon_sym_DASH] = ACTIONS(1654), + [anon_sym_PIPE] = ACTIONS(1654), + [anon_sym_yield] = ACTIONS(1656), + [anon_sym_move] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(1654), + [aux_sym_string_literal_token1] = ACTIONS(1654), + [sym_char_literal] = ACTIONS(1654), + [anon_sym_true] = ACTIONS(1656), + [anon_sym_false] = ACTIONS(1656), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1656), + [sym_super] = ACTIONS(1656), + [sym_crate] = ACTIONS(1656), + [sym_metavariable] = ACTIONS(1654), + [sym_raw_string_literal] = ACTIONS(1654), + [sym_float_literal] = ACTIONS(1654), [sym_block_comment] = ACTIONS(3), }, [396] = { - [ts_builtin_sym_end] = ACTIONS(1676), - [sym_identifier] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_macro_rules_BANG] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_RBRACE] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_STAR] = ACTIONS(1676), - [anon_sym_u8] = ACTIONS(1678), - [anon_sym_i8] = ACTIONS(1678), - [anon_sym_u16] = ACTIONS(1678), - [anon_sym_i16] = ACTIONS(1678), - [anon_sym_u32] = ACTIONS(1678), - [anon_sym_i32] = ACTIONS(1678), - [anon_sym_u64] = ACTIONS(1678), - [anon_sym_i64] = ACTIONS(1678), - [anon_sym_u128] = ACTIONS(1678), - [anon_sym_i128] = ACTIONS(1678), - [anon_sym_isize] = ACTIONS(1678), - [anon_sym_usize] = ACTIONS(1678), - [anon_sym_f32] = ACTIONS(1678), - [anon_sym_f64] = ACTIONS(1678), - [anon_sym_bool] = ACTIONS(1678), - [anon_sym_str] = ACTIONS(1678), - [anon_sym_char] = ACTIONS(1678), - [anon_sym_SQUOTE] = ACTIONS(1678), - [anon_sym_async] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1678), - [anon_sym_enum] = ACTIONS(1678), - [anon_sym_fn] = ACTIONS(1678), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_impl] = ACTIONS(1678), - [anon_sym_let] = ACTIONS(1678), - [anon_sym_loop] = ACTIONS(1678), - [anon_sym_match] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_pub] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_static] = ACTIONS(1678), - [anon_sym_struct] = ACTIONS(1678), - [anon_sym_trait] = ACTIONS(1678), - [anon_sym_type] = ACTIONS(1678), - [anon_sym_union] = ACTIONS(1678), - [anon_sym_unsafe] = ACTIONS(1678), - [anon_sym_use] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1678), - [anon_sym_POUND] = ACTIONS(1676), - [anon_sym_BANG] = ACTIONS(1676), - [anon_sym_extern] = ACTIONS(1678), - [anon_sym_LT] = ACTIONS(1676), - [anon_sym_COLON_COLON] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1676), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_yield] = ACTIONS(1678), - [anon_sym_move] = ACTIONS(1678), - [sym_integer_literal] = ACTIONS(1676), - [aux_sym_string_literal_token1] = ACTIONS(1676), - [sym_char_literal] = ACTIONS(1676), - [anon_sym_true] = ACTIONS(1678), - [anon_sym_false] = ACTIONS(1678), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1678), - [sym_super] = ACTIONS(1678), - [sym_crate] = ACTIONS(1678), - [sym_metavariable] = ACTIONS(1676), - [sym_raw_string_literal] = ACTIONS(1676), - [sym_float_literal] = ACTIONS(1676), + [ts_builtin_sym_end] = ACTIONS(1658), + [sym_identifier] = ACTIONS(1660), + [anon_sym_SEMI] = ACTIONS(1658), + [anon_sym_macro_rules_BANG] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1658), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_u8] = ACTIONS(1660), + [anon_sym_i8] = ACTIONS(1660), + [anon_sym_u16] = ACTIONS(1660), + [anon_sym_i16] = ACTIONS(1660), + [anon_sym_u32] = ACTIONS(1660), + [anon_sym_i32] = ACTIONS(1660), + [anon_sym_u64] = ACTIONS(1660), + [anon_sym_i64] = ACTIONS(1660), + [anon_sym_u128] = ACTIONS(1660), + [anon_sym_i128] = ACTIONS(1660), + [anon_sym_isize] = ACTIONS(1660), + [anon_sym_usize] = ACTIONS(1660), + [anon_sym_f32] = ACTIONS(1660), + [anon_sym_f64] = ACTIONS(1660), + [anon_sym_bool] = ACTIONS(1660), + [anon_sym_str] = ACTIONS(1660), + [anon_sym_char] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_async] = ACTIONS(1660), + [anon_sym_break] = ACTIONS(1660), + [anon_sym_const] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(1660), + [anon_sym_default] = ACTIONS(1660), + [anon_sym_enum] = ACTIONS(1660), + [anon_sym_fn] = ACTIONS(1660), + [anon_sym_for] = ACTIONS(1660), + [anon_sym_if] = ACTIONS(1660), + [anon_sym_impl] = ACTIONS(1660), + [anon_sym_let] = ACTIONS(1660), + [anon_sym_loop] = ACTIONS(1660), + [anon_sym_match] = ACTIONS(1660), + [anon_sym_mod] = ACTIONS(1660), + [anon_sym_pub] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_static] = ACTIONS(1660), + [anon_sym_struct] = ACTIONS(1660), + [anon_sym_trait] = ACTIONS(1660), + [anon_sym_type] = ACTIONS(1660), + [anon_sym_union] = ACTIONS(1660), + [anon_sym_unsafe] = ACTIONS(1660), + [anon_sym_use] = ACTIONS(1660), + [anon_sym_while] = ACTIONS(1660), + [anon_sym_POUND] = ACTIONS(1658), + [anon_sym_BANG] = ACTIONS(1658), + [anon_sym_extern] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(1658), + [anon_sym_COLON_COLON] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_DOT_DOT] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_PIPE] = ACTIONS(1658), + [anon_sym_yield] = ACTIONS(1660), + [anon_sym_move] = ACTIONS(1660), + [sym_integer_literal] = ACTIONS(1658), + [aux_sym_string_literal_token1] = ACTIONS(1658), + [sym_char_literal] = ACTIONS(1658), + [anon_sym_true] = ACTIONS(1660), + [anon_sym_false] = ACTIONS(1660), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1660), + [sym_super] = ACTIONS(1660), + [sym_crate] = ACTIONS(1660), + [sym_metavariable] = ACTIONS(1658), + [sym_raw_string_literal] = ACTIONS(1658), + [sym_float_literal] = ACTIONS(1658), [sym_block_comment] = ACTIONS(3), }, [397] = { - [ts_builtin_sym_end] = ACTIONS(1680), - [sym_identifier] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_macro_rules_BANG] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1682), - [anon_sym_i8] = ACTIONS(1682), - [anon_sym_u16] = ACTIONS(1682), - [anon_sym_i16] = ACTIONS(1682), - [anon_sym_u32] = ACTIONS(1682), - [anon_sym_i32] = ACTIONS(1682), - [anon_sym_u64] = ACTIONS(1682), - [anon_sym_i64] = ACTIONS(1682), - [anon_sym_u128] = ACTIONS(1682), - [anon_sym_i128] = ACTIONS(1682), - [anon_sym_isize] = ACTIONS(1682), - [anon_sym_usize] = ACTIONS(1682), - [anon_sym_f32] = ACTIONS(1682), - [anon_sym_f64] = ACTIONS(1682), - [anon_sym_bool] = ACTIONS(1682), - [anon_sym_str] = ACTIONS(1682), - [anon_sym_char] = ACTIONS(1682), - [anon_sym_SQUOTE] = ACTIONS(1682), - [anon_sym_async] = ACTIONS(1682), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), - [anon_sym_enum] = ACTIONS(1682), - [anon_sym_fn] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_impl] = ACTIONS(1682), - [anon_sym_let] = ACTIONS(1682), - [anon_sym_loop] = ACTIONS(1682), - [anon_sym_match] = ACTIONS(1682), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_pub] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_static] = ACTIONS(1682), - [anon_sym_struct] = ACTIONS(1682), - [anon_sym_trait] = ACTIONS(1682), - [anon_sym_type] = ACTIONS(1682), - [anon_sym_union] = ACTIONS(1682), - [anon_sym_unsafe] = ACTIONS(1682), - [anon_sym_use] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_POUND] = ACTIONS(1680), - [anon_sym_BANG] = ACTIONS(1680), - [anon_sym_extern] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_COLON_COLON] = ACTIONS(1680), - [anon_sym_AMP] = ACTIONS(1680), - [anon_sym_DOT_DOT] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_yield] = ACTIONS(1682), - [anon_sym_move] = ACTIONS(1682), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1680), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1682), - [anon_sym_false] = ACTIONS(1682), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1682), - [sym_super] = ACTIONS(1682), - [sym_crate] = ACTIONS(1682), - [sym_metavariable] = ACTIONS(1680), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), + [ts_builtin_sym_end] = ACTIONS(1662), + [sym_identifier] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_macro_rules_BANG] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_RBRACE] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1662), + [anon_sym_u8] = ACTIONS(1664), + [anon_sym_i8] = ACTIONS(1664), + [anon_sym_u16] = ACTIONS(1664), + [anon_sym_i16] = ACTIONS(1664), + [anon_sym_u32] = ACTIONS(1664), + [anon_sym_i32] = ACTIONS(1664), + [anon_sym_u64] = ACTIONS(1664), + [anon_sym_i64] = ACTIONS(1664), + [anon_sym_u128] = ACTIONS(1664), + [anon_sym_i128] = ACTIONS(1664), + [anon_sym_isize] = ACTIONS(1664), + [anon_sym_usize] = ACTIONS(1664), + [anon_sym_f32] = ACTIONS(1664), + [anon_sym_f64] = ACTIONS(1664), + [anon_sym_bool] = ACTIONS(1664), + [anon_sym_str] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1664), + [anon_sym_SQUOTE] = ACTIONS(1664), + [anon_sym_async] = ACTIONS(1664), + [anon_sym_break] = ACTIONS(1664), + [anon_sym_const] = ACTIONS(1664), + [anon_sym_continue] = ACTIONS(1664), + [anon_sym_default] = ACTIONS(1664), + [anon_sym_enum] = ACTIONS(1664), + [anon_sym_fn] = ACTIONS(1664), + [anon_sym_for] = ACTIONS(1664), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_impl] = ACTIONS(1664), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_loop] = ACTIONS(1664), + [anon_sym_match] = ACTIONS(1664), + [anon_sym_mod] = ACTIONS(1664), + [anon_sym_pub] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1664), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_struct] = ACTIONS(1664), + [anon_sym_trait] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_union] = ACTIONS(1664), + [anon_sym_unsafe] = ACTIONS(1664), + [anon_sym_use] = ACTIONS(1664), + [anon_sym_while] = ACTIONS(1664), + [anon_sym_POUND] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(1662), + [anon_sym_extern] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1662), + [anon_sym_COLON_COLON] = ACTIONS(1662), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_DOT_DOT] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_yield] = ACTIONS(1664), + [anon_sym_move] = ACTIONS(1664), + [sym_integer_literal] = ACTIONS(1662), + [aux_sym_string_literal_token1] = ACTIONS(1662), + [sym_char_literal] = ACTIONS(1662), + [anon_sym_true] = ACTIONS(1664), + [anon_sym_false] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1664), + [sym_super] = ACTIONS(1664), + [sym_crate] = ACTIONS(1664), + [sym_metavariable] = ACTIONS(1662), + [sym_raw_string_literal] = ACTIONS(1662), + [sym_float_literal] = ACTIONS(1662), [sym_block_comment] = ACTIONS(3), }, [398] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_macro_rules_BANG] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_u8] = ACTIONS(1686), - [anon_sym_i8] = ACTIONS(1686), - [anon_sym_u16] = ACTIONS(1686), - [anon_sym_i16] = ACTIONS(1686), - [anon_sym_u32] = ACTIONS(1686), - [anon_sym_i32] = ACTIONS(1686), - [anon_sym_u64] = ACTIONS(1686), - [anon_sym_i64] = ACTIONS(1686), - [anon_sym_u128] = ACTIONS(1686), - [anon_sym_i128] = ACTIONS(1686), - [anon_sym_isize] = ACTIONS(1686), - [anon_sym_usize] = ACTIONS(1686), - [anon_sym_f32] = ACTIONS(1686), - [anon_sym_f64] = ACTIONS(1686), - [anon_sym_bool] = ACTIONS(1686), - [anon_sym_str] = ACTIONS(1686), - [anon_sym_char] = ACTIONS(1686), - [anon_sym_SQUOTE] = ACTIONS(1686), - [anon_sym_async] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_const] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_enum] = ACTIONS(1686), - [anon_sym_fn] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_impl] = ACTIONS(1686), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_loop] = ACTIONS(1686), - [anon_sym_match] = ACTIONS(1686), - [anon_sym_mod] = ACTIONS(1686), - [anon_sym_pub] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_struct] = ACTIONS(1686), - [anon_sym_trait] = ACTIONS(1686), - [anon_sym_type] = ACTIONS(1686), - [anon_sym_union] = ACTIONS(1686), - [anon_sym_unsafe] = ACTIONS(1686), - [anon_sym_use] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_LT] = ACTIONS(1684), - [anon_sym_COLON_COLON] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1684), - [anon_sym_DOT_DOT] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1684), - [anon_sym_yield] = ACTIONS(1686), - [anon_sym_move] = ACTIONS(1686), - [sym_integer_literal] = ACTIONS(1684), - [aux_sym_string_literal_token1] = ACTIONS(1684), - [sym_char_literal] = ACTIONS(1684), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1684), - [sym_raw_string_literal] = ACTIONS(1684), - [sym_float_literal] = ACTIONS(1684), + [ts_builtin_sym_end] = ACTIONS(1666), + [sym_identifier] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_macro_rules_BANG] = ACTIONS(1666), + [anon_sym_LPAREN] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1666), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1666), + [anon_sym_u8] = ACTIONS(1668), + [anon_sym_i8] = ACTIONS(1668), + [anon_sym_u16] = ACTIONS(1668), + [anon_sym_i16] = ACTIONS(1668), + [anon_sym_u32] = ACTIONS(1668), + [anon_sym_i32] = ACTIONS(1668), + [anon_sym_u64] = ACTIONS(1668), + [anon_sym_i64] = ACTIONS(1668), + [anon_sym_u128] = ACTIONS(1668), + [anon_sym_i128] = ACTIONS(1668), + [anon_sym_isize] = ACTIONS(1668), + [anon_sym_usize] = ACTIONS(1668), + [anon_sym_f32] = ACTIONS(1668), + [anon_sym_f64] = ACTIONS(1668), + [anon_sym_bool] = ACTIONS(1668), + [anon_sym_str] = ACTIONS(1668), + [anon_sym_char] = ACTIONS(1668), + [anon_sym_SQUOTE] = ACTIONS(1668), + [anon_sym_async] = ACTIONS(1668), + [anon_sym_break] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(1668), + [anon_sym_default] = ACTIONS(1668), + [anon_sym_enum] = ACTIONS(1668), + [anon_sym_fn] = ACTIONS(1668), + [anon_sym_for] = ACTIONS(1668), + [anon_sym_if] = ACTIONS(1668), + [anon_sym_impl] = ACTIONS(1668), + [anon_sym_let] = ACTIONS(1668), + [anon_sym_loop] = ACTIONS(1668), + [anon_sym_match] = ACTIONS(1668), + [anon_sym_mod] = ACTIONS(1668), + [anon_sym_pub] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(1668), + [anon_sym_struct] = ACTIONS(1668), + [anon_sym_trait] = ACTIONS(1668), + [anon_sym_type] = ACTIONS(1668), + [anon_sym_union] = ACTIONS(1668), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_use] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1666), + [anon_sym_BANG] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_COLON_COLON] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_yield] = ACTIONS(1668), + [anon_sym_move] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(1666), + [aux_sym_string_literal_token1] = ACTIONS(1666), + [sym_char_literal] = ACTIONS(1666), + [anon_sym_true] = ACTIONS(1668), + [anon_sym_false] = ACTIONS(1668), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1668), + [sym_super] = ACTIONS(1668), + [sym_crate] = ACTIONS(1668), + [sym_metavariable] = ACTIONS(1666), + [sym_raw_string_literal] = ACTIONS(1666), + [sym_float_literal] = ACTIONS(1666), [sym_block_comment] = ACTIONS(3), }, [399] = { - [ts_builtin_sym_end] = ACTIONS(1688), - [sym_identifier] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_macro_rules_BANG] = ACTIONS(1688), - [anon_sym_LPAREN] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_RBRACE] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(1688), - [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_SQUOTE] = ACTIONS(1690), - [anon_sym_async] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_default] = ACTIONS(1690), - [anon_sym_enum] = ACTIONS(1690), - [anon_sym_fn] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_impl] = ACTIONS(1690), - [anon_sym_let] = ACTIONS(1690), - [anon_sym_loop] = ACTIONS(1690), - [anon_sym_match] = ACTIONS(1690), - [anon_sym_mod] = ACTIONS(1690), - [anon_sym_pub] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_static] = ACTIONS(1690), - [anon_sym_struct] = ACTIONS(1690), - [anon_sym_trait] = ACTIONS(1690), - [anon_sym_type] = ACTIONS(1690), - [anon_sym_union] = ACTIONS(1690), - [anon_sym_unsafe] = ACTIONS(1690), - [anon_sym_use] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1688), - [anon_sym_BANG] = ACTIONS(1688), - [anon_sym_extern] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_COLON_COLON] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_DOT_DOT] = ACTIONS(1688), - [anon_sym_DASH] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1688), - [anon_sym_yield] = ACTIONS(1690), - [anon_sym_move] = ACTIONS(1690), - [sym_integer_literal] = ACTIONS(1688), - [aux_sym_string_literal_token1] = ACTIONS(1688), - [sym_char_literal] = ACTIONS(1688), - [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(1688), - [sym_raw_string_literal] = ACTIONS(1688), - [sym_float_literal] = ACTIONS(1688), + [ts_builtin_sym_end] = ACTIONS(1670), + [sym_identifier] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_macro_rules_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_STAR] = ACTIONS(1670), + [anon_sym_u8] = ACTIONS(1672), + [anon_sym_i8] = ACTIONS(1672), + [anon_sym_u16] = ACTIONS(1672), + [anon_sym_i16] = ACTIONS(1672), + [anon_sym_u32] = ACTIONS(1672), + [anon_sym_i32] = ACTIONS(1672), + [anon_sym_u64] = ACTIONS(1672), + [anon_sym_i64] = ACTIONS(1672), + [anon_sym_u128] = ACTIONS(1672), + [anon_sym_i128] = ACTIONS(1672), + [anon_sym_isize] = ACTIONS(1672), + [anon_sym_usize] = ACTIONS(1672), + [anon_sym_f32] = ACTIONS(1672), + [anon_sym_f64] = ACTIONS(1672), + [anon_sym_bool] = ACTIONS(1672), + [anon_sym_str] = ACTIONS(1672), + [anon_sym_char] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_fn] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_impl] = ACTIONS(1672), + [anon_sym_let] = ACTIONS(1672), + [anon_sym_loop] = ACTIONS(1672), + [anon_sym_match] = ACTIONS(1672), + [anon_sym_mod] = ACTIONS(1672), + [anon_sym_pub] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_trait] = ACTIONS(1672), + [anon_sym_type] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_unsafe] = ACTIONS(1672), + [anon_sym_use] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1670), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(1670), + [anon_sym_DOT_DOT] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_yield] = ACTIONS(1672), + [anon_sym_move] = ACTIONS(1672), + [sym_integer_literal] = ACTIONS(1670), + [aux_sym_string_literal_token1] = ACTIONS(1670), + [sym_char_literal] = ACTIONS(1670), + [anon_sym_true] = ACTIONS(1672), + [anon_sym_false] = ACTIONS(1672), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_crate] = ACTIONS(1672), + [sym_metavariable] = ACTIONS(1670), + [sym_raw_string_literal] = ACTIONS(1670), + [sym_float_literal] = ACTIONS(1670), [sym_block_comment] = ACTIONS(3), }, [400] = { - [ts_builtin_sym_end] = ACTIONS(1692), - [sym_identifier] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_macro_rules_BANG] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_RBRACE] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1692), - [anon_sym_u8] = ACTIONS(1694), - [anon_sym_i8] = ACTIONS(1694), - [anon_sym_u16] = ACTIONS(1694), - [anon_sym_i16] = ACTIONS(1694), - [anon_sym_u32] = ACTIONS(1694), - [anon_sym_i32] = ACTIONS(1694), - [anon_sym_u64] = ACTIONS(1694), - [anon_sym_i64] = ACTIONS(1694), - [anon_sym_u128] = ACTIONS(1694), - [anon_sym_i128] = ACTIONS(1694), - [anon_sym_isize] = ACTIONS(1694), - [anon_sym_usize] = ACTIONS(1694), - [anon_sym_f32] = ACTIONS(1694), - [anon_sym_f64] = ACTIONS(1694), - [anon_sym_bool] = ACTIONS(1694), - [anon_sym_str] = ACTIONS(1694), - [anon_sym_char] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1694), - [anon_sym_async] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_const] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1694), - [anon_sym_enum] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(1694), - [anon_sym_for] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_impl] = ACTIONS(1694), - [anon_sym_let] = ACTIONS(1694), - [anon_sym_loop] = ACTIONS(1694), - [anon_sym_match] = ACTIONS(1694), - [anon_sym_mod] = ACTIONS(1694), - [anon_sym_pub] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_static] = ACTIONS(1694), - [anon_sym_struct] = ACTIONS(1694), - [anon_sym_trait] = ACTIONS(1694), - [anon_sym_type] = ACTIONS(1694), - [anon_sym_union] = ACTIONS(1694), - [anon_sym_unsafe] = ACTIONS(1694), - [anon_sym_use] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_POUND] = ACTIONS(1692), - [anon_sym_BANG] = ACTIONS(1692), - [anon_sym_extern] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_COLON_COLON] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PIPE] = ACTIONS(1692), - [anon_sym_yield] = ACTIONS(1694), - [anon_sym_move] = ACTIONS(1694), - [sym_integer_literal] = ACTIONS(1692), - [aux_sym_string_literal_token1] = ACTIONS(1692), - [sym_char_literal] = ACTIONS(1692), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1694), - [sym_super] = ACTIONS(1694), - [sym_crate] = ACTIONS(1694), - [sym_metavariable] = ACTIONS(1692), - [sym_raw_string_literal] = ACTIONS(1692), - [sym_float_literal] = ACTIONS(1692), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_macro_rules_BANG] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_SQUOTE] = ACTIONS(1676), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_fn] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_impl] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_loop] = ACTIONS(1676), + [anon_sym_match] = ACTIONS(1676), + [anon_sym_mod] = ACTIONS(1676), + [anon_sym_pub] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_trait] = ACTIONS(1676), + [anon_sym_type] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_unsafe] = ACTIONS(1676), + [anon_sym_use] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_COLON_COLON] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_DOT_DOT] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_yield] = ACTIONS(1676), + [anon_sym_move] = ACTIONS(1676), + [sym_integer_literal] = ACTIONS(1674), + [aux_sym_string_literal_token1] = ACTIONS(1674), + [sym_char_literal] = ACTIONS(1674), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1676), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_crate] = ACTIONS(1676), + [sym_metavariable] = ACTIONS(1674), + [sym_raw_string_literal] = ACTIONS(1674), + [sym_float_literal] = ACTIONS(1674), [sym_block_comment] = ACTIONS(3), }, [401] = { - [ts_builtin_sym_end] = ACTIONS(1696), - [sym_identifier] = ACTIONS(1698), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_macro_rules_BANG] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_u8] = ACTIONS(1698), - [anon_sym_i8] = ACTIONS(1698), - [anon_sym_u16] = ACTIONS(1698), - [anon_sym_i16] = ACTIONS(1698), - [anon_sym_u32] = ACTIONS(1698), - [anon_sym_i32] = ACTIONS(1698), - [anon_sym_u64] = ACTIONS(1698), - [anon_sym_i64] = ACTIONS(1698), - [anon_sym_u128] = ACTIONS(1698), - [anon_sym_i128] = ACTIONS(1698), - [anon_sym_isize] = ACTIONS(1698), - [anon_sym_usize] = ACTIONS(1698), - [anon_sym_f32] = ACTIONS(1698), - [anon_sym_f64] = ACTIONS(1698), - [anon_sym_bool] = ACTIONS(1698), - [anon_sym_str] = ACTIONS(1698), - [anon_sym_char] = ACTIONS(1698), - [anon_sym_SQUOTE] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1698), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(1698), - [anon_sym_default] = ACTIONS(1698), - [anon_sym_enum] = ACTIONS(1698), - [anon_sym_fn] = ACTIONS(1698), - [anon_sym_for] = ACTIONS(1698), - [anon_sym_if] = ACTIONS(1698), - [anon_sym_impl] = ACTIONS(1698), - [anon_sym_let] = ACTIONS(1698), - [anon_sym_loop] = ACTIONS(1698), - [anon_sym_match] = ACTIONS(1698), - [anon_sym_mod] = ACTIONS(1698), - [anon_sym_pub] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_static] = ACTIONS(1698), - [anon_sym_struct] = ACTIONS(1698), - [anon_sym_trait] = ACTIONS(1698), - [anon_sym_type] = ACTIONS(1698), - [anon_sym_union] = ACTIONS(1698), - [anon_sym_unsafe] = ACTIONS(1698), - [anon_sym_use] = ACTIONS(1698), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_extern] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1696), - [anon_sym_yield] = ACTIONS(1698), - [anon_sym_move] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [aux_sym_string_literal_token1] = ACTIONS(1696), - [sym_char_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1698), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1698), - [sym_super] = ACTIONS(1698), - [sym_crate] = ACTIONS(1698), - [sym_metavariable] = ACTIONS(1696), - [sym_raw_string_literal] = ACTIONS(1696), - [sym_float_literal] = ACTIONS(1696), + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_macro_rules_BANG] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_u8] = ACTIONS(1680), + [anon_sym_i8] = ACTIONS(1680), + [anon_sym_u16] = ACTIONS(1680), + [anon_sym_i16] = ACTIONS(1680), + [anon_sym_u32] = ACTIONS(1680), + [anon_sym_i32] = ACTIONS(1680), + [anon_sym_u64] = ACTIONS(1680), + [anon_sym_i64] = ACTIONS(1680), + [anon_sym_u128] = ACTIONS(1680), + [anon_sym_i128] = ACTIONS(1680), + [anon_sym_isize] = ACTIONS(1680), + [anon_sym_usize] = ACTIONS(1680), + [anon_sym_f32] = ACTIONS(1680), + [anon_sym_f64] = ACTIONS(1680), + [anon_sym_bool] = ACTIONS(1680), + [anon_sym_str] = ACTIONS(1680), + [anon_sym_char] = ACTIONS(1680), + [anon_sym_SQUOTE] = ACTIONS(1680), + [anon_sym_async] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1680), + [anon_sym_const] = ACTIONS(1680), + [anon_sym_continue] = ACTIONS(1680), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_fn] = ACTIONS(1680), + [anon_sym_for] = ACTIONS(1680), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_impl] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(1680), + [anon_sym_loop] = ACTIONS(1680), + [anon_sym_match] = ACTIONS(1680), + [anon_sym_mod] = ACTIONS(1680), + [anon_sym_pub] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_static] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(1680), + [anon_sym_trait] = ACTIONS(1680), + [anon_sym_type] = ACTIONS(1680), + [anon_sym_union] = ACTIONS(1680), + [anon_sym_unsafe] = ACTIONS(1680), + [anon_sym_use] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1680), + [anon_sym_POUND] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_extern] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_COLON_COLON] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_DOT_DOT] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_yield] = ACTIONS(1680), + [anon_sym_move] = ACTIONS(1680), + [sym_integer_literal] = ACTIONS(1678), + [aux_sym_string_literal_token1] = ACTIONS(1678), + [sym_char_literal] = ACTIONS(1678), + [anon_sym_true] = ACTIONS(1680), + [anon_sym_false] = ACTIONS(1680), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1680), + [sym_super] = ACTIONS(1680), + [sym_crate] = ACTIONS(1680), + [sym_metavariable] = ACTIONS(1678), + [sym_raw_string_literal] = ACTIONS(1678), + [sym_float_literal] = ACTIONS(1678), [sym_block_comment] = ACTIONS(3), }, [402] = { - [ts_builtin_sym_end] = ACTIONS(1700), - [sym_identifier] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_macro_rules_BANG] = ACTIONS(1700), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_STAR] = ACTIONS(1700), - [anon_sym_u8] = ACTIONS(1702), - [anon_sym_i8] = ACTIONS(1702), - [anon_sym_u16] = ACTIONS(1702), - [anon_sym_i16] = ACTIONS(1702), - [anon_sym_u32] = ACTIONS(1702), - [anon_sym_i32] = ACTIONS(1702), - [anon_sym_u64] = ACTIONS(1702), - [anon_sym_i64] = ACTIONS(1702), - [anon_sym_u128] = ACTIONS(1702), - [anon_sym_i128] = ACTIONS(1702), - [anon_sym_isize] = ACTIONS(1702), - [anon_sym_usize] = ACTIONS(1702), - [anon_sym_f32] = ACTIONS(1702), - [anon_sym_f64] = ACTIONS(1702), - [anon_sym_bool] = ACTIONS(1702), - [anon_sym_str] = ACTIONS(1702), - [anon_sym_char] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1702), - [anon_sym_async] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1702), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_continue] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1702), - [anon_sym_enum] = ACTIONS(1702), - [anon_sym_fn] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_impl] = ACTIONS(1702), - [anon_sym_let] = ACTIONS(1702), - [anon_sym_loop] = ACTIONS(1702), - [anon_sym_match] = ACTIONS(1702), - [anon_sym_mod] = ACTIONS(1702), - [anon_sym_pub] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_struct] = ACTIONS(1702), - [anon_sym_trait] = ACTIONS(1702), - [anon_sym_type] = ACTIONS(1702), - [anon_sym_union] = ACTIONS(1702), - [anon_sym_unsafe] = ACTIONS(1702), - [anon_sym_use] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_BANG] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_COLON_COLON] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(1700), - [anon_sym_DOT_DOT] = ACTIONS(1700), - [anon_sym_DASH] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1700), - [anon_sym_yield] = ACTIONS(1702), - [anon_sym_move] = ACTIONS(1702), - [sym_integer_literal] = ACTIONS(1700), - [aux_sym_string_literal_token1] = ACTIONS(1700), - [sym_char_literal] = ACTIONS(1700), - [anon_sym_true] = ACTIONS(1702), - [anon_sym_false] = ACTIONS(1702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1702), - [sym_super] = ACTIONS(1702), - [sym_crate] = ACTIONS(1702), - [sym_metavariable] = ACTIONS(1700), - [sym_raw_string_literal] = ACTIONS(1700), - [sym_float_literal] = ACTIONS(1700), + [ts_builtin_sym_end] = ACTIONS(1682), + [sym_identifier] = ACTIONS(1684), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_macro_rules_BANG] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1684), + [anon_sym_i8] = ACTIONS(1684), + [anon_sym_u16] = ACTIONS(1684), + [anon_sym_i16] = ACTIONS(1684), + [anon_sym_u32] = ACTIONS(1684), + [anon_sym_i32] = ACTIONS(1684), + [anon_sym_u64] = ACTIONS(1684), + [anon_sym_i64] = ACTIONS(1684), + [anon_sym_u128] = ACTIONS(1684), + [anon_sym_i128] = ACTIONS(1684), + [anon_sym_isize] = ACTIONS(1684), + [anon_sym_usize] = ACTIONS(1684), + [anon_sym_f32] = ACTIONS(1684), + [anon_sym_f64] = ACTIONS(1684), + [anon_sym_bool] = ACTIONS(1684), + [anon_sym_str] = ACTIONS(1684), + [anon_sym_char] = ACTIONS(1684), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_async] = ACTIONS(1684), + [anon_sym_break] = ACTIONS(1684), + [anon_sym_const] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_default] = ACTIONS(1684), + [anon_sym_enum] = ACTIONS(1684), + [anon_sym_fn] = ACTIONS(1684), + [anon_sym_for] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1684), + [anon_sym_impl] = ACTIONS(1684), + [anon_sym_let] = ACTIONS(1684), + [anon_sym_loop] = ACTIONS(1684), + [anon_sym_match] = ACTIONS(1684), + [anon_sym_mod] = ACTIONS(1684), + [anon_sym_pub] = ACTIONS(1684), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_static] = ACTIONS(1684), + [anon_sym_struct] = ACTIONS(1684), + [anon_sym_trait] = ACTIONS(1684), + [anon_sym_type] = ACTIONS(1684), + [anon_sym_union] = ACTIONS(1684), + [anon_sym_unsafe] = ACTIONS(1684), + [anon_sym_use] = ACTIONS(1684), + [anon_sym_while] = ACTIONS(1684), + [anon_sym_POUND] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_extern] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_yield] = ACTIONS(1684), + [anon_sym_move] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [aux_sym_string_literal_token1] = ACTIONS(1682), + [sym_char_literal] = ACTIONS(1682), + [anon_sym_true] = ACTIONS(1684), + [anon_sym_false] = ACTIONS(1684), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1684), + [sym_super] = ACTIONS(1684), + [sym_crate] = ACTIONS(1684), + [sym_metavariable] = ACTIONS(1682), + [sym_raw_string_literal] = ACTIONS(1682), + [sym_float_literal] = ACTIONS(1682), [sym_block_comment] = ACTIONS(3), }, [403] = { - [ts_builtin_sym_end] = ACTIONS(1704), - [sym_identifier] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [anon_sym_macro_rules_BANG] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1704), - [anon_sym_RBRACE] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(1704), - [anon_sym_STAR] = ACTIONS(1704), - [anon_sym_u8] = ACTIONS(1706), - [anon_sym_i8] = ACTIONS(1706), - [anon_sym_u16] = ACTIONS(1706), - [anon_sym_i16] = ACTIONS(1706), - [anon_sym_u32] = ACTIONS(1706), - [anon_sym_i32] = ACTIONS(1706), - [anon_sym_u64] = ACTIONS(1706), - [anon_sym_i64] = ACTIONS(1706), - [anon_sym_u128] = ACTIONS(1706), - [anon_sym_i128] = ACTIONS(1706), - [anon_sym_isize] = ACTIONS(1706), - [anon_sym_usize] = ACTIONS(1706), - [anon_sym_f32] = ACTIONS(1706), - [anon_sym_f64] = ACTIONS(1706), - [anon_sym_bool] = ACTIONS(1706), - [anon_sym_str] = ACTIONS(1706), - [anon_sym_char] = ACTIONS(1706), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_async] = ACTIONS(1706), - [anon_sym_break] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(1706), - [anon_sym_default] = ACTIONS(1706), - [anon_sym_enum] = ACTIONS(1706), - [anon_sym_fn] = ACTIONS(1706), - [anon_sym_for] = ACTIONS(1706), - [anon_sym_if] = ACTIONS(1706), - [anon_sym_impl] = ACTIONS(1706), - [anon_sym_let] = ACTIONS(1706), - [anon_sym_loop] = ACTIONS(1706), - [anon_sym_match] = ACTIONS(1706), - [anon_sym_mod] = ACTIONS(1706), - [anon_sym_pub] = ACTIONS(1706), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_static] = ACTIONS(1706), - [anon_sym_struct] = ACTIONS(1706), - [anon_sym_trait] = ACTIONS(1706), - [anon_sym_type] = ACTIONS(1706), - [anon_sym_union] = ACTIONS(1706), - [anon_sym_unsafe] = ACTIONS(1706), - [anon_sym_use] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1704), - [anon_sym_extern] = ACTIONS(1706), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_COLON_COLON] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_DOT_DOT] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1704), - [anon_sym_yield] = ACTIONS(1706), - [anon_sym_move] = ACTIONS(1706), - [sym_integer_literal] = ACTIONS(1704), - [aux_sym_string_literal_token1] = ACTIONS(1704), - [sym_char_literal] = ACTIONS(1704), - [anon_sym_true] = ACTIONS(1706), - [anon_sym_false] = ACTIONS(1706), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1706), - [sym_super] = ACTIONS(1706), - [sym_crate] = ACTIONS(1706), - [sym_metavariable] = ACTIONS(1704), - [sym_raw_string_literal] = ACTIONS(1704), - [sym_float_literal] = ACTIONS(1704), + [ts_builtin_sym_end] = ACTIONS(1686), + [sym_identifier] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_macro_rules_BANG] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1686), + [anon_sym_u8] = ACTIONS(1688), + [anon_sym_i8] = ACTIONS(1688), + [anon_sym_u16] = ACTIONS(1688), + [anon_sym_i16] = ACTIONS(1688), + [anon_sym_u32] = ACTIONS(1688), + [anon_sym_i32] = ACTIONS(1688), + [anon_sym_u64] = ACTIONS(1688), + [anon_sym_i64] = ACTIONS(1688), + [anon_sym_u128] = ACTIONS(1688), + [anon_sym_i128] = ACTIONS(1688), + [anon_sym_isize] = ACTIONS(1688), + [anon_sym_usize] = ACTIONS(1688), + [anon_sym_f32] = ACTIONS(1688), + [anon_sym_f64] = ACTIONS(1688), + [anon_sym_bool] = ACTIONS(1688), + [anon_sym_str] = ACTIONS(1688), + [anon_sym_char] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1688), + [anon_sym_async] = ACTIONS(1688), + [anon_sym_break] = ACTIONS(1688), + [anon_sym_const] = ACTIONS(1688), + [anon_sym_continue] = ACTIONS(1688), + [anon_sym_default] = ACTIONS(1688), + [anon_sym_enum] = ACTIONS(1688), + [anon_sym_fn] = ACTIONS(1688), + [anon_sym_for] = ACTIONS(1688), + [anon_sym_if] = ACTIONS(1688), + [anon_sym_impl] = ACTIONS(1688), + [anon_sym_let] = ACTIONS(1688), + [anon_sym_loop] = ACTIONS(1688), + [anon_sym_match] = ACTIONS(1688), + [anon_sym_mod] = ACTIONS(1688), + [anon_sym_pub] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1688), + [anon_sym_static] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(1688), + [anon_sym_trait] = ACTIONS(1688), + [anon_sym_type] = ACTIONS(1688), + [anon_sym_union] = ACTIONS(1688), + [anon_sym_unsafe] = ACTIONS(1688), + [anon_sym_use] = ACTIONS(1688), + [anon_sym_while] = ACTIONS(1688), + [anon_sym_POUND] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1686), + [anon_sym_COLON_COLON] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1686), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1686), + [anon_sym_yield] = ACTIONS(1688), + [anon_sym_move] = ACTIONS(1688), + [sym_integer_literal] = ACTIONS(1686), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1686), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1688), + [sym_super] = ACTIONS(1688), + [sym_crate] = ACTIONS(1688), + [sym_metavariable] = ACTIONS(1686), + [sym_raw_string_literal] = ACTIONS(1686), + [sym_float_literal] = ACTIONS(1686), [sym_block_comment] = ACTIONS(3), }, [404] = { - [ts_builtin_sym_end] = ACTIONS(1708), - [sym_identifier] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_macro_rules_BANG] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_RBRACE] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1708), - [anon_sym_u8] = ACTIONS(1710), - [anon_sym_i8] = ACTIONS(1710), - [anon_sym_u16] = ACTIONS(1710), - [anon_sym_i16] = ACTIONS(1710), - [anon_sym_u32] = ACTIONS(1710), - [anon_sym_i32] = ACTIONS(1710), - [anon_sym_u64] = ACTIONS(1710), - [anon_sym_i64] = ACTIONS(1710), - [anon_sym_u128] = ACTIONS(1710), - [anon_sym_i128] = ACTIONS(1710), - [anon_sym_isize] = ACTIONS(1710), - [anon_sym_usize] = ACTIONS(1710), - [anon_sym_f32] = ACTIONS(1710), - [anon_sym_f64] = ACTIONS(1710), - [anon_sym_bool] = ACTIONS(1710), - [anon_sym_str] = ACTIONS(1710), - [anon_sym_char] = ACTIONS(1710), - [anon_sym_SQUOTE] = ACTIONS(1710), - [anon_sym_async] = ACTIONS(1710), - [anon_sym_break] = ACTIONS(1710), - [anon_sym_const] = ACTIONS(1710), - [anon_sym_continue] = ACTIONS(1710), - [anon_sym_default] = ACTIONS(1710), - [anon_sym_enum] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1710), - [anon_sym_for] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_impl] = ACTIONS(1710), - [anon_sym_let] = ACTIONS(1710), - [anon_sym_loop] = ACTIONS(1710), - [anon_sym_match] = ACTIONS(1710), - [anon_sym_mod] = ACTIONS(1710), - [anon_sym_pub] = ACTIONS(1710), - [anon_sym_return] = ACTIONS(1710), - [anon_sym_static] = ACTIONS(1710), - [anon_sym_struct] = ACTIONS(1710), - [anon_sym_trait] = ACTIONS(1710), - [anon_sym_type] = ACTIONS(1710), - [anon_sym_union] = ACTIONS(1710), - [anon_sym_unsafe] = ACTIONS(1710), - [anon_sym_use] = ACTIONS(1710), - [anon_sym_while] = ACTIONS(1710), - [anon_sym_POUND] = ACTIONS(1708), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_extern] = ACTIONS(1710), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_COLON_COLON] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_DOT_DOT] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_yield] = ACTIONS(1710), - [anon_sym_move] = ACTIONS(1710), - [sym_integer_literal] = ACTIONS(1708), - [aux_sym_string_literal_token1] = ACTIONS(1708), - [sym_char_literal] = ACTIONS(1708), - [anon_sym_true] = ACTIONS(1710), - [anon_sym_false] = ACTIONS(1710), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1710), - [sym_super] = ACTIONS(1710), - [sym_crate] = ACTIONS(1710), - [sym_metavariable] = ACTIONS(1708), - [sym_raw_string_literal] = ACTIONS(1708), - [sym_float_literal] = ACTIONS(1708), + [ts_builtin_sym_end] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_macro_rules_BANG] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_STAR] = ACTIONS(1690), + [anon_sym_u8] = ACTIONS(1692), + [anon_sym_i8] = ACTIONS(1692), + [anon_sym_u16] = ACTIONS(1692), + [anon_sym_i16] = ACTIONS(1692), + [anon_sym_u32] = ACTIONS(1692), + [anon_sym_i32] = ACTIONS(1692), + [anon_sym_u64] = ACTIONS(1692), + [anon_sym_i64] = ACTIONS(1692), + [anon_sym_u128] = ACTIONS(1692), + [anon_sym_i128] = ACTIONS(1692), + [anon_sym_isize] = ACTIONS(1692), + [anon_sym_usize] = ACTIONS(1692), + [anon_sym_f32] = ACTIONS(1692), + [anon_sym_f64] = ACTIONS(1692), + [anon_sym_bool] = ACTIONS(1692), + [anon_sym_str] = ACTIONS(1692), + [anon_sym_char] = ACTIONS(1692), + [anon_sym_SQUOTE] = ACTIONS(1692), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [anon_sym_fn] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_impl] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(1692), + [anon_sym_loop] = ACTIONS(1692), + [anon_sym_match] = ACTIONS(1692), + [anon_sym_mod] = ACTIONS(1692), + [anon_sym_pub] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_struct] = ACTIONS(1692), + [anon_sym_trait] = ACTIONS(1692), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_union] = ACTIONS(1692), + [anon_sym_unsafe] = ACTIONS(1692), + [anon_sym_use] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_POUND] = ACTIONS(1690), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_extern] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1690), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_DOT_DOT] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1690), + [anon_sym_yield] = ACTIONS(1692), + [anon_sym_move] = ACTIONS(1692), + [sym_integer_literal] = ACTIONS(1690), + [aux_sym_string_literal_token1] = ACTIONS(1690), + [sym_char_literal] = ACTIONS(1690), + [anon_sym_true] = ACTIONS(1692), + [anon_sym_false] = ACTIONS(1692), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_crate] = ACTIONS(1692), + [sym_metavariable] = ACTIONS(1690), + [sym_raw_string_literal] = ACTIONS(1690), + [sym_float_literal] = ACTIONS(1690), [sym_block_comment] = ACTIONS(3), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(1712), - [sym_identifier] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_macro_rules_BANG] = ACTIONS(1712), - [anon_sym_LPAREN] = ACTIONS(1712), - [anon_sym_LBRACE] = ACTIONS(1712), - [anon_sym_RBRACE] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1712), - [anon_sym_STAR] = ACTIONS(1712), - [anon_sym_u8] = ACTIONS(1714), - [anon_sym_i8] = ACTIONS(1714), - [anon_sym_u16] = ACTIONS(1714), - [anon_sym_i16] = ACTIONS(1714), - [anon_sym_u32] = ACTIONS(1714), - [anon_sym_i32] = ACTIONS(1714), - [anon_sym_u64] = ACTIONS(1714), - [anon_sym_i64] = ACTIONS(1714), - [anon_sym_u128] = ACTIONS(1714), - [anon_sym_i128] = ACTIONS(1714), - [anon_sym_isize] = ACTIONS(1714), - [anon_sym_usize] = ACTIONS(1714), - [anon_sym_f32] = ACTIONS(1714), - [anon_sym_f64] = ACTIONS(1714), - [anon_sym_bool] = ACTIONS(1714), - [anon_sym_str] = ACTIONS(1714), - [anon_sym_char] = ACTIONS(1714), - [anon_sym_SQUOTE] = ACTIONS(1714), - [anon_sym_async] = ACTIONS(1714), - [anon_sym_break] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(1714), - [anon_sym_default] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [anon_sym_fn] = ACTIONS(1714), - [anon_sym_for] = ACTIONS(1714), - [anon_sym_if] = ACTIONS(1714), - [anon_sym_impl] = ACTIONS(1714), - [anon_sym_let] = ACTIONS(1714), - [anon_sym_loop] = ACTIONS(1714), - [anon_sym_match] = ACTIONS(1714), - [anon_sym_mod] = ACTIONS(1714), - [anon_sym_pub] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_struct] = ACTIONS(1714), - [anon_sym_trait] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1714), - [anon_sym_union] = ACTIONS(1714), - [anon_sym_unsafe] = ACTIONS(1714), - [anon_sym_use] = ACTIONS(1714), - [anon_sym_while] = ACTIONS(1714), - [anon_sym_POUND] = ACTIONS(1712), - [anon_sym_BANG] = ACTIONS(1712), - [anon_sym_extern] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(1712), - [anon_sym_DOT_DOT] = ACTIONS(1712), - [anon_sym_DASH] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(1712), - [anon_sym_yield] = ACTIONS(1714), - [anon_sym_move] = ACTIONS(1714), - [sym_integer_literal] = ACTIONS(1712), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1712), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1714), - [sym_super] = ACTIONS(1714), - [sym_crate] = ACTIONS(1714), - [sym_metavariable] = ACTIONS(1712), - [sym_raw_string_literal] = ACTIONS(1712), - [sym_float_literal] = ACTIONS(1712), + [ts_builtin_sym_end] = ACTIONS(1694), + [sym_identifier] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [anon_sym_macro_rules_BANG] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1694), + [anon_sym_RBRACE] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_u8] = ACTIONS(1696), + [anon_sym_i8] = ACTIONS(1696), + [anon_sym_u16] = ACTIONS(1696), + [anon_sym_i16] = ACTIONS(1696), + [anon_sym_u32] = ACTIONS(1696), + [anon_sym_i32] = ACTIONS(1696), + [anon_sym_u64] = ACTIONS(1696), + [anon_sym_i64] = ACTIONS(1696), + [anon_sym_u128] = ACTIONS(1696), + [anon_sym_i128] = ACTIONS(1696), + [anon_sym_isize] = ACTIONS(1696), + [anon_sym_usize] = ACTIONS(1696), + [anon_sym_f32] = ACTIONS(1696), + [anon_sym_f64] = ACTIONS(1696), + [anon_sym_bool] = ACTIONS(1696), + [anon_sym_str] = ACTIONS(1696), + [anon_sym_char] = ACTIONS(1696), + [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1696), + [anon_sym_break] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1696), + [anon_sym_continue] = ACTIONS(1696), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_fn] = ACTIONS(1696), + [anon_sym_for] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1696), + [anon_sym_impl] = ACTIONS(1696), + [anon_sym_let] = ACTIONS(1696), + [anon_sym_loop] = ACTIONS(1696), + [anon_sym_match] = ACTIONS(1696), + [anon_sym_mod] = ACTIONS(1696), + [anon_sym_pub] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1696), + [anon_sym_static] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(1696), + [anon_sym_trait] = ACTIONS(1696), + [anon_sym_type] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_unsafe] = ACTIONS(1696), + [anon_sym_use] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1696), + [anon_sym_POUND] = ACTIONS(1694), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_extern] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1694), + [anon_sym_yield] = ACTIONS(1696), + [anon_sym_move] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [aux_sym_string_literal_token1] = ACTIONS(1694), + [sym_char_literal] = ACTIONS(1694), + [anon_sym_true] = ACTIONS(1696), + [anon_sym_false] = ACTIONS(1696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1696), + [sym_super] = ACTIONS(1696), + [sym_crate] = ACTIONS(1696), + [sym_metavariable] = ACTIONS(1694), + [sym_raw_string_literal] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1694), [sym_block_comment] = ACTIONS(3), }, [406] = { - [ts_builtin_sym_end] = ACTIONS(1716), - [sym_identifier] = ACTIONS(1718), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_macro_rules_BANG] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1716), - [anon_sym_RBRACE] = ACTIONS(1716), - [anon_sym_LBRACK] = ACTIONS(1716), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_u8] = ACTIONS(1718), - [anon_sym_i8] = ACTIONS(1718), - [anon_sym_u16] = ACTIONS(1718), - [anon_sym_i16] = ACTIONS(1718), - [anon_sym_u32] = ACTIONS(1718), - [anon_sym_i32] = ACTIONS(1718), - [anon_sym_u64] = ACTIONS(1718), - [anon_sym_i64] = ACTIONS(1718), - [anon_sym_u128] = ACTIONS(1718), - [anon_sym_i128] = ACTIONS(1718), - [anon_sym_isize] = ACTIONS(1718), - [anon_sym_usize] = ACTIONS(1718), - [anon_sym_f32] = ACTIONS(1718), - [anon_sym_f64] = ACTIONS(1718), - [anon_sym_bool] = ACTIONS(1718), - [anon_sym_str] = ACTIONS(1718), - [anon_sym_char] = ACTIONS(1718), - [anon_sym_SQUOTE] = ACTIONS(1718), - [anon_sym_async] = ACTIONS(1718), - [anon_sym_break] = ACTIONS(1718), - [anon_sym_const] = ACTIONS(1718), - [anon_sym_continue] = ACTIONS(1718), - [anon_sym_default] = ACTIONS(1718), - [anon_sym_enum] = ACTIONS(1718), - [anon_sym_fn] = ACTIONS(1718), - [anon_sym_for] = ACTIONS(1718), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_impl] = ACTIONS(1718), - [anon_sym_let] = ACTIONS(1718), - [anon_sym_loop] = ACTIONS(1718), - [anon_sym_match] = ACTIONS(1718), - [anon_sym_mod] = ACTIONS(1718), - [anon_sym_pub] = ACTIONS(1718), - [anon_sym_return] = ACTIONS(1718), - [anon_sym_static] = ACTIONS(1718), - [anon_sym_struct] = ACTIONS(1718), - [anon_sym_trait] = ACTIONS(1718), - [anon_sym_type] = ACTIONS(1718), - [anon_sym_union] = ACTIONS(1718), - [anon_sym_unsafe] = ACTIONS(1718), - [anon_sym_use] = ACTIONS(1718), - [anon_sym_while] = ACTIONS(1718), - [anon_sym_POUND] = ACTIONS(1716), - [anon_sym_BANG] = ACTIONS(1716), - [anon_sym_extern] = ACTIONS(1718), - [anon_sym_LT] = ACTIONS(1716), - [anon_sym_COLON_COLON] = ACTIONS(1716), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_DOT_DOT] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_yield] = ACTIONS(1718), - [anon_sym_move] = ACTIONS(1718), - [sym_integer_literal] = ACTIONS(1716), - [aux_sym_string_literal_token1] = ACTIONS(1716), - [sym_char_literal] = ACTIONS(1716), - [anon_sym_true] = ACTIONS(1718), - [anon_sym_false] = ACTIONS(1718), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1718), - [sym_super] = ACTIONS(1718), - [sym_crate] = ACTIONS(1718), - [sym_metavariable] = ACTIONS(1716), - [sym_raw_string_literal] = ACTIONS(1716), - [sym_float_literal] = ACTIONS(1716), + [ts_builtin_sym_end] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_macro_rules_BANG] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_u8] = ACTIONS(1700), + [anon_sym_i8] = ACTIONS(1700), + [anon_sym_u16] = ACTIONS(1700), + [anon_sym_i16] = ACTIONS(1700), + [anon_sym_u32] = ACTIONS(1700), + [anon_sym_i32] = ACTIONS(1700), + [anon_sym_u64] = ACTIONS(1700), + [anon_sym_i64] = ACTIONS(1700), + [anon_sym_u128] = ACTIONS(1700), + [anon_sym_i128] = ACTIONS(1700), + [anon_sym_isize] = ACTIONS(1700), + [anon_sym_usize] = ACTIONS(1700), + [anon_sym_f32] = ACTIONS(1700), + [anon_sym_f64] = ACTIONS(1700), + [anon_sym_bool] = ACTIONS(1700), + [anon_sym_str] = ACTIONS(1700), + [anon_sym_char] = ACTIONS(1700), + [anon_sym_SQUOTE] = ACTIONS(1700), + [anon_sym_async] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_fn] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_impl] = ACTIONS(1700), + [anon_sym_let] = ACTIONS(1700), + [anon_sym_loop] = ACTIONS(1700), + [anon_sym_match] = ACTIONS(1700), + [anon_sym_mod] = ACTIONS(1700), + [anon_sym_pub] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_trait] = ACTIONS(1700), + [anon_sym_type] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_unsafe] = ACTIONS(1700), + [anon_sym_use] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1698), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_DOT_DOT] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PIPE] = ACTIONS(1698), + [anon_sym_yield] = ACTIONS(1700), + [anon_sym_move] = ACTIONS(1700), + [sym_integer_literal] = ACTIONS(1698), + [aux_sym_string_literal_token1] = ACTIONS(1698), + [sym_char_literal] = ACTIONS(1698), + [anon_sym_true] = ACTIONS(1700), + [anon_sym_false] = ACTIONS(1700), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1700), + [sym_super] = ACTIONS(1700), + [sym_crate] = ACTIONS(1700), + [sym_metavariable] = ACTIONS(1698), + [sym_raw_string_literal] = ACTIONS(1698), + [sym_float_literal] = ACTIONS(1698), [sym_block_comment] = ACTIONS(3), }, [407] = { - [ts_builtin_sym_end] = ACTIONS(1720), - [sym_identifier] = ACTIONS(1722), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_macro_rules_BANG] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1720), - [anon_sym_u8] = ACTIONS(1722), - [anon_sym_i8] = ACTIONS(1722), - [anon_sym_u16] = ACTIONS(1722), - [anon_sym_i16] = ACTIONS(1722), - [anon_sym_u32] = ACTIONS(1722), - [anon_sym_i32] = ACTIONS(1722), - [anon_sym_u64] = ACTIONS(1722), - [anon_sym_i64] = ACTIONS(1722), - [anon_sym_u128] = ACTIONS(1722), - [anon_sym_i128] = ACTIONS(1722), - [anon_sym_isize] = ACTIONS(1722), - [anon_sym_usize] = ACTIONS(1722), - [anon_sym_f32] = ACTIONS(1722), - [anon_sym_f64] = ACTIONS(1722), - [anon_sym_bool] = ACTIONS(1722), - [anon_sym_str] = ACTIONS(1722), - [anon_sym_char] = ACTIONS(1722), - [anon_sym_SQUOTE] = ACTIONS(1722), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_impl] = ACTIONS(1722), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_loop] = ACTIONS(1722), - [anon_sym_match] = ACTIONS(1722), - [anon_sym_mod] = ACTIONS(1722), - [anon_sym_pub] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_trait] = ACTIONS(1722), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_unsafe] = ACTIONS(1722), - [anon_sym_use] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_POUND] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(1720), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1720), - [anon_sym_COLON_COLON] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1720), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_yield] = ACTIONS(1722), - [anon_sym_move] = ACTIONS(1722), - [sym_integer_literal] = ACTIONS(1720), - [aux_sym_string_literal_token1] = ACTIONS(1720), - [sym_char_literal] = ACTIONS(1720), - [anon_sym_true] = ACTIONS(1722), - [anon_sym_false] = ACTIONS(1722), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_crate] = ACTIONS(1722), - [sym_metavariable] = ACTIONS(1720), - [sym_raw_string_literal] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1720), + [ts_builtin_sym_end] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_macro_rules_BANG] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1702), + [anon_sym_u8] = ACTIONS(1704), + [anon_sym_i8] = ACTIONS(1704), + [anon_sym_u16] = ACTIONS(1704), + [anon_sym_i16] = ACTIONS(1704), + [anon_sym_u32] = ACTIONS(1704), + [anon_sym_i32] = ACTIONS(1704), + [anon_sym_u64] = ACTIONS(1704), + [anon_sym_i64] = ACTIONS(1704), + [anon_sym_u128] = ACTIONS(1704), + [anon_sym_i128] = ACTIONS(1704), + [anon_sym_isize] = ACTIONS(1704), + [anon_sym_usize] = ACTIONS(1704), + [anon_sym_f32] = ACTIONS(1704), + [anon_sym_f64] = ACTIONS(1704), + [anon_sym_bool] = ACTIONS(1704), + [anon_sym_str] = ACTIONS(1704), + [anon_sym_char] = ACTIONS(1704), + [anon_sym_SQUOTE] = ACTIONS(1704), + [anon_sym_async] = ACTIONS(1704), + [anon_sym_break] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_continue] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [anon_sym_fn] = ACTIONS(1704), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_if] = ACTIONS(1704), + [anon_sym_impl] = ACTIONS(1704), + [anon_sym_let] = ACTIONS(1704), + [anon_sym_loop] = ACTIONS(1704), + [anon_sym_match] = ACTIONS(1704), + [anon_sym_mod] = ACTIONS(1704), + [anon_sym_pub] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1704), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_struct] = ACTIONS(1704), + [anon_sym_trait] = ACTIONS(1704), + [anon_sym_type] = ACTIONS(1704), + [anon_sym_union] = ACTIONS(1704), + [anon_sym_unsafe] = ACTIONS(1704), + [anon_sym_use] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_extern] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_COLON_COLON] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1702), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_yield] = ACTIONS(1704), + [anon_sym_move] = ACTIONS(1704), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1702), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1704), + [anon_sym_false] = ACTIONS(1704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1704), + [sym_super] = ACTIONS(1704), + [sym_crate] = ACTIONS(1704), + [sym_metavariable] = ACTIONS(1702), + [sym_raw_string_literal] = ACTIONS(1702), + [sym_float_literal] = ACTIONS(1702), [sym_block_comment] = ACTIONS(3), }, [408] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_macro_rules_BANG] = ACTIONS(1724), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_u8] = ACTIONS(1726), - [anon_sym_i8] = ACTIONS(1726), - [anon_sym_u16] = ACTIONS(1726), - [anon_sym_i16] = ACTIONS(1726), - [anon_sym_u32] = ACTIONS(1726), - [anon_sym_i32] = ACTIONS(1726), - [anon_sym_u64] = ACTIONS(1726), - [anon_sym_i64] = ACTIONS(1726), - [anon_sym_u128] = ACTIONS(1726), - [anon_sym_i128] = ACTIONS(1726), - [anon_sym_isize] = ACTIONS(1726), - [anon_sym_usize] = ACTIONS(1726), - [anon_sym_f32] = ACTIONS(1726), - [anon_sym_f64] = ACTIONS(1726), - [anon_sym_bool] = ACTIONS(1726), - [anon_sym_str] = ACTIONS(1726), - [anon_sym_char] = ACTIONS(1726), - [anon_sym_SQUOTE] = ACTIONS(1726), - [anon_sym_async] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_fn] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_impl] = ACTIONS(1726), - [anon_sym_let] = ACTIONS(1726), - [anon_sym_loop] = ACTIONS(1726), - [anon_sym_match] = ACTIONS(1726), - [anon_sym_mod] = ACTIONS(1726), - [anon_sym_pub] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_trait] = ACTIONS(1726), - [anon_sym_type] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_unsafe] = ACTIONS(1726), - [anon_sym_use] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_POUND] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_COLON_COLON] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_DOT_DOT] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1724), - [anon_sym_PIPE] = ACTIONS(1724), - [anon_sym_yield] = ACTIONS(1726), - [anon_sym_move] = ACTIONS(1726), - [sym_integer_literal] = ACTIONS(1724), - [aux_sym_string_literal_token1] = ACTIONS(1724), - [sym_char_literal] = ACTIONS(1724), - [anon_sym_true] = ACTIONS(1726), - [anon_sym_false] = ACTIONS(1726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_crate] = ACTIONS(1726), - [sym_metavariable] = ACTIONS(1724), - [sym_raw_string_literal] = ACTIONS(1724), - [sym_float_literal] = ACTIONS(1724), + [ts_builtin_sym_end] = ACTIONS(1706), + [sym_identifier] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_macro_rules_BANG] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_STAR] = ACTIONS(1706), + [anon_sym_u8] = ACTIONS(1708), + [anon_sym_i8] = ACTIONS(1708), + [anon_sym_u16] = ACTIONS(1708), + [anon_sym_i16] = ACTIONS(1708), + [anon_sym_u32] = ACTIONS(1708), + [anon_sym_i32] = ACTIONS(1708), + [anon_sym_u64] = ACTIONS(1708), + [anon_sym_i64] = ACTIONS(1708), + [anon_sym_u128] = ACTIONS(1708), + [anon_sym_i128] = ACTIONS(1708), + [anon_sym_isize] = ACTIONS(1708), + [anon_sym_usize] = ACTIONS(1708), + [anon_sym_f32] = ACTIONS(1708), + [anon_sym_f64] = ACTIONS(1708), + [anon_sym_bool] = ACTIONS(1708), + [anon_sym_str] = ACTIONS(1708), + [anon_sym_char] = ACTIONS(1708), + [anon_sym_SQUOTE] = ACTIONS(1708), + [anon_sym_async] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_enum] = ACTIONS(1708), + [anon_sym_fn] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_impl] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_loop] = ACTIONS(1708), + [anon_sym_match] = ACTIONS(1708), + [anon_sym_mod] = ACTIONS(1708), + [anon_sym_pub] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1708), + [anon_sym_struct] = ACTIONS(1708), + [anon_sym_trait] = ACTIONS(1708), + [anon_sym_type] = ACTIONS(1708), + [anon_sym_union] = ACTIONS(1708), + [anon_sym_unsafe] = ACTIONS(1708), + [anon_sym_use] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_POUND] = ACTIONS(1706), + [anon_sym_BANG] = ACTIONS(1706), + [anon_sym_extern] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1706), + [anon_sym_COLON_COLON] = ACTIONS(1706), + [anon_sym_AMP] = ACTIONS(1706), + [anon_sym_DOT_DOT] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_move] = ACTIONS(1708), + [sym_integer_literal] = ACTIONS(1706), + [aux_sym_string_literal_token1] = ACTIONS(1706), + [sym_char_literal] = ACTIONS(1706), + [anon_sym_true] = ACTIONS(1708), + [anon_sym_false] = ACTIONS(1708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1706), + [sym_raw_string_literal] = ACTIONS(1706), + [sym_float_literal] = ACTIONS(1706), [sym_block_comment] = ACTIONS(3), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_macro_rules_BANG] = ACTIONS(1728), - [anon_sym_LPAREN] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_u8] = ACTIONS(1730), - [anon_sym_i8] = ACTIONS(1730), - [anon_sym_u16] = ACTIONS(1730), - [anon_sym_i16] = ACTIONS(1730), - [anon_sym_u32] = ACTIONS(1730), - [anon_sym_i32] = ACTIONS(1730), - [anon_sym_u64] = ACTIONS(1730), - [anon_sym_i64] = ACTIONS(1730), - [anon_sym_u128] = ACTIONS(1730), - [anon_sym_i128] = ACTIONS(1730), - [anon_sym_isize] = ACTIONS(1730), - [anon_sym_usize] = ACTIONS(1730), - [anon_sym_f32] = ACTIONS(1730), - [anon_sym_f64] = ACTIONS(1730), - [anon_sym_bool] = ACTIONS(1730), - [anon_sym_str] = ACTIONS(1730), - [anon_sym_char] = ACTIONS(1730), - [anon_sym_SQUOTE] = ACTIONS(1730), - [anon_sym_async] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_fn] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_impl] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(1730), - [anon_sym_loop] = ACTIONS(1730), - [anon_sym_match] = ACTIONS(1730), - [anon_sym_mod] = ACTIONS(1730), - [anon_sym_pub] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_trait] = ACTIONS(1730), - [anon_sym_type] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_unsafe] = ACTIONS(1730), - [anon_sym_use] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1728), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_DOT_DOT] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1730), - [anon_sym_move] = ACTIONS(1730), - [sym_integer_literal] = ACTIONS(1728), - [aux_sym_string_literal_token1] = ACTIONS(1728), - [sym_char_literal] = ACTIONS(1728), - [anon_sym_true] = ACTIONS(1730), - [anon_sym_false] = ACTIONS(1730), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1730), - [sym_super] = ACTIONS(1730), - [sym_crate] = ACTIONS(1730), - [sym_metavariable] = ACTIONS(1728), - [sym_raw_string_literal] = ACTIONS(1728), - [sym_float_literal] = ACTIONS(1728), + [ts_builtin_sym_end] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1712), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_macro_rules_BANG] = ACTIONS(1710), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_u8] = ACTIONS(1712), + [anon_sym_i8] = ACTIONS(1712), + [anon_sym_u16] = ACTIONS(1712), + [anon_sym_i16] = ACTIONS(1712), + [anon_sym_u32] = ACTIONS(1712), + [anon_sym_i32] = ACTIONS(1712), + [anon_sym_u64] = ACTIONS(1712), + [anon_sym_i64] = ACTIONS(1712), + [anon_sym_u128] = ACTIONS(1712), + [anon_sym_i128] = ACTIONS(1712), + [anon_sym_isize] = ACTIONS(1712), + [anon_sym_usize] = ACTIONS(1712), + [anon_sym_f32] = ACTIONS(1712), + [anon_sym_f64] = ACTIONS(1712), + [anon_sym_bool] = ACTIONS(1712), + [anon_sym_str] = ACTIONS(1712), + [anon_sym_char] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_async] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_continue] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_enum] = ACTIONS(1712), + [anon_sym_fn] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_impl] = ACTIONS(1712), + [anon_sym_let] = ACTIONS(1712), + [anon_sym_loop] = ACTIONS(1712), + [anon_sym_match] = ACTIONS(1712), + [anon_sym_mod] = ACTIONS(1712), + [anon_sym_pub] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_static] = ACTIONS(1712), + [anon_sym_struct] = ACTIONS(1712), + [anon_sym_trait] = ACTIONS(1712), + [anon_sym_type] = ACTIONS(1712), + [anon_sym_union] = ACTIONS(1712), + [anon_sym_unsafe] = ACTIONS(1712), + [anon_sym_use] = ACTIONS(1712), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_POUND] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_extern] = ACTIONS(1712), + [anon_sym_LT] = ACTIONS(1710), + [anon_sym_COLON_COLON] = ACTIONS(1710), + [anon_sym_AMP] = ACTIONS(1710), + [anon_sym_DOT_DOT] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_yield] = ACTIONS(1712), + [anon_sym_move] = ACTIONS(1712), + [sym_integer_literal] = ACTIONS(1710), + [aux_sym_string_literal_token1] = ACTIONS(1710), + [sym_char_literal] = ACTIONS(1710), + [anon_sym_true] = ACTIONS(1712), + [anon_sym_false] = ACTIONS(1712), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1712), + [sym_super] = ACTIONS(1712), + [sym_crate] = ACTIONS(1712), + [sym_metavariable] = ACTIONS(1710), + [sym_raw_string_literal] = ACTIONS(1710), + [sym_float_literal] = ACTIONS(1710), [sym_block_comment] = ACTIONS(3), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(1732), - [sym_identifier] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_macro_rules_BANG] = ACTIONS(1732), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_RBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_u8] = ACTIONS(1734), - [anon_sym_i8] = ACTIONS(1734), - [anon_sym_u16] = ACTIONS(1734), - [anon_sym_i16] = ACTIONS(1734), - [anon_sym_u32] = ACTIONS(1734), - [anon_sym_i32] = ACTIONS(1734), - [anon_sym_u64] = ACTIONS(1734), - [anon_sym_i64] = ACTIONS(1734), - [anon_sym_u128] = ACTIONS(1734), - [anon_sym_i128] = ACTIONS(1734), - [anon_sym_isize] = ACTIONS(1734), - [anon_sym_usize] = ACTIONS(1734), - [anon_sym_f32] = ACTIONS(1734), - [anon_sym_f64] = ACTIONS(1734), - [anon_sym_bool] = ACTIONS(1734), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_char] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1734), - [anon_sym_async] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_const] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_default] = ACTIONS(1734), - [anon_sym_enum] = ACTIONS(1734), - [anon_sym_fn] = ACTIONS(1734), - [anon_sym_for] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_impl] = ACTIONS(1734), - [anon_sym_let] = ACTIONS(1734), - [anon_sym_loop] = ACTIONS(1734), - [anon_sym_match] = ACTIONS(1734), - [anon_sym_mod] = ACTIONS(1734), - [anon_sym_pub] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_static] = ACTIONS(1734), - [anon_sym_struct] = ACTIONS(1734), - [anon_sym_trait] = ACTIONS(1734), - [anon_sym_type] = ACTIONS(1734), - [anon_sym_union] = ACTIONS(1734), - [anon_sym_unsafe] = ACTIONS(1734), - [anon_sym_use] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_POUND] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_yield] = ACTIONS(1734), - [anon_sym_move] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [aux_sym_string_literal_token1] = ACTIONS(1732), - [sym_char_literal] = ACTIONS(1732), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1734), - [sym_super] = ACTIONS(1734), - [sym_crate] = ACTIONS(1734), - [sym_metavariable] = ACTIONS(1732), - [sym_raw_string_literal] = ACTIONS(1732), - [sym_float_literal] = ACTIONS(1732), + [ts_builtin_sym_end] = ACTIONS(1714), + [sym_identifier] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_macro_rules_BANG] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_u8] = ACTIONS(1716), + [anon_sym_i8] = ACTIONS(1716), + [anon_sym_u16] = ACTIONS(1716), + [anon_sym_i16] = ACTIONS(1716), + [anon_sym_u32] = ACTIONS(1716), + [anon_sym_i32] = ACTIONS(1716), + [anon_sym_u64] = ACTIONS(1716), + [anon_sym_i64] = ACTIONS(1716), + [anon_sym_u128] = ACTIONS(1716), + [anon_sym_i128] = ACTIONS(1716), + [anon_sym_isize] = ACTIONS(1716), + [anon_sym_usize] = ACTIONS(1716), + [anon_sym_f32] = ACTIONS(1716), + [anon_sym_f64] = ACTIONS(1716), + [anon_sym_bool] = ACTIONS(1716), + [anon_sym_str] = ACTIONS(1716), + [anon_sym_char] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [anon_sym_async] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1716), + [anon_sym_enum] = ACTIONS(1716), + [anon_sym_fn] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_impl] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1716), + [anon_sym_loop] = ACTIONS(1716), + [anon_sym_match] = ACTIONS(1716), + [anon_sym_mod] = ACTIONS(1716), + [anon_sym_pub] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_struct] = ACTIONS(1716), + [anon_sym_trait] = ACTIONS(1716), + [anon_sym_type] = ACTIONS(1716), + [anon_sym_union] = ACTIONS(1716), + [anon_sym_unsafe] = ACTIONS(1716), + [anon_sym_use] = ACTIONS(1716), + [anon_sym_while] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_COLON_COLON] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_yield] = ACTIONS(1716), + [anon_sym_move] = ACTIONS(1716), + [sym_integer_literal] = ACTIONS(1714), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1714), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1716), + [sym_super] = ACTIONS(1716), + [sym_crate] = ACTIONS(1716), + [sym_metavariable] = ACTIONS(1714), + [sym_raw_string_literal] = ACTIONS(1714), + [sym_float_literal] = ACTIONS(1714), [sym_block_comment] = ACTIONS(3), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(1736), - [sym_identifier] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_macro_rules_BANG] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_SQUOTE] = ACTIONS(1738), - [anon_sym_async] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_fn] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_impl] = ACTIONS(1738), - [anon_sym_let] = ACTIONS(1738), - [anon_sym_loop] = ACTIONS(1738), - [anon_sym_match] = ACTIONS(1738), - [anon_sym_mod] = ACTIONS(1738), - [anon_sym_pub] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_trait] = ACTIONS(1738), - [anon_sym_type] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_unsafe] = ACTIONS(1738), - [anon_sym_use] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1736), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_AMP] = ACTIONS(1736), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_yield] = ACTIONS(1738), - [anon_sym_move] = ACTIONS(1738), - [sym_integer_literal] = ACTIONS(1736), - [aux_sym_string_literal_token1] = ACTIONS(1736), - [sym_char_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1738), - [anon_sym_false] = ACTIONS(1738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_crate] = ACTIONS(1738), - [sym_metavariable] = ACTIONS(1736), - [sym_raw_string_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1736), + [ts_builtin_sym_end] = ACTIONS(1718), + [sym_identifier] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_macro_rules_BANG] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_u8] = ACTIONS(1720), + [anon_sym_i8] = ACTIONS(1720), + [anon_sym_u16] = ACTIONS(1720), + [anon_sym_i16] = ACTIONS(1720), + [anon_sym_u32] = ACTIONS(1720), + [anon_sym_i32] = ACTIONS(1720), + [anon_sym_u64] = ACTIONS(1720), + [anon_sym_i64] = ACTIONS(1720), + [anon_sym_u128] = ACTIONS(1720), + [anon_sym_i128] = ACTIONS(1720), + [anon_sym_isize] = ACTIONS(1720), + [anon_sym_usize] = ACTIONS(1720), + [anon_sym_f32] = ACTIONS(1720), + [anon_sym_f64] = ACTIONS(1720), + [anon_sym_bool] = ACTIONS(1720), + [anon_sym_str] = ACTIONS(1720), + [anon_sym_char] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1720), + [anon_sym_async] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_enum] = ACTIONS(1720), + [anon_sym_fn] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_impl] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1720), + [anon_sym_loop] = ACTIONS(1720), + [anon_sym_match] = ACTIONS(1720), + [anon_sym_mod] = ACTIONS(1720), + [anon_sym_pub] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1720), + [anon_sym_struct] = ACTIONS(1720), + [anon_sym_trait] = ACTIONS(1720), + [anon_sym_type] = ACTIONS(1720), + [anon_sym_union] = ACTIONS(1720), + [anon_sym_unsafe] = ACTIONS(1720), + [anon_sym_use] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_COLON_COLON] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_DOT_DOT] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_yield] = ACTIONS(1720), + [anon_sym_move] = ACTIONS(1720), + [sym_integer_literal] = ACTIONS(1718), + [aux_sym_string_literal_token1] = ACTIONS(1718), + [sym_char_literal] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1720), + [anon_sym_false] = ACTIONS(1720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1720), + [sym_super] = ACTIONS(1720), + [sym_crate] = ACTIONS(1720), + [sym_metavariable] = ACTIONS(1718), + [sym_raw_string_literal] = ACTIONS(1718), + [sym_float_literal] = ACTIONS(1718), [sym_block_comment] = ACTIONS(3), }, [412] = { - [ts_builtin_sym_end] = ACTIONS(1740), - [sym_identifier] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_macro_rules_BANG] = ACTIONS(1740), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_u8] = ACTIONS(1742), - [anon_sym_i8] = ACTIONS(1742), - [anon_sym_u16] = ACTIONS(1742), - [anon_sym_i16] = ACTIONS(1742), - [anon_sym_u32] = ACTIONS(1742), - [anon_sym_i32] = ACTIONS(1742), - [anon_sym_u64] = ACTIONS(1742), - [anon_sym_i64] = ACTIONS(1742), - [anon_sym_u128] = ACTIONS(1742), - [anon_sym_i128] = ACTIONS(1742), - [anon_sym_isize] = ACTIONS(1742), - [anon_sym_usize] = ACTIONS(1742), - [anon_sym_f32] = ACTIONS(1742), - [anon_sym_f64] = ACTIONS(1742), - [anon_sym_bool] = ACTIONS(1742), - [anon_sym_str] = ACTIONS(1742), - [anon_sym_char] = ACTIONS(1742), - [anon_sym_SQUOTE] = ACTIONS(1742), - [anon_sym_async] = ACTIONS(1742), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_default] = ACTIONS(1742), - [anon_sym_enum] = ACTIONS(1742), - [anon_sym_fn] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_impl] = ACTIONS(1742), - [anon_sym_let] = ACTIONS(1742), - [anon_sym_loop] = ACTIONS(1742), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_mod] = ACTIONS(1742), - [anon_sym_pub] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_static] = ACTIONS(1742), - [anon_sym_struct] = ACTIONS(1742), - [anon_sym_trait] = ACTIONS(1742), - [anon_sym_type] = ACTIONS(1742), - [anon_sym_union] = ACTIONS(1742), - [anon_sym_unsafe] = ACTIONS(1742), - [anon_sym_use] = ACTIONS(1742), - [anon_sym_while] = ACTIONS(1742), - [anon_sym_POUND] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_extern] = ACTIONS(1742), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_DOT_DOT] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_yield] = ACTIONS(1742), - [anon_sym_move] = ACTIONS(1742), - [sym_integer_literal] = ACTIONS(1740), - [aux_sym_string_literal_token1] = ACTIONS(1740), - [sym_char_literal] = ACTIONS(1740), - [anon_sym_true] = ACTIONS(1742), - [anon_sym_false] = ACTIONS(1742), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1742), - [sym_super] = ACTIONS(1742), - [sym_crate] = ACTIONS(1742), - [sym_metavariable] = ACTIONS(1740), - [sym_raw_string_literal] = ACTIONS(1740), - [sym_float_literal] = ACTIONS(1740), + [ts_builtin_sym_end] = ACTIONS(1722), + [sym_identifier] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_macro_rules_BANG] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_u8] = ACTIONS(1724), + [anon_sym_i8] = ACTIONS(1724), + [anon_sym_u16] = ACTIONS(1724), + [anon_sym_i16] = ACTIONS(1724), + [anon_sym_u32] = ACTIONS(1724), + [anon_sym_i32] = ACTIONS(1724), + [anon_sym_u64] = ACTIONS(1724), + [anon_sym_i64] = ACTIONS(1724), + [anon_sym_u128] = ACTIONS(1724), + [anon_sym_i128] = ACTIONS(1724), + [anon_sym_isize] = ACTIONS(1724), + [anon_sym_usize] = ACTIONS(1724), + [anon_sym_f32] = ACTIONS(1724), + [anon_sym_f64] = ACTIONS(1724), + [anon_sym_bool] = ACTIONS(1724), + [anon_sym_str] = ACTIONS(1724), + [anon_sym_char] = ACTIONS(1724), + [anon_sym_SQUOTE] = ACTIONS(1724), + [anon_sym_async] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_continue] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1724), + [anon_sym_enum] = ACTIONS(1724), + [anon_sym_fn] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_impl] = ACTIONS(1724), + [anon_sym_let] = ACTIONS(1724), + [anon_sym_loop] = ACTIONS(1724), + [anon_sym_match] = ACTIONS(1724), + [anon_sym_mod] = ACTIONS(1724), + [anon_sym_pub] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1724), + [anon_sym_struct] = ACTIONS(1724), + [anon_sym_trait] = ACTIONS(1724), + [anon_sym_type] = ACTIONS(1724), + [anon_sym_union] = ACTIONS(1724), + [anon_sym_unsafe] = ACTIONS(1724), + [anon_sym_use] = ACTIONS(1724), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_extern] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(1722), + [anon_sym_COLON_COLON] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_DOT_DOT] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_yield] = ACTIONS(1724), + [anon_sym_move] = ACTIONS(1724), + [sym_integer_literal] = ACTIONS(1722), + [aux_sym_string_literal_token1] = ACTIONS(1722), + [sym_char_literal] = ACTIONS(1722), + [anon_sym_true] = ACTIONS(1724), + [anon_sym_false] = ACTIONS(1724), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1724), + [sym_super] = ACTIONS(1724), + [sym_crate] = ACTIONS(1724), + [sym_metavariable] = ACTIONS(1722), + [sym_raw_string_literal] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1722), [sym_block_comment] = ACTIONS(3), }, [413] = { - [ts_builtin_sym_end] = ACTIONS(1744), - [sym_identifier] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_macro_rules_BANG] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1744), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_u8] = ACTIONS(1746), - [anon_sym_i8] = ACTIONS(1746), - [anon_sym_u16] = ACTIONS(1746), - [anon_sym_i16] = ACTIONS(1746), - [anon_sym_u32] = ACTIONS(1746), - [anon_sym_i32] = ACTIONS(1746), - [anon_sym_u64] = ACTIONS(1746), - [anon_sym_i64] = ACTIONS(1746), - [anon_sym_u128] = ACTIONS(1746), - [anon_sym_i128] = ACTIONS(1746), - [anon_sym_isize] = ACTIONS(1746), - [anon_sym_usize] = ACTIONS(1746), - [anon_sym_f32] = ACTIONS(1746), - [anon_sym_f64] = ACTIONS(1746), - [anon_sym_bool] = ACTIONS(1746), - [anon_sym_str] = ACTIONS(1746), - [anon_sym_char] = ACTIONS(1746), - [anon_sym_SQUOTE] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_fn] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_impl] = ACTIONS(1746), - [anon_sym_let] = ACTIONS(1746), - [anon_sym_loop] = ACTIONS(1746), - [anon_sym_match] = ACTIONS(1746), - [anon_sym_mod] = ACTIONS(1746), - [anon_sym_pub] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_trait] = ACTIONS(1746), - [anon_sym_type] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(1746), - [anon_sym_use] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1744), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_DOT_DOT] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_yield] = ACTIONS(1746), - [anon_sym_move] = ACTIONS(1746), - [sym_integer_literal] = ACTIONS(1744), - [aux_sym_string_literal_token1] = ACTIONS(1744), - [sym_char_literal] = ACTIONS(1744), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_crate] = ACTIONS(1746), - [sym_metavariable] = ACTIONS(1744), - [sym_raw_string_literal] = ACTIONS(1744), - [sym_float_literal] = ACTIONS(1744), + [ts_builtin_sym_end] = ACTIONS(1726), + [sym_identifier] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_macro_rules_BANG] = ACTIONS(1726), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_u8] = ACTIONS(1728), + [anon_sym_i8] = ACTIONS(1728), + [anon_sym_u16] = ACTIONS(1728), + [anon_sym_i16] = ACTIONS(1728), + [anon_sym_u32] = ACTIONS(1728), + [anon_sym_i32] = ACTIONS(1728), + [anon_sym_u64] = ACTIONS(1728), + [anon_sym_i64] = ACTIONS(1728), + [anon_sym_u128] = ACTIONS(1728), + [anon_sym_i128] = ACTIONS(1728), + [anon_sym_isize] = ACTIONS(1728), + [anon_sym_usize] = ACTIONS(1728), + [anon_sym_f32] = ACTIONS(1728), + [anon_sym_f64] = ACTIONS(1728), + [anon_sym_bool] = ACTIONS(1728), + [anon_sym_str] = ACTIONS(1728), + [anon_sym_char] = ACTIONS(1728), + [anon_sym_SQUOTE] = ACTIONS(1728), + [anon_sym_async] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1728), + [anon_sym_fn] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_impl] = ACTIONS(1728), + [anon_sym_let] = ACTIONS(1728), + [anon_sym_loop] = ACTIONS(1728), + [anon_sym_match] = ACTIONS(1728), + [anon_sym_mod] = ACTIONS(1728), + [anon_sym_pub] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_static] = ACTIONS(1728), + [anon_sym_struct] = ACTIONS(1728), + [anon_sym_trait] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1728), + [anon_sym_union] = ACTIONS(1728), + [anon_sym_unsafe] = ACTIONS(1728), + [anon_sym_use] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_extern] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), + [anon_sym_DOT_DOT] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_yield] = ACTIONS(1728), + [anon_sym_move] = ACTIONS(1728), + [sym_integer_literal] = ACTIONS(1726), + [aux_sym_string_literal_token1] = ACTIONS(1726), + [sym_char_literal] = ACTIONS(1726), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1728), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1728), + [sym_super] = ACTIONS(1728), + [sym_crate] = ACTIONS(1728), + [sym_metavariable] = ACTIONS(1726), + [sym_raw_string_literal] = ACTIONS(1726), + [sym_float_literal] = ACTIONS(1726), [sym_block_comment] = ACTIONS(3), }, [414] = { - [ts_builtin_sym_end] = ACTIONS(1748), - [sym_identifier] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_macro_rules_BANG] = ACTIONS(1748), - [anon_sym_LPAREN] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_RBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_u8] = ACTIONS(1750), - [anon_sym_i8] = ACTIONS(1750), - [anon_sym_u16] = ACTIONS(1750), - [anon_sym_i16] = ACTIONS(1750), - [anon_sym_u32] = ACTIONS(1750), - [anon_sym_i32] = ACTIONS(1750), - [anon_sym_u64] = ACTIONS(1750), - [anon_sym_i64] = ACTIONS(1750), - [anon_sym_u128] = ACTIONS(1750), - [anon_sym_i128] = ACTIONS(1750), - [anon_sym_isize] = ACTIONS(1750), - [anon_sym_usize] = ACTIONS(1750), - [anon_sym_f32] = ACTIONS(1750), - [anon_sym_f64] = ACTIONS(1750), - [anon_sym_bool] = ACTIONS(1750), - [anon_sym_str] = ACTIONS(1750), - [anon_sym_char] = ACTIONS(1750), - [anon_sym_SQUOTE] = ACTIONS(1750), - [anon_sym_async] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_fn] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_impl] = ACTIONS(1750), - [anon_sym_let] = ACTIONS(1750), - [anon_sym_loop] = ACTIONS(1750), - [anon_sym_match] = ACTIONS(1750), - [anon_sym_mod] = ACTIONS(1750), - [anon_sym_pub] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_trait] = ACTIONS(1750), - [anon_sym_type] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_unsafe] = ACTIONS(1750), - [anon_sym_use] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_POUND] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1748), - [anon_sym_COLON_COLON] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_DOT_DOT] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PIPE] = ACTIONS(1748), - [anon_sym_yield] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1748), - [aux_sym_string_literal_token1] = ACTIONS(1748), - [sym_char_literal] = ACTIONS(1748), - [anon_sym_true] = ACTIONS(1750), - [anon_sym_false] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_crate] = ACTIONS(1750), - [sym_metavariable] = ACTIONS(1748), - [sym_raw_string_literal] = ACTIONS(1748), - [sym_float_literal] = ACTIONS(1748), + [ts_builtin_sym_end] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_macro_rules_BANG] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_STAR] = ACTIONS(1730), + [anon_sym_u8] = ACTIONS(1732), + [anon_sym_i8] = ACTIONS(1732), + [anon_sym_u16] = ACTIONS(1732), + [anon_sym_i16] = ACTIONS(1732), + [anon_sym_u32] = ACTIONS(1732), + [anon_sym_i32] = ACTIONS(1732), + [anon_sym_u64] = ACTIONS(1732), + [anon_sym_i64] = ACTIONS(1732), + [anon_sym_u128] = ACTIONS(1732), + [anon_sym_i128] = ACTIONS(1732), + [anon_sym_isize] = ACTIONS(1732), + [anon_sym_usize] = ACTIONS(1732), + [anon_sym_f32] = ACTIONS(1732), + [anon_sym_f64] = ACTIONS(1732), + [anon_sym_bool] = ACTIONS(1732), + [anon_sym_str] = ACTIONS(1732), + [anon_sym_char] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1732), + [anon_sym_async] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_enum] = ACTIONS(1732), + [anon_sym_fn] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_impl] = ACTIONS(1732), + [anon_sym_let] = ACTIONS(1732), + [anon_sym_loop] = ACTIONS(1732), + [anon_sym_match] = ACTIONS(1732), + [anon_sym_mod] = ACTIONS(1732), + [anon_sym_pub] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_struct] = ACTIONS(1732), + [anon_sym_trait] = ACTIONS(1732), + [anon_sym_type] = ACTIONS(1732), + [anon_sym_union] = ACTIONS(1732), + [anon_sym_unsafe] = ACTIONS(1732), + [anon_sym_use] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_POUND] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(1732), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_COLON_COLON] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_yield] = ACTIONS(1732), + [anon_sym_move] = ACTIONS(1732), + [sym_integer_literal] = ACTIONS(1730), + [aux_sym_string_literal_token1] = ACTIONS(1730), + [sym_char_literal] = ACTIONS(1730), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1732), + [sym_super] = ACTIONS(1732), + [sym_crate] = ACTIONS(1732), + [sym_metavariable] = ACTIONS(1730), + [sym_raw_string_literal] = ACTIONS(1730), + [sym_float_literal] = ACTIONS(1730), [sym_block_comment] = ACTIONS(3), }, [415] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_macro_rules_BANG] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_u8] = ACTIONS(1754), - [anon_sym_i8] = ACTIONS(1754), - [anon_sym_u16] = ACTIONS(1754), - [anon_sym_i16] = ACTIONS(1754), - [anon_sym_u32] = ACTIONS(1754), - [anon_sym_i32] = ACTIONS(1754), - [anon_sym_u64] = ACTIONS(1754), - [anon_sym_i64] = ACTIONS(1754), - [anon_sym_u128] = ACTIONS(1754), - [anon_sym_i128] = ACTIONS(1754), - [anon_sym_isize] = ACTIONS(1754), - [anon_sym_usize] = ACTIONS(1754), - [anon_sym_f32] = ACTIONS(1754), - [anon_sym_f64] = ACTIONS(1754), - [anon_sym_bool] = ACTIONS(1754), - [anon_sym_str] = ACTIONS(1754), - [anon_sym_char] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1754), - [anon_sym_async] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_fn] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_impl] = ACTIONS(1754), - [anon_sym_let] = ACTIONS(1754), - [anon_sym_loop] = ACTIONS(1754), - [anon_sym_match] = ACTIONS(1754), - [anon_sym_mod] = ACTIONS(1754), - [anon_sym_pub] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_trait] = ACTIONS(1754), - [anon_sym_type] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_unsafe] = ACTIONS(1754), - [anon_sym_use] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_POUND] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_PIPE] = ACTIONS(1752), - [anon_sym_yield] = ACTIONS(1754), - [anon_sym_move] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [aux_sym_string_literal_token1] = ACTIONS(1752), - [sym_char_literal] = ACTIONS(1752), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1754), - [sym_super] = ACTIONS(1754), - [sym_crate] = ACTIONS(1754), - [sym_metavariable] = ACTIONS(1752), - [sym_raw_string_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1752), + [ts_builtin_sym_end] = ACTIONS(1734), + [sym_identifier] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_macro_rules_BANG] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_u8] = ACTIONS(1736), + [anon_sym_i8] = ACTIONS(1736), + [anon_sym_u16] = ACTIONS(1736), + [anon_sym_i16] = ACTIONS(1736), + [anon_sym_u32] = ACTIONS(1736), + [anon_sym_i32] = ACTIONS(1736), + [anon_sym_u64] = ACTIONS(1736), + [anon_sym_i64] = ACTIONS(1736), + [anon_sym_u128] = ACTIONS(1736), + [anon_sym_i128] = ACTIONS(1736), + [anon_sym_isize] = ACTIONS(1736), + [anon_sym_usize] = ACTIONS(1736), + [anon_sym_f32] = ACTIONS(1736), + [anon_sym_f64] = ACTIONS(1736), + [anon_sym_bool] = ACTIONS(1736), + [anon_sym_str] = ACTIONS(1736), + [anon_sym_char] = ACTIONS(1736), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_async] = ACTIONS(1736), + [anon_sym_break] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1736), + [anon_sym_continue] = ACTIONS(1736), + [anon_sym_default] = ACTIONS(1736), + [anon_sym_enum] = ACTIONS(1736), + [anon_sym_fn] = ACTIONS(1736), + [anon_sym_for] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(1736), + [anon_sym_impl] = ACTIONS(1736), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_loop] = ACTIONS(1736), + [anon_sym_match] = ACTIONS(1736), + [anon_sym_mod] = ACTIONS(1736), + [anon_sym_pub] = ACTIONS(1736), + [anon_sym_return] = ACTIONS(1736), + [anon_sym_static] = ACTIONS(1736), + [anon_sym_struct] = ACTIONS(1736), + [anon_sym_trait] = ACTIONS(1736), + [anon_sym_type] = ACTIONS(1736), + [anon_sym_union] = ACTIONS(1736), + [anon_sym_unsafe] = ACTIONS(1736), + [anon_sym_use] = ACTIONS(1736), + [anon_sym_while] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_extern] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_yield] = ACTIONS(1736), + [anon_sym_move] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [aux_sym_string_literal_token1] = ACTIONS(1734), + [sym_char_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1736), + [anon_sym_false] = ACTIONS(1736), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1736), + [sym_super] = ACTIONS(1736), + [sym_crate] = ACTIONS(1736), + [sym_metavariable] = ACTIONS(1734), + [sym_raw_string_literal] = ACTIONS(1734), + [sym_float_literal] = ACTIONS(1734), [sym_block_comment] = ACTIONS(3), }, [416] = { - [ts_builtin_sym_end] = ACTIONS(1756), - [sym_identifier] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_macro_rules_BANG] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_u8] = ACTIONS(1758), - [anon_sym_i8] = ACTIONS(1758), - [anon_sym_u16] = ACTIONS(1758), - [anon_sym_i16] = ACTIONS(1758), - [anon_sym_u32] = ACTIONS(1758), - [anon_sym_i32] = ACTIONS(1758), - [anon_sym_u64] = ACTIONS(1758), - [anon_sym_i64] = ACTIONS(1758), - [anon_sym_u128] = ACTIONS(1758), - [anon_sym_i128] = ACTIONS(1758), - [anon_sym_isize] = ACTIONS(1758), - [anon_sym_usize] = ACTIONS(1758), - [anon_sym_f32] = ACTIONS(1758), - [anon_sym_f64] = ACTIONS(1758), - [anon_sym_bool] = ACTIONS(1758), - [anon_sym_str] = ACTIONS(1758), - [anon_sym_char] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1758), - [anon_sym_async] = ACTIONS(1758), - [anon_sym_break] = ACTIONS(1758), - [anon_sym_const] = ACTIONS(1758), - [anon_sym_continue] = ACTIONS(1758), - [anon_sym_default] = ACTIONS(1758), - [anon_sym_enum] = ACTIONS(1758), - [anon_sym_fn] = ACTIONS(1758), - [anon_sym_for] = ACTIONS(1758), - [anon_sym_if] = ACTIONS(1758), - [anon_sym_impl] = ACTIONS(1758), - [anon_sym_let] = ACTIONS(1758), - [anon_sym_loop] = ACTIONS(1758), - [anon_sym_match] = ACTIONS(1758), - [anon_sym_mod] = ACTIONS(1758), - [anon_sym_pub] = ACTIONS(1758), - [anon_sym_return] = ACTIONS(1758), - [anon_sym_static] = ACTIONS(1758), - [anon_sym_struct] = ACTIONS(1758), - [anon_sym_trait] = ACTIONS(1758), - [anon_sym_type] = ACTIONS(1758), - [anon_sym_union] = ACTIONS(1758), - [anon_sym_unsafe] = ACTIONS(1758), - [anon_sym_use] = ACTIONS(1758), - [anon_sym_while] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(1756), - [anon_sym_BANG] = ACTIONS(1756), - [anon_sym_extern] = ACTIONS(1758), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_COLON_COLON] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_yield] = ACTIONS(1758), - [anon_sym_move] = ACTIONS(1758), - [sym_integer_literal] = ACTIONS(1756), - [aux_sym_string_literal_token1] = ACTIONS(1756), - [sym_char_literal] = ACTIONS(1756), - [anon_sym_true] = ACTIONS(1758), - [anon_sym_false] = ACTIONS(1758), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1758), - [sym_super] = ACTIONS(1758), - [sym_crate] = ACTIONS(1758), - [sym_metavariable] = ACTIONS(1756), - [sym_raw_string_literal] = ACTIONS(1756), - [sym_float_literal] = ACTIONS(1756), + [ts_builtin_sym_end] = ACTIONS(1738), + [sym_identifier] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_macro_rules_BANG] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_LBRACK] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_u8] = ACTIONS(1740), + [anon_sym_i8] = ACTIONS(1740), + [anon_sym_u16] = ACTIONS(1740), + [anon_sym_i16] = ACTIONS(1740), + [anon_sym_u32] = ACTIONS(1740), + [anon_sym_i32] = ACTIONS(1740), + [anon_sym_u64] = ACTIONS(1740), + [anon_sym_i64] = ACTIONS(1740), + [anon_sym_u128] = ACTIONS(1740), + [anon_sym_i128] = ACTIONS(1740), + [anon_sym_isize] = ACTIONS(1740), + [anon_sym_usize] = ACTIONS(1740), + [anon_sym_f32] = ACTIONS(1740), + [anon_sym_f64] = ACTIONS(1740), + [anon_sym_bool] = ACTIONS(1740), + [anon_sym_str] = ACTIONS(1740), + [anon_sym_char] = ACTIONS(1740), + [anon_sym_SQUOTE] = ACTIONS(1740), + [anon_sym_async] = ACTIONS(1740), + [anon_sym_break] = ACTIONS(1740), + [anon_sym_const] = ACTIONS(1740), + [anon_sym_continue] = ACTIONS(1740), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_enum] = ACTIONS(1740), + [anon_sym_fn] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1740), + [anon_sym_if] = ACTIONS(1740), + [anon_sym_impl] = ACTIONS(1740), + [anon_sym_let] = ACTIONS(1740), + [anon_sym_loop] = ACTIONS(1740), + [anon_sym_match] = ACTIONS(1740), + [anon_sym_mod] = ACTIONS(1740), + [anon_sym_pub] = ACTIONS(1740), + [anon_sym_return] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1740), + [anon_sym_struct] = ACTIONS(1740), + [anon_sym_trait] = ACTIONS(1740), + [anon_sym_type] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_unsafe] = ACTIONS(1740), + [anon_sym_use] = ACTIONS(1740), + [anon_sym_while] = ACTIONS(1740), + [anon_sym_POUND] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_extern] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1738), + [anon_sym_AMP] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_yield] = ACTIONS(1740), + [anon_sym_move] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [aux_sym_string_literal_token1] = ACTIONS(1738), + [sym_char_literal] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1740), + [sym_super] = ACTIONS(1740), + [sym_crate] = ACTIONS(1740), + [sym_metavariable] = ACTIONS(1738), + [sym_raw_string_literal] = ACTIONS(1738), + [sym_float_literal] = ACTIONS(1738), [sym_block_comment] = ACTIONS(3), }, [417] = { - [ts_builtin_sym_end] = ACTIONS(1760), - [sym_identifier] = ACTIONS(1762), - [anon_sym_SEMI] = ACTIONS(1760), - [anon_sym_macro_rules_BANG] = ACTIONS(1760), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_RBRACE] = ACTIONS(1760), - [anon_sym_LBRACK] = ACTIONS(1760), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_u8] = ACTIONS(1762), - [anon_sym_i8] = ACTIONS(1762), - [anon_sym_u16] = ACTIONS(1762), - [anon_sym_i16] = ACTIONS(1762), - [anon_sym_u32] = ACTIONS(1762), - [anon_sym_i32] = ACTIONS(1762), - [anon_sym_u64] = ACTIONS(1762), - [anon_sym_i64] = ACTIONS(1762), - [anon_sym_u128] = ACTIONS(1762), - [anon_sym_i128] = ACTIONS(1762), - [anon_sym_isize] = ACTIONS(1762), - [anon_sym_usize] = ACTIONS(1762), - [anon_sym_f32] = ACTIONS(1762), - [anon_sym_f64] = ACTIONS(1762), - [anon_sym_bool] = ACTIONS(1762), - [anon_sym_str] = ACTIONS(1762), - [anon_sym_char] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1762), - [anon_sym_async] = ACTIONS(1762), - [anon_sym_break] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_continue] = ACTIONS(1762), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_enum] = ACTIONS(1762), - [anon_sym_fn] = ACTIONS(1762), - [anon_sym_for] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1762), - [anon_sym_impl] = ACTIONS(1762), - [anon_sym_let] = ACTIONS(1762), - [anon_sym_loop] = ACTIONS(1762), - [anon_sym_match] = ACTIONS(1762), - [anon_sym_mod] = ACTIONS(1762), - [anon_sym_pub] = ACTIONS(1762), - [anon_sym_return] = ACTIONS(1762), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_struct] = ACTIONS(1762), - [anon_sym_trait] = ACTIONS(1762), - [anon_sym_type] = ACTIONS(1762), - [anon_sym_union] = ACTIONS(1762), - [anon_sym_unsafe] = ACTIONS(1762), - [anon_sym_use] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(1760), - [anon_sym_BANG] = ACTIONS(1760), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_COLON_COLON] = ACTIONS(1760), - [anon_sym_AMP] = ACTIONS(1760), - [anon_sym_DOT_DOT] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_PIPE] = ACTIONS(1760), - [anon_sym_yield] = ACTIONS(1762), - [anon_sym_move] = ACTIONS(1762), - [sym_integer_literal] = ACTIONS(1760), - [aux_sym_string_literal_token1] = ACTIONS(1760), - [sym_char_literal] = ACTIONS(1760), - [anon_sym_true] = ACTIONS(1762), - [anon_sym_false] = ACTIONS(1762), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1762), - [sym_super] = ACTIONS(1762), - [sym_crate] = ACTIONS(1762), - [sym_metavariable] = ACTIONS(1760), - [sym_raw_string_literal] = ACTIONS(1760), - [sym_float_literal] = ACTIONS(1760), + [ts_builtin_sym_end] = ACTIONS(1742), + [sym_identifier] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_macro_rules_BANG] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_u8] = ACTIONS(1744), + [anon_sym_i8] = ACTIONS(1744), + [anon_sym_u16] = ACTIONS(1744), + [anon_sym_i16] = ACTIONS(1744), + [anon_sym_u32] = ACTIONS(1744), + [anon_sym_i32] = ACTIONS(1744), + [anon_sym_u64] = ACTIONS(1744), + [anon_sym_i64] = ACTIONS(1744), + [anon_sym_u128] = ACTIONS(1744), + [anon_sym_i128] = ACTIONS(1744), + [anon_sym_isize] = ACTIONS(1744), + [anon_sym_usize] = ACTIONS(1744), + [anon_sym_f32] = ACTIONS(1744), + [anon_sym_f64] = ACTIONS(1744), + [anon_sym_bool] = ACTIONS(1744), + [anon_sym_str] = ACTIONS(1744), + [anon_sym_char] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1744), + [anon_sym_async] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_fn] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_impl] = ACTIONS(1744), + [anon_sym_let] = ACTIONS(1744), + [anon_sym_loop] = ACTIONS(1744), + [anon_sym_match] = ACTIONS(1744), + [anon_sym_mod] = ACTIONS(1744), + [anon_sym_pub] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_trait] = ACTIONS(1744), + [anon_sym_type] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_unsafe] = ACTIONS(1744), + [anon_sym_use] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym_LT] = ACTIONS(1742), + [anon_sym_COLON_COLON] = ACTIONS(1742), + [anon_sym_AMP] = ACTIONS(1742), + [anon_sym_DOT_DOT] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_yield] = ACTIONS(1744), + [anon_sym_move] = ACTIONS(1744), + [sym_integer_literal] = ACTIONS(1742), + [aux_sym_string_literal_token1] = ACTIONS(1742), + [sym_char_literal] = ACTIONS(1742), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1744), + [sym_super] = ACTIONS(1744), + [sym_crate] = ACTIONS(1744), + [sym_metavariable] = ACTIONS(1742), + [sym_raw_string_literal] = ACTIONS(1742), + [sym_float_literal] = ACTIONS(1742), [sym_block_comment] = ACTIONS(3), }, [418] = { - [ts_builtin_sym_end] = ACTIONS(1764), - [sym_identifier] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym_macro_rules_BANG] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_u8] = ACTIONS(1766), - [anon_sym_i8] = ACTIONS(1766), - [anon_sym_u16] = ACTIONS(1766), - [anon_sym_i16] = ACTIONS(1766), - [anon_sym_u32] = ACTIONS(1766), - [anon_sym_i32] = ACTIONS(1766), - [anon_sym_u64] = ACTIONS(1766), - [anon_sym_i64] = ACTIONS(1766), - [anon_sym_u128] = ACTIONS(1766), - [anon_sym_i128] = ACTIONS(1766), - [anon_sym_isize] = ACTIONS(1766), - [anon_sym_usize] = ACTIONS(1766), - [anon_sym_f32] = ACTIONS(1766), - [anon_sym_f64] = ACTIONS(1766), - [anon_sym_bool] = ACTIONS(1766), - [anon_sym_str] = ACTIONS(1766), - [anon_sym_char] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1766), - [anon_sym_async] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1766), - [anon_sym_const] = ACTIONS(1766), - [anon_sym_continue] = ACTIONS(1766), - [anon_sym_default] = ACTIONS(1766), - [anon_sym_enum] = ACTIONS(1766), - [anon_sym_fn] = ACTIONS(1766), - [anon_sym_for] = ACTIONS(1766), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_impl] = ACTIONS(1766), - [anon_sym_let] = ACTIONS(1766), - [anon_sym_loop] = ACTIONS(1766), - [anon_sym_match] = ACTIONS(1766), - [anon_sym_mod] = ACTIONS(1766), - [anon_sym_pub] = ACTIONS(1766), - [anon_sym_return] = ACTIONS(1766), - [anon_sym_static] = ACTIONS(1766), - [anon_sym_struct] = ACTIONS(1766), - [anon_sym_trait] = ACTIONS(1766), - [anon_sym_type] = ACTIONS(1766), - [anon_sym_union] = ACTIONS(1766), - [anon_sym_unsafe] = ACTIONS(1766), - [anon_sym_use] = ACTIONS(1766), - [anon_sym_while] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_extern] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1764), - [anon_sym_yield] = ACTIONS(1766), - [anon_sym_move] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [aux_sym_string_literal_token1] = ACTIONS(1764), - [sym_char_literal] = ACTIONS(1764), - [anon_sym_true] = ACTIONS(1766), - [anon_sym_false] = ACTIONS(1766), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1766), - [sym_super] = ACTIONS(1766), - [sym_crate] = ACTIONS(1766), - [sym_metavariable] = ACTIONS(1764), - [sym_raw_string_literal] = ACTIONS(1764), - [sym_float_literal] = ACTIONS(1764), + [ts_builtin_sym_end] = ACTIONS(1746), + [sym_identifier] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_macro_rules_BANG] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_u8] = ACTIONS(1748), + [anon_sym_i8] = ACTIONS(1748), + [anon_sym_u16] = ACTIONS(1748), + [anon_sym_i16] = ACTIONS(1748), + [anon_sym_u32] = ACTIONS(1748), + [anon_sym_i32] = ACTIONS(1748), + [anon_sym_u64] = ACTIONS(1748), + [anon_sym_i64] = ACTIONS(1748), + [anon_sym_u128] = ACTIONS(1748), + [anon_sym_i128] = ACTIONS(1748), + [anon_sym_isize] = ACTIONS(1748), + [anon_sym_usize] = ACTIONS(1748), + [anon_sym_f32] = ACTIONS(1748), + [anon_sym_f64] = ACTIONS(1748), + [anon_sym_bool] = ACTIONS(1748), + [anon_sym_str] = ACTIONS(1748), + [anon_sym_char] = ACTIONS(1748), + [anon_sym_SQUOTE] = ACTIONS(1748), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_break] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1748), + [anon_sym_fn] = ACTIONS(1748), + [anon_sym_for] = ACTIONS(1748), + [anon_sym_if] = ACTIONS(1748), + [anon_sym_impl] = ACTIONS(1748), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_loop] = ACTIONS(1748), + [anon_sym_match] = ACTIONS(1748), + [anon_sym_mod] = ACTIONS(1748), + [anon_sym_pub] = ACTIONS(1748), + [anon_sym_return] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_struct] = ACTIONS(1748), + [anon_sym_trait] = ACTIONS(1748), + [anon_sym_type] = ACTIONS(1748), + [anon_sym_union] = ACTIONS(1748), + [anon_sym_unsafe] = ACTIONS(1748), + [anon_sym_use] = ACTIONS(1748), + [anon_sym_while] = ACTIONS(1748), + [anon_sym_POUND] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1746), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym_LT] = ACTIONS(1746), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_AMP] = ACTIONS(1746), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_DASH] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_yield] = ACTIONS(1748), + [anon_sym_move] = ACTIONS(1748), + [sym_integer_literal] = ACTIONS(1746), + [aux_sym_string_literal_token1] = ACTIONS(1746), + [sym_char_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1748), + [sym_super] = ACTIONS(1748), + [sym_crate] = ACTIONS(1748), + [sym_metavariable] = ACTIONS(1746), + [sym_raw_string_literal] = ACTIONS(1746), + [sym_float_literal] = ACTIONS(1746), [sym_block_comment] = ACTIONS(3), }, [419] = { - [ts_builtin_sym_end] = ACTIONS(1768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_macro_rules_BANG] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(1768), - [anon_sym_LBRACE] = ACTIONS(1768), - [anon_sym_RBRACE] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(1768), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_u8] = ACTIONS(1770), - [anon_sym_i8] = ACTIONS(1770), - [anon_sym_u16] = ACTIONS(1770), - [anon_sym_i16] = ACTIONS(1770), - [anon_sym_u32] = ACTIONS(1770), - [anon_sym_i32] = ACTIONS(1770), - [anon_sym_u64] = ACTIONS(1770), - [anon_sym_i64] = ACTIONS(1770), - [anon_sym_u128] = ACTIONS(1770), - [anon_sym_i128] = ACTIONS(1770), - [anon_sym_isize] = ACTIONS(1770), - [anon_sym_usize] = ACTIONS(1770), - [anon_sym_f32] = ACTIONS(1770), - [anon_sym_f64] = ACTIONS(1770), - [anon_sym_bool] = ACTIONS(1770), - [anon_sym_str] = ACTIONS(1770), - [anon_sym_char] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1770), - [anon_sym_async] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_default] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [anon_sym_fn] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_impl] = ACTIONS(1770), - [anon_sym_let] = ACTIONS(1770), - [anon_sym_loop] = ACTIONS(1770), - [anon_sym_match] = ACTIONS(1770), - [anon_sym_mod] = ACTIONS(1770), - [anon_sym_pub] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_struct] = ACTIONS(1770), - [anon_sym_trait] = ACTIONS(1770), - [anon_sym_type] = ACTIONS(1770), - [anon_sym_union] = ACTIONS(1770), - [anon_sym_unsafe] = ACTIONS(1770), - [anon_sym_use] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1768), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_COLON_COLON] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), - [anon_sym_DOT_DOT] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_PIPE] = ACTIONS(1768), - [anon_sym_yield] = ACTIONS(1770), - [anon_sym_move] = ACTIONS(1770), - [sym_integer_literal] = ACTIONS(1768), - [aux_sym_string_literal_token1] = ACTIONS(1768), - [sym_char_literal] = ACTIONS(1768), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1770), - [sym_super] = ACTIONS(1770), - [sym_crate] = ACTIONS(1770), - [sym_metavariable] = ACTIONS(1768), - [sym_raw_string_literal] = ACTIONS(1768), - [sym_float_literal] = ACTIONS(1768), + [ts_builtin_sym_end] = ACTIONS(1750), + [sym_identifier] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_macro_rules_BANG] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_u8] = ACTIONS(1752), + [anon_sym_i8] = ACTIONS(1752), + [anon_sym_u16] = ACTIONS(1752), + [anon_sym_i16] = ACTIONS(1752), + [anon_sym_u32] = ACTIONS(1752), + [anon_sym_i32] = ACTIONS(1752), + [anon_sym_u64] = ACTIONS(1752), + [anon_sym_i64] = ACTIONS(1752), + [anon_sym_u128] = ACTIONS(1752), + [anon_sym_i128] = ACTIONS(1752), + [anon_sym_isize] = ACTIONS(1752), + [anon_sym_usize] = ACTIONS(1752), + [anon_sym_f32] = ACTIONS(1752), + [anon_sym_f64] = ACTIONS(1752), + [anon_sym_bool] = ACTIONS(1752), + [anon_sym_str] = ACTIONS(1752), + [anon_sym_char] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1752), + [anon_sym_async] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_const] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_default] = ACTIONS(1752), + [anon_sym_enum] = ACTIONS(1752), + [anon_sym_fn] = ACTIONS(1752), + [anon_sym_for] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_impl] = ACTIONS(1752), + [anon_sym_let] = ACTIONS(1752), + [anon_sym_loop] = ACTIONS(1752), + [anon_sym_match] = ACTIONS(1752), + [anon_sym_mod] = ACTIONS(1752), + [anon_sym_pub] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_static] = ACTIONS(1752), + [anon_sym_struct] = ACTIONS(1752), + [anon_sym_trait] = ACTIONS(1752), + [anon_sym_type] = ACTIONS(1752), + [anon_sym_union] = ACTIONS(1752), + [anon_sym_unsafe] = ACTIONS(1752), + [anon_sym_use] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_extern] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_yield] = ACTIONS(1752), + [anon_sym_move] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [aux_sym_string_literal_token1] = ACTIONS(1750), + [sym_char_literal] = ACTIONS(1750), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1750), + [sym_raw_string_literal] = ACTIONS(1750), + [sym_float_literal] = ACTIONS(1750), [sym_block_comment] = ACTIONS(3), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(1772), - [sym_identifier] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_macro_rules_BANG] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_u8] = ACTIONS(1774), - [anon_sym_i8] = ACTIONS(1774), - [anon_sym_u16] = ACTIONS(1774), - [anon_sym_i16] = ACTIONS(1774), - [anon_sym_u32] = ACTIONS(1774), - [anon_sym_i32] = ACTIONS(1774), - [anon_sym_u64] = ACTIONS(1774), - [anon_sym_i64] = ACTIONS(1774), - [anon_sym_u128] = ACTIONS(1774), - [anon_sym_i128] = ACTIONS(1774), - [anon_sym_isize] = ACTIONS(1774), - [anon_sym_usize] = ACTIONS(1774), - [anon_sym_f32] = ACTIONS(1774), - [anon_sym_f64] = ACTIONS(1774), - [anon_sym_bool] = ACTIONS(1774), - [anon_sym_str] = ACTIONS(1774), - [anon_sym_char] = ACTIONS(1774), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_async] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_fn] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_impl] = ACTIONS(1774), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_loop] = ACTIONS(1774), - [anon_sym_match] = ACTIONS(1774), - [anon_sym_mod] = ACTIONS(1774), - [anon_sym_pub] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_trait] = ACTIONS(1774), - [anon_sym_type] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_unsafe] = ACTIONS(1774), - [anon_sym_use] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_yield] = ACTIONS(1774), - [anon_sym_move] = ACTIONS(1774), - [sym_integer_literal] = ACTIONS(1772), - [aux_sym_string_literal_token1] = ACTIONS(1772), - [sym_char_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1774), - [anon_sym_false] = ACTIONS(1774), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_crate] = ACTIONS(1774), - [sym_metavariable] = ACTIONS(1772), - [sym_raw_string_literal] = ACTIONS(1772), - [sym_float_literal] = ACTIONS(1772), + [ts_builtin_sym_end] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_macro_rules_BANG] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_u8] = ACTIONS(1756), + [anon_sym_i8] = ACTIONS(1756), + [anon_sym_u16] = ACTIONS(1756), + [anon_sym_i16] = ACTIONS(1756), + [anon_sym_u32] = ACTIONS(1756), + [anon_sym_i32] = ACTIONS(1756), + [anon_sym_u64] = ACTIONS(1756), + [anon_sym_i64] = ACTIONS(1756), + [anon_sym_u128] = ACTIONS(1756), + [anon_sym_i128] = ACTIONS(1756), + [anon_sym_isize] = ACTIONS(1756), + [anon_sym_usize] = ACTIONS(1756), + [anon_sym_f32] = ACTIONS(1756), + [anon_sym_f64] = ACTIONS(1756), + [anon_sym_bool] = ACTIONS(1756), + [anon_sym_str] = ACTIONS(1756), + [anon_sym_char] = ACTIONS(1756), + [anon_sym_SQUOTE] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), + [anon_sym_fn] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_impl] = ACTIONS(1756), + [anon_sym_let] = ACTIONS(1756), + [anon_sym_loop] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_mod] = ACTIONS(1756), + [anon_sym_pub] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1756), + [anon_sym_trait] = ACTIONS(1756), + [anon_sym_type] = ACTIONS(1756), + [anon_sym_union] = ACTIONS(1756), + [anon_sym_unsafe] = ACTIONS(1756), + [anon_sym_use] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_POUND] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_extern] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_yield] = ACTIONS(1756), + [anon_sym_move] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [aux_sym_string_literal_token1] = ACTIONS(1754), + [sym_char_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1756), + [anon_sym_false] = ACTIONS(1756), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1756), + [sym_super] = ACTIONS(1756), + [sym_crate] = ACTIONS(1756), + [sym_metavariable] = ACTIONS(1754), + [sym_raw_string_literal] = ACTIONS(1754), + [sym_float_literal] = ACTIONS(1754), [sym_block_comment] = ACTIONS(3), }, [421] = { - [ts_builtin_sym_end] = ACTIONS(1776), - [sym_identifier] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_macro_rules_BANG] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_u8] = ACTIONS(1778), - [anon_sym_i8] = ACTIONS(1778), - [anon_sym_u16] = ACTIONS(1778), - [anon_sym_i16] = ACTIONS(1778), - [anon_sym_u32] = ACTIONS(1778), - [anon_sym_i32] = ACTIONS(1778), - [anon_sym_u64] = ACTIONS(1778), - [anon_sym_i64] = ACTIONS(1778), - [anon_sym_u128] = ACTIONS(1778), - [anon_sym_i128] = ACTIONS(1778), - [anon_sym_isize] = ACTIONS(1778), - [anon_sym_usize] = ACTIONS(1778), - [anon_sym_f32] = ACTIONS(1778), - [anon_sym_f64] = ACTIONS(1778), - [anon_sym_bool] = ACTIONS(1778), - [anon_sym_str] = ACTIONS(1778), - [anon_sym_char] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1778), - [anon_sym_async] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_default] = ACTIONS(1778), - [anon_sym_enum] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_impl] = ACTIONS(1778), - [anon_sym_let] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1778), - [anon_sym_match] = ACTIONS(1778), - [anon_sym_mod] = ACTIONS(1778), - [anon_sym_pub] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1778), - [anon_sym_struct] = ACTIONS(1778), - [anon_sym_trait] = ACTIONS(1778), - [anon_sym_type] = ACTIONS(1778), - [anon_sym_union] = ACTIONS(1778), - [anon_sym_unsafe] = ACTIONS(1778), - [anon_sym_use] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_COLON_COLON] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_DOT_DOT] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1776), - [anon_sym_yield] = ACTIONS(1778), - [anon_sym_move] = ACTIONS(1778), - [sym_integer_literal] = ACTIONS(1776), - [aux_sym_string_literal_token1] = ACTIONS(1776), - [sym_char_literal] = ACTIONS(1776), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1778), - [sym_super] = ACTIONS(1778), - [sym_crate] = ACTIONS(1778), - [sym_metavariable] = ACTIONS(1776), - [sym_raw_string_literal] = ACTIONS(1776), - [sym_float_literal] = ACTIONS(1776), + [ts_builtin_sym_end] = ACTIONS(1758), + [sym_identifier] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_macro_rules_BANG] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1758), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_u8] = ACTIONS(1760), + [anon_sym_i8] = ACTIONS(1760), + [anon_sym_u16] = ACTIONS(1760), + [anon_sym_i16] = ACTIONS(1760), + [anon_sym_u32] = ACTIONS(1760), + [anon_sym_i32] = ACTIONS(1760), + [anon_sym_u64] = ACTIONS(1760), + [anon_sym_i64] = ACTIONS(1760), + [anon_sym_u128] = ACTIONS(1760), + [anon_sym_i128] = ACTIONS(1760), + [anon_sym_isize] = ACTIONS(1760), + [anon_sym_usize] = ACTIONS(1760), + [anon_sym_f32] = ACTIONS(1760), + [anon_sym_f64] = ACTIONS(1760), + [anon_sym_bool] = ACTIONS(1760), + [anon_sym_str] = ACTIONS(1760), + [anon_sym_char] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_async] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1760), + [anon_sym_enum] = ACTIONS(1760), + [anon_sym_fn] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_impl] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1760), + [anon_sym_pub] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_struct] = ACTIONS(1760), + [anon_sym_trait] = ACTIONS(1760), + [anon_sym_type] = ACTIONS(1760), + [anon_sym_union] = ACTIONS(1760), + [anon_sym_unsafe] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(1758), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_LT] = ACTIONS(1758), + [anon_sym_COLON_COLON] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_DOT_DOT] = ACTIONS(1758), + [anon_sym_DASH] = ACTIONS(1758), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_yield] = ACTIONS(1760), + [anon_sym_move] = ACTIONS(1760), + [sym_integer_literal] = ACTIONS(1758), + [aux_sym_string_literal_token1] = ACTIONS(1758), + [sym_char_literal] = ACTIONS(1758), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1760), + [sym_super] = ACTIONS(1760), + [sym_crate] = ACTIONS(1760), + [sym_metavariable] = ACTIONS(1758), + [sym_raw_string_literal] = ACTIONS(1758), + [sym_float_literal] = ACTIONS(1758), [sym_block_comment] = ACTIONS(3), }, [422] = { - [ts_builtin_sym_end] = ACTIONS(1780), - [sym_identifier] = ACTIONS(1782), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_macro_rules_BANG] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_u8] = ACTIONS(1782), - [anon_sym_i8] = ACTIONS(1782), - [anon_sym_u16] = ACTIONS(1782), - [anon_sym_i16] = ACTIONS(1782), - [anon_sym_u32] = ACTIONS(1782), - [anon_sym_i32] = ACTIONS(1782), - [anon_sym_u64] = ACTIONS(1782), - [anon_sym_i64] = ACTIONS(1782), - [anon_sym_u128] = ACTIONS(1782), - [anon_sym_i128] = ACTIONS(1782), - [anon_sym_isize] = ACTIONS(1782), - [anon_sym_usize] = ACTIONS(1782), - [anon_sym_f32] = ACTIONS(1782), - [anon_sym_f64] = ACTIONS(1782), - [anon_sym_bool] = ACTIONS(1782), - [anon_sym_str] = ACTIONS(1782), - [anon_sym_char] = ACTIONS(1782), - [anon_sym_SQUOTE] = ACTIONS(1782), - [anon_sym_async] = ACTIONS(1782), - [anon_sym_break] = ACTIONS(1782), - [anon_sym_const] = ACTIONS(1782), - [anon_sym_continue] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1782), - [anon_sym_enum] = ACTIONS(1782), - [anon_sym_fn] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1782), - [anon_sym_if] = ACTIONS(1782), - [anon_sym_impl] = ACTIONS(1782), - [anon_sym_let] = ACTIONS(1782), - [anon_sym_loop] = ACTIONS(1782), - [anon_sym_match] = ACTIONS(1782), - [anon_sym_mod] = ACTIONS(1782), - [anon_sym_pub] = ACTIONS(1782), - [anon_sym_return] = ACTIONS(1782), - [anon_sym_static] = ACTIONS(1782), - [anon_sym_struct] = ACTIONS(1782), - [anon_sym_trait] = ACTIONS(1782), - [anon_sym_type] = ACTIONS(1782), - [anon_sym_union] = ACTIONS(1782), - [anon_sym_unsafe] = ACTIONS(1782), - [anon_sym_use] = ACTIONS(1782), - [anon_sym_while] = ACTIONS(1782), - [anon_sym_POUND] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_extern] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_yield] = ACTIONS(1782), - [anon_sym_move] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [aux_sym_string_literal_token1] = ACTIONS(1780), - [sym_char_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1782), - [sym_super] = ACTIONS(1782), - [sym_crate] = ACTIONS(1782), - [sym_metavariable] = ACTIONS(1780), - [sym_raw_string_literal] = ACTIONS(1780), - [sym_float_literal] = ACTIONS(1780), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym_identifier] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_macro_rules_BANG] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_u8] = ACTIONS(1764), + [anon_sym_i8] = ACTIONS(1764), + [anon_sym_u16] = ACTIONS(1764), + [anon_sym_i16] = ACTIONS(1764), + [anon_sym_u32] = ACTIONS(1764), + [anon_sym_i32] = ACTIONS(1764), + [anon_sym_u64] = ACTIONS(1764), + [anon_sym_i64] = ACTIONS(1764), + [anon_sym_u128] = ACTIONS(1764), + [anon_sym_i128] = ACTIONS(1764), + [anon_sym_isize] = ACTIONS(1764), + [anon_sym_usize] = ACTIONS(1764), + [anon_sym_f32] = ACTIONS(1764), + [anon_sym_f64] = ACTIONS(1764), + [anon_sym_bool] = ACTIONS(1764), + [anon_sym_str] = ACTIONS(1764), + [anon_sym_char] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_async] = ACTIONS(1764), + [anon_sym_break] = ACTIONS(1764), + [anon_sym_const] = ACTIONS(1764), + [anon_sym_continue] = ACTIONS(1764), + [anon_sym_default] = ACTIONS(1764), + [anon_sym_enum] = ACTIONS(1764), + [anon_sym_fn] = ACTIONS(1764), + [anon_sym_for] = ACTIONS(1764), + [anon_sym_if] = ACTIONS(1764), + [anon_sym_impl] = ACTIONS(1764), + [anon_sym_let] = ACTIONS(1764), + [anon_sym_loop] = ACTIONS(1764), + [anon_sym_match] = ACTIONS(1764), + [anon_sym_mod] = ACTIONS(1764), + [anon_sym_pub] = ACTIONS(1764), + [anon_sym_return] = ACTIONS(1764), + [anon_sym_static] = ACTIONS(1764), + [anon_sym_struct] = ACTIONS(1764), + [anon_sym_trait] = ACTIONS(1764), + [anon_sym_type] = ACTIONS(1764), + [anon_sym_union] = ACTIONS(1764), + [anon_sym_unsafe] = ACTIONS(1764), + [anon_sym_use] = ACTIONS(1764), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_POUND] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_yield] = ACTIONS(1764), + [anon_sym_move] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [aux_sym_string_literal_token1] = ACTIONS(1762), + [sym_char_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1764), + [anon_sym_false] = ACTIONS(1764), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1764), + [sym_super] = ACTIONS(1764), + [sym_crate] = ACTIONS(1764), + [sym_metavariable] = ACTIONS(1762), + [sym_raw_string_literal] = ACTIONS(1762), + [sym_float_literal] = ACTIONS(1762), [sym_block_comment] = ACTIONS(3), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(1784), - [sym_identifier] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_macro_rules_BANG] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1784), - [anon_sym_RBRACE] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_u8] = ACTIONS(1786), - [anon_sym_i8] = ACTIONS(1786), - [anon_sym_u16] = ACTIONS(1786), - [anon_sym_i16] = ACTIONS(1786), - [anon_sym_u32] = ACTIONS(1786), - [anon_sym_i32] = ACTIONS(1786), - [anon_sym_u64] = ACTIONS(1786), - [anon_sym_i64] = ACTIONS(1786), - [anon_sym_u128] = ACTIONS(1786), - [anon_sym_i128] = ACTIONS(1786), - [anon_sym_isize] = ACTIONS(1786), - [anon_sym_usize] = ACTIONS(1786), - [anon_sym_f32] = ACTIONS(1786), - [anon_sym_f64] = ACTIONS(1786), - [anon_sym_bool] = ACTIONS(1786), - [anon_sym_str] = ACTIONS(1786), - [anon_sym_char] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1786), - [anon_sym_async] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_fn] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_impl] = ACTIONS(1786), - [anon_sym_let] = ACTIONS(1786), - [anon_sym_loop] = ACTIONS(1786), - [anon_sym_match] = ACTIONS(1786), - [anon_sym_mod] = ACTIONS(1786), - [anon_sym_pub] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_trait] = ACTIONS(1786), - [anon_sym_type] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_unsafe] = ACTIONS(1786), - [anon_sym_use] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1784), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_yield] = ACTIONS(1786), - [anon_sym_move] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [aux_sym_string_literal_token1] = ACTIONS(1784), - [sym_char_literal] = ACTIONS(1784), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_crate] = ACTIONS(1786), - [sym_metavariable] = ACTIONS(1784), - [sym_raw_string_literal] = ACTIONS(1784), - [sym_float_literal] = ACTIONS(1784), + [ts_builtin_sym_end] = ACTIONS(1766), + [sym_identifier] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_macro_rules_BANG] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_u8] = ACTIONS(1768), + [anon_sym_i8] = ACTIONS(1768), + [anon_sym_u16] = ACTIONS(1768), + [anon_sym_i16] = ACTIONS(1768), + [anon_sym_u32] = ACTIONS(1768), + [anon_sym_i32] = ACTIONS(1768), + [anon_sym_u64] = ACTIONS(1768), + [anon_sym_i64] = ACTIONS(1768), + [anon_sym_u128] = ACTIONS(1768), + [anon_sym_i128] = ACTIONS(1768), + [anon_sym_isize] = ACTIONS(1768), + [anon_sym_usize] = ACTIONS(1768), + [anon_sym_f32] = ACTIONS(1768), + [anon_sym_f64] = ACTIONS(1768), + [anon_sym_bool] = ACTIONS(1768), + [anon_sym_str] = ACTIONS(1768), + [anon_sym_char] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_async] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_const] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_default] = ACTIONS(1768), + [anon_sym_enum] = ACTIONS(1768), + [anon_sym_fn] = ACTIONS(1768), + [anon_sym_for] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_impl] = ACTIONS(1768), + [anon_sym_let] = ACTIONS(1768), + [anon_sym_loop] = ACTIONS(1768), + [anon_sym_match] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1768), + [anon_sym_pub] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_static] = ACTIONS(1768), + [anon_sym_struct] = ACTIONS(1768), + [anon_sym_trait] = ACTIONS(1768), + [anon_sym_type] = ACTIONS(1768), + [anon_sym_union] = ACTIONS(1768), + [anon_sym_unsafe] = ACTIONS(1768), + [anon_sym_use] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_COLON_COLON] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_yield] = ACTIONS(1768), + [anon_sym_move] = ACTIONS(1768), + [sym_integer_literal] = ACTIONS(1766), + [aux_sym_string_literal_token1] = ACTIONS(1766), + [sym_char_literal] = ACTIONS(1766), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1768), + [sym_super] = ACTIONS(1768), + [sym_crate] = ACTIONS(1768), + [sym_metavariable] = ACTIONS(1766), + [sym_raw_string_literal] = ACTIONS(1766), + [sym_float_literal] = ACTIONS(1766), [sym_block_comment] = ACTIONS(3), }, [424] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_macro_rules_BANG] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_u8] = ACTIONS(1790), - [anon_sym_i8] = ACTIONS(1790), - [anon_sym_u16] = ACTIONS(1790), - [anon_sym_i16] = ACTIONS(1790), - [anon_sym_u32] = ACTIONS(1790), - [anon_sym_i32] = ACTIONS(1790), - [anon_sym_u64] = ACTIONS(1790), - [anon_sym_i64] = ACTIONS(1790), - [anon_sym_u128] = ACTIONS(1790), - [anon_sym_i128] = ACTIONS(1790), - [anon_sym_isize] = ACTIONS(1790), - [anon_sym_usize] = ACTIONS(1790), - [anon_sym_f32] = ACTIONS(1790), - [anon_sym_f64] = ACTIONS(1790), - [anon_sym_bool] = ACTIONS(1790), - [anon_sym_str] = ACTIONS(1790), - [anon_sym_char] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1790), - [anon_sym_async] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_fn] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_impl] = ACTIONS(1790), - [anon_sym_let] = ACTIONS(1790), - [anon_sym_loop] = ACTIONS(1790), - [anon_sym_match] = ACTIONS(1790), - [anon_sym_mod] = ACTIONS(1790), - [anon_sym_pub] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_trait] = ACTIONS(1790), - [anon_sym_type] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_unsafe] = ACTIONS(1790), - [anon_sym_use] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(1788), - [anon_sym_COLON_COLON] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_DOT_DOT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_yield] = ACTIONS(1790), - [anon_sym_move] = ACTIONS(1790), - [sym_integer_literal] = ACTIONS(1788), - [aux_sym_string_literal_token1] = ACTIONS(1788), - [sym_char_literal] = ACTIONS(1788), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_crate] = ACTIONS(1790), - [sym_metavariable] = ACTIONS(1788), - [sym_raw_string_literal] = ACTIONS(1788), - [sym_float_literal] = ACTIONS(1788), + [ts_builtin_sym_end] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1772), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_macro_rules_BANG] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_u8] = ACTIONS(1772), + [anon_sym_i8] = ACTIONS(1772), + [anon_sym_u16] = ACTIONS(1772), + [anon_sym_i16] = ACTIONS(1772), + [anon_sym_u32] = ACTIONS(1772), + [anon_sym_i32] = ACTIONS(1772), + [anon_sym_u64] = ACTIONS(1772), + [anon_sym_i64] = ACTIONS(1772), + [anon_sym_u128] = ACTIONS(1772), + [anon_sym_i128] = ACTIONS(1772), + [anon_sym_isize] = ACTIONS(1772), + [anon_sym_usize] = ACTIONS(1772), + [anon_sym_f32] = ACTIONS(1772), + [anon_sym_f64] = ACTIONS(1772), + [anon_sym_bool] = ACTIONS(1772), + [anon_sym_str] = ACTIONS(1772), + [anon_sym_char] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1772), + [anon_sym_async] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [anon_sym_fn] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_impl] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_mod] = ACTIONS(1772), + [anon_sym_pub] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_struct] = ACTIONS(1772), + [anon_sym_trait] = ACTIONS(1772), + [anon_sym_type] = ACTIONS(1772), + [anon_sym_union] = ACTIONS(1772), + [anon_sym_unsafe] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_yield] = ACTIONS(1772), + [anon_sym_move] = ACTIONS(1772), + [sym_integer_literal] = ACTIONS(1770), + [aux_sym_string_literal_token1] = ACTIONS(1770), + [sym_char_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_crate] = ACTIONS(1772), + [sym_metavariable] = ACTIONS(1770), + [sym_raw_string_literal] = ACTIONS(1770), + [sym_float_literal] = ACTIONS(1770), [sym_block_comment] = ACTIONS(3), }, [425] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1794), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_macro_rules_BANG] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_u8] = ACTIONS(1794), - [anon_sym_i8] = ACTIONS(1794), - [anon_sym_u16] = ACTIONS(1794), - [anon_sym_i16] = ACTIONS(1794), - [anon_sym_u32] = ACTIONS(1794), - [anon_sym_i32] = ACTIONS(1794), - [anon_sym_u64] = ACTIONS(1794), - [anon_sym_i64] = ACTIONS(1794), - [anon_sym_u128] = ACTIONS(1794), - [anon_sym_i128] = ACTIONS(1794), - [anon_sym_isize] = ACTIONS(1794), - [anon_sym_usize] = ACTIONS(1794), - [anon_sym_f32] = ACTIONS(1794), - [anon_sym_f64] = ACTIONS(1794), - [anon_sym_bool] = ACTIONS(1794), - [anon_sym_str] = ACTIONS(1794), - [anon_sym_char] = ACTIONS(1794), - [anon_sym_SQUOTE] = ACTIONS(1794), - [anon_sym_async] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_fn] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_impl] = ACTIONS(1794), - [anon_sym_let] = ACTIONS(1794), - [anon_sym_loop] = ACTIONS(1794), - [anon_sym_match] = ACTIONS(1794), - [anon_sym_mod] = ACTIONS(1794), - [anon_sym_pub] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_trait] = ACTIONS(1794), - [anon_sym_type] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_unsafe] = ACTIONS(1794), - [anon_sym_use] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_yield] = ACTIONS(1794), - [anon_sym_move] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(1792), - [aux_sym_string_literal_token1] = ACTIONS(1792), - [sym_char_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_crate] = ACTIONS(1794), - [sym_metavariable] = ACTIONS(1792), - [sym_raw_string_literal] = ACTIONS(1792), - [sym_float_literal] = ACTIONS(1792), + [ts_builtin_sym_end] = ACTIONS(1774), + [sym_identifier] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_macro_rules_BANG] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_u8] = ACTIONS(1776), + [anon_sym_i8] = ACTIONS(1776), + [anon_sym_u16] = ACTIONS(1776), + [anon_sym_i16] = ACTIONS(1776), + [anon_sym_u32] = ACTIONS(1776), + [anon_sym_i32] = ACTIONS(1776), + [anon_sym_u64] = ACTIONS(1776), + [anon_sym_i64] = ACTIONS(1776), + [anon_sym_u128] = ACTIONS(1776), + [anon_sym_i128] = ACTIONS(1776), + [anon_sym_isize] = ACTIONS(1776), + [anon_sym_usize] = ACTIONS(1776), + [anon_sym_f32] = ACTIONS(1776), + [anon_sym_f64] = ACTIONS(1776), + [anon_sym_bool] = ACTIONS(1776), + [anon_sym_str] = ACTIONS(1776), + [anon_sym_char] = ACTIONS(1776), + [anon_sym_SQUOTE] = ACTIONS(1776), + [anon_sym_async] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_enum] = ACTIONS(1776), + [anon_sym_fn] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_impl] = ACTIONS(1776), + [anon_sym_let] = ACTIONS(1776), + [anon_sym_loop] = ACTIONS(1776), + [anon_sym_match] = ACTIONS(1776), + [anon_sym_mod] = ACTIONS(1776), + [anon_sym_pub] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_static] = ACTIONS(1776), + [anon_sym_struct] = ACTIONS(1776), + [anon_sym_trait] = ACTIONS(1776), + [anon_sym_type] = ACTIONS(1776), + [anon_sym_union] = ACTIONS(1776), + [anon_sym_unsafe] = ACTIONS(1776), + [anon_sym_use] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1776), + [anon_sym_POUND] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_extern] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_yield] = ACTIONS(1776), + [anon_sym_move] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [aux_sym_string_literal_token1] = ACTIONS(1774), + [sym_char_literal] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1776), + [anon_sym_false] = ACTIONS(1776), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1776), + [sym_super] = ACTIONS(1776), + [sym_crate] = ACTIONS(1776), + [sym_metavariable] = ACTIONS(1774), + [sym_raw_string_literal] = ACTIONS(1774), + [sym_float_literal] = ACTIONS(1774), [sym_block_comment] = ACTIONS(3), }, [426] = { - [ts_builtin_sym_end] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1798), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_macro_rules_BANG] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_u8] = ACTIONS(1798), - [anon_sym_i8] = ACTIONS(1798), - [anon_sym_u16] = ACTIONS(1798), - [anon_sym_i16] = ACTIONS(1798), - [anon_sym_u32] = ACTIONS(1798), - [anon_sym_i32] = ACTIONS(1798), - [anon_sym_u64] = ACTIONS(1798), - [anon_sym_i64] = ACTIONS(1798), - [anon_sym_u128] = ACTIONS(1798), - [anon_sym_i128] = ACTIONS(1798), - [anon_sym_isize] = ACTIONS(1798), - [anon_sym_usize] = ACTIONS(1798), - [anon_sym_f32] = ACTIONS(1798), - [anon_sym_f64] = ACTIONS(1798), - [anon_sym_bool] = ACTIONS(1798), - [anon_sym_str] = ACTIONS(1798), - [anon_sym_char] = ACTIONS(1798), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_async] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_fn] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_impl] = ACTIONS(1798), - [anon_sym_let] = ACTIONS(1798), - [anon_sym_loop] = ACTIONS(1798), - [anon_sym_match] = ACTIONS(1798), - [anon_sym_mod] = ACTIONS(1798), - [anon_sym_pub] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_trait] = ACTIONS(1798), - [anon_sym_type] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_unsafe] = ACTIONS(1798), - [anon_sym_use] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_PIPE] = ACTIONS(1796), - [anon_sym_yield] = ACTIONS(1798), - [anon_sym_move] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [aux_sym_string_literal_token1] = ACTIONS(1796), - [sym_char_literal] = ACTIONS(1796), - [anon_sym_true] = ACTIONS(1798), - [anon_sym_false] = ACTIONS(1798), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_crate] = ACTIONS(1798), - [sym_metavariable] = ACTIONS(1796), - [sym_raw_string_literal] = ACTIONS(1796), - [sym_float_literal] = ACTIONS(1796), + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_macro_rules_BANG] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_u8] = ACTIONS(1780), + [anon_sym_i8] = ACTIONS(1780), + [anon_sym_u16] = ACTIONS(1780), + [anon_sym_i16] = ACTIONS(1780), + [anon_sym_u32] = ACTIONS(1780), + [anon_sym_i32] = ACTIONS(1780), + [anon_sym_u64] = ACTIONS(1780), + [anon_sym_i64] = ACTIONS(1780), + [anon_sym_u128] = ACTIONS(1780), + [anon_sym_i128] = ACTIONS(1780), + [anon_sym_isize] = ACTIONS(1780), + [anon_sym_usize] = ACTIONS(1780), + [anon_sym_f32] = ACTIONS(1780), + [anon_sym_f64] = ACTIONS(1780), + [anon_sym_bool] = ACTIONS(1780), + [anon_sym_str] = ACTIONS(1780), + [anon_sym_char] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1780), + [anon_sym_async] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_const] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_default] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1780), + [anon_sym_fn] = ACTIONS(1780), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_impl] = ACTIONS(1780), + [anon_sym_let] = ACTIONS(1780), + [anon_sym_loop] = ACTIONS(1780), + [anon_sym_match] = ACTIONS(1780), + [anon_sym_mod] = ACTIONS(1780), + [anon_sym_pub] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_static] = ACTIONS(1780), + [anon_sym_struct] = ACTIONS(1780), + [anon_sym_trait] = ACTIONS(1780), + [anon_sym_type] = ACTIONS(1780), + [anon_sym_union] = ACTIONS(1780), + [anon_sym_unsafe] = ACTIONS(1780), + [anon_sym_use] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_extern] = ACTIONS(1780), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_COLON_COLON] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1778), + [anon_sym_DOT_DOT] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_yield] = ACTIONS(1780), + [anon_sym_move] = ACTIONS(1780), + [sym_integer_literal] = ACTIONS(1778), + [aux_sym_string_literal_token1] = ACTIONS(1778), + [sym_char_literal] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1780), + [sym_super] = ACTIONS(1780), + [sym_crate] = ACTIONS(1780), + [sym_metavariable] = ACTIONS(1778), + [sym_raw_string_literal] = ACTIONS(1778), + [sym_float_literal] = ACTIONS(1778), [sym_block_comment] = ACTIONS(3), }, [427] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_macro_rules_BANG] = ACTIONS(1800), - [anon_sym_LPAREN] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_u8] = ACTIONS(1802), - [anon_sym_i8] = ACTIONS(1802), - [anon_sym_u16] = ACTIONS(1802), - [anon_sym_i16] = ACTIONS(1802), - [anon_sym_u32] = ACTIONS(1802), - [anon_sym_i32] = ACTIONS(1802), - [anon_sym_u64] = ACTIONS(1802), - [anon_sym_i64] = ACTIONS(1802), - [anon_sym_u128] = ACTIONS(1802), - [anon_sym_i128] = ACTIONS(1802), - [anon_sym_isize] = ACTIONS(1802), - [anon_sym_usize] = ACTIONS(1802), - [anon_sym_f32] = ACTIONS(1802), - [anon_sym_f64] = ACTIONS(1802), - [anon_sym_bool] = ACTIONS(1802), - [anon_sym_str] = ACTIONS(1802), - [anon_sym_char] = ACTIONS(1802), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_async] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_fn] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_impl] = ACTIONS(1802), - [anon_sym_let] = ACTIONS(1802), - [anon_sym_loop] = ACTIONS(1802), - [anon_sym_match] = ACTIONS(1802), - [anon_sym_mod] = ACTIONS(1802), - [anon_sym_pub] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_trait] = ACTIONS(1802), - [anon_sym_type] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_unsafe] = ACTIONS(1802), - [anon_sym_use] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_PIPE] = ACTIONS(1800), - [anon_sym_yield] = ACTIONS(1802), - [anon_sym_move] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [aux_sym_string_literal_token1] = ACTIONS(1800), - [sym_char_literal] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1802), - [anon_sym_false] = ACTIONS(1802), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_crate] = ACTIONS(1802), - [sym_metavariable] = ACTIONS(1800), - [sym_raw_string_literal] = ACTIONS(1800), - [sym_float_literal] = ACTIONS(1800), + [ts_builtin_sym_end] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_macro_rules_BANG] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_u8] = ACTIONS(1784), + [anon_sym_i8] = ACTIONS(1784), + [anon_sym_u16] = ACTIONS(1784), + [anon_sym_i16] = ACTIONS(1784), + [anon_sym_u32] = ACTIONS(1784), + [anon_sym_i32] = ACTIONS(1784), + [anon_sym_u64] = ACTIONS(1784), + [anon_sym_i64] = ACTIONS(1784), + [anon_sym_u128] = ACTIONS(1784), + [anon_sym_i128] = ACTIONS(1784), + [anon_sym_isize] = ACTIONS(1784), + [anon_sym_usize] = ACTIONS(1784), + [anon_sym_f32] = ACTIONS(1784), + [anon_sym_f64] = ACTIONS(1784), + [anon_sym_bool] = ACTIONS(1784), + [anon_sym_str] = ACTIONS(1784), + [anon_sym_char] = ACTIONS(1784), + [anon_sym_SQUOTE] = ACTIONS(1784), + [anon_sym_async] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_enum] = ACTIONS(1784), + [anon_sym_fn] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_impl] = ACTIONS(1784), + [anon_sym_let] = ACTIONS(1784), + [anon_sym_loop] = ACTIONS(1784), + [anon_sym_match] = ACTIONS(1784), + [anon_sym_mod] = ACTIONS(1784), + [anon_sym_pub] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_static] = ACTIONS(1784), + [anon_sym_struct] = ACTIONS(1784), + [anon_sym_trait] = ACTIONS(1784), + [anon_sym_type] = ACTIONS(1784), + [anon_sym_union] = ACTIONS(1784), + [anon_sym_unsafe] = ACTIONS(1784), + [anon_sym_use] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_extern] = ACTIONS(1784), + [anon_sym_LT] = ACTIONS(1782), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_PIPE] = ACTIONS(1782), + [anon_sym_yield] = ACTIONS(1784), + [anon_sym_move] = ACTIONS(1784), + [sym_integer_literal] = ACTIONS(1782), + [aux_sym_string_literal_token1] = ACTIONS(1782), + [sym_char_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1784), + [sym_super] = ACTIONS(1784), + [sym_crate] = ACTIONS(1784), + [sym_metavariable] = ACTIONS(1782), + [sym_raw_string_literal] = ACTIONS(1782), + [sym_float_literal] = ACTIONS(1782), [sym_block_comment] = ACTIONS(3), }, [428] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_macro_rules_BANG] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_u8] = ACTIONS(1806), - [anon_sym_i8] = ACTIONS(1806), - [anon_sym_u16] = ACTIONS(1806), - [anon_sym_i16] = ACTIONS(1806), - [anon_sym_u32] = ACTIONS(1806), - [anon_sym_i32] = ACTIONS(1806), - [anon_sym_u64] = ACTIONS(1806), - [anon_sym_i64] = ACTIONS(1806), - [anon_sym_u128] = ACTIONS(1806), - [anon_sym_i128] = ACTIONS(1806), - [anon_sym_isize] = ACTIONS(1806), - [anon_sym_usize] = ACTIONS(1806), - [anon_sym_f32] = ACTIONS(1806), - [anon_sym_f64] = ACTIONS(1806), - [anon_sym_bool] = ACTIONS(1806), - [anon_sym_str] = ACTIONS(1806), - [anon_sym_char] = ACTIONS(1806), - [anon_sym_SQUOTE] = ACTIONS(1806), - [anon_sym_async] = ACTIONS(1806), - [anon_sym_break] = ACTIONS(1806), - [anon_sym_const] = ACTIONS(1806), - [anon_sym_continue] = ACTIONS(1806), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_enum] = ACTIONS(1806), - [anon_sym_fn] = ACTIONS(1806), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_if] = ACTIONS(1806), - [anon_sym_impl] = ACTIONS(1806), - [anon_sym_let] = ACTIONS(1806), - [anon_sym_loop] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1806), - [anon_sym_mod] = ACTIONS(1806), - [anon_sym_pub] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_struct] = ACTIONS(1806), - [anon_sym_trait] = ACTIONS(1806), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_unsafe] = ACTIONS(1806), - [anon_sym_use] = ACTIONS(1806), - [anon_sym_while] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_extern] = ACTIONS(1806), - [anon_sym_LT] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_DOT_DOT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_PIPE] = ACTIONS(1804), - [anon_sym_yield] = ACTIONS(1806), - [anon_sym_move] = ACTIONS(1806), - [sym_integer_literal] = ACTIONS(1804), - [aux_sym_string_literal_token1] = ACTIONS(1804), - [sym_char_literal] = ACTIONS(1804), - [anon_sym_true] = ACTIONS(1806), - [anon_sym_false] = ACTIONS(1806), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1804), - [sym_raw_string_literal] = ACTIONS(1804), - [sym_float_literal] = ACTIONS(1804), + [ts_builtin_sym_end] = ACTIONS(1786), + [sym_identifier] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_macro_rules_BANG] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_STAR] = ACTIONS(1786), + [anon_sym_u8] = ACTIONS(1788), + [anon_sym_i8] = ACTIONS(1788), + [anon_sym_u16] = ACTIONS(1788), + [anon_sym_i16] = ACTIONS(1788), + [anon_sym_u32] = ACTIONS(1788), + [anon_sym_i32] = ACTIONS(1788), + [anon_sym_u64] = ACTIONS(1788), + [anon_sym_i64] = ACTIONS(1788), + [anon_sym_u128] = ACTIONS(1788), + [anon_sym_i128] = ACTIONS(1788), + [anon_sym_isize] = ACTIONS(1788), + [anon_sym_usize] = ACTIONS(1788), + [anon_sym_f32] = ACTIONS(1788), + [anon_sym_f64] = ACTIONS(1788), + [anon_sym_bool] = ACTIONS(1788), + [anon_sym_str] = ACTIONS(1788), + [anon_sym_char] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_async] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_fn] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_impl] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_mod] = ACTIONS(1788), + [anon_sym_pub] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_trait] = ACTIONS(1788), + [anon_sym_type] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_unsafe] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_LT] = ACTIONS(1786), + [anon_sym_COLON_COLON] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_DOT_DOT] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_yield] = ACTIONS(1788), + [anon_sym_move] = ACTIONS(1788), + [sym_integer_literal] = ACTIONS(1786), + [aux_sym_string_literal_token1] = ACTIONS(1786), + [sym_char_literal] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_crate] = ACTIONS(1788), + [sym_metavariable] = ACTIONS(1786), + [sym_raw_string_literal] = ACTIONS(1786), + [sym_float_literal] = ACTIONS(1786), [sym_block_comment] = ACTIONS(3), }, [429] = { - [ts_builtin_sym_end] = ACTIONS(1808), - [sym_identifier] = ACTIONS(1810), - [anon_sym_SEMI] = ACTIONS(1808), - [anon_sym_macro_rules_BANG] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_RBRACE] = ACTIONS(1808), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_u8] = ACTIONS(1810), - [anon_sym_i8] = ACTIONS(1810), - [anon_sym_u16] = ACTIONS(1810), - [anon_sym_i16] = ACTIONS(1810), - [anon_sym_u32] = ACTIONS(1810), - [anon_sym_i32] = ACTIONS(1810), - [anon_sym_u64] = ACTIONS(1810), - [anon_sym_i64] = ACTIONS(1810), - [anon_sym_u128] = ACTIONS(1810), - [anon_sym_i128] = ACTIONS(1810), - [anon_sym_isize] = ACTIONS(1810), - [anon_sym_usize] = ACTIONS(1810), - [anon_sym_f32] = ACTIONS(1810), - [anon_sym_f64] = ACTIONS(1810), - [anon_sym_bool] = ACTIONS(1810), - [anon_sym_str] = ACTIONS(1810), - [anon_sym_char] = ACTIONS(1810), - [anon_sym_SQUOTE] = ACTIONS(1810), - [anon_sym_async] = ACTIONS(1810), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_const] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1810), - [anon_sym_default] = ACTIONS(1810), - [anon_sym_enum] = ACTIONS(1810), - [anon_sym_fn] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_impl] = ACTIONS(1810), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_loop] = ACTIONS(1810), - [anon_sym_match] = ACTIONS(1810), - [anon_sym_mod] = ACTIONS(1810), - [anon_sym_pub] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_static] = ACTIONS(1810), - [anon_sym_struct] = ACTIONS(1810), - [anon_sym_trait] = ACTIONS(1810), - [anon_sym_type] = ACTIONS(1810), - [anon_sym_union] = ACTIONS(1810), - [anon_sym_unsafe] = ACTIONS(1810), - [anon_sym_use] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_POUND] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_extern] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1808), - [anon_sym_AMP] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_PIPE] = ACTIONS(1808), - [anon_sym_yield] = ACTIONS(1810), - [anon_sym_move] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [aux_sym_string_literal_token1] = ACTIONS(1808), - [sym_char_literal] = ACTIONS(1808), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1810), - [sym_super] = ACTIONS(1810), - [sym_crate] = ACTIONS(1810), - [sym_metavariable] = ACTIONS(1808), - [sym_raw_string_literal] = ACTIONS(1808), - [sym_float_literal] = ACTIONS(1808), + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_macro_rules_BANG] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_u8] = ACTIONS(1792), + [anon_sym_i8] = ACTIONS(1792), + [anon_sym_u16] = ACTIONS(1792), + [anon_sym_i16] = ACTIONS(1792), + [anon_sym_u32] = ACTIONS(1792), + [anon_sym_i32] = ACTIONS(1792), + [anon_sym_u64] = ACTIONS(1792), + [anon_sym_i64] = ACTIONS(1792), + [anon_sym_u128] = ACTIONS(1792), + [anon_sym_i128] = ACTIONS(1792), + [anon_sym_isize] = ACTIONS(1792), + [anon_sym_usize] = ACTIONS(1792), + [anon_sym_f32] = ACTIONS(1792), + [anon_sym_f64] = ACTIONS(1792), + [anon_sym_bool] = ACTIONS(1792), + [anon_sym_str] = ACTIONS(1792), + [anon_sym_char] = ACTIONS(1792), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_async] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1792), + [anon_sym_enum] = ACTIONS(1792), + [anon_sym_fn] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_impl] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1792), + [anon_sym_loop] = ACTIONS(1792), + [anon_sym_match] = ACTIONS(1792), + [anon_sym_mod] = ACTIONS(1792), + [anon_sym_pub] = ACTIONS(1792), + [anon_sym_return] = ACTIONS(1792), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_struct] = ACTIONS(1792), + [anon_sym_trait] = ACTIONS(1792), + [anon_sym_type] = ACTIONS(1792), + [anon_sym_union] = ACTIONS(1792), + [anon_sym_unsafe] = ACTIONS(1792), + [anon_sym_use] = ACTIONS(1792), + [anon_sym_while] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_extern] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_yield] = ACTIONS(1792), + [anon_sym_move] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [aux_sym_string_literal_token1] = ACTIONS(1790), + [sym_char_literal] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1792), + [anon_sym_false] = ACTIONS(1792), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1792), + [sym_super] = ACTIONS(1792), + [sym_crate] = ACTIONS(1792), + [sym_metavariable] = ACTIONS(1790), + [sym_raw_string_literal] = ACTIONS(1790), + [sym_float_literal] = ACTIONS(1790), [sym_block_comment] = ACTIONS(3), }, [430] = { - [ts_builtin_sym_end] = ACTIONS(1812), - [sym_identifier] = ACTIONS(1814), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_macro_rules_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_STAR] = ACTIONS(1812), - [anon_sym_u8] = ACTIONS(1814), - [anon_sym_i8] = ACTIONS(1814), - [anon_sym_u16] = ACTIONS(1814), - [anon_sym_i16] = ACTIONS(1814), - [anon_sym_u32] = ACTIONS(1814), - [anon_sym_i32] = ACTIONS(1814), - [anon_sym_u64] = ACTIONS(1814), - [anon_sym_i64] = ACTIONS(1814), - [anon_sym_u128] = ACTIONS(1814), - [anon_sym_i128] = ACTIONS(1814), - [anon_sym_isize] = ACTIONS(1814), - [anon_sym_usize] = ACTIONS(1814), - [anon_sym_f32] = ACTIONS(1814), - [anon_sym_f64] = ACTIONS(1814), - [anon_sym_bool] = ACTIONS(1814), - [anon_sym_str] = ACTIONS(1814), - [anon_sym_char] = ACTIONS(1814), - [anon_sym_SQUOTE] = ACTIONS(1814), - [anon_sym_async] = ACTIONS(1814), - [anon_sym_break] = ACTIONS(1814), - [anon_sym_const] = ACTIONS(1814), - [anon_sym_continue] = ACTIONS(1814), - [anon_sym_default] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1814), - [anon_sym_fn] = ACTIONS(1814), - [anon_sym_for] = ACTIONS(1814), - [anon_sym_if] = ACTIONS(1814), - [anon_sym_impl] = ACTIONS(1814), - [anon_sym_let] = ACTIONS(1814), - [anon_sym_loop] = ACTIONS(1814), - [anon_sym_match] = ACTIONS(1814), - [anon_sym_mod] = ACTIONS(1814), - [anon_sym_pub] = ACTIONS(1814), - [anon_sym_return] = ACTIONS(1814), - [anon_sym_static] = ACTIONS(1814), - [anon_sym_struct] = ACTIONS(1814), - [anon_sym_trait] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_union] = ACTIONS(1814), - [anon_sym_unsafe] = ACTIONS(1814), - [anon_sym_use] = ACTIONS(1814), - [anon_sym_while] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(1812), - [anon_sym_BANG] = ACTIONS(1812), - [anon_sym_extern] = ACTIONS(1814), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_COLON_COLON] = ACTIONS(1812), - [anon_sym_AMP] = ACTIONS(1812), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_yield] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [sym_integer_literal] = ACTIONS(1812), - [aux_sym_string_literal_token1] = ACTIONS(1812), - [sym_char_literal] = ACTIONS(1812), - [anon_sym_true] = ACTIONS(1814), - [anon_sym_false] = ACTIONS(1814), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1814), - [sym_super] = ACTIONS(1814), - [sym_crate] = ACTIONS(1814), - [sym_metavariable] = ACTIONS(1812), - [sym_raw_string_literal] = ACTIONS(1812), - [sym_float_literal] = ACTIONS(1812), + [ts_builtin_sym_end] = ACTIONS(1794), + [sym_identifier] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_macro_rules_BANG] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_STAR] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1796), + [anon_sym_async] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1796), + [anon_sym_enum] = ACTIONS(1796), + [anon_sym_fn] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_impl] = ACTIONS(1796), + [anon_sym_let] = ACTIONS(1796), + [anon_sym_loop] = ACTIONS(1796), + [anon_sym_match] = ACTIONS(1796), + [anon_sym_mod] = ACTIONS(1796), + [anon_sym_pub] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_static] = ACTIONS(1796), + [anon_sym_struct] = ACTIONS(1796), + [anon_sym_trait] = ACTIONS(1796), + [anon_sym_type] = ACTIONS(1796), + [anon_sym_union] = ACTIONS(1796), + [anon_sym_unsafe] = ACTIONS(1796), + [anon_sym_use] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_POUND] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_extern] = ACTIONS(1796), + [anon_sym_LT] = ACTIONS(1794), + [anon_sym_COLON_COLON] = ACTIONS(1794), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_DOT_DOT] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_PIPE] = ACTIONS(1794), + [anon_sym_yield] = ACTIONS(1796), + [anon_sym_move] = ACTIONS(1796), + [sym_integer_literal] = ACTIONS(1794), + [aux_sym_string_literal_token1] = ACTIONS(1794), + [sym_char_literal] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1794), + [sym_raw_string_literal] = ACTIONS(1794), + [sym_float_literal] = ACTIONS(1794), [sym_block_comment] = ACTIONS(3), }, [431] = { - [ts_builtin_sym_end] = ACTIONS(1816), - [sym_identifier] = ACTIONS(1818), - [anon_sym_SEMI] = ACTIONS(1816), - [anon_sym_macro_rules_BANG] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LBRACK] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_u8] = ACTIONS(1818), - [anon_sym_i8] = ACTIONS(1818), - [anon_sym_u16] = ACTIONS(1818), - [anon_sym_i16] = ACTIONS(1818), - [anon_sym_u32] = ACTIONS(1818), - [anon_sym_i32] = ACTIONS(1818), - [anon_sym_u64] = ACTIONS(1818), - [anon_sym_i64] = ACTIONS(1818), - [anon_sym_u128] = ACTIONS(1818), - [anon_sym_i128] = ACTIONS(1818), - [anon_sym_isize] = ACTIONS(1818), - [anon_sym_usize] = ACTIONS(1818), - [anon_sym_f32] = ACTIONS(1818), - [anon_sym_f64] = ACTIONS(1818), - [anon_sym_bool] = ACTIONS(1818), - [anon_sym_str] = ACTIONS(1818), - [anon_sym_char] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1818), - [anon_sym_async] = ACTIONS(1818), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_const] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_default] = ACTIONS(1818), - [anon_sym_enum] = ACTIONS(1818), - [anon_sym_fn] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1818), - [anon_sym_impl] = ACTIONS(1818), - [anon_sym_let] = ACTIONS(1818), - [anon_sym_loop] = ACTIONS(1818), - [anon_sym_match] = ACTIONS(1818), - [anon_sym_mod] = ACTIONS(1818), - [anon_sym_pub] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1818), - [anon_sym_static] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1818), - [anon_sym_trait] = ACTIONS(1818), - [anon_sym_type] = ACTIONS(1818), - [anon_sym_union] = ACTIONS(1818), - [anon_sym_unsafe] = ACTIONS(1818), - [anon_sym_use] = ACTIONS(1818), - [anon_sym_while] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_extern] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1816), - [anon_sym_AMP] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_yield] = ACTIONS(1818), - [anon_sym_move] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [aux_sym_string_literal_token1] = ACTIONS(1816), - [sym_char_literal] = ACTIONS(1816), - [anon_sym_true] = ACTIONS(1818), - [anon_sym_false] = ACTIONS(1818), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1818), - [sym_super] = ACTIONS(1818), - [sym_crate] = ACTIONS(1818), - [sym_metavariable] = ACTIONS(1816), - [sym_raw_string_literal] = ACTIONS(1816), - [sym_float_literal] = ACTIONS(1816), + [ts_builtin_sym_end] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_macro_rules_BANG] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1800), + [anon_sym_async] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_fn] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_impl] = ACTIONS(1800), + [anon_sym_let] = ACTIONS(1800), + [anon_sym_loop] = ACTIONS(1800), + [anon_sym_match] = ACTIONS(1800), + [anon_sym_mod] = ACTIONS(1800), + [anon_sym_pub] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_trait] = ACTIONS(1800), + [anon_sym_type] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_unsafe] = ACTIONS(1800), + [anon_sym_use] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1798), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym_LT] = ACTIONS(1798), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_yield] = ACTIONS(1800), + [anon_sym_move] = ACTIONS(1800), + [sym_integer_literal] = ACTIONS(1798), + [aux_sym_string_literal_token1] = ACTIONS(1798), + [sym_char_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1800), + [anon_sym_false] = ACTIONS(1800), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_crate] = ACTIONS(1800), + [sym_metavariable] = ACTIONS(1798), + [sym_raw_string_literal] = ACTIONS(1798), + [sym_float_literal] = ACTIONS(1798), [sym_block_comment] = ACTIONS(3), }, [432] = { - [ts_builtin_sym_end] = ACTIONS(1820), - [sym_identifier] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_macro_rules_BANG] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_u8] = ACTIONS(1822), - [anon_sym_i8] = ACTIONS(1822), - [anon_sym_u16] = ACTIONS(1822), - [anon_sym_i16] = ACTIONS(1822), - [anon_sym_u32] = ACTIONS(1822), - [anon_sym_i32] = ACTIONS(1822), - [anon_sym_u64] = ACTIONS(1822), - [anon_sym_i64] = ACTIONS(1822), - [anon_sym_u128] = ACTIONS(1822), - [anon_sym_i128] = ACTIONS(1822), - [anon_sym_isize] = ACTIONS(1822), - [anon_sym_usize] = ACTIONS(1822), - [anon_sym_f32] = ACTIONS(1822), - [anon_sym_f64] = ACTIONS(1822), - [anon_sym_bool] = ACTIONS(1822), - [anon_sym_str] = ACTIONS(1822), - [anon_sym_char] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1822), - [anon_sym_async] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_fn] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_impl] = ACTIONS(1822), - [anon_sym_let] = ACTIONS(1822), - [anon_sym_loop] = ACTIONS(1822), - [anon_sym_match] = ACTIONS(1822), - [anon_sym_mod] = ACTIONS(1822), - [anon_sym_pub] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_trait] = ACTIONS(1822), - [anon_sym_type] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_unsafe] = ACTIONS(1822), - [anon_sym_use] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(1820), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym_LT] = ACTIONS(1820), - [anon_sym_COLON_COLON] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1820), - [anon_sym_DOT_DOT] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_yield] = ACTIONS(1822), - [anon_sym_move] = ACTIONS(1822), - [sym_integer_literal] = ACTIONS(1820), - [aux_sym_string_literal_token1] = ACTIONS(1820), - [sym_char_literal] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_crate] = ACTIONS(1822), - [sym_metavariable] = ACTIONS(1820), - [sym_raw_string_literal] = ACTIONS(1820), - [sym_float_literal] = ACTIONS(1820), + [ts_builtin_sym_end] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_macro_rules_BANG] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_u8] = ACTIONS(1804), + [anon_sym_i8] = ACTIONS(1804), + [anon_sym_u16] = ACTIONS(1804), + [anon_sym_i16] = ACTIONS(1804), + [anon_sym_u32] = ACTIONS(1804), + [anon_sym_i32] = ACTIONS(1804), + [anon_sym_u64] = ACTIONS(1804), + [anon_sym_i64] = ACTIONS(1804), + [anon_sym_u128] = ACTIONS(1804), + [anon_sym_i128] = ACTIONS(1804), + [anon_sym_isize] = ACTIONS(1804), + [anon_sym_usize] = ACTIONS(1804), + [anon_sym_f32] = ACTIONS(1804), + [anon_sym_f64] = ACTIONS(1804), + [anon_sym_bool] = ACTIONS(1804), + [anon_sym_str] = ACTIONS(1804), + [anon_sym_char] = ACTIONS(1804), + [anon_sym_SQUOTE] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_break] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_continue] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_enum] = ACTIONS(1804), + [anon_sym_fn] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(1804), + [anon_sym_impl] = ACTIONS(1804), + [anon_sym_let] = ACTIONS(1804), + [anon_sym_loop] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_mod] = ACTIONS(1804), + [anon_sym_pub] = ACTIONS(1804), + [anon_sym_return] = ACTIONS(1804), + [anon_sym_static] = ACTIONS(1804), + [anon_sym_struct] = ACTIONS(1804), + [anon_sym_trait] = ACTIONS(1804), + [anon_sym_type] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_unsafe] = ACTIONS(1804), + [anon_sym_use] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_extern] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_yield] = ACTIONS(1804), + [anon_sym_move] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [aux_sym_string_literal_token1] = ACTIONS(1802), + [sym_char_literal] = ACTIONS(1802), + [anon_sym_true] = ACTIONS(1804), + [anon_sym_false] = ACTIONS(1804), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1804), + [sym_super] = ACTIONS(1804), + [sym_crate] = ACTIONS(1804), + [sym_metavariable] = ACTIONS(1802), + [sym_raw_string_literal] = ACTIONS(1802), + [sym_float_literal] = ACTIONS(1802), [sym_block_comment] = ACTIONS(3), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(1824), - [sym_identifier] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_macro_rules_BANG] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_u8] = ACTIONS(1826), - [anon_sym_i8] = ACTIONS(1826), - [anon_sym_u16] = ACTIONS(1826), - [anon_sym_i16] = ACTIONS(1826), - [anon_sym_u32] = ACTIONS(1826), - [anon_sym_i32] = ACTIONS(1826), - [anon_sym_u64] = ACTIONS(1826), - [anon_sym_i64] = ACTIONS(1826), - [anon_sym_u128] = ACTIONS(1826), - [anon_sym_i128] = ACTIONS(1826), - [anon_sym_isize] = ACTIONS(1826), - [anon_sym_usize] = ACTIONS(1826), - [anon_sym_f32] = ACTIONS(1826), - [anon_sym_f64] = ACTIONS(1826), - [anon_sym_bool] = ACTIONS(1826), - [anon_sym_str] = ACTIONS(1826), - [anon_sym_char] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1826), - [anon_sym_async] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_fn] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_impl] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1826), - [anon_sym_loop] = ACTIONS(1826), - [anon_sym_match] = ACTIONS(1826), - [anon_sym_mod] = ACTIONS(1826), - [anon_sym_pub] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_trait] = ACTIONS(1826), - [anon_sym_type] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_unsafe] = ACTIONS(1826), - [anon_sym_use] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1824), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1824), - [anon_sym_PIPE] = ACTIONS(1824), - [anon_sym_yield] = ACTIONS(1826), - [anon_sym_move] = ACTIONS(1826), - [sym_integer_literal] = ACTIONS(1824), - [aux_sym_string_literal_token1] = ACTIONS(1824), - [sym_char_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_crate] = ACTIONS(1826), - [sym_metavariable] = ACTIONS(1824), - [sym_raw_string_literal] = ACTIONS(1824), - [sym_float_literal] = ACTIONS(1824), + [ts_builtin_sym_end] = ACTIONS(1806), + [sym_identifier] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_macro_rules_BANG] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_LBRACK] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(1806), + [anon_sym_u8] = ACTIONS(1808), + [anon_sym_i8] = ACTIONS(1808), + [anon_sym_u16] = ACTIONS(1808), + [anon_sym_i16] = ACTIONS(1808), + [anon_sym_u32] = ACTIONS(1808), + [anon_sym_i32] = ACTIONS(1808), + [anon_sym_u64] = ACTIONS(1808), + [anon_sym_i64] = ACTIONS(1808), + [anon_sym_u128] = ACTIONS(1808), + [anon_sym_i128] = ACTIONS(1808), + [anon_sym_isize] = ACTIONS(1808), + [anon_sym_usize] = ACTIONS(1808), + [anon_sym_f32] = ACTIONS(1808), + [anon_sym_f64] = ACTIONS(1808), + [anon_sym_bool] = ACTIONS(1808), + [anon_sym_str] = ACTIONS(1808), + [anon_sym_char] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1808), + [anon_sym_async] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_const] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_enum] = ACTIONS(1808), + [anon_sym_fn] = ACTIONS(1808), + [anon_sym_for] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_impl] = ACTIONS(1808), + [anon_sym_let] = ACTIONS(1808), + [anon_sym_loop] = ACTIONS(1808), + [anon_sym_match] = ACTIONS(1808), + [anon_sym_mod] = ACTIONS(1808), + [anon_sym_pub] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_static] = ACTIONS(1808), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_trait] = ACTIONS(1808), + [anon_sym_type] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_unsafe] = ACTIONS(1808), + [anon_sym_use] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_extern] = ACTIONS(1808), + [anon_sym_LT] = ACTIONS(1806), + [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_yield] = ACTIONS(1808), + [anon_sym_move] = ACTIONS(1808), + [sym_integer_literal] = ACTIONS(1806), + [aux_sym_string_literal_token1] = ACTIONS(1806), + [sym_char_literal] = ACTIONS(1806), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1806), + [sym_raw_string_literal] = ACTIONS(1806), + [sym_float_literal] = ACTIONS(1806), [sym_block_comment] = ACTIONS(3), }, [434] = { - [ts_builtin_sym_end] = ACTIONS(1828), - [sym_identifier] = ACTIONS(1830), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_macro_rules_BANG] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_u8] = ACTIONS(1830), - [anon_sym_i8] = ACTIONS(1830), - [anon_sym_u16] = ACTIONS(1830), - [anon_sym_i16] = ACTIONS(1830), - [anon_sym_u32] = ACTIONS(1830), - [anon_sym_i32] = ACTIONS(1830), - [anon_sym_u64] = ACTIONS(1830), - [anon_sym_i64] = ACTIONS(1830), - [anon_sym_u128] = ACTIONS(1830), - [anon_sym_i128] = ACTIONS(1830), - [anon_sym_isize] = ACTIONS(1830), - [anon_sym_usize] = ACTIONS(1830), - [anon_sym_f32] = ACTIONS(1830), - [anon_sym_f64] = ACTIONS(1830), - [anon_sym_bool] = ACTIONS(1830), - [anon_sym_str] = ACTIONS(1830), - [anon_sym_char] = ACTIONS(1830), - [anon_sym_SQUOTE] = ACTIONS(1830), - [anon_sym_async] = ACTIONS(1830), - [anon_sym_break] = ACTIONS(1830), - [anon_sym_const] = ACTIONS(1830), - [anon_sym_continue] = ACTIONS(1830), - [anon_sym_default] = ACTIONS(1830), - [anon_sym_enum] = ACTIONS(1830), - [anon_sym_fn] = ACTIONS(1830), - [anon_sym_for] = ACTIONS(1830), - [anon_sym_if] = ACTIONS(1830), - [anon_sym_impl] = ACTIONS(1830), - [anon_sym_let] = ACTIONS(1830), - [anon_sym_loop] = ACTIONS(1830), - [anon_sym_match] = ACTIONS(1830), - [anon_sym_mod] = ACTIONS(1830), - [anon_sym_pub] = ACTIONS(1830), - [anon_sym_return] = ACTIONS(1830), - [anon_sym_static] = ACTIONS(1830), - [anon_sym_struct] = ACTIONS(1830), - [anon_sym_trait] = ACTIONS(1830), - [anon_sym_type] = ACTIONS(1830), - [anon_sym_union] = ACTIONS(1830), - [anon_sym_unsafe] = ACTIONS(1830), - [anon_sym_use] = ACTIONS(1830), - [anon_sym_while] = ACTIONS(1830), - [anon_sym_POUND] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1828), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_yield] = ACTIONS(1830), - [anon_sym_move] = ACTIONS(1830), - [sym_integer_literal] = ACTIONS(1828), - [aux_sym_string_literal_token1] = ACTIONS(1828), - [sym_char_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1830), - [anon_sym_false] = ACTIONS(1830), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1830), - [sym_super] = ACTIONS(1830), - [sym_crate] = ACTIONS(1830), - [sym_metavariable] = ACTIONS(1828), - [sym_raw_string_literal] = ACTIONS(1828), - [sym_float_literal] = ACTIONS(1828), + [ts_builtin_sym_end] = ACTIONS(1810), + [sym_identifier] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_macro_rules_BANG] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_u8] = ACTIONS(1812), + [anon_sym_i8] = ACTIONS(1812), + [anon_sym_u16] = ACTIONS(1812), + [anon_sym_i16] = ACTIONS(1812), + [anon_sym_u32] = ACTIONS(1812), + [anon_sym_i32] = ACTIONS(1812), + [anon_sym_u64] = ACTIONS(1812), + [anon_sym_i64] = ACTIONS(1812), + [anon_sym_u128] = ACTIONS(1812), + [anon_sym_i128] = ACTIONS(1812), + [anon_sym_isize] = ACTIONS(1812), + [anon_sym_usize] = ACTIONS(1812), + [anon_sym_f32] = ACTIONS(1812), + [anon_sym_f64] = ACTIONS(1812), + [anon_sym_bool] = ACTIONS(1812), + [anon_sym_str] = ACTIONS(1812), + [anon_sym_char] = ACTIONS(1812), + [anon_sym_SQUOTE] = ACTIONS(1812), + [anon_sym_async] = ACTIONS(1812), + [anon_sym_break] = ACTIONS(1812), + [anon_sym_const] = ACTIONS(1812), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_default] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1812), + [anon_sym_fn] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1812), + [anon_sym_impl] = ACTIONS(1812), + [anon_sym_let] = ACTIONS(1812), + [anon_sym_loop] = ACTIONS(1812), + [anon_sym_match] = ACTIONS(1812), + [anon_sym_mod] = ACTIONS(1812), + [anon_sym_pub] = ACTIONS(1812), + [anon_sym_return] = ACTIONS(1812), + [anon_sym_static] = ACTIONS(1812), + [anon_sym_struct] = ACTIONS(1812), + [anon_sym_trait] = ACTIONS(1812), + [anon_sym_type] = ACTIONS(1812), + [anon_sym_union] = ACTIONS(1812), + [anon_sym_unsafe] = ACTIONS(1812), + [anon_sym_use] = ACTIONS(1812), + [anon_sym_while] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_extern] = ACTIONS(1812), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_yield] = ACTIONS(1812), + [anon_sym_move] = ACTIONS(1812), + [sym_integer_literal] = ACTIONS(1810), + [aux_sym_string_literal_token1] = ACTIONS(1810), + [sym_char_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1812), + [anon_sym_false] = ACTIONS(1812), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1812), + [sym_super] = ACTIONS(1812), + [sym_crate] = ACTIONS(1812), + [sym_metavariable] = ACTIONS(1810), + [sym_raw_string_literal] = ACTIONS(1810), + [sym_float_literal] = ACTIONS(1810), [sym_block_comment] = ACTIONS(3), }, [435] = { - [ts_builtin_sym_end] = ACTIONS(1832), - [sym_identifier] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_macro_rules_BANG] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_LBRACE] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_STAR] = ACTIONS(1832), - [anon_sym_u8] = ACTIONS(1834), - [anon_sym_i8] = ACTIONS(1834), - [anon_sym_u16] = ACTIONS(1834), - [anon_sym_i16] = ACTIONS(1834), - [anon_sym_u32] = ACTIONS(1834), - [anon_sym_i32] = ACTIONS(1834), - [anon_sym_u64] = ACTIONS(1834), - [anon_sym_i64] = ACTIONS(1834), - [anon_sym_u128] = ACTIONS(1834), - [anon_sym_i128] = ACTIONS(1834), - [anon_sym_isize] = ACTIONS(1834), - [anon_sym_usize] = ACTIONS(1834), - [anon_sym_f32] = ACTIONS(1834), - [anon_sym_f64] = ACTIONS(1834), - [anon_sym_bool] = ACTIONS(1834), - [anon_sym_str] = ACTIONS(1834), - [anon_sym_char] = ACTIONS(1834), - [anon_sym_SQUOTE] = ACTIONS(1834), - [anon_sym_async] = ACTIONS(1834), - [anon_sym_break] = ACTIONS(1834), - [anon_sym_const] = ACTIONS(1834), - [anon_sym_continue] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1834), - [anon_sym_enum] = ACTIONS(1834), - [anon_sym_fn] = ACTIONS(1834), - [anon_sym_for] = ACTIONS(1834), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_impl] = ACTIONS(1834), - [anon_sym_let] = ACTIONS(1834), - [anon_sym_loop] = ACTIONS(1834), - [anon_sym_match] = ACTIONS(1834), - [anon_sym_mod] = ACTIONS(1834), - [anon_sym_pub] = ACTIONS(1834), - [anon_sym_return] = ACTIONS(1834), - [anon_sym_static] = ACTIONS(1834), - [anon_sym_struct] = ACTIONS(1834), - [anon_sym_trait] = ACTIONS(1834), - [anon_sym_type] = ACTIONS(1834), - [anon_sym_union] = ACTIONS(1834), - [anon_sym_unsafe] = ACTIONS(1834), - [anon_sym_use] = ACTIONS(1834), - [anon_sym_while] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1832), - [anon_sym_BANG] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1832), - [anon_sym_COLON_COLON] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1832), - [anon_sym_DOT_DOT] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), - [anon_sym_yield] = ACTIONS(1834), - [anon_sym_move] = ACTIONS(1834), - [sym_integer_literal] = ACTIONS(1832), - [aux_sym_string_literal_token1] = ACTIONS(1832), - [sym_char_literal] = ACTIONS(1832), - [anon_sym_true] = ACTIONS(1834), - [anon_sym_false] = ACTIONS(1834), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1834), - [sym_super] = ACTIONS(1834), - [sym_crate] = ACTIONS(1834), - [sym_metavariable] = ACTIONS(1832), - [sym_raw_string_literal] = ACTIONS(1832), - [sym_float_literal] = ACTIONS(1832), + [ts_builtin_sym_end] = ACTIONS(1814), + [sym_identifier] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1814), + [anon_sym_macro_rules_BANG] = ACTIONS(1814), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1814), + [anon_sym_RBRACE] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_u8] = ACTIONS(1816), + [anon_sym_i8] = ACTIONS(1816), + [anon_sym_u16] = ACTIONS(1816), + [anon_sym_i16] = ACTIONS(1816), + [anon_sym_u32] = ACTIONS(1816), + [anon_sym_i32] = ACTIONS(1816), + [anon_sym_u64] = ACTIONS(1816), + [anon_sym_i64] = ACTIONS(1816), + [anon_sym_u128] = ACTIONS(1816), + [anon_sym_i128] = ACTIONS(1816), + [anon_sym_isize] = ACTIONS(1816), + [anon_sym_usize] = ACTIONS(1816), + [anon_sym_f32] = ACTIONS(1816), + [anon_sym_f64] = ACTIONS(1816), + [anon_sym_bool] = ACTIONS(1816), + [anon_sym_str] = ACTIONS(1816), + [anon_sym_char] = ACTIONS(1816), + [anon_sym_SQUOTE] = ACTIONS(1816), + [anon_sym_async] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_continue] = ACTIONS(1816), + [anon_sym_default] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_fn] = ACTIONS(1816), + [anon_sym_for] = ACTIONS(1816), + [anon_sym_if] = ACTIONS(1816), + [anon_sym_impl] = ACTIONS(1816), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_loop] = ACTIONS(1816), + [anon_sym_match] = ACTIONS(1816), + [anon_sym_mod] = ACTIONS(1816), + [anon_sym_pub] = ACTIONS(1816), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_trait] = ACTIONS(1816), + [anon_sym_type] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), + [anon_sym_unsafe] = ACTIONS(1816), + [anon_sym_use] = ACTIONS(1816), + [anon_sym_while] = ACTIONS(1816), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1814), + [anon_sym_AMP] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_PIPE] = ACTIONS(1814), + [anon_sym_yield] = ACTIONS(1816), + [anon_sym_move] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [aux_sym_string_literal_token1] = ACTIONS(1814), + [sym_char_literal] = ACTIONS(1814), + [anon_sym_true] = ACTIONS(1816), + [anon_sym_false] = ACTIONS(1816), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1816), + [sym_super] = ACTIONS(1816), + [sym_crate] = ACTIONS(1816), + [sym_metavariable] = ACTIONS(1814), + [sym_raw_string_literal] = ACTIONS(1814), + [sym_float_literal] = ACTIONS(1814), [sym_block_comment] = ACTIONS(3), }, [436] = { - [ts_builtin_sym_end] = ACTIONS(1836), - [sym_identifier] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_macro_rules_BANG] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1836), - [anon_sym_u8] = ACTIONS(1838), - [anon_sym_i8] = ACTIONS(1838), - [anon_sym_u16] = ACTIONS(1838), - [anon_sym_i16] = ACTIONS(1838), - [anon_sym_u32] = ACTIONS(1838), - [anon_sym_i32] = ACTIONS(1838), - [anon_sym_u64] = ACTIONS(1838), - [anon_sym_i64] = ACTIONS(1838), - [anon_sym_u128] = ACTIONS(1838), - [anon_sym_i128] = ACTIONS(1838), - [anon_sym_isize] = ACTIONS(1838), - [anon_sym_usize] = ACTIONS(1838), - [anon_sym_f32] = ACTIONS(1838), - [anon_sym_f64] = ACTIONS(1838), - [anon_sym_bool] = ACTIONS(1838), - [anon_sym_str] = ACTIONS(1838), - [anon_sym_char] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_async] = ACTIONS(1838), - [anon_sym_break] = ACTIONS(1838), - [anon_sym_const] = ACTIONS(1838), - [anon_sym_continue] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1838), - [anon_sym_enum] = ACTIONS(1838), - [anon_sym_fn] = ACTIONS(1838), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1838), - [anon_sym_impl] = ACTIONS(1838), - [anon_sym_let] = ACTIONS(1838), - [anon_sym_loop] = ACTIONS(1838), - [anon_sym_match] = ACTIONS(1838), - [anon_sym_mod] = ACTIONS(1838), - [anon_sym_pub] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_static] = ACTIONS(1838), - [anon_sym_struct] = ACTIONS(1838), - [anon_sym_trait] = ACTIONS(1838), - [anon_sym_type] = ACTIONS(1838), - [anon_sym_union] = ACTIONS(1838), - [anon_sym_unsafe] = ACTIONS(1838), - [anon_sym_use] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1836), - [anon_sym_BANG] = ACTIONS(1836), - [anon_sym_extern] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1836), - [anon_sym_COLON_COLON] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1836), - [anon_sym_DOT_DOT] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1838), - [anon_sym_move] = ACTIONS(1838), - [sym_integer_literal] = ACTIONS(1836), - [aux_sym_string_literal_token1] = ACTIONS(1836), - [sym_char_literal] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1838), - [anon_sym_false] = ACTIONS(1838), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1838), - [sym_super] = ACTIONS(1838), - [sym_crate] = ACTIONS(1838), - [sym_metavariable] = ACTIONS(1836), - [sym_raw_string_literal] = ACTIONS(1836), - [sym_float_literal] = ACTIONS(1836), + [ts_builtin_sym_end] = ACTIONS(1818), + [sym_identifier] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_macro_rules_BANG] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(1818), + [anon_sym_STAR] = ACTIONS(1818), + [anon_sym_u8] = ACTIONS(1820), + [anon_sym_i8] = ACTIONS(1820), + [anon_sym_u16] = ACTIONS(1820), + [anon_sym_i16] = ACTIONS(1820), + [anon_sym_u32] = ACTIONS(1820), + [anon_sym_i32] = ACTIONS(1820), + [anon_sym_u64] = ACTIONS(1820), + [anon_sym_i64] = ACTIONS(1820), + [anon_sym_u128] = ACTIONS(1820), + [anon_sym_i128] = ACTIONS(1820), + [anon_sym_isize] = ACTIONS(1820), + [anon_sym_usize] = ACTIONS(1820), + [anon_sym_f32] = ACTIONS(1820), + [anon_sym_f64] = ACTIONS(1820), + [anon_sym_bool] = ACTIONS(1820), + [anon_sym_str] = ACTIONS(1820), + [anon_sym_char] = ACTIONS(1820), + [anon_sym_SQUOTE] = ACTIONS(1820), + [anon_sym_async] = ACTIONS(1820), + [anon_sym_break] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1820), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_default] = ACTIONS(1820), + [anon_sym_enum] = ACTIONS(1820), + [anon_sym_fn] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_impl] = ACTIONS(1820), + [anon_sym_let] = ACTIONS(1820), + [anon_sym_loop] = ACTIONS(1820), + [anon_sym_match] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1820), + [anon_sym_pub] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_static] = ACTIONS(1820), + [anon_sym_struct] = ACTIONS(1820), + [anon_sym_trait] = ACTIONS(1820), + [anon_sym_type] = ACTIONS(1820), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_unsafe] = ACTIONS(1820), + [anon_sym_use] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(1818), + [anon_sym_BANG] = ACTIONS(1818), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym_LT] = ACTIONS(1818), + [anon_sym_COLON_COLON] = ACTIONS(1818), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_yield] = ACTIONS(1820), + [anon_sym_move] = ACTIONS(1820), + [sym_integer_literal] = ACTIONS(1818), + [aux_sym_string_literal_token1] = ACTIONS(1818), + [sym_char_literal] = ACTIONS(1818), + [anon_sym_true] = ACTIONS(1820), + [anon_sym_false] = ACTIONS(1820), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1820), + [sym_super] = ACTIONS(1820), + [sym_crate] = ACTIONS(1820), + [sym_metavariable] = ACTIONS(1818), + [sym_raw_string_literal] = ACTIONS(1818), + [sym_float_literal] = ACTIONS(1818), [sym_block_comment] = ACTIONS(3), }, [437] = { - [ts_builtin_sym_end] = ACTIONS(1840), - [sym_identifier] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_macro_rules_BANG] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_LBRACE] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_STAR] = ACTIONS(1840), - [anon_sym_u8] = ACTIONS(1842), - [anon_sym_i8] = ACTIONS(1842), - [anon_sym_u16] = ACTIONS(1842), - [anon_sym_i16] = ACTIONS(1842), - [anon_sym_u32] = ACTIONS(1842), - [anon_sym_i32] = ACTIONS(1842), - [anon_sym_u64] = ACTIONS(1842), - [anon_sym_i64] = ACTIONS(1842), - [anon_sym_u128] = ACTIONS(1842), - [anon_sym_i128] = ACTIONS(1842), - [anon_sym_isize] = ACTIONS(1842), - [anon_sym_usize] = ACTIONS(1842), - [anon_sym_f32] = ACTIONS(1842), - [anon_sym_f64] = ACTIONS(1842), - [anon_sym_bool] = ACTIONS(1842), - [anon_sym_str] = ACTIONS(1842), - [anon_sym_char] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [anon_sym_async] = ACTIONS(1842), - [anon_sym_break] = ACTIONS(1842), - [anon_sym_const] = ACTIONS(1842), - [anon_sym_continue] = ACTIONS(1842), - [anon_sym_default] = ACTIONS(1842), - [anon_sym_enum] = ACTIONS(1842), - [anon_sym_fn] = ACTIONS(1842), - [anon_sym_for] = ACTIONS(1842), - [anon_sym_if] = ACTIONS(1842), - [anon_sym_impl] = ACTIONS(1842), - [anon_sym_let] = ACTIONS(1842), - [anon_sym_loop] = ACTIONS(1842), - [anon_sym_match] = ACTIONS(1842), - [anon_sym_mod] = ACTIONS(1842), - [anon_sym_pub] = ACTIONS(1842), - [anon_sym_return] = ACTIONS(1842), - [anon_sym_static] = ACTIONS(1842), - [anon_sym_struct] = ACTIONS(1842), - [anon_sym_trait] = ACTIONS(1842), - [anon_sym_type] = ACTIONS(1842), - [anon_sym_union] = ACTIONS(1842), - [anon_sym_unsafe] = ACTIONS(1842), - [anon_sym_use] = ACTIONS(1842), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(1840), - [anon_sym_BANG] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_COLON_COLON] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_DOT_DOT] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_yield] = ACTIONS(1842), - [anon_sym_move] = ACTIONS(1842), - [sym_integer_literal] = ACTIONS(1840), - [aux_sym_string_literal_token1] = ACTIONS(1840), - [sym_char_literal] = ACTIONS(1840), - [anon_sym_true] = ACTIONS(1842), - [anon_sym_false] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1842), - [sym_super] = ACTIONS(1842), - [sym_crate] = ACTIONS(1842), - [sym_metavariable] = ACTIONS(1840), - [sym_raw_string_literal] = ACTIONS(1840), - [sym_float_literal] = ACTIONS(1840), + [ts_builtin_sym_end] = ACTIONS(536), + [sym_identifier] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_macro_rules_BANG] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_STAR] = ACTIONS(536), + [anon_sym_u8] = ACTIONS(538), + [anon_sym_i8] = ACTIONS(538), + [anon_sym_u16] = ACTIONS(538), + [anon_sym_i16] = ACTIONS(538), + [anon_sym_u32] = ACTIONS(538), + [anon_sym_i32] = ACTIONS(538), + [anon_sym_u64] = ACTIONS(538), + [anon_sym_i64] = ACTIONS(538), + [anon_sym_u128] = ACTIONS(538), + [anon_sym_i128] = ACTIONS(538), + [anon_sym_isize] = ACTIONS(538), + [anon_sym_usize] = ACTIONS(538), + [anon_sym_f32] = ACTIONS(538), + [anon_sym_f64] = ACTIONS(538), + [anon_sym_bool] = ACTIONS(538), + [anon_sym_str] = ACTIONS(538), + [anon_sym_char] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(538), + [anon_sym_async] = ACTIONS(538), + [anon_sym_break] = ACTIONS(538), + [anon_sym_const] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(538), + [anon_sym_default] = ACTIONS(538), + [anon_sym_enum] = ACTIONS(538), + [anon_sym_fn] = ACTIONS(538), + [anon_sym_for] = ACTIONS(538), + [anon_sym_if] = ACTIONS(538), + [anon_sym_impl] = ACTIONS(538), + [anon_sym_let] = ACTIONS(538), + [anon_sym_loop] = ACTIONS(538), + [anon_sym_match] = ACTIONS(538), + [anon_sym_mod] = ACTIONS(538), + [anon_sym_pub] = ACTIONS(538), + [anon_sym_return] = ACTIONS(538), + [anon_sym_static] = ACTIONS(538), + [anon_sym_struct] = ACTIONS(538), + [anon_sym_trait] = ACTIONS(538), + [anon_sym_type] = ACTIONS(538), + [anon_sym_union] = ACTIONS(538), + [anon_sym_unsafe] = ACTIONS(538), + [anon_sym_use] = ACTIONS(538), + [anon_sym_while] = ACTIONS(538), + [anon_sym_POUND] = ACTIONS(536), + [anon_sym_BANG] = ACTIONS(536), + [anon_sym_extern] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_COLON_COLON] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(536), + [anon_sym_DOT_DOT] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(536), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_yield] = ACTIONS(538), + [anon_sym_move] = ACTIONS(538), + [sym_integer_literal] = ACTIONS(536), + [aux_sym_string_literal_token1] = ACTIONS(536), + [sym_char_literal] = ACTIONS(536), + [anon_sym_true] = ACTIONS(538), + [anon_sym_false] = ACTIONS(538), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(538), + [sym_super] = ACTIONS(538), + [sym_crate] = ACTIONS(538), + [sym_metavariable] = ACTIONS(536), + [sym_raw_string_literal] = ACTIONS(536), + [sym_float_literal] = ACTIONS(536), [sym_block_comment] = ACTIONS(3), }, [438] = { - [ts_builtin_sym_end] = ACTIONS(524), - [sym_identifier] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_macro_rules_BANG] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_RBRACE] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_STAR] = ACTIONS(524), - [anon_sym_u8] = ACTIONS(526), - [anon_sym_i8] = ACTIONS(526), - [anon_sym_u16] = ACTIONS(526), - [anon_sym_i16] = ACTIONS(526), - [anon_sym_u32] = ACTIONS(526), - [anon_sym_i32] = ACTIONS(526), - [anon_sym_u64] = ACTIONS(526), - [anon_sym_i64] = ACTIONS(526), - [anon_sym_u128] = ACTIONS(526), - [anon_sym_i128] = ACTIONS(526), - [anon_sym_isize] = ACTIONS(526), - [anon_sym_usize] = ACTIONS(526), - [anon_sym_f32] = ACTIONS(526), - [anon_sym_f64] = ACTIONS(526), - [anon_sym_bool] = ACTIONS(526), - [anon_sym_str] = ACTIONS(526), - [anon_sym_char] = ACTIONS(526), - [anon_sym_SQUOTE] = ACTIONS(526), - [anon_sym_async] = ACTIONS(526), - [anon_sym_break] = ACTIONS(526), - [anon_sym_const] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_default] = ACTIONS(526), - [anon_sym_enum] = ACTIONS(526), - [anon_sym_fn] = ACTIONS(526), - [anon_sym_for] = ACTIONS(526), - [anon_sym_if] = ACTIONS(526), - [anon_sym_impl] = ACTIONS(526), - [anon_sym_let] = ACTIONS(526), - [anon_sym_loop] = ACTIONS(526), - [anon_sym_match] = ACTIONS(526), - [anon_sym_mod] = ACTIONS(526), - [anon_sym_pub] = ACTIONS(526), - [anon_sym_return] = ACTIONS(526), - [anon_sym_static] = ACTIONS(526), - [anon_sym_struct] = ACTIONS(526), - [anon_sym_trait] = ACTIONS(526), - [anon_sym_type] = ACTIONS(526), - [anon_sym_union] = ACTIONS(526), - [anon_sym_unsafe] = ACTIONS(526), - [anon_sym_use] = ACTIONS(526), - [anon_sym_while] = ACTIONS(526), - [anon_sym_POUND] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_extern] = ACTIONS(526), - [anon_sym_LT] = ACTIONS(524), - [anon_sym_COLON_COLON] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(524), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_yield] = ACTIONS(526), - [anon_sym_move] = ACTIONS(526), - [sym_integer_literal] = ACTIONS(524), - [aux_sym_string_literal_token1] = ACTIONS(524), - [sym_char_literal] = ACTIONS(524), - [anon_sym_true] = ACTIONS(526), - [anon_sym_false] = ACTIONS(526), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(526), - [sym_super] = ACTIONS(526), - [sym_crate] = ACTIONS(526), - [sym_metavariable] = ACTIONS(524), - [sym_raw_string_literal] = ACTIONS(524), - [sym_float_literal] = ACTIONS(524), + [ts_builtin_sym_end] = ACTIONS(1822), + [sym_identifier] = ACTIONS(1824), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_macro_rules_BANG] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_u8] = ACTIONS(1824), + [anon_sym_i8] = ACTIONS(1824), + [anon_sym_u16] = ACTIONS(1824), + [anon_sym_i16] = ACTIONS(1824), + [anon_sym_u32] = ACTIONS(1824), + [anon_sym_i32] = ACTIONS(1824), + [anon_sym_u64] = ACTIONS(1824), + [anon_sym_i64] = ACTIONS(1824), + [anon_sym_u128] = ACTIONS(1824), + [anon_sym_i128] = ACTIONS(1824), + [anon_sym_isize] = ACTIONS(1824), + [anon_sym_usize] = ACTIONS(1824), + [anon_sym_f32] = ACTIONS(1824), + [anon_sym_f64] = ACTIONS(1824), + [anon_sym_bool] = ACTIONS(1824), + [anon_sym_str] = ACTIONS(1824), + [anon_sym_char] = ACTIONS(1824), + [anon_sym_SQUOTE] = ACTIONS(1824), + [anon_sym_async] = ACTIONS(1824), + [anon_sym_break] = ACTIONS(1824), + [anon_sym_const] = ACTIONS(1824), + [anon_sym_continue] = ACTIONS(1824), + [anon_sym_default] = ACTIONS(1824), + [anon_sym_enum] = ACTIONS(1824), + [anon_sym_fn] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(1824), + [anon_sym_if] = ACTIONS(1824), + [anon_sym_impl] = ACTIONS(1824), + [anon_sym_let] = ACTIONS(1824), + [anon_sym_loop] = ACTIONS(1824), + [anon_sym_match] = ACTIONS(1824), + [anon_sym_mod] = ACTIONS(1824), + [anon_sym_pub] = ACTIONS(1824), + [anon_sym_return] = ACTIONS(1824), + [anon_sym_static] = ACTIONS(1824), + [anon_sym_struct] = ACTIONS(1824), + [anon_sym_trait] = ACTIONS(1824), + [anon_sym_type] = ACTIONS(1824), + [anon_sym_union] = ACTIONS(1824), + [anon_sym_unsafe] = ACTIONS(1824), + [anon_sym_use] = ACTIONS(1824), + [anon_sym_while] = ACTIONS(1824), + [anon_sym_POUND] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_extern] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_yield] = ACTIONS(1824), + [anon_sym_move] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [aux_sym_string_literal_token1] = ACTIONS(1822), + [sym_char_literal] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1824), + [anon_sym_false] = ACTIONS(1824), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1824), + [sym_super] = ACTIONS(1824), + [sym_crate] = ACTIONS(1824), + [sym_metavariable] = ACTIONS(1822), + [sym_raw_string_literal] = ACTIONS(1822), + [sym_float_literal] = ACTIONS(1822), [sym_block_comment] = ACTIONS(3), }, [439] = { - [ts_builtin_sym_end] = ACTIONS(1844), - [sym_identifier] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_macro_rules_BANG] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1844), - [anon_sym_LBRACE] = ACTIONS(1844), - [anon_sym_RBRACE] = ACTIONS(1844), - [anon_sym_LBRACK] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_u8] = ACTIONS(1846), - [anon_sym_i8] = ACTIONS(1846), - [anon_sym_u16] = ACTIONS(1846), - [anon_sym_i16] = ACTIONS(1846), - [anon_sym_u32] = ACTIONS(1846), - [anon_sym_i32] = ACTIONS(1846), - [anon_sym_u64] = ACTIONS(1846), - [anon_sym_i64] = ACTIONS(1846), - [anon_sym_u128] = ACTIONS(1846), - [anon_sym_i128] = ACTIONS(1846), - [anon_sym_isize] = ACTIONS(1846), - [anon_sym_usize] = ACTIONS(1846), - [anon_sym_f32] = ACTIONS(1846), - [anon_sym_f64] = ACTIONS(1846), - [anon_sym_bool] = ACTIONS(1846), - [anon_sym_str] = ACTIONS(1846), - [anon_sym_char] = ACTIONS(1846), - [anon_sym_SQUOTE] = ACTIONS(1846), - [anon_sym_async] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_fn] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_impl] = ACTIONS(1846), - [anon_sym_let] = ACTIONS(1846), - [anon_sym_loop] = ACTIONS(1846), - [anon_sym_match] = ACTIONS(1846), - [anon_sym_mod] = ACTIONS(1846), - [anon_sym_pub] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_trait] = ACTIONS(1846), - [anon_sym_type] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_unsafe] = ACTIONS(1846), - [anon_sym_use] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_COLON_COLON] = ACTIONS(1844), - [anon_sym_AMP] = ACTIONS(1844), - [anon_sym_DOT_DOT] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_yield] = ACTIONS(1846), - [anon_sym_move] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(1844), - [aux_sym_string_literal_token1] = ACTIONS(1844), - [sym_char_literal] = ACTIONS(1844), - [anon_sym_true] = ACTIONS(1846), - [anon_sym_false] = ACTIONS(1846), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_crate] = ACTIONS(1846), - [sym_metavariable] = ACTIONS(1844), - [sym_raw_string_literal] = ACTIONS(1844), - [sym_float_literal] = ACTIONS(1844), + [ts_builtin_sym_end] = ACTIONS(1826), + [sym_identifier] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_macro_rules_BANG] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1826), + [anon_sym_u8] = ACTIONS(1828), + [anon_sym_i8] = ACTIONS(1828), + [anon_sym_u16] = ACTIONS(1828), + [anon_sym_i16] = ACTIONS(1828), + [anon_sym_u32] = ACTIONS(1828), + [anon_sym_i32] = ACTIONS(1828), + [anon_sym_u64] = ACTIONS(1828), + [anon_sym_i64] = ACTIONS(1828), + [anon_sym_u128] = ACTIONS(1828), + [anon_sym_i128] = ACTIONS(1828), + [anon_sym_isize] = ACTIONS(1828), + [anon_sym_usize] = ACTIONS(1828), + [anon_sym_f32] = ACTIONS(1828), + [anon_sym_f64] = ACTIONS(1828), + [anon_sym_bool] = ACTIONS(1828), + [anon_sym_str] = ACTIONS(1828), + [anon_sym_char] = ACTIONS(1828), + [anon_sym_SQUOTE] = ACTIONS(1828), + [anon_sym_async] = ACTIONS(1828), + [anon_sym_break] = ACTIONS(1828), + [anon_sym_const] = ACTIONS(1828), + [anon_sym_continue] = ACTIONS(1828), + [anon_sym_default] = ACTIONS(1828), + [anon_sym_enum] = ACTIONS(1828), + [anon_sym_fn] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_impl] = ACTIONS(1828), + [anon_sym_let] = ACTIONS(1828), + [anon_sym_loop] = ACTIONS(1828), + [anon_sym_match] = ACTIONS(1828), + [anon_sym_mod] = ACTIONS(1828), + [anon_sym_pub] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_static] = ACTIONS(1828), + [anon_sym_struct] = ACTIONS(1828), + [anon_sym_trait] = ACTIONS(1828), + [anon_sym_type] = ACTIONS(1828), + [anon_sym_union] = ACTIONS(1828), + [anon_sym_unsafe] = ACTIONS(1828), + [anon_sym_use] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_POUND] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_extern] = ACTIONS(1828), + [anon_sym_LT] = ACTIONS(1826), + [anon_sym_COLON_COLON] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), + [anon_sym_DOT_DOT] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_yield] = ACTIONS(1828), + [anon_sym_move] = ACTIONS(1828), + [sym_integer_literal] = ACTIONS(1826), + [aux_sym_string_literal_token1] = ACTIONS(1826), + [sym_char_literal] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1828), + [sym_super] = ACTIONS(1828), + [sym_crate] = ACTIONS(1828), + [sym_metavariable] = ACTIONS(1826), + [sym_raw_string_literal] = ACTIONS(1826), + [sym_float_literal] = ACTIONS(1826), [sym_block_comment] = ACTIONS(3), }, [440] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_macro_rules_BANG] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1848), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_u8] = ACTIONS(1850), - [anon_sym_i8] = ACTIONS(1850), - [anon_sym_u16] = ACTIONS(1850), - [anon_sym_i16] = ACTIONS(1850), - [anon_sym_u32] = ACTIONS(1850), - [anon_sym_i32] = ACTIONS(1850), - [anon_sym_u64] = ACTIONS(1850), - [anon_sym_i64] = ACTIONS(1850), - [anon_sym_u128] = ACTIONS(1850), - [anon_sym_i128] = ACTIONS(1850), - [anon_sym_isize] = ACTIONS(1850), - [anon_sym_usize] = ACTIONS(1850), - [anon_sym_f32] = ACTIONS(1850), - [anon_sym_f64] = ACTIONS(1850), - [anon_sym_bool] = ACTIONS(1850), - [anon_sym_str] = ACTIONS(1850), - [anon_sym_char] = ACTIONS(1850), - [anon_sym_SQUOTE] = ACTIONS(1850), - [anon_sym_async] = ACTIONS(1850), - [anon_sym_break] = ACTIONS(1850), - [anon_sym_const] = ACTIONS(1850), - [anon_sym_continue] = ACTIONS(1850), - [anon_sym_default] = ACTIONS(1850), - [anon_sym_enum] = ACTIONS(1850), - [anon_sym_fn] = ACTIONS(1850), - [anon_sym_for] = ACTIONS(1850), - [anon_sym_if] = ACTIONS(1850), - [anon_sym_impl] = ACTIONS(1850), - [anon_sym_let] = ACTIONS(1850), - [anon_sym_loop] = ACTIONS(1850), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_mod] = ACTIONS(1850), - [anon_sym_pub] = ACTIONS(1850), - [anon_sym_return] = ACTIONS(1850), - [anon_sym_static] = ACTIONS(1850), - [anon_sym_struct] = ACTIONS(1850), - [anon_sym_trait] = ACTIONS(1850), - [anon_sym_type] = ACTIONS(1850), - [anon_sym_union] = ACTIONS(1850), - [anon_sym_unsafe] = ACTIONS(1850), - [anon_sym_use] = ACTIONS(1850), - [anon_sym_while] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_extern] = ACTIONS(1850), - [anon_sym_LT] = ACTIONS(1848), - [anon_sym_COLON_COLON] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_DOT_DOT] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_yield] = ACTIONS(1850), - [anon_sym_move] = ACTIONS(1850), - [sym_integer_literal] = ACTIONS(1848), - [aux_sym_string_literal_token1] = ACTIONS(1848), - [sym_char_literal] = ACTIONS(1848), - [anon_sym_true] = ACTIONS(1850), - [anon_sym_false] = ACTIONS(1850), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1850), - [sym_super] = ACTIONS(1850), - [sym_crate] = ACTIONS(1850), - [sym_metavariable] = ACTIONS(1848), - [sym_raw_string_literal] = ACTIONS(1848), - [sym_float_literal] = ACTIONS(1848), + [ts_builtin_sym_end] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_macro_rules_BANG] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1830), + [anon_sym_STAR] = ACTIONS(1830), + [anon_sym_u8] = ACTIONS(1832), + [anon_sym_i8] = ACTIONS(1832), + [anon_sym_u16] = ACTIONS(1832), + [anon_sym_i16] = ACTIONS(1832), + [anon_sym_u32] = ACTIONS(1832), + [anon_sym_i32] = ACTIONS(1832), + [anon_sym_u64] = ACTIONS(1832), + [anon_sym_i64] = ACTIONS(1832), + [anon_sym_u128] = ACTIONS(1832), + [anon_sym_i128] = ACTIONS(1832), + [anon_sym_isize] = ACTIONS(1832), + [anon_sym_usize] = ACTIONS(1832), + [anon_sym_f32] = ACTIONS(1832), + [anon_sym_f64] = ACTIONS(1832), + [anon_sym_bool] = ACTIONS(1832), + [anon_sym_str] = ACTIONS(1832), + [anon_sym_char] = ACTIONS(1832), + [anon_sym_SQUOTE] = ACTIONS(1832), + [anon_sym_async] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_default] = ACTIONS(1832), + [anon_sym_enum] = ACTIONS(1832), + [anon_sym_fn] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_impl] = ACTIONS(1832), + [anon_sym_let] = ACTIONS(1832), + [anon_sym_loop] = ACTIONS(1832), + [anon_sym_match] = ACTIONS(1832), + [anon_sym_mod] = ACTIONS(1832), + [anon_sym_pub] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_static] = ACTIONS(1832), + [anon_sym_struct] = ACTIONS(1832), + [anon_sym_trait] = ACTIONS(1832), + [anon_sym_type] = ACTIONS(1832), + [anon_sym_union] = ACTIONS(1832), + [anon_sym_unsafe] = ACTIONS(1832), + [anon_sym_use] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_extern] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1830), + [anon_sym_COLON_COLON] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_DOT_DOT] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_yield] = ACTIONS(1832), + [anon_sym_move] = ACTIONS(1832), + [sym_integer_literal] = ACTIONS(1830), + [aux_sym_string_literal_token1] = ACTIONS(1830), + [sym_char_literal] = ACTIONS(1830), + [anon_sym_true] = ACTIONS(1832), + [anon_sym_false] = ACTIONS(1832), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1832), + [sym_super] = ACTIONS(1832), + [sym_crate] = ACTIONS(1832), + [sym_metavariable] = ACTIONS(1830), + [sym_raw_string_literal] = ACTIONS(1830), + [sym_float_literal] = ACTIONS(1830), [sym_block_comment] = ACTIONS(3), }, [441] = { - [ts_builtin_sym_end] = ACTIONS(1852), - [sym_identifier] = ACTIONS(1854), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_macro_rules_BANG] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1852), - [anon_sym_LBRACE] = ACTIONS(1852), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_STAR] = ACTIONS(1852), - [anon_sym_u8] = ACTIONS(1854), - [anon_sym_i8] = ACTIONS(1854), - [anon_sym_u16] = ACTIONS(1854), - [anon_sym_i16] = ACTIONS(1854), - [anon_sym_u32] = ACTIONS(1854), - [anon_sym_i32] = ACTIONS(1854), - [anon_sym_u64] = ACTIONS(1854), - [anon_sym_i64] = ACTIONS(1854), - [anon_sym_u128] = ACTIONS(1854), - [anon_sym_i128] = ACTIONS(1854), - [anon_sym_isize] = ACTIONS(1854), - [anon_sym_usize] = ACTIONS(1854), - [anon_sym_f32] = ACTIONS(1854), - [anon_sym_f64] = ACTIONS(1854), - [anon_sym_bool] = ACTIONS(1854), - [anon_sym_str] = ACTIONS(1854), - [anon_sym_char] = ACTIONS(1854), - [anon_sym_SQUOTE] = ACTIONS(1854), - [anon_sym_async] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_fn] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_impl] = ACTIONS(1854), - [anon_sym_let] = ACTIONS(1854), - [anon_sym_loop] = ACTIONS(1854), - [anon_sym_match] = ACTIONS(1854), - [anon_sym_mod] = ACTIONS(1854), - [anon_sym_pub] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_trait] = ACTIONS(1854), - [anon_sym_type] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_unsafe] = ACTIONS(1854), - [anon_sym_use] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(1852), - [anon_sym_BANG] = ACTIONS(1852), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1852), - [anon_sym_COLON_COLON] = ACTIONS(1852), - [anon_sym_AMP] = ACTIONS(1852), - [anon_sym_DOT_DOT] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_yield] = ACTIONS(1854), - [anon_sym_move] = ACTIONS(1854), - [sym_integer_literal] = ACTIONS(1852), - [aux_sym_string_literal_token1] = ACTIONS(1852), - [sym_char_literal] = ACTIONS(1852), - [anon_sym_true] = ACTIONS(1854), - [anon_sym_false] = ACTIONS(1854), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_crate] = ACTIONS(1854), - [sym_metavariable] = ACTIONS(1852), - [sym_raw_string_literal] = ACTIONS(1852), - [sym_float_literal] = ACTIONS(1852), + [ts_builtin_sym_end] = ACTIONS(1834), + [sym_identifier] = ACTIONS(1836), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_macro_rules_BANG] = ACTIONS(1834), + [anon_sym_LPAREN] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1834), + [anon_sym_STAR] = ACTIONS(1834), + [anon_sym_u8] = ACTIONS(1836), + [anon_sym_i8] = ACTIONS(1836), + [anon_sym_u16] = ACTIONS(1836), + [anon_sym_i16] = ACTIONS(1836), + [anon_sym_u32] = ACTIONS(1836), + [anon_sym_i32] = ACTIONS(1836), + [anon_sym_u64] = ACTIONS(1836), + [anon_sym_i64] = ACTIONS(1836), + [anon_sym_u128] = ACTIONS(1836), + [anon_sym_i128] = ACTIONS(1836), + [anon_sym_isize] = ACTIONS(1836), + [anon_sym_usize] = ACTIONS(1836), + [anon_sym_f32] = ACTIONS(1836), + [anon_sym_f64] = ACTIONS(1836), + [anon_sym_bool] = ACTIONS(1836), + [anon_sym_str] = ACTIONS(1836), + [anon_sym_char] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_async] = ACTIONS(1836), + [anon_sym_break] = ACTIONS(1836), + [anon_sym_const] = ACTIONS(1836), + [anon_sym_continue] = ACTIONS(1836), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_enum] = ACTIONS(1836), + [anon_sym_fn] = ACTIONS(1836), + [anon_sym_for] = ACTIONS(1836), + [anon_sym_if] = ACTIONS(1836), + [anon_sym_impl] = ACTIONS(1836), + [anon_sym_let] = ACTIONS(1836), + [anon_sym_loop] = ACTIONS(1836), + [anon_sym_match] = ACTIONS(1836), + [anon_sym_mod] = ACTIONS(1836), + [anon_sym_pub] = ACTIONS(1836), + [anon_sym_return] = ACTIONS(1836), + [anon_sym_static] = ACTIONS(1836), + [anon_sym_struct] = ACTIONS(1836), + [anon_sym_trait] = ACTIONS(1836), + [anon_sym_type] = ACTIONS(1836), + [anon_sym_union] = ACTIONS(1836), + [anon_sym_unsafe] = ACTIONS(1836), + [anon_sym_use] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1836), + [anon_sym_POUND] = ACTIONS(1834), + [anon_sym_BANG] = ACTIONS(1834), + [anon_sym_extern] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_COLON_COLON] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_yield] = ACTIONS(1836), + [anon_sym_move] = ACTIONS(1836), + [sym_integer_literal] = ACTIONS(1834), + [aux_sym_string_literal_token1] = ACTIONS(1834), + [sym_char_literal] = ACTIONS(1834), + [anon_sym_true] = ACTIONS(1836), + [anon_sym_false] = ACTIONS(1836), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1836), + [sym_super] = ACTIONS(1836), + [sym_crate] = ACTIONS(1836), + [sym_metavariable] = ACTIONS(1834), + [sym_raw_string_literal] = ACTIONS(1834), + [sym_float_literal] = ACTIONS(1834), [sym_block_comment] = ACTIONS(3), }, [442] = { - [ts_builtin_sym_end] = ACTIONS(1856), - [sym_identifier] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_macro_rules_BANG] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(1856), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_u8] = ACTIONS(1858), - [anon_sym_i8] = ACTIONS(1858), - [anon_sym_u16] = ACTIONS(1858), - [anon_sym_i16] = ACTIONS(1858), - [anon_sym_u32] = ACTIONS(1858), - [anon_sym_i32] = ACTIONS(1858), - [anon_sym_u64] = ACTIONS(1858), - [anon_sym_i64] = ACTIONS(1858), - [anon_sym_u128] = ACTIONS(1858), - [anon_sym_i128] = ACTIONS(1858), - [anon_sym_isize] = ACTIONS(1858), - [anon_sym_usize] = ACTIONS(1858), - [anon_sym_f32] = ACTIONS(1858), - [anon_sym_f64] = ACTIONS(1858), - [anon_sym_bool] = ACTIONS(1858), - [anon_sym_str] = ACTIONS(1858), - [anon_sym_char] = ACTIONS(1858), - [anon_sym_SQUOTE] = ACTIONS(1858), - [anon_sym_async] = ACTIONS(1858), - [anon_sym_break] = ACTIONS(1858), - [anon_sym_const] = ACTIONS(1858), - [anon_sym_continue] = ACTIONS(1858), - [anon_sym_default] = ACTIONS(1858), - [anon_sym_enum] = ACTIONS(1858), - [anon_sym_fn] = ACTIONS(1858), - [anon_sym_for] = ACTIONS(1858), - [anon_sym_if] = ACTIONS(1858), - [anon_sym_impl] = ACTIONS(1858), - [anon_sym_let] = ACTIONS(1858), - [anon_sym_loop] = ACTIONS(1858), - [anon_sym_match] = ACTIONS(1858), - [anon_sym_mod] = ACTIONS(1858), - [anon_sym_pub] = ACTIONS(1858), - [anon_sym_return] = ACTIONS(1858), - [anon_sym_static] = ACTIONS(1858), - [anon_sym_struct] = ACTIONS(1858), - [anon_sym_trait] = ACTIONS(1858), - [anon_sym_type] = ACTIONS(1858), - [anon_sym_union] = ACTIONS(1858), - [anon_sym_unsafe] = ACTIONS(1858), - [anon_sym_use] = ACTIONS(1858), - [anon_sym_while] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1858), - [anon_sym_LT] = ACTIONS(1856), - [anon_sym_COLON_COLON] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_DOT_DOT] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_PIPE] = ACTIONS(1856), - [anon_sym_yield] = ACTIONS(1858), - [anon_sym_move] = ACTIONS(1858), - [sym_integer_literal] = ACTIONS(1856), - [aux_sym_string_literal_token1] = ACTIONS(1856), - [sym_char_literal] = ACTIONS(1856), - [anon_sym_true] = ACTIONS(1858), - [anon_sym_false] = ACTIONS(1858), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1858), - [sym_super] = ACTIONS(1858), - [sym_crate] = ACTIONS(1858), - [sym_metavariable] = ACTIONS(1856), - [sym_raw_string_literal] = ACTIONS(1856), - [sym_float_literal] = ACTIONS(1856), + [ts_builtin_sym_end] = ACTIONS(1838), + [sym_identifier] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_macro_rules_BANG] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_STAR] = ACTIONS(1838), + [anon_sym_u8] = ACTIONS(1840), + [anon_sym_i8] = ACTIONS(1840), + [anon_sym_u16] = ACTIONS(1840), + [anon_sym_i16] = ACTIONS(1840), + [anon_sym_u32] = ACTIONS(1840), + [anon_sym_i32] = ACTIONS(1840), + [anon_sym_u64] = ACTIONS(1840), + [anon_sym_i64] = ACTIONS(1840), + [anon_sym_u128] = ACTIONS(1840), + [anon_sym_i128] = ACTIONS(1840), + [anon_sym_isize] = ACTIONS(1840), + [anon_sym_usize] = ACTIONS(1840), + [anon_sym_f32] = ACTIONS(1840), + [anon_sym_f64] = ACTIONS(1840), + [anon_sym_bool] = ACTIONS(1840), + [anon_sym_str] = ACTIONS(1840), + [anon_sym_char] = ACTIONS(1840), + [anon_sym_SQUOTE] = ACTIONS(1840), + [anon_sym_async] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_enum] = ACTIONS(1840), + [anon_sym_fn] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_impl] = ACTIONS(1840), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_loop] = ACTIONS(1840), + [anon_sym_match] = ACTIONS(1840), + [anon_sym_mod] = ACTIONS(1840), + [anon_sym_pub] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_static] = ACTIONS(1840), + [anon_sym_struct] = ACTIONS(1840), + [anon_sym_trait] = ACTIONS(1840), + [anon_sym_type] = ACTIONS(1840), + [anon_sym_union] = ACTIONS(1840), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_use] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_POUND] = ACTIONS(1838), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym_LT] = ACTIONS(1838), + [anon_sym_COLON_COLON] = ACTIONS(1838), + [anon_sym_AMP] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_yield] = ACTIONS(1840), + [anon_sym_move] = ACTIONS(1840), + [sym_integer_literal] = ACTIONS(1838), + [aux_sym_string_literal_token1] = ACTIONS(1838), + [sym_char_literal] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1840), + [anon_sym_false] = ACTIONS(1840), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1840), + [sym_super] = ACTIONS(1840), + [sym_crate] = ACTIONS(1840), + [sym_metavariable] = ACTIONS(1838), + [sym_raw_string_literal] = ACTIONS(1838), + [sym_float_literal] = ACTIONS(1838), [sym_block_comment] = ACTIONS(3), }, [443] = { - [ts_builtin_sym_end] = ACTIONS(1860), - [sym_identifier] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_macro_rules_BANG] = ACTIONS(1860), - [anon_sym_LPAREN] = ACTIONS(1860), - [anon_sym_LBRACE] = ACTIONS(1860), - [anon_sym_RBRACE] = ACTIONS(1860), - [anon_sym_LBRACK] = ACTIONS(1860), - [anon_sym_STAR] = ACTIONS(1860), - [anon_sym_u8] = ACTIONS(1862), - [anon_sym_i8] = ACTIONS(1862), - [anon_sym_u16] = ACTIONS(1862), - [anon_sym_i16] = ACTIONS(1862), - [anon_sym_u32] = ACTIONS(1862), - [anon_sym_i32] = ACTIONS(1862), - [anon_sym_u64] = ACTIONS(1862), - [anon_sym_i64] = ACTIONS(1862), - [anon_sym_u128] = ACTIONS(1862), - [anon_sym_i128] = ACTIONS(1862), - [anon_sym_isize] = ACTIONS(1862), - [anon_sym_usize] = ACTIONS(1862), - [anon_sym_f32] = ACTIONS(1862), - [anon_sym_f64] = ACTIONS(1862), - [anon_sym_bool] = ACTIONS(1862), - [anon_sym_str] = ACTIONS(1862), - [anon_sym_char] = ACTIONS(1862), - [anon_sym_SQUOTE] = ACTIONS(1862), - [anon_sym_async] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_fn] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_impl] = ACTIONS(1862), - [anon_sym_let] = ACTIONS(1862), - [anon_sym_loop] = ACTIONS(1862), - [anon_sym_match] = ACTIONS(1862), - [anon_sym_mod] = ACTIONS(1862), - [anon_sym_pub] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_trait] = ACTIONS(1862), - [anon_sym_type] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_unsafe] = ACTIONS(1862), - [anon_sym_use] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(1860), - [anon_sym_BANG] = ACTIONS(1860), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym_LT] = ACTIONS(1860), - [anon_sym_COLON_COLON] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1860), - [anon_sym_PIPE] = ACTIONS(1860), - [anon_sym_yield] = ACTIONS(1862), - [anon_sym_move] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(1860), - [aux_sym_string_literal_token1] = ACTIONS(1860), - [sym_char_literal] = ACTIONS(1860), - [anon_sym_true] = ACTIONS(1862), - [anon_sym_false] = ACTIONS(1862), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_crate] = ACTIONS(1862), - [sym_metavariable] = ACTIONS(1860), - [sym_raw_string_literal] = ACTIONS(1860), - [sym_float_literal] = ACTIONS(1860), + [ts_builtin_sym_end] = ACTIONS(1842), + [sym_identifier] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_macro_rules_BANG] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_STAR] = ACTIONS(1842), + [anon_sym_u8] = ACTIONS(1844), + [anon_sym_i8] = ACTIONS(1844), + [anon_sym_u16] = ACTIONS(1844), + [anon_sym_i16] = ACTIONS(1844), + [anon_sym_u32] = ACTIONS(1844), + [anon_sym_i32] = ACTIONS(1844), + [anon_sym_u64] = ACTIONS(1844), + [anon_sym_i64] = ACTIONS(1844), + [anon_sym_u128] = ACTIONS(1844), + [anon_sym_i128] = ACTIONS(1844), + [anon_sym_isize] = ACTIONS(1844), + [anon_sym_usize] = ACTIONS(1844), + [anon_sym_f32] = ACTIONS(1844), + [anon_sym_f64] = ACTIONS(1844), + [anon_sym_bool] = ACTIONS(1844), + [anon_sym_str] = ACTIONS(1844), + [anon_sym_char] = ACTIONS(1844), + [anon_sym_SQUOTE] = ACTIONS(1844), + [anon_sym_async] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1844), + [anon_sym_const] = ACTIONS(1844), + [anon_sym_continue] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1844), + [anon_sym_enum] = ACTIONS(1844), + [anon_sym_fn] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1844), + [anon_sym_impl] = ACTIONS(1844), + [anon_sym_let] = ACTIONS(1844), + [anon_sym_loop] = ACTIONS(1844), + [anon_sym_match] = ACTIONS(1844), + [anon_sym_mod] = ACTIONS(1844), + [anon_sym_pub] = ACTIONS(1844), + [anon_sym_return] = ACTIONS(1844), + [anon_sym_static] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1844), + [anon_sym_trait] = ACTIONS(1844), + [anon_sym_type] = ACTIONS(1844), + [anon_sym_union] = ACTIONS(1844), + [anon_sym_unsafe] = ACTIONS(1844), + [anon_sym_use] = ACTIONS(1844), + [anon_sym_while] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_extern] = ACTIONS(1844), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_COLON_COLON] = ACTIONS(1842), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_DOT_DOT] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_yield] = ACTIONS(1844), + [anon_sym_move] = ACTIONS(1844), + [sym_integer_literal] = ACTIONS(1842), + [aux_sym_string_literal_token1] = ACTIONS(1842), + [sym_char_literal] = ACTIONS(1842), + [anon_sym_true] = ACTIONS(1844), + [anon_sym_false] = ACTIONS(1844), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1844), + [sym_super] = ACTIONS(1844), + [sym_crate] = ACTIONS(1844), + [sym_metavariable] = ACTIONS(1842), + [sym_raw_string_literal] = ACTIONS(1842), + [sym_float_literal] = ACTIONS(1842), [sym_block_comment] = ACTIONS(3), }, [444] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_macro_rules_BANG] = ACTIONS(1864), - [anon_sym_LPAREN] = ACTIONS(1864), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_u8] = ACTIONS(1866), - [anon_sym_i8] = ACTIONS(1866), - [anon_sym_u16] = ACTIONS(1866), - [anon_sym_i16] = ACTIONS(1866), - [anon_sym_u32] = ACTIONS(1866), - [anon_sym_i32] = ACTIONS(1866), - [anon_sym_u64] = ACTIONS(1866), - [anon_sym_i64] = ACTIONS(1866), - [anon_sym_u128] = ACTIONS(1866), - [anon_sym_i128] = ACTIONS(1866), - [anon_sym_isize] = ACTIONS(1866), - [anon_sym_usize] = ACTIONS(1866), - [anon_sym_f32] = ACTIONS(1866), - [anon_sym_f64] = ACTIONS(1866), - [anon_sym_bool] = ACTIONS(1866), - [anon_sym_str] = ACTIONS(1866), - [anon_sym_char] = ACTIONS(1866), - [anon_sym_SQUOTE] = ACTIONS(1866), - [anon_sym_async] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_fn] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_impl] = ACTIONS(1866), - [anon_sym_let] = ACTIONS(1866), - [anon_sym_loop] = ACTIONS(1866), - [anon_sym_match] = ACTIONS(1866), - [anon_sym_mod] = ACTIONS(1866), - [anon_sym_pub] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_trait] = ACTIONS(1866), - [anon_sym_type] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_unsafe] = ACTIONS(1866), - [anon_sym_use] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(1864), - [anon_sym_COLON_COLON] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_DOT_DOT] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1864), - [anon_sym_PIPE] = ACTIONS(1864), - [anon_sym_yield] = ACTIONS(1866), - [anon_sym_move] = ACTIONS(1866), - [sym_integer_literal] = ACTIONS(1864), - [aux_sym_string_literal_token1] = ACTIONS(1864), - [sym_char_literal] = ACTIONS(1864), - [anon_sym_true] = ACTIONS(1866), - [anon_sym_false] = ACTIONS(1866), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_crate] = ACTIONS(1866), - [sym_metavariable] = ACTIONS(1864), - [sym_raw_string_literal] = ACTIONS(1864), - [sym_float_literal] = ACTIONS(1864), + [ts_builtin_sym_end] = ACTIONS(1846), + [sym_identifier] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_macro_rules_BANG] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_u8] = ACTIONS(1848), + [anon_sym_i8] = ACTIONS(1848), + [anon_sym_u16] = ACTIONS(1848), + [anon_sym_i16] = ACTIONS(1848), + [anon_sym_u32] = ACTIONS(1848), + [anon_sym_i32] = ACTIONS(1848), + [anon_sym_u64] = ACTIONS(1848), + [anon_sym_i64] = ACTIONS(1848), + [anon_sym_u128] = ACTIONS(1848), + [anon_sym_i128] = ACTIONS(1848), + [anon_sym_isize] = ACTIONS(1848), + [anon_sym_usize] = ACTIONS(1848), + [anon_sym_f32] = ACTIONS(1848), + [anon_sym_f64] = ACTIONS(1848), + [anon_sym_bool] = ACTIONS(1848), + [anon_sym_str] = ACTIONS(1848), + [anon_sym_char] = ACTIONS(1848), + [anon_sym_SQUOTE] = ACTIONS(1848), + [anon_sym_async] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_fn] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_impl] = ACTIONS(1848), + [anon_sym_let] = ACTIONS(1848), + [anon_sym_loop] = ACTIONS(1848), + [anon_sym_match] = ACTIONS(1848), + [anon_sym_mod] = ACTIONS(1848), + [anon_sym_pub] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_trait] = ACTIONS(1848), + [anon_sym_type] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_unsafe] = ACTIONS(1848), + [anon_sym_use] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1846), + [anon_sym_COLON_COLON] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_DOT_DOT] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_yield] = ACTIONS(1848), + [anon_sym_move] = ACTIONS(1848), + [sym_integer_literal] = ACTIONS(1846), + [aux_sym_string_literal_token1] = ACTIONS(1846), + [sym_char_literal] = ACTIONS(1846), + [anon_sym_true] = ACTIONS(1848), + [anon_sym_false] = ACTIONS(1848), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_crate] = ACTIONS(1848), + [sym_metavariable] = ACTIONS(1846), + [sym_raw_string_literal] = ACTIONS(1846), + [sym_float_literal] = ACTIONS(1846), [sym_block_comment] = ACTIONS(3), }, [445] = { - [ts_builtin_sym_end] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_macro_rules_BANG] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_u8] = ACTIONS(1870), - [anon_sym_i8] = ACTIONS(1870), - [anon_sym_u16] = ACTIONS(1870), - [anon_sym_i16] = ACTIONS(1870), - [anon_sym_u32] = ACTIONS(1870), - [anon_sym_i32] = ACTIONS(1870), - [anon_sym_u64] = ACTIONS(1870), - [anon_sym_i64] = ACTIONS(1870), - [anon_sym_u128] = ACTIONS(1870), - [anon_sym_i128] = ACTIONS(1870), - [anon_sym_isize] = ACTIONS(1870), - [anon_sym_usize] = ACTIONS(1870), - [anon_sym_f32] = ACTIONS(1870), - [anon_sym_f64] = ACTIONS(1870), - [anon_sym_bool] = ACTIONS(1870), - [anon_sym_str] = ACTIONS(1870), - [anon_sym_char] = ACTIONS(1870), - [anon_sym_SQUOTE] = ACTIONS(1870), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1870), - [anon_sym_const] = ACTIONS(1870), - [anon_sym_continue] = ACTIONS(1870), - [anon_sym_default] = ACTIONS(1870), - [anon_sym_enum] = ACTIONS(1870), - [anon_sym_fn] = ACTIONS(1870), - [anon_sym_for] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(1870), - [anon_sym_impl] = ACTIONS(1870), - [anon_sym_let] = ACTIONS(1870), - [anon_sym_loop] = ACTIONS(1870), - [anon_sym_match] = ACTIONS(1870), - [anon_sym_mod] = ACTIONS(1870), - [anon_sym_pub] = ACTIONS(1870), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_static] = ACTIONS(1870), - [anon_sym_struct] = ACTIONS(1870), - [anon_sym_trait] = ACTIONS(1870), - [anon_sym_type] = ACTIONS(1870), - [anon_sym_union] = ACTIONS(1870), - [anon_sym_unsafe] = ACTIONS(1870), - [anon_sym_use] = ACTIONS(1870), - [anon_sym_while] = ACTIONS(1870), - [anon_sym_POUND] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1870), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_COLON_COLON] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_DOT_DOT] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_yield] = ACTIONS(1870), - [anon_sym_move] = ACTIONS(1870), - [sym_integer_literal] = ACTIONS(1868), - [aux_sym_string_literal_token1] = ACTIONS(1868), - [sym_char_literal] = ACTIONS(1868), - [anon_sym_true] = ACTIONS(1870), - [anon_sym_false] = ACTIONS(1870), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1870), - [sym_super] = ACTIONS(1870), - [sym_crate] = ACTIONS(1870), - [sym_metavariable] = ACTIONS(1868), - [sym_raw_string_literal] = ACTIONS(1868), - [sym_float_literal] = ACTIONS(1868), + [ts_builtin_sym_end] = ACTIONS(554), + [sym_identifier] = ACTIONS(556), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_macro_rules_BANG] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(556), + [anon_sym_i8] = ACTIONS(556), + [anon_sym_u16] = ACTIONS(556), + [anon_sym_i16] = ACTIONS(556), + [anon_sym_u32] = ACTIONS(556), + [anon_sym_i32] = ACTIONS(556), + [anon_sym_u64] = ACTIONS(556), + [anon_sym_i64] = ACTIONS(556), + [anon_sym_u128] = ACTIONS(556), + [anon_sym_i128] = ACTIONS(556), + [anon_sym_isize] = ACTIONS(556), + [anon_sym_usize] = ACTIONS(556), + [anon_sym_f32] = ACTIONS(556), + [anon_sym_f64] = ACTIONS(556), + [anon_sym_bool] = ACTIONS(556), + [anon_sym_str] = ACTIONS(556), + [anon_sym_char] = ACTIONS(556), + [anon_sym_SQUOTE] = ACTIONS(556), + [anon_sym_async] = ACTIONS(556), + [anon_sym_break] = ACTIONS(556), + [anon_sym_const] = ACTIONS(556), + [anon_sym_continue] = ACTIONS(556), + [anon_sym_default] = ACTIONS(556), + [anon_sym_enum] = ACTIONS(556), + [anon_sym_fn] = ACTIONS(556), + [anon_sym_for] = ACTIONS(556), + [anon_sym_if] = ACTIONS(556), + [anon_sym_impl] = ACTIONS(556), + [anon_sym_let] = ACTIONS(556), + [anon_sym_loop] = ACTIONS(556), + [anon_sym_match] = ACTIONS(556), + [anon_sym_mod] = ACTIONS(556), + [anon_sym_pub] = ACTIONS(556), + [anon_sym_return] = ACTIONS(556), + [anon_sym_static] = ACTIONS(556), + [anon_sym_struct] = ACTIONS(556), + [anon_sym_trait] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_union] = ACTIONS(556), + [anon_sym_unsafe] = ACTIONS(556), + [anon_sym_use] = ACTIONS(556), + [anon_sym_while] = ACTIONS(556), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_extern] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_DOT_DOT] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(554), + [anon_sym_yield] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [sym_integer_literal] = ACTIONS(554), + [aux_sym_string_literal_token1] = ACTIONS(554), + [sym_char_literal] = ACTIONS(554), + [anon_sym_true] = ACTIONS(556), + [anon_sym_false] = ACTIONS(556), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(556), + [sym_super] = ACTIONS(556), + [sym_crate] = ACTIONS(556), + [sym_metavariable] = ACTIONS(554), + [sym_raw_string_literal] = ACTIONS(554), + [sym_float_literal] = ACTIONS(554), [sym_block_comment] = ACTIONS(3), }, [446] = { - [ts_builtin_sym_end] = ACTIONS(544), - [sym_identifier] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_macro_rules_BANG] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_u8] = ACTIONS(546), - [anon_sym_i8] = ACTIONS(546), - [anon_sym_u16] = ACTIONS(546), - [anon_sym_i16] = ACTIONS(546), - [anon_sym_u32] = ACTIONS(546), - [anon_sym_i32] = ACTIONS(546), - [anon_sym_u64] = ACTIONS(546), - [anon_sym_i64] = ACTIONS(546), - [anon_sym_u128] = ACTIONS(546), - [anon_sym_i128] = ACTIONS(546), - [anon_sym_isize] = ACTIONS(546), - [anon_sym_usize] = ACTIONS(546), - [anon_sym_f32] = ACTIONS(546), - [anon_sym_f64] = ACTIONS(546), - [anon_sym_bool] = ACTIONS(546), - [anon_sym_str] = ACTIONS(546), - [anon_sym_char] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(546), - [anon_sym_async] = ACTIONS(546), - [anon_sym_break] = ACTIONS(546), - [anon_sym_const] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(546), - [anon_sym_default] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(546), - [anon_sym_fn] = ACTIONS(546), - [anon_sym_for] = ACTIONS(546), - [anon_sym_if] = ACTIONS(546), - [anon_sym_impl] = ACTIONS(546), - [anon_sym_let] = ACTIONS(546), - [anon_sym_loop] = ACTIONS(546), - [anon_sym_match] = ACTIONS(546), - [anon_sym_mod] = ACTIONS(546), - [anon_sym_pub] = ACTIONS(546), - [anon_sym_return] = ACTIONS(546), - [anon_sym_static] = ACTIONS(546), - [anon_sym_struct] = ACTIONS(546), - [anon_sym_trait] = ACTIONS(546), - [anon_sym_type] = ACTIONS(546), - [anon_sym_union] = ACTIONS(546), - [anon_sym_unsafe] = ACTIONS(546), - [anon_sym_use] = ACTIONS(546), - [anon_sym_while] = ACTIONS(546), - [anon_sym_POUND] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(546), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_COLON_COLON] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_DOT_DOT] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_yield] = ACTIONS(546), - [anon_sym_move] = ACTIONS(546), - [sym_integer_literal] = ACTIONS(544), - [aux_sym_string_literal_token1] = ACTIONS(544), - [sym_char_literal] = ACTIONS(544), - [anon_sym_true] = ACTIONS(546), - [anon_sym_false] = ACTIONS(546), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(546), - [sym_super] = ACTIONS(546), - [sym_crate] = ACTIONS(546), - [sym_metavariable] = ACTIONS(544), - [sym_raw_string_literal] = ACTIONS(544), - [sym_float_literal] = ACTIONS(544), + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_macro_rules_BANG] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_u8] = ACTIONS(1852), + [anon_sym_i8] = ACTIONS(1852), + [anon_sym_u16] = ACTIONS(1852), + [anon_sym_i16] = ACTIONS(1852), + [anon_sym_u32] = ACTIONS(1852), + [anon_sym_i32] = ACTIONS(1852), + [anon_sym_u64] = ACTIONS(1852), + [anon_sym_i64] = ACTIONS(1852), + [anon_sym_u128] = ACTIONS(1852), + [anon_sym_i128] = ACTIONS(1852), + [anon_sym_isize] = ACTIONS(1852), + [anon_sym_usize] = ACTIONS(1852), + [anon_sym_f32] = ACTIONS(1852), + [anon_sym_f64] = ACTIONS(1852), + [anon_sym_bool] = ACTIONS(1852), + [anon_sym_str] = ACTIONS(1852), + [anon_sym_char] = ACTIONS(1852), + [anon_sym_SQUOTE] = ACTIONS(1852), + [anon_sym_async] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [anon_sym_fn] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_impl] = ACTIONS(1852), + [anon_sym_let] = ACTIONS(1852), + [anon_sym_loop] = ACTIONS(1852), + [anon_sym_match] = ACTIONS(1852), + [anon_sym_mod] = ACTIONS(1852), + [anon_sym_pub] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_struct] = ACTIONS(1852), + [anon_sym_trait] = ACTIONS(1852), + [anon_sym_type] = ACTIONS(1852), + [anon_sym_union] = ACTIONS(1852), + [anon_sym_unsafe] = ACTIONS(1852), + [anon_sym_use] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym_LT] = ACTIONS(1850), + [anon_sym_COLON_COLON] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_DOT_DOT] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_PIPE] = ACTIONS(1850), + [anon_sym_yield] = ACTIONS(1852), + [anon_sym_move] = ACTIONS(1852), + [sym_integer_literal] = ACTIONS(1850), + [aux_sym_string_literal_token1] = ACTIONS(1850), + [sym_char_literal] = ACTIONS(1850), + [anon_sym_true] = ACTIONS(1852), + [anon_sym_false] = ACTIONS(1852), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1852), + [sym_super] = ACTIONS(1852), + [sym_crate] = ACTIONS(1852), + [sym_metavariable] = ACTIONS(1850), + [sym_raw_string_literal] = ACTIONS(1850), + [sym_float_literal] = ACTIONS(1850), [sym_block_comment] = ACTIONS(3), }, [447] = { - [ts_builtin_sym_end] = ACTIONS(1872), - [sym_identifier] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_macro_rules_BANG] = ACTIONS(1872), - [anon_sym_LPAREN] = ACTIONS(1872), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_RBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_u8] = ACTIONS(1874), - [anon_sym_i8] = ACTIONS(1874), - [anon_sym_u16] = ACTIONS(1874), - [anon_sym_i16] = ACTIONS(1874), - [anon_sym_u32] = ACTIONS(1874), - [anon_sym_i32] = ACTIONS(1874), - [anon_sym_u64] = ACTIONS(1874), - [anon_sym_i64] = ACTIONS(1874), - [anon_sym_u128] = ACTIONS(1874), - [anon_sym_i128] = ACTIONS(1874), - [anon_sym_isize] = ACTIONS(1874), - [anon_sym_usize] = ACTIONS(1874), - [anon_sym_f32] = ACTIONS(1874), - [anon_sym_f64] = ACTIONS(1874), - [anon_sym_bool] = ACTIONS(1874), - [anon_sym_str] = ACTIONS(1874), - [anon_sym_char] = ACTIONS(1874), - [anon_sym_SQUOTE] = ACTIONS(1874), - [anon_sym_async] = ACTIONS(1874), - [anon_sym_break] = ACTIONS(1874), - [anon_sym_const] = ACTIONS(1874), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_default] = ACTIONS(1874), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_fn] = ACTIONS(1874), - [anon_sym_for] = ACTIONS(1874), - [anon_sym_if] = ACTIONS(1874), - [anon_sym_impl] = ACTIONS(1874), - [anon_sym_let] = ACTIONS(1874), - [anon_sym_loop] = ACTIONS(1874), - [anon_sym_match] = ACTIONS(1874), - [anon_sym_mod] = ACTIONS(1874), - [anon_sym_pub] = ACTIONS(1874), - [anon_sym_return] = ACTIONS(1874), - [anon_sym_static] = ACTIONS(1874), - [anon_sym_struct] = ACTIONS(1874), - [anon_sym_trait] = ACTIONS(1874), - [anon_sym_type] = ACTIONS(1874), - [anon_sym_union] = ACTIONS(1874), - [anon_sym_unsafe] = ACTIONS(1874), - [anon_sym_use] = ACTIONS(1874), - [anon_sym_while] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(1872), - [anon_sym_BANG] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1872), - [anon_sym_COLON_COLON] = ACTIONS(1872), - [anon_sym_AMP] = ACTIONS(1872), - [anon_sym_DOT_DOT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PIPE] = ACTIONS(1872), - [anon_sym_yield] = ACTIONS(1874), - [anon_sym_move] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(1872), - [aux_sym_string_literal_token1] = ACTIONS(1872), - [sym_char_literal] = ACTIONS(1872), - [anon_sym_true] = ACTIONS(1874), - [anon_sym_false] = ACTIONS(1874), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1874), - [sym_super] = ACTIONS(1874), - [sym_crate] = ACTIONS(1874), - [sym_metavariable] = ACTIONS(1872), - [sym_raw_string_literal] = ACTIONS(1872), - [sym_float_literal] = ACTIONS(1872), + [ts_builtin_sym_end] = ACTIONS(1854), + [sym_identifier] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_macro_rules_BANG] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_STAR] = ACTIONS(1854), + [anon_sym_u8] = ACTIONS(1856), + [anon_sym_i8] = ACTIONS(1856), + [anon_sym_u16] = ACTIONS(1856), + [anon_sym_i16] = ACTIONS(1856), + [anon_sym_u32] = ACTIONS(1856), + [anon_sym_i32] = ACTIONS(1856), + [anon_sym_u64] = ACTIONS(1856), + [anon_sym_i64] = ACTIONS(1856), + [anon_sym_u128] = ACTIONS(1856), + [anon_sym_i128] = ACTIONS(1856), + [anon_sym_isize] = ACTIONS(1856), + [anon_sym_usize] = ACTIONS(1856), + [anon_sym_f32] = ACTIONS(1856), + [anon_sym_f64] = ACTIONS(1856), + [anon_sym_bool] = ACTIONS(1856), + [anon_sym_str] = ACTIONS(1856), + [anon_sym_char] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(1856), + [anon_sym_async] = ACTIONS(1856), + [anon_sym_break] = ACTIONS(1856), + [anon_sym_const] = ACTIONS(1856), + [anon_sym_continue] = ACTIONS(1856), + [anon_sym_default] = ACTIONS(1856), + [anon_sym_enum] = ACTIONS(1856), + [anon_sym_fn] = ACTIONS(1856), + [anon_sym_for] = ACTIONS(1856), + [anon_sym_if] = ACTIONS(1856), + [anon_sym_impl] = ACTIONS(1856), + [anon_sym_let] = ACTIONS(1856), + [anon_sym_loop] = ACTIONS(1856), + [anon_sym_match] = ACTIONS(1856), + [anon_sym_mod] = ACTIONS(1856), + [anon_sym_pub] = ACTIONS(1856), + [anon_sym_return] = ACTIONS(1856), + [anon_sym_static] = ACTIONS(1856), + [anon_sym_struct] = ACTIONS(1856), + [anon_sym_trait] = ACTIONS(1856), + [anon_sym_type] = ACTIONS(1856), + [anon_sym_union] = ACTIONS(1856), + [anon_sym_unsafe] = ACTIONS(1856), + [anon_sym_use] = ACTIONS(1856), + [anon_sym_while] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1856), + [anon_sym_LT] = ACTIONS(1854), + [anon_sym_COLON_COLON] = ACTIONS(1854), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_DOT_DOT] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_yield] = ACTIONS(1856), + [anon_sym_move] = ACTIONS(1856), + [sym_integer_literal] = ACTIONS(1854), + [aux_sym_string_literal_token1] = ACTIONS(1854), + [sym_char_literal] = ACTIONS(1854), + [anon_sym_true] = ACTIONS(1856), + [anon_sym_false] = ACTIONS(1856), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1856), + [sym_super] = ACTIONS(1856), + [sym_crate] = ACTIONS(1856), + [sym_metavariable] = ACTIONS(1854), + [sym_raw_string_literal] = ACTIONS(1854), + [sym_float_literal] = ACTIONS(1854), [sym_block_comment] = ACTIONS(3), }, [448] = { - [ts_builtin_sym_end] = ACTIONS(1876), - [sym_identifier] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1876), - [anon_sym_macro_rules_BANG] = ACTIONS(1876), - [anon_sym_LPAREN] = ACTIONS(1876), - [anon_sym_LBRACE] = ACTIONS(1876), - [anon_sym_RBRACE] = ACTIONS(1876), - [anon_sym_LBRACK] = ACTIONS(1876), - [anon_sym_STAR] = ACTIONS(1876), - [anon_sym_u8] = ACTIONS(1878), - [anon_sym_i8] = ACTIONS(1878), - [anon_sym_u16] = ACTIONS(1878), - [anon_sym_i16] = ACTIONS(1878), - [anon_sym_u32] = ACTIONS(1878), - [anon_sym_i32] = ACTIONS(1878), - [anon_sym_u64] = ACTIONS(1878), - [anon_sym_i64] = ACTIONS(1878), - [anon_sym_u128] = ACTIONS(1878), - [anon_sym_i128] = ACTIONS(1878), - [anon_sym_isize] = ACTIONS(1878), - [anon_sym_usize] = ACTIONS(1878), - [anon_sym_f32] = ACTIONS(1878), - [anon_sym_f64] = ACTIONS(1878), - [anon_sym_bool] = ACTIONS(1878), - [anon_sym_str] = ACTIONS(1878), - [anon_sym_char] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1878), - [anon_sym_async] = ACTIONS(1878), - [anon_sym_break] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(1878), - [anon_sym_continue] = ACTIONS(1878), - [anon_sym_default] = ACTIONS(1878), - [anon_sym_enum] = ACTIONS(1878), - [anon_sym_fn] = ACTIONS(1878), - [anon_sym_for] = ACTIONS(1878), - [anon_sym_if] = ACTIONS(1878), - [anon_sym_impl] = ACTIONS(1878), - [anon_sym_let] = ACTIONS(1878), - [anon_sym_loop] = ACTIONS(1878), - [anon_sym_match] = ACTIONS(1878), - [anon_sym_mod] = ACTIONS(1878), - [anon_sym_pub] = ACTIONS(1878), - [anon_sym_return] = ACTIONS(1878), - [anon_sym_static] = ACTIONS(1878), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_trait] = ACTIONS(1878), - [anon_sym_type] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1878), - [anon_sym_unsafe] = ACTIONS(1878), - [anon_sym_use] = ACTIONS(1878), - [anon_sym_while] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(1876), - [anon_sym_BANG] = ACTIONS(1876), - [anon_sym_extern] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1876), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_yield] = ACTIONS(1878), - [anon_sym_move] = ACTIONS(1878), - [sym_integer_literal] = ACTIONS(1876), - [aux_sym_string_literal_token1] = ACTIONS(1876), - [sym_char_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(1878), - [anon_sym_false] = ACTIONS(1878), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1878), - [sym_super] = ACTIONS(1878), - [sym_crate] = ACTIONS(1878), - [sym_metavariable] = ACTIONS(1876), - [sym_raw_string_literal] = ACTIONS(1876), - [sym_float_literal] = ACTIONS(1876), + [ts_builtin_sym_end] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_macro_rules_BANG] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_LBRACK] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(1858), + [anon_sym_u8] = ACTIONS(1860), + [anon_sym_i8] = ACTIONS(1860), + [anon_sym_u16] = ACTIONS(1860), + [anon_sym_i16] = ACTIONS(1860), + [anon_sym_u32] = ACTIONS(1860), + [anon_sym_i32] = ACTIONS(1860), + [anon_sym_u64] = ACTIONS(1860), + [anon_sym_i64] = ACTIONS(1860), + [anon_sym_u128] = ACTIONS(1860), + [anon_sym_i128] = ACTIONS(1860), + [anon_sym_isize] = ACTIONS(1860), + [anon_sym_usize] = ACTIONS(1860), + [anon_sym_f32] = ACTIONS(1860), + [anon_sym_f64] = ACTIONS(1860), + [anon_sym_bool] = ACTIONS(1860), + [anon_sym_str] = ACTIONS(1860), + [anon_sym_char] = ACTIONS(1860), + [anon_sym_SQUOTE] = ACTIONS(1860), + [anon_sym_async] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_fn] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_impl] = ACTIONS(1860), + [anon_sym_let] = ACTIONS(1860), + [anon_sym_loop] = ACTIONS(1860), + [anon_sym_match] = ACTIONS(1860), + [anon_sym_mod] = ACTIONS(1860), + [anon_sym_pub] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_trait] = ACTIONS(1860), + [anon_sym_type] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_unsafe] = ACTIONS(1860), + [anon_sym_use] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_POUND] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1858), + [anon_sym_COLON_COLON] = ACTIONS(1858), + [anon_sym_AMP] = ACTIONS(1858), + [anon_sym_DOT_DOT] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1858), + [anon_sym_yield] = ACTIONS(1860), + [anon_sym_move] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(1858), + [aux_sym_string_literal_token1] = ACTIONS(1858), + [sym_char_literal] = ACTIONS(1858), + [anon_sym_true] = ACTIONS(1860), + [anon_sym_false] = ACTIONS(1860), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_crate] = ACTIONS(1860), + [sym_metavariable] = ACTIONS(1858), + [sym_raw_string_literal] = ACTIONS(1858), + [sym_float_literal] = ACTIONS(1858), [sym_block_comment] = ACTIONS(3), }, [449] = { - [ts_builtin_sym_end] = ACTIONS(1880), - [sym_identifier] = ACTIONS(1882), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_macro_rules_BANG] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1880), - [anon_sym_RBRACE] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1880), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_u8] = ACTIONS(1882), - [anon_sym_i8] = ACTIONS(1882), - [anon_sym_u16] = ACTIONS(1882), - [anon_sym_i16] = ACTIONS(1882), - [anon_sym_u32] = ACTIONS(1882), - [anon_sym_i32] = ACTIONS(1882), - [anon_sym_u64] = ACTIONS(1882), - [anon_sym_i64] = ACTIONS(1882), - [anon_sym_u128] = ACTIONS(1882), - [anon_sym_i128] = ACTIONS(1882), - [anon_sym_isize] = ACTIONS(1882), - [anon_sym_usize] = ACTIONS(1882), - [anon_sym_f32] = ACTIONS(1882), - [anon_sym_f64] = ACTIONS(1882), - [anon_sym_bool] = ACTIONS(1882), - [anon_sym_str] = ACTIONS(1882), - [anon_sym_char] = ACTIONS(1882), - [anon_sym_SQUOTE] = ACTIONS(1882), - [anon_sym_async] = ACTIONS(1882), - [anon_sym_break] = ACTIONS(1882), - [anon_sym_const] = ACTIONS(1882), - [anon_sym_continue] = ACTIONS(1882), - [anon_sym_default] = ACTIONS(1882), - [anon_sym_enum] = ACTIONS(1882), - [anon_sym_fn] = ACTIONS(1882), - [anon_sym_for] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1882), - [anon_sym_impl] = ACTIONS(1882), - [anon_sym_let] = ACTIONS(1882), - [anon_sym_loop] = ACTIONS(1882), - [anon_sym_match] = ACTIONS(1882), - [anon_sym_mod] = ACTIONS(1882), - [anon_sym_pub] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1882), - [anon_sym_static] = ACTIONS(1882), - [anon_sym_struct] = ACTIONS(1882), - [anon_sym_trait] = ACTIONS(1882), - [anon_sym_type] = ACTIONS(1882), - [anon_sym_union] = ACTIONS(1882), - [anon_sym_unsafe] = ACTIONS(1882), - [anon_sym_use] = ACTIONS(1882), - [anon_sym_while] = ACTIONS(1882), - [anon_sym_POUND] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1880), - [anon_sym_extern] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1880), - [anon_sym_DOT_DOT] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1882), - [anon_sym_move] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [aux_sym_string_literal_token1] = ACTIONS(1880), - [sym_char_literal] = ACTIONS(1880), - [anon_sym_true] = ACTIONS(1882), - [anon_sym_false] = ACTIONS(1882), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1882), - [sym_super] = ACTIONS(1882), - [sym_crate] = ACTIONS(1882), - [sym_metavariable] = ACTIONS(1880), - [sym_raw_string_literal] = ACTIONS(1880), - [sym_float_literal] = ACTIONS(1880), + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_identifier] = ACTIONS(1864), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_macro_rules_BANG] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_u8] = ACTIONS(1864), + [anon_sym_i8] = ACTIONS(1864), + [anon_sym_u16] = ACTIONS(1864), + [anon_sym_i16] = ACTIONS(1864), + [anon_sym_u32] = ACTIONS(1864), + [anon_sym_i32] = ACTIONS(1864), + [anon_sym_u64] = ACTIONS(1864), + [anon_sym_i64] = ACTIONS(1864), + [anon_sym_u128] = ACTIONS(1864), + [anon_sym_i128] = ACTIONS(1864), + [anon_sym_isize] = ACTIONS(1864), + [anon_sym_usize] = ACTIONS(1864), + [anon_sym_f32] = ACTIONS(1864), + [anon_sym_f64] = ACTIONS(1864), + [anon_sym_bool] = ACTIONS(1864), + [anon_sym_str] = ACTIONS(1864), + [anon_sym_char] = ACTIONS(1864), + [anon_sym_SQUOTE] = ACTIONS(1864), + [anon_sym_async] = ACTIONS(1864), + [anon_sym_break] = ACTIONS(1864), + [anon_sym_const] = ACTIONS(1864), + [anon_sym_continue] = ACTIONS(1864), + [anon_sym_default] = ACTIONS(1864), + [anon_sym_enum] = ACTIONS(1864), + [anon_sym_fn] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_impl] = ACTIONS(1864), + [anon_sym_let] = ACTIONS(1864), + [anon_sym_loop] = ACTIONS(1864), + [anon_sym_match] = ACTIONS(1864), + [anon_sym_mod] = ACTIONS(1864), + [anon_sym_pub] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_static] = ACTIONS(1864), + [anon_sym_struct] = ACTIONS(1864), + [anon_sym_trait] = ACTIONS(1864), + [anon_sym_type] = ACTIONS(1864), + [anon_sym_union] = ACTIONS(1864), + [anon_sym_unsafe] = ACTIONS(1864), + [anon_sym_use] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_POUND] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_extern] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1862), + [anon_sym_COLON_COLON] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_DOT_DOT] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_yield] = ACTIONS(1864), + [anon_sym_move] = ACTIONS(1864), + [sym_integer_literal] = ACTIONS(1862), + [aux_sym_string_literal_token1] = ACTIONS(1862), + [sym_char_literal] = ACTIONS(1862), + [anon_sym_true] = ACTIONS(1864), + [anon_sym_false] = ACTIONS(1864), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1864), + [sym_super] = ACTIONS(1864), + [sym_crate] = ACTIONS(1864), + [sym_metavariable] = ACTIONS(1862), + [sym_raw_string_literal] = ACTIONS(1862), + [sym_float_literal] = ACTIONS(1862), [sym_block_comment] = ACTIONS(3), }, [450] = { - [ts_builtin_sym_end] = ACTIONS(1884), - [sym_identifier] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_macro_rules_BANG] = ACTIONS(1884), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_STAR] = ACTIONS(1884), - [anon_sym_u8] = ACTIONS(1886), - [anon_sym_i8] = ACTIONS(1886), - [anon_sym_u16] = ACTIONS(1886), - [anon_sym_i16] = ACTIONS(1886), - [anon_sym_u32] = ACTIONS(1886), - [anon_sym_i32] = ACTIONS(1886), - [anon_sym_u64] = ACTIONS(1886), - [anon_sym_i64] = ACTIONS(1886), - [anon_sym_u128] = ACTIONS(1886), - [anon_sym_i128] = ACTIONS(1886), - [anon_sym_isize] = ACTIONS(1886), - [anon_sym_usize] = ACTIONS(1886), - [anon_sym_f32] = ACTIONS(1886), - [anon_sym_f64] = ACTIONS(1886), - [anon_sym_bool] = ACTIONS(1886), - [anon_sym_str] = ACTIONS(1886), - [anon_sym_char] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_async] = ACTIONS(1886), - [anon_sym_break] = ACTIONS(1886), - [anon_sym_const] = ACTIONS(1886), - [anon_sym_continue] = ACTIONS(1886), - [anon_sym_default] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_fn] = ACTIONS(1886), - [anon_sym_for] = ACTIONS(1886), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_impl] = ACTIONS(1886), - [anon_sym_let] = ACTIONS(1886), - [anon_sym_loop] = ACTIONS(1886), - [anon_sym_match] = ACTIONS(1886), - [anon_sym_mod] = ACTIONS(1886), - [anon_sym_pub] = ACTIONS(1886), - [anon_sym_return] = ACTIONS(1886), - [anon_sym_static] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1886), - [anon_sym_trait] = ACTIONS(1886), - [anon_sym_type] = ACTIONS(1886), - [anon_sym_union] = ACTIONS(1886), - [anon_sym_unsafe] = ACTIONS(1886), - [anon_sym_use] = ACTIONS(1886), - [anon_sym_while] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_BANG] = ACTIONS(1884), - [anon_sym_extern] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_COLON_COLON] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_DOT_DOT] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_yield] = ACTIONS(1886), - [anon_sym_move] = ACTIONS(1886), - [sym_integer_literal] = ACTIONS(1884), - [aux_sym_string_literal_token1] = ACTIONS(1884), - [sym_char_literal] = ACTIONS(1884), - [anon_sym_true] = ACTIONS(1886), - [anon_sym_false] = ACTIONS(1886), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1886), - [sym_super] = ACTIONS(1886), - [sym_crate] = ACTIONS(1886), - [sym_metavariable] = ACTIONS(1884), - [sym_raw_string_literal] = ACTIONS(1884), - [sym_float_literal] = ACTIONS(1884), + [ts_builtin_sym_end] = ACTIONS(1866), + [sym_identifier] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_macro_rules_BANG] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_u8] = ACTIONS(1868), + [anon_sym_i8] = ACTIONS(1868), + [anon_sym_u16] = ACTIONS(1868), + [anon_sym_i16] = ACTIONS(1868), + [anon_sym_u32] = ACTIONS(1868), + [anon_sym_i32] = ACTIONS(1868), + [anon_sym_u64] = ACTIONS(1868), + [anon_sym_i64] = ACTIONS(1868), + [anon_sym_u128] = ACTIONS(1868), + [anon_sym_i128] = ACTIONS(1868), + [anon_sym_isize] = ACTIONS(1868), + [anon_sym_usize] = ACTIONS(1868), + [anon_sym_f32] = ACTIONS(1868), + [anon_sym_f64] = ACTIONS(1868), + [anon_sym_bool] = ACTIONS(1868), + [anon_sym_str] = ACTIONS(1868), + [anon_sym_char] = ACTIONS(1868), + [anon_sym_SQUOTE] = ACTIONS(1868), + [anon_sym_async] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_fn] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_impl] = ACTIONS(1868), + [anon_sym_let] = ACTIONS(1868), + [anon_sym_loop] = ACTIONS(1868), + [anon_sym_match] = ACTIONS(1868), + [anon_sym_mod] = ACTIONS(1868), + [anon_sym_pub] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_trait] = ACTIONS(1868), + [anon_sym_type] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_unsafe] = ACTIONS(1868), + [anon_sym_use] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_COLON_COLON] = ACTIONS(1866), + [anon_sym_AMP] = ACTIONS(1866), + [anon_sym_DOT_DOT] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_yield] = ACTIONS(1868), + [anon_sym_move] = ACTIONS(1868), + [sym_integer_literal] = ACTIONS(1866), + [aux_sym_string_literal_token1] = ACTIONS(1866), + [sym_char_literal] = ACTIONS(1866), + [anon_sym_true] = ACTIONS(1868), + [anon_sym_false] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_crate] = ACTIONS(1868), + [sym_metavariable] = ACTIONS(1866), + [sym_raw_string_literal] = ACTIONS(1866), + [sym_float_literal] = ACTIONS(1866), [sym_block_comment] = ACTIONS(3), }, [451] = { - [ts_builtin_sym_end] = ACTIONS(1888), - [sym_identifier] = ACTIONS(1890), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_macro_rules_BANG] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_STAR] = ACTIONS(1888), - [anon_sym_u8] = ACTIONS(1890), - [anon_sym_i8] = ACTIONS(1890), - [anon_sym_u16] = ACTIONS(1890), - [anon_sym_i16] = ACTIONS(1890), - [anon_sym_u32] = ACTIONS(1890), - [anon_sym_i32] = ACTIONS(1890), - [anon_sym_u64] = ACTIONS(1890), - [anon_sym_i64] = ACTIONS(1890), - [anon_sym_u128] = ACTIONS(1890), - [anon_sym_i128] = ACTIONS(1890), - [anon_sym_isize] = ACTIONS(1890), - [anon_sym_usize] = ACTIONS(1890), - [anon_sym_f32] = ACTIONS(1890), - [anon_sym_f64] = ACTIONS(1890), - [anon_sym_bool] = ACTIONS(1890), - [anon_sym_str] = ACTIONS(1890), - [anon_sym_char] = ACTIONS(1890), - [anon_sym_SQUOTE] = ACTIONS(1890), - [anon_sym_async] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_default] = ACTIONS(1890), - [anon_sym_enum] = ACTIONS(1890), - [anon_sym_fn] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_impl] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_loop] = ACTIONS(1890), - [anon_sym_match] = ACTIONS(1890), - [anon_sym_mod] = ACTIONS(1890), - [anon_sym_pub] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_trait] = ACTIONS(1890), - [anon_sym_type] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_unsafe] = ACTIONS(1890), - [anon_sym_use] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_BANG] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_COLON_COLON] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_yield] = ACTIONS(1890), - [anon_sym_move] = ACTIONS(1890), - [sym_integer_literal] = ACTIONS(1888), - [aux_sym_string_literal_token1] = ACTIONS(1888), - [sym_char_literal] = ACTIONS(1888), - [anon_sym_true] = ACTIONS(1890), - [anon_sym_false] = ACTIONS(1890), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1890), - [sym_super] = ACTIONS(1890), - [sym_crate] = ACTIONS(1890), - [sym_metavariable] = ACTIONS(1888), - [sym_raw_string_literal] = ACTIONS(1888), - [sym_float_literal] = ACTIONS(1888), - [sym_block_comment] = ACTIONS(3), - }, - [452] = { [ts_builtin_sym_end] = ACTIONS(550), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(550), @@ -56960,2330 +58287,2634 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(550), [sym_block_comment] = ACTIONS(3), }, + [452] = { + [ts_builtin_sym_end] = ACTIONS(1870), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_macro_rules_BANG] = ACTIONS(1870), + [anon_sym_LPAREN] = ACTIONS(1870), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_u8] = ACTIONS(1872), + [anon_sym_i8] = ACTIONS(1872), + [anon_sym_u16] = ACTIONS(1872), + [anon_sym_i16] = ACTIONS(1872), + [anon_sym_u32] = ACTIONS(1872), + [anon_sym_i32] = ACTIONS(1872), + [anon_sym_u64] = ACTIONS(1872), + [anon_sym_i64] = ACTIONS(1872), + [anon_sym_u128] = ACTIONS(1872), + [anon_sym_i128] = ACTIONS(1872), + [anon_sym_isize] = ACTIONS(1872), + [anon_sym_usize] = ACTIONS(1872), + [anon_sym_f32] = ACTIONS(1872), + [anon_sym_f64] = ACTIONS(1872), + [anon_sym_bool] = ACTIONS(1872), + [anon_sym_str] = ACTIONS(1872), + [anon_sym_char] = ACTIONS(1872), + [anon_sym_SQUOTE] = ACTIONS(1872), + [anon_sym_async] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_fn] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_impl] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_mod] = ACTIONS(1872), + [anon_sym_pub] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_static] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_trait] = ACTIONS(1872), + [anon_sym_type] = ACTIONS(1872), + [anon_sym_union] = ACTIONS(1872), + [anon_sym_unsafe] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1870), + [anon_sym_COLON_COLON] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_DOT_DOT] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_move] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(1870), + [aux_sym_string_literal_token1] = ACTIONS(1870), + [sym_char_literal] = ACTIONS(1870), + [anon_sym_true] = ACTIONS(1872), + [anon_sym_false] = ACTIONS(1872), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1872), + [sym_super] = ACTIONS(1872), + [sym_crate] = ACTIONS(1872), + [sym_metavariable] = ACTIONS(1870), + [sym_raw_string_literal] = ACTIONS(1870), + [sym_float_literal] = ACTIONS(1870), + [sym_block_comment] = ACTIONS(3), + }, [453] = { - [ts_builtin_sym_end] = ACTIONS(1892), - [sym_identifier] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_macro_rules_BANG] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_default] = ACTIONS(1894), - [anon_sym_enum] = ACTIONS(1894), - [anon_sym_fn] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_impl] = ACTIONS(1894), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_loop] = ACTIONS(1894), - [anon_sym_match] = ACTIONS(1894), - [anon_sym_mod] = ACTIONS(1894), - [anon_sym_pub] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_static] = ACTIONS(1894), - [anon_sym_struct] = ACTIONS(1894), - [anon_sym_trait] = ACTIONS(1894), - [anon_sym_type] = ACTIONS(1894), - [anon_sym_union] = ACTIONS(1894), - [anon_sym_unsafe] = ACTIONS(1894), - [anon_sym_use] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1892), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_COLON_COLON] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_DOT_DOT] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_yield] = ACTIONS(1894), - [anon_sym_move] = ACTIONS(1894), - [sym_integer_literal] = ACTIONS(1892), - [aux_sym_string_literal_token1] = ACTIONS(1892), - [sym_char_literal] = ACTIONS(1892), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1894), - [sym_super] = ACTIONS(1894), - [sym_crate] = ACTIONS(1894), - [sym_metavariable] = ACTIONS(1892), - [sym_raw_string_literal] = ACTIONS(1892), - [sym_float_literal] = ACTIONS(1892), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym_identifier] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_macro_rules_BANG] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_u8] = ACTIONS(1876), + [anon_sym_i8] = ACTIONS(1876), + [anon_sym_u16] = ACTIONS(1876), + [anon_sym_i16] = ACTIONS(1876), + [anon_sym_u32] = ACTIONS(1876), + [anon_sym_i32] = ACTIONS(1876), + [anon_sym_u64] = ACTIONS(1876), + [anon_sym_i64] = ACTIONS(1876), + [anon_sym_u128] = ACTIONS(1876), + [anon_sym_i128] = ACTIONS(1876), + [anon_sym_isize] = ACTIONS(1876), + [anon_sym_usize] = ACTIONS(1876), + [anon_sym_f32] = ACTIONS(1876), + [anon_sym_f64] = ACTIONS(1876), + [anon_sym_bool] = ACTIONS(1876), + [anon_sym_str] = ACTIONS(1876), + [anon_sym_char] = ACTIONS(1876), + [anon_sym_SQUOTE] = ACTIONS(1876), + [anon_sym_async] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_fn] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_impl] = ACTIONS(1876), + [anon_sym_let] = ACTIONS(1876), + [anon_sym_loop] = ACTIONS(1876), + [anon_sym_match] = ACTIONS(1876), + [anon_sym_mod] = ACTIONS(1876), + [anon_sym_pub] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_trait] = ACTIONS(1876), + [anon_sym_type] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_unsafe] = ACTIONS(1876), + [anon_sym_use] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1874), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_COLON_COLON] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_yield] = ACTIONS(1876), + [anon_sym_move] = ACTIONS(1876), + [sym_integer_literal] = ACTIONS(1874), + [aux_sym_string_literal_token1] = ACTIONS(1874), + [sym_char_literal] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1876), + [anon_sym_false] = ACTIONS(1876), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_crate] = ACTIONS(1876), + [sym_metavariable] = ACTIONS(1874), + [sym_raw_string_literal] = ACTIONS(1874), + [sym_float_literal] = ACTIONS(1874), [sym_block_comment] = ACTIONS(3), }, [454] = { - [ts_builtin_sym_end] = ACTIONS(1896), - [sym_identifier] = ACTIONS(1898), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_macro_rules_BANG] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_u8] = ACTIONS(1898), - [anon_sym_i8] = ACTIONS(1898), - [anon_sym_u16] = ACTIONS(1898), - [anon_sym_i16] = ACTIONS(1898), - [anon_sym_u32] = ACTIONS(1898), - [anon_sym_i32] = ACTIONS(1898), - [anon_sym_u64] = ACTIONS(1898), - [anon_sym_i64] = ACTIONS(1898), - [anon_sym_u128] = ACTIONS(1898), - [anon_sym_i128] = ACTIONS(1898), - [anon_sym_isize] = ACTIONS(1898), - [anon_sym_usize] = ACTIONS(1898), - [anon_sym_f32] = ACTIONS(1898), - [anon_sym_f64] = ACTIONS(1898), - [anon_sym_bool] = ACTIONS(1898), - [anon_sym_str] = ACTIONS(1898), - [anon_sym_char] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_async] = ACTIONS(1898), - [anon_sym_break] = ACTIONS(1898), - [anon_sym_const] = ACTIONS(1898), - [anon_sym_continue] = ACTIONS(1898), - [anon_sym_default] = ACTIONS(1898), - [anon_sym_enum] = ACTIONS(1898), - [anon_sym_fn] = ACTIONS(1898), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_if] = ACTIONS(1898), - [anon_sym_impl] = ACTIONS(1898), - [anon_sym_let] = ACTIONS(1898), - [anon_sym_loop] = ACTIONS(1898), - [anon_sym_match] = ACTIONS(1898), - [anon_sym_mod] = ACTIONS(1898), - [anon_sym_pub] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1898), - [anon_sym_static] = ACTIONS(1898), - [anon_sym_struct] = ACTIONS(1898), - [anon_sym_trait] = ACTIONS(1898), - [anon_sym_type] = ACTIONS(1898), - [anon_sym_union] = ACTIONS(1898), - [anon_sym_unsafe] = ACTIONS(1898), - [anon_sym_use] = ACTIONS(1898), - [anon_sym_while] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(1896), - [anon_sym_BANG] = ACTIONS(1896), - [anon_sym_extern] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_COLON_COLON] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_DOT_DOT] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_yield] = ACTIONS(1898), - [anon_sym_move] = ACTIONS(1898), - [sym_integer_literal] = ACTIONS(1896), - [aux_sym_string_literal_token1] = ACTIONS(1896), - [sym_char_literal] = ACTIONS(1896), - [anon_sym_true] = ACTIONS(1898), - [anon_sym_false] = ACTIONS(1898), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1898), - [sym_super] = ACTIONS(1898), - [sym_crate] = ACTIONS(1898), - [sym_metavariable] = ACTIONS(1896), - [sym_raw_string_literal] = ACTIONS(1896), - [sym_float_literal] = ACTIONS(1896), + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_macro_rules_BANG] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_u8] = ACTIONS(1880), + [anon_sym_i8] = ACTIONS(1880), + [anon_sym_u16] = ACTIONS(1880), + [anon_sym_i16] = ACTIONS(1880), + [anon_sym_u32] = ACTIONS(1880), + [anon_sym_i32] = ACTIONS(1880), + [anon_sym_u64] = ACTIONS(1880), + [anon_sym_i64] = ACTIONS(1880), + [anon_sym_u128] = ACTIONS(1880), + [anon_sym_i128] = ACTIONS(1880), + [anon_sym_isize] = ACTIONS(1880), + [anon_sym_usize] = ACTIONS(1880), + [anon_sym_f32] = ACTIONS(1880), + [anon_sym_f64] = ACTIONS(1880), + [anon_sym_bool] = ACTIONS(1880), + [anon_sym_str] = ACTIONS(1880), + [anon_sym_char] = ACTIONS(1880), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [anon_sym_fn] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_impl] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_loop] = ACTIONS(1880), + [anon_sym_match] = ACTIONS(1880), + [anon_sym_mod] = ACTIONS(1880), + [anon_sym_pub] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_struct] = ACTIONS(1880), + [anon_sym_trait] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_union] = ACTIONS(1880), + [anon_sym_unsafe] = ACTIONS(1880), + [anon_sym_use] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_POUND] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_extern] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_DOT_DOT] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_move] = ACTIONS(1880), + [sym_integer_literal] = ACTIONS(1878), + [aux_sym_string_literal_token1] = ACTIONS(1878), + [sym_char_literal] = ACTIONS(1878), + [anon_sym_true] = ACTIONS(1880), + [anon_sym_false] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1878), + [sym_raw_string_literal] = ACTIONS(1878), + [sym_float_literal] = ACTIONS(1878), [sym_block_comment] = ACTIONS(3), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1902), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_macro_rules_BANG] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(1900), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1900), - [anon_sym_STAR] = ACTIONS(1900), - [anon_sym_u8] = ACTIONS(1902), - [anon_sym_i8] = ACTIONS(1902), - [anon_sym_u16] = ACTIONS(1902), - [anon_sym_i16] = ACTIONS(1902), - [anon_sym_u32] = ACTIONS(1902), - [anon_sym_i32] = ACTIONS(1902), - [anon_sym_u64] = ACTIONS(1902), - [anon_sym_i64] = ACTIONS(1902), - [anon_sym_u128] = ACTIONS(1902), - [anon_sym_i128] = ACTIONS(1902), - [anon_sym_isize] = ACTIONS(1902), - [anon_sym_usize] = ACTIONS(1902), - [anon_sym_f32] = ACTIONS(1902), - [anon_sym_f64] = ACTIONS(1902), - [anon_sym_bool] = ACTIONS(1902), - [anon_sym_str] = ACTIONS(1902), - [anon_sym_char] = ACTIONS(1902), - [anon_sym_SQUOTE] = ACTIONS(1902), - [anon_sym_async] = ACTIONS(1902), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1902), - [anon_sym_default] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1902), - [anon_sym_fn] = ACTIONS(1902), - [anon_sym_for] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1902), - [anon_sym_impl] = ACTIONS(1902), - [anon_sym_let] = ACTIONS(1902), - [anon_sym_loop] = ACTIONS(1902), - [anon_sym_match] = ACTIONS(1902), - [anon_sym_mod] = ACTIONS(1902), - [anon_sym_pub] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1902), - [anon_sym_static] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1902), - [anon_sym_trait] = ACTIONS(1902), - [anon_sym_type] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1902), - [anon_sym_unsafe] = ACTIONS(1902), - [anon_sym_use] = ACTIONS(1902), - [anon_sym_while] = ACTIONS(1902), - [anon_sym_POUND] = ACTIONS(1900), - [anon_sym_BANG] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1902), - [anon_sym_LT] = ACTIONS(1900), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_AMP] = ACTIONS(1900), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_PIPE] = ACTIONS(1900), - [anon_sym_yield] = ACTIONS(1902), - [anon_sym_move] = ACTIONS(1902), - [sym_integer_literal] = ACTIONS(1900), - [aux_sym_string_literal_token1] = ACTIONS(1900), - [sym_char_literal] = ACTIONS(1900), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1902), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1900), - [sym_raw_string_literal] = ACTIONS(1900), - [sym_float_literal] = ACTIONS(1900), + [ts_builtin_sym_end] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_macro_rules_BANG] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_STAR] = ACTIONS(1882), + [anon_sym_u8] = ACTIONS(1884), + [anon_sym_i8] = ACTIONS(1884), + [anon_sym_u16] = ACTIONS(1884), + [anon_sym_i16] = ACTIONS(1884), + [anon_sym_u32] = ACTIONS(1884), + [anon_sym_i32] = ACTIONS(1884), + [anon_sym_u64] = ACTIONS(1884), + [anon_sym_i64] = ACTIONS(1884), + [anon_sym_u128] = ACTIONS(1884), + [anon_sym_i128] = ACTIONS(1884), + [anon_sym_isize] = ACTIONS(1884), + [anon_sym_usize] = ACTIONS(1884), + [anon_sym_f32] = ACTIONS(1884), + [anon_sym_f64] = ACTIONS(1884), + [anon_sym_bool] = ACTIONS(1884), + [anon_sym_str] = ACTIONS(1884), + [anon_sym_char] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [anon_sym_async] = ACTIONS(1884), + [anon_sym_break] = ACTIONS(1884), + [anon_sym_const] = ACTIONS(1884), + [anon_sym_continue] = ACTIONS(1884), + [anon_sym_default] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1884), + [anon_sym_for] = ACTIONS(1884), + [anon_sym_if] = ACTIONS(1884), + [anon_sym_impl] = ACTIONS(1884), + [anon_sym_let] = ACTIONS(1884), + [anon_sym_loop] = ACTIONS(1884), + [anon_sym_match] = ACTIONS(1884), + [anon_sym_mod] = ACTIONS(1884), + [anon_sym_pub] = ACTIONS(1884), + [anon_sym_return] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1884), + [anon_sym_struct] = ACTIONS(1884), + [anon_sym_trait] = ACTIONS(1884), + [anon_sym_type] = ACTIONS(1884), + [anon_sym_union] = ACTIONS(1884), + [anon_sym_unsafe] = ACTIONS(1884), + [anon_sym_use] = ACTIONS(1884), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_extern] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1882), + [anon_sym_COLON_COLON] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_yield] = ACTIONS(1884), + [anon_sym_move] = ACTIONS(1884), + [sym_integer_literal] = ACTIONS(1882), + [aux_sym_string_literal_token1] = ACTIONS(1882), + [sym_char_literal] = ACTIONS(1882), + [anon_sym_true] = ACTIONS(1884), + [anon_sym_false] = ACTIONS(1884), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1884), + [sym_super] = ACTIONS(1884), + [sym_crate] = ACTIONS(1884), + [sym_metavariable] = ACTIONS(1882), + [sym_raw_string_literal] = ACTIONS(1882), + [sym_float_literal] = ACTIONS(1882), [sym_block_comment] = ACTIONS(3), }, [456] = { - [ts_builtin_sym_end] = ACTIONS(1904), - [sym_identifier] = ACTIONS(1906), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_macro_rules_BANG] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1904), - [anon_sym_RBRACE] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_STAR] = ACTIONS(1904), - [anon_sym_u8] = ACTIONS(1906), - [anon_sym_i8] = ACTIONS(1906), - [anon_sym_u16] = ACTIONS(1906), - [anon_sym_i16] = ACTIONS(1906), - [anon_sym_u32] = ACTIONS(1906), - [anon_sym_i32] = ACTIONS(1906), - [anon_sym_u64] = ACTIONS(1906), - [anon_sym_i64] = ACTIONS(1906), - [anon_sym_u128] = ACTIONS(1906), - [anon_sym_i128] = ACTIONS(1906), - [anon_sym_isize] = ACTIONS(1906), - [anon_sym_usize] = ACTIONS(1906), - [anon_sym_f32] = ACTIONS(1906), - [anon_sym_f64] = ACTIONS(1906), - [anon_sym_bool] = ACTIONS(1906), - [anon_sym_str] = ACTIONS(1906), - [anon_sym_char] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_async] = ACTIONS(1906), - [anon_sym_break] = ACTIONS(1906), - [anon_sym_const] = ACTIONS(1906), - [anon_sym_continue] = ACTIONS(1906), - [anon_sym_default] = ACTIONS(1906), - [anon_sym_enum] = ACTIONS(1906), - [anon_sym_fn] = ACTIONS(1906), - [anon_sym_for] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1906), - [anon_sym_impl] = ACTIONS(1906), - [anon_sym_let] = ACTIONS(1906), - [anon_sym_loop] = ACTIONS(1906), - [anon_sym_match] = ACTIONS(1906), - [anon_sym_mod] = ACTIONS(1906), - [anon_sym_pub] = ACTIONS(1906), - [anon_sym_return] = ACTIONS(1906), - [anon_sym_static] = ACTIONS(1906), - [anon_sym_struct] = ACTIONS(1906), - [anon_sym_trait] = ACTIONS(1906), - [anon_sym_type] = ACTIONS(1906), - [anon_sym_union] = ACTIONS(1906), - [anon_sym_unsafe] = ACTIONS(1906), - [anon_sym_use] = ACTIONS(1906), - [anon_sym_while] = ACTIONS(1906), - [anon_sym_POUND] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_extern] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1904), - [anon_sym_COLON_COLON] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_DOT_DOT] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_PIPE] = ACTIONS(1904), - [anon_sym_yield] = ACTIONS(1906), - [anon_sym_move] = ACTIONS(1906), - [sym_integer_literal] = ACTIONS(1904), - [aux_sym_string_literal_token1] = ACTIONS(1904), - [sym_char_literal] = ACTIONS(1904), - [anon_sym_true] = ACTIONS(1906), - [anon_sym_false] = ACTIONS(1906), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1906), - [sym_super] = ACTIONS(1906), - [sym_crate] = ACTIONS(1906), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(1904), - [sym_float_literal] = ACTIONS(1904), + [ts_builtin_sym_end] = ACTIONS(1886), + [sym_identifier] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_macro_rules_BANG] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_u8] = ACTIONS(1888), + [anon_sym_i8] = ACTIONS(1888), + [anon_sym_u16] = ACTIONS(1888), + [anon_sym_i16] = ACTIONS(1888), + [anon_sym_u32] = ACTIONS(1888), + [anon_sym_i32] = ACTIONS(1888), + [anon_sym_u64] = ACTIONS(1888), + [anon_sym_i64] = ACTIONS(1888), + [anon_sym_u128] = ACTIONS(1888), + [anon_sym_i128] = ACTIONS(1888), + [anon_sym_isize] = ACTIONS(1888), + [anon_sym_usize] = ACTIONS(1888), + [anon_sym_f32] = ACTIONS(1888), + [anon_sym_f64] = ACTIONS(1888), + [anon_sym_bool] = ACTIONS(1888), + [anon_sym_str] = ACTIONS(1888), + [anon_sym_char] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1888), + [anon_sym_async] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_fn] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_impl] = ACTIONS(1888), + [anon_sym_let] = ACTIONS(1888), + [anon_sym_loop] = ACTIONS(1888), + [anon_sym_match] = ACTIONS(1888), + [anon_sym_mod] = ACTIONS(1888), + [anon_sym_pub] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_trait] = ACTIONS(1888), + [anon_sym_type] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_unsafe] = ACTIONS(1888), + [anon_sym_use] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1886), + [anon_sym_COLON_COLON] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_DOT_DOT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_yield] = ACTIONS(1888), + [anon_sym_move] = ACTIONS(1888), + [sym_integer_literal] = ACTIONS(1886), + [aux_sym_string_literal_token1] = ACTIONS(1886), + [sym_char_literal] = ACTIONS(1886), + [anon_sym_true] = ACTIONS(1888), + [anon_sym_false] = ACTIONS(1888), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_crate] = ACTIONS(1888), + [sym_metavariable] = ACTIONS(1886), + [sym_raw_string_literal] = ACTIONS(1886), + [sym_float_literal] = ACTIONS(1886), [sym_block_comment] = ACTIONS(3), }, [457] = { - [ts_builtin_sym_end] = ACTIONS(1908), - [sym_identifier] = ACTIONS(1910), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_macro_rules_BANG] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1908), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_STAR] = ACTIONS(1908), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [anon_sym_POUND] = ACTIONS(1908), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_extern] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(1908), - [anon_sym_COLON_COLON] = ACTIONS(1908), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_DOT_DOT] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_PIPE] = ACTIONS(1908), - [anon_sym_yield] = ACTIONS(1910), - [anon_sym_move] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1908), - [aux_sym_string_literal_token1] = ACTIONS(1908), - [sym_char_literal] = ACTIONS(1908), - [anon_sym_true] = ACTIONS(1910), - [anon_sym_false] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1908), - [sym_raw_string_literal] = ACTIONS(1908), - [sym_float_literal] = ACTIONS(1908), + [ts_builtin_sym_end] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_macro_rules_BANG] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_u8] = ACTIONS(1892), + [anon_sym_i8] = ACTIONS(1892), + [anon_sym_u16] = ACTIONS(1892), + [anon_sym_i16] = ACTIONS(1892), + [anon_sym_u32] = ACTIONS(1892), + [anon_sym_i32] = ACTIONS(1892), + [anon_sym_u64] = ACTIONS(1892), + [anon_sym_i64] = ACTIONS(1892), + [anon_sym_u128] = ACTIONS(1892), + [anon_sym_i128] = ACTIONS(1892), + [anon_sym_isize] = ACTIONS(1892), + [anon_sym_usize] = ACTIONS(1892), + [anon_sym_f32] = ACTIONS(1892), + [anon_sym_f64] = ACTIONS(1892), + [anon_sym_bool] = ACTIONS(1892), + [anon_sym_str] = ACTIONS(1892), + [anon_sym_char] = ACTIONS(1892), + [anon_sym_SQUOTE] = ACTIONS(1892), + [anon_sym_async] = ACTIONS(1892), + [anon_sym_break] = ACTIONS(1892), + [anon_sym_const] = ACTIONS(1892), + [anon_sym_continue] = ACTIONS(1892), + [anon_sym_default] = ACTIONS(1892), + [anon_sym_enum] = ACTIONS(1892), + [anon_sym_fn] = ACTIONS(1892), + [anon_sym_for] = ACTIONS(1892), + [anon_sym_if] = ACTIONS(1892), + [anon_sym_impl] = ACTIONS(1892), + [anon_sym_let] = ACTIONS(1892), + [anon_sym_loop] = ACTIONS(1892), + [anon_sym_match] = ACTIONS(1892), + [anon_sym_mod] = ACTIONS(1892), + [anon_sym_pub] = ACTIONS(1892), + [anon_sym_return] = ACTIONS(1892), + [anon_sym_static] = ACTIONS(1892), + [anon_sym_struct] = ACTIONS(1892), + [anon_sym_trait] = ACTIONS(1892), + [anon_sym_type] = ACTIONS(1892), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_unsafe] = ACTIONS(1892), + [anon_sym_use] = ACTIONS(1892), + [anon_sym_while] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_COLON_COLON] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_yield] = ACTIONS(1892), + [anon_sym_move] = ACTIONS(1892), + [sym_integer_literal] = ACTIONS(1890), + [aux_sym_string_literal_token1] = ACTIONS(1890), + [sym_char_literal] = ACTIONS(1890), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1892), + [sym_super] = ACTIONS(1892), + [sym_crate] = ACTIONS(1892), + [sym_metavariable] = ACTIONS(1890), + [sym_raw_string_literal] = ACTIONS(1890), + [sym_float_literal] = ACTIONS(1890), [sym_block_comment] = ACTIONS(3), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(1912), - [sym_identifier] = ACTIONS(1914), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_macro_rules_BANG] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1912), - [anon_sym_RBRACE] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1912), - [anon_sym_u8] = ACTIONS(1914), - [anon_sym_i8] = ACTIONS(1914), - [anon_sym_u16] = ACTIONS(1914), - [anon_sym_i16] = ACTIONS(1914), - [anon_sym_u32] = ACTIONS(1914), - [anon_sym_i32] = ACTIONS(1914), - [anon_sym_u64] = ACTIONS(1914), - [anon_sym_i64] = ACTIONS(1914), - [anon_sym_u128] = ACTIONS(1914), - [anon_sym_i128] = ACTIONS(1914), - [anon_sym_isize] = ACTIONS(1914), - [anon_sym_usize] = ACTIONS(1914), - [anon_sym_f32] = ACTIONS(1914), - [anon_sym_f64] = ACTIONS(1914), - [anon_sym_bool] = ACTIONS(1914), - [anon_sym_str] = ACTIONS(1914), - [anon_sym_char] = ACTIONS(1914), - [anon_sym_SQUOTE] = ACTIONS(1914), - [anon_sym_async] = ACTIONS(1914), - [anon_sym_break] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1914), - [anon_sym_continue] = ACTIONS(1914), - [anon_sym_default] = ACTIONS(1914), - [anon_sym_enum] = ACTIONS(1914), - [anon_sym_fn] = ACTIONS(1914), - [anon_sym_for] = ACTIONS(1914), - [anon_sym_if] = ACTIONS(1914), - [anon_sym_impl] = ACTIONS(1914), - [anon_sym_let] = ACTIONS(1914), - [anon_sym_loop] = ACTIONS(1914), - [anon_sym_match] = ACTIONS(1914), - [anon_sym_mod] = ACTIONS(1914), - [anon_sym_pub] = ACTIONS(1914), - [anon_sym_return] = ACTIONS(1914), - [anon_sym_static] = ACTIONS(1914), - [anon_sym_struct] = ACTIONS(1914), - [anon_sym_trait] = ACTIONS(1914), - [anon_sym_type] = ACTIONS(1914), - [anon_sym_union] = ACTIONS(1914), - [anon_sym_unsafe] = ACTIONS(1914), - [anon_sym_use] = ACTIONS(1914), - [anon_sym_while] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(1912), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_extern] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1912), - [anon_sym_COLON_COLON] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_yield] = ACTIONS(1914), - [anon_sym_move] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(1912), - [aux_sym_string_literal_token1] = ACTIONS(1912), - [sym_char_literal] = ACTIONS(1912), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1914), - [sym_super] = ACTIONS(1914), - [sym_crate] = ACTIONS(1914), - [sym_metavariable] = ACTIONS(1912), - [sym_raw_string_literal] = ACTIONS(1912), - [sym_float_literal] = ACTIONS(1912), + [ts_builtin_sym_end] = ACTIONS(1894), + [sym_identifier] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_macro_rules_BANG] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_u8] = ACTIONS(1896), + [anon_sym_i8] = ACTIONS(1896), + [anon_sym_u16] = ACTIONS(1896), + [anon_sym_i16] = ACTIONS(1896), + [anon_sym_u32] = ACTIONS(1896), + [anon_sym_i32] = ACTIONS(1896), + [anon_sym_u64] = ACTIONS(1896), + [anon_sym_i64] = ACTIONS(1896), + [anon_sym_u128] = ACTIONS(1896), + [anon_sym_i128] = ACTIONS(1896), + [anon_sym_isize] = ACTIONS(1896), + [anon_sym_usize] = ACTIONS(1896), + [anon_sym_f32] = ACTIONS(1896), + [anon_sym_f64] = ACTIONS(1896), + [anon_sym_bool] = ACTIONS(1896), + [anon_sym_str] = ACTIONS(1896), + [anon_sym_char] = ACTIONS(1896), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_async] = ACTIONS(1896), + [anon_sym_break] = ACTIONS(1896), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_continue] = ACTIONS(1896), + [anon_sym_default] = ACTIONS(1896), + [anon_sym_enum] = ACTIONS(1896), + [anon_sym_fn] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1896), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_impl] = ACTIONS(1896), + [anon_sym_let] = ACTIONS(1896), + [anon_sym_loop] = ACTIONS(1896), + [anon_sym_match] = ACTIONS(1896), + [anon_sym_mod] = ACTIONS(1896), + [anon_sym_pub] = ACTIONS(1896), + [anon_sym_return] = ACTIONS(1896), + [anon_sym_static] = ACTIONS(1896), + [anon_sym_struct] = ACTIONS(1896), + [anon_sym_trait] = ACTIONS(1896), + [anon_sym_type] = ACTIONS(1896), + [anon_sym_union] = ACTIONS(1896), + [anon_sym_unsafe] = ACTIONS(1896), + [anon_sym_use] = ACTIONS(1896), + [anon_sym_while] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_extern] = ACTIONS(1896), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_COLON_COLON] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_DOT_DOT] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_yield] = ACTIONS(1896), + [anon_sym_move] = ACTIONS(1896), + [sym_integer_literal] = ACTIONS(1894), + [aux_sym_string_literal_token1] = ACTIONS(1894), + [sym_char_literal] = ACTIONS(1894), + [anon_sym_true] = ACTIONS(1896), + [anon_sym_false] = ACTIONS(1896), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1896), + [sym_super] = ACTIONS(1896), + [sym_crate] = ACTIONS(1896), + [sym_metavariable] = ACTIONS(1894), + [sym_raw_string_literal] = ACTIONS(1894), + [sym_float_literal] = ACTIONS(1894), [sym_block_comment] = ACTIONS(3), }, [459] = { - [ts_builtin_sym_end] = ACTIONS(1916), - [sym_identifier] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_macro_rules_BANG] = ACTIONS(1916), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(1916), - [anon_sym_RBRACE] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(1916), - [anon_sym_u8] = ACTIONS(1918), - [anon_sym_i8] = ACTIONS(1918), - [anon_sym_u16] = ACTIONS(1918), - [anon_sym_i16] = ACTIONS(1918), - [anon_sym_u32] = ACTIONS(1918), - [anon_sym_i32] = ACTIONS(1918), - [anon_sym_u64] = ACTIONS(1918), - [anon_sym_i64] = ACTIONS(1918), - [anon_sym_u128] = ACTIONS(1918), - [anon_sym_i128] = ACTIONS(1918), - [anon_sym_isize] = ACTIONS(1918), - [anon_sym_usize] = ACTIONS(1918), - [anon_sym_f32] = ACTIONS(1918), - [anon_sym_f64] = ACTIONS(1918), - [anon_sym_bool] = ACTIONS(1918), - [anon_sym_str] = ACTIONS(1918), - [anon_sym_char] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_async] = ACTIONS(1918), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_const] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1918), - [anon_sym_default] = ACTIONS(1918), - [anon_sym_enum] = ACTIONS(1918), - [anon_sym_fn] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1918), - [anon_sym_if] = ACTIONS(1918), - [anon_sym_impl] = ACTIONS(1918), - [anon_sym_let] = ACTIONS(1918), - [anon_sym_loop] = ACTIONS(1918), - [anon_sym_match] = ACTIONS(1918), - [anon_sym_mod] = ACTIONS(1918), - [anon_sym_pub] = ACTIONS(1918), - [anon_sym_return] = ACTIONS(1918), - [anon_sym_static] = ACTIONS(1918), - [anon_sym_struct] = ACTIONS(1918), - [anon_sym_trait] = ACTIONS(1918), - [anon_sym_type] = ACTIONS(1918), - [anon_sym_union] = ACTIONS(1918), - [anon_sym_unsafe] = ACTIONS(1918), - [anon_sym_use] = ACTIONS(1918), - [anon_sym_while] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(1916), - [anon_sym_extern] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1916), - [anon_sym_COLON_COLON] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1916), - [anon_sym_DOT_DOT] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_yield] = ACTIONS(1918), - [anon_sym_move] = ACTIONS(1918), - [sym_integer_literal] = ACTIONS(1916), - [aux_sym_string_literal_token1] = ACTIONS(1916), - [sym_char_literal] = ACTIONS(1916), - [anon_sym_true] = ACTIONS(1918), - [anon_sym_false] = ACTIONS(1918), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1918), - [sym_super] = ACTIONS(1918), - [sym_crate] = ACTIONS(1918), - [sym_metavariable] = ACTIONS(1916), - [sym_raw_string_literal] = ACTIONS(1916), - [sym_float_literal] = ACTIONS(1916), + [ts_builtin_sym_end] = ACTIONS(1898), + [sym_identifier] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_macro_rules_BANG] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_STAR] = ACTIONS(1898), + [anon_sym_u8] = ACTIONS(1900), + [anon_sym_i8] = ACTIONS(1900), + [anon_sym_u16] = ACTIONS(1900), + [anon_sym_i16] = ACTIONS(1900), + [anon_sym_u32] = ACTIONS(1900), + [anon_sym_i32] = ACTIONS(1900), + [anon_sym_u64] = ACTIONS(1900), + [anon_sym_i64] = ACTIONS(1900), + [anon_sym_u128] = ACTIONS(1900), + [anon_sym_i128] = ACTIONS(1900), + [anon_sym_isize] = ACTIONS(1900), + [anon_sym_usize] = ACTIONS(1900), + [anon_sym_f32] = ACTIONS(1900), + [anon_sym_f64] = ACTIONS(1900), + [anon_sym_bool] = ACTIONS(1900), + [anon_sym_str] = ACTIONS(1900), + [anon_sym_char] = ACTIONS(1900), + [anon_sym_SQUOTE] = ACTIONS(1900), + [anon_sym_async] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_default] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1900), + [anon_sym_fn] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_impl] = ACTIONS(1900), + [anon_sym_let] = ACTIONS(1900), + [anon_sym_loop] = ACTIONS(1900), + [anon_sym_match] = ACTIONS(1900), + [anon_sym_mod] = ACTIONS(1900), + [anon_sym_pub] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1900), + [anon_sym_struct] = ACTIONS(1900), + [anon_sym_trait] = ACTIONS(1900), + [anon_sym_type] = ACTIONS(1900), + [anon_sym_union] = ACTIONS(1900), + [anon_sym_unsafe] = ACTIONS(1900), + [anon_sym_use] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1898), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_yield] = ACTIONS(1900), + [anon_sym_move] = ACTIONS(1900), + [sym_integer_literal] = ACTIONS(1898), + [aux_sym_string_literal_token1] = ACTIONS(1898), + [sym_char_literal] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(1900), + [anon_sym_false] = ACTIONS(1900), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1900), + [sym_super] = ACTIONS(1900), + [sym_crate] = ACTIONS(1900), + [sym_metavariable] = ACTIONS(1898), + [sym_raw_string_literal] = ACTIONS(1898), + [sym_float_literal] = ACTIONS(1898), [sym_block_comment] = ACTIONS(3), }, [460] = { - [ts_builtin_sym_end] = ACTIONS(1920), - [sym_identifier] = ACTIONS(1922), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_macro_rules_BANG] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_STAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1922), - [anon_sym_i8] = ACTIONS(1922), - [anon_sym_u16] = ACTIONS(1922), - [anon_sym_i16] = ACTIONS(1922), - [anon_sym_u32] = ACTIONS(1922), - [anon_sym_i32] = ACTIONS(1922), - [anon_sym_u64] = ACTIONS(1922), - [anon_sym_i64] = ACTIONS(1922), - [anon_sym_u128] = ACTIONS(1922), - [anon_sym_i128] = ACTIONS(1922), - [anon_sym_isize] = ACTIONS(1922), - [anon_sym_usize] = ACTIONS(1922), - [anon_sym_f32] = ACTIONS(1922), - [anon_sym_f64] = ACTIONS(1922), - [anon_sym_bool] = ACTIONS(1922), - [anon_sym_str] = ACTIONS(1922), - [anon_sym_char] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_async] = ACTIONS(1922), - [anon_sym_break] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(1922), - [anon_sym_continue] = ACTIONS(1922), - [anon_sym_default] = ACTIONS(1922), - [anon_sym_enum] = ACTIONS(1922), - [anon_sym_fn] = ACTIONS(1922), - [anon_sym_for] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(1922), - [anon_sym_impl] = ACTIONS(1922), - [anon_sym_let] = ACTIONS(1922), - [anon_sym_loop] = ACTIONS(1922), - [anon_sym_match] = ACTIONS(1922), - [anon_sym_mod] = ACTIONS(1922), - [anon_sym_pub] = ACTIONS(1922), - [anon_sym_return] = ACTIONS(1922), - [anon_sym_static] = ACTIONS(1922), - [anon_sym_struct] = ACTIONS(1922), - [anon_sym_trait] = ACTIONS(1922), - [anon_sym_type] = ACTIONS(1922), - [anon_sym_union] = ACTIONS(1922), - [anon_sym_unsafe] = ACTIONS(1922), - [anon_sym_use] = ACTIONS(1922), - [anon_sym_while] = ACTIONS(1922), - [anon_sym_POUND] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1920), - [anon_sym_COLON_COLON] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_PIPE] = ACTIONS(1920), - [anon_sym_yield] = ACTIONS(1922), - [anon_sym_move] = ACTIONS(1922), - [sym_integer_literal] = ACTIONS(1920), - [aux_sym_string_literal_token1] = ACTIONS(1920), - [sym_char_literal] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1922), - [anon_sym_false] = ACTIONS(1922), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1922), - [sym_super] = ACTIONS(1922), - [sym_crate] = ACTIONS(1922), - [sym_metavariable] = ACTIONS(1920), - [sym_raw_string_literal] = ACTIONS(1920), - [sym_float_literal] = ACTIONS(1920), + [ts_builtin_sym_end] = ACTIONS(1902), + [sym_identifier] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_macro_rules_BANG] = ACTIONS(1902), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_u8] = ACTIONS(1904), + [anon_sym_i8] = ACTIONS(1904), + [anon_sym_u16] = ACTIONS(1904), + [anon_sym_i16] = ACTIONS(1904), + [anon_sym_u32] = ACTIONS(1904), + [anon_sym_i32] = ACTIONS(1904), + [anon_sym_u64] = ACTIONS(1904), + [anon_sym_i64] = ACTIONS(1904), + [anon_sym_u128] = ACTIONS(1904), + [anon_sym_i128] = ACTIONS(1904), + [anon_sym_isize] = ACTIONS(1904), + [anon_sym_usize] = ACTIONS(1904), + [anon_sym_f32] = ACTIONS(1904), + [anon_sym_f64] = ACTIONS(1904), + [anon_sym_bool] = ACTIONS(1904), + [anon_sym_str] = ACTIONS(1904), + [anon_sym_char] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1904), + [anon_sym_async] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_default] = ACTIONS(1904), + [anon_sym_enum] = ACTIONS(1904), + [anon_sym_fn] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_impl] = ACTIONS(1904), + [anon_sym_let] = ACTIONS(1904), + [anon_sym_loop] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(1904), + [anon_sym_mod] = ACTIONS(1904), + [anon_sym_pub] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_struct] = ACTIONS(1904), + [anon_sym_trait] = ACTIONS(1904), + [anon_sym_type] = ACTIONS(1904), + [anon_sym_union] = ACTIONS(1904), + [anon_sym_unsafe] = ACTIONS(1904), + [anon_sym_use] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1902), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_COLON_COLON] = ACTIONS(1902), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1902), + [anon_sym_yield] = ACTIONS(1904), + [anon_sym_move] = ACTIONS(1904), + [sym_integer_literal] = ACTIONS(1902), + [aux_sym_string_literal_token1] = ACTIONS(1902), + [sym_char_literal] = ACTIONS(1902), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1904), + [sym_super] = ACTIONS(1904), + [sym_crate] = ACTIONS(1904), + [sym_metavariable] = ACTIONS(1902), + [sym_raw_string_literal] = ACTIONS(1902), + [sym_float_literal] = ACTIONS(1902), [sym_block_comment] = ACTIONS(3), }, [461] = { - [ts_builtin_sym_end] = ACTIONS(1924), - [sym_identifier] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_macro_rules_BANG] = ACTIONS(1924), - [anon_sym_LPAREN] = ACTIONS(1924), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_RBRACE] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_u8] = ACTIONS(1926), - [anon_sym_i8] = ACTIONS(1926), - [anon_sym_u16] = ACTIONS(1926), - [anon_sym_i16] = ACTIONS(1926), - [anon_sym_u32] = ACTIONS(1926), - [anon_sym_i32] = ACTIONS(1926), - [anon_sym_u64] = ACTIONS(1926), - [anon_sym_i64] = ACTIONS(1926), - [anon_sym_u128] = ACTIONS(1926), - [anon_sym_i128] = ACTIONS(1926), - [anon_sym_isize] = ACTIONS(1926), - [anon_sym_usize] = ACTIONS(1926), - [anon_sym_f32] = ACTIONS(1926), - [anon_sym_f64] = ACTIONS(1926), - [anon_sym_bool] = ACTIONS(1926), - [anon_sym_str] = ACTIONS(1926), - [anon_sym_char] = ACTIONS(1926), - [anon_sym_SQUOTE] = ACTIONS(1926), - [anon_sym_async] = ACTIONS(1926), - [anon_sym_break] = ACTIONS(1926), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_continue] = ACTIONS(1926), - [anon_sym_default] = ACTIONS(1926), - [anon_sym_enum] = ACTIONS(1926), - [anon_sym_fn] = ACTIONS(1926), - [anon_sym_for] = ACTIONS(1926), - [anon_sym_if] = ACTIONS(1926), - [anon_sym_impl] = ACTIONS(1926), - [anon_sym_let] = ACTIONS(1926), - [anon_sym_loop] = ACTIONS(1926), - [anon_sym_match] = ACTIONS(1926), - [anon_sym_mod] = ACTIONS(1926), - [anon_sym_pub] = ACTIONS(1926), - [anon_sym_return] = ACTIONS(1926), - [anon_sym_static] = ACTIONS(1926), - [anon_sym_struct] = ACTIONS(1926), - [anon_sym_trait] = ACTIONS(1926), - [anon_sym_type] = ACTIONS(1926), - [anon_sym_union] = ACTIONS(1926), - [anon_sym_unsafe] = ACTIONS(1926), - [anon_sym_use] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1926), - [anon_sym_POUND] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_extern] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_yield] = ACTIONS(1926), - [anon_sym_move] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(1924), - [aux_sym_string_literal_token1] = ACTIONS(1924), - [sym_char_literal] = ACTIONS(1924), - [anon_sym_true] = ACTIONS(1926), - [anon_sym_false] = ACTIONS(1926), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1926), - [sym_super] = ACTIONS(1926), - [sym_crate] = ACTIONS(1926), - [sym_metavariable] = ACTIONS(1924), - [sym_raw_string_literal] = ACTIONS(1924), - [sym_float_literal] = ACTIONS(1924), + [ts_builtin_sym_end] = ACTIONS(1906), + [sym_identifier] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_macro_rules_BANG] = ACTIONS(1906), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_u8] = ACTIONS(1908), + [anon_sym_i8] = ACTIONS(1908), + [anon_sym_u16] = ACTIONS(1908), + [anon_sym_i16] = ACTIONS(1908), + [anon_sym_u32] = ACTIONS(1908), + [anon_sym_i32] = ACTIONS(1908), + [anon_sym_u64] = ACTIONS(1908), + [anon_sym_i64] = ACTIONS(1908), + [anon_sym_u128] = ACTIONS(1908), + [anon_sym_i128] = ACTIONS(1908), + [anon_sym_isize] = ACTIONS(1908), + [anon_sym_usize] = ACTIONS(1908), + [anon_sym_f32] = ACTIONS(1908), + [anon_sym_f64] = ACTIONS(1908), + [anon_sym_bool] = ACTIONS(1908), + [anon_sym_str] = ACTIONS(1908), + [anon_sym_char] = ACTIONS(1908), + [anon_sym_SQUOTE] = ACTIONS(1908), + [anon_sym_async] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_fn] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_impl] = ACTIONS(1908), + [anon_sym_let] = ACTIONS(1908), + [anon_sym_loop] = ACTIONS(1908), + [anon_sym_match] = ACTIONS(1908), + [anon_sym_mod] = ACTIONS(1908), + [anon_sym_pub] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_trait] = ACTIONS(1908), + [anon_sym_type] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_unsafe] = ACTIONS(1908), + [anon_sym_use] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1906), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_COLON_COLON] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [anon_sym_DOT_DOT] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1906), + [anon_sym_yield] = ACTIONS(1908), + [anon_sym_move] = ACTIONS(1908), + [sym_integer_literal] = ACTIONS(1906), + [aux_sym_string_literal_token1] = ACTIONS(1906), + [sym_char_literal] = ACTIONS(1906), + [anon_sym_true] = ACTIONS(1908), + [anon_sym_false] = ACTIONS(1908), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_crate] = ACTIONS(1908), + [sym_metavariable] = ACTIONS(1906), + [sym_raw_string_literal] = ACTIONS(1906), + [sym_float_literal] = ACTIONS(1906), [sym_block_comment] = ACTIONS(3), }, [462] = { - [ts_builtin_sym_end] = ACTIONS(1928), - [sym_identifier] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_macro_rules_BANG] = ACTIONS(1928), - [anon_sym_LPAREN] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(1928), - [anon_sym_RBRACE] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_STAR] = ACTIONS(1928), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [anon_sym_POUND] = ACTIONS(1928), - [anon_sym_BANG] = ACTIONS(1928), - [anon_sym_extern] = ACTIONS(1930), - [anon_sym_LT] = ACTIONS(1928), - [anon_sym_COLON_COLON] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1928), - [anon_sym_DOT_DOT] = ACTIONS(1928), - [anon_sym_DASH] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_yield] = ACTIONS(1930), - [anon_sym_move] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1928), - [aux_sym_string_literal_token1] = ACTIONS(1928), - [sym_char_literal] = ACTIONS(1928), - [anon_sym_true] = ACTIONS(1930), - [anon_sym_false] = ACTIONS(1930), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1928), - [sym_raw_string_literal] = ACTIONS(1928), - [sym_float_literal] = ACTIONS(1928), + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1912), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_macro_rules_BANG] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_u8] = ACTIONS(1912), + [anon_sym_i8] = ACTIONS(1912), + [anon_sym_u16] = ACTIONS(1912), + [anon_sym_i16] = ACTIONS(1912), + [anon_sym_u32] = ACTIONS(1912), + [anon_sym_i32] = ACTIONS(1912), + [anon_sym_u64] = ACTIONS(1912), + [anon_sym_i64] = ACTIONS(1912), + [anon_sym_u128] = ACTIONS(1912), + [anon_sym_i128] = ACTIONS(1912), + [anon_sym_isize] = ACTIONS(1912), + [anon_sym_usize] = ACTIONS(1912), + [anon_sym_f32] = ACTIONS(1912), + [anon_sym_f64] = ACTIONS(1912), + [anon_sym_bool] = ACTIONS(1912), + [anon_sym_str] = ACTIONS(1912), + [anon_sym_char] = ACTIONS(1912), + [anon_sym_SQUOTE] = ACTIONS(1912), + [anon_sym_async] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_fn] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_impl] = ACTIONS(1912), + [anon_sym_let] = ACTIONS(1912), + [anon_sym_loop] = ACTIONS(1912), + [anon_sym_match] = ACTIONS(1912), + [anon_sym_mod] = ACTIONS(1912), + [anon_sym_pub] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_trait] = ACTIONS(1912), + [anon_sym_type] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_unsafe] = ACTIONS(1912), + [anon_sym_use] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1910), + [anon_sym_COLON_COLON] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_DOT_DOT] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(1910), + [anon_sym_yield] = ACTIONS(1912), + [anon_sym_move] = ACTIONS(1912), + [sym_integer_literal] = ACTIONS(1910), + [aux_sym_string_literal_token1] = ACTIONS(1910), + [sym_char_literal] = ACTIONS(1910), + [anon_sym_true] = ACTIONS(1912), + [anon_sym_false] = ACTIONS(1912), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_crate] = ACTIONS(1912), + [sym_metavariable] = ACTIONS(1910), + [sym_raw_string_literal] = ACTIONS(1910), + [sym_float_literal] = ACTIONS(1910), [sym_block_comment] = ACTIONS(3), }, [463] = { - [ts_builtin_sym_end] = ACTIONS(1932), - [sym_identifier] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_macro_rules_BANG] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1932), - [anon_sym_LBRACE] = ACTIONS(1932), - [anon_sym_RBRACE] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1932), - [anon_sym_u8] = ACTIONS(1934), - [anon_sym_i8] = ACTIONS(1934), - [anon_sym_u16] = ACTIONS(1934), - [anon_sym_i16] = ACTIONS(1934), - [anon_sym_u32] = ACTIONS(1934), - [anon_sym_i32] = ACTIONS(1934), - [anon_sym_u64] = ACTIONS(1934), - [anon_sym_i64] = ACTIONS(1934), - [anon_sym_u128] = ACTIONS(1934), - [anon_sym_i128] = ACTIONS(1934), - [anon_sym_isize] = ACTIONS(1934), - [anon_sym_usize] = ACTIONS(1934), - [anon_sym_f32] = ACTIONS(1934), - [anon_sym_f64] = ACTIONS(1934), - [anon_sym_bool] = ACTIONS(1934), - [anon_sym_str] = ACTIONS(1934), - [anon_sym_char] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(1934), - [anon_sym_async] = ACTIONS(1934), - [anon_sym_break] = ACTIONS(1934), - [anon_sym_const] = ACTIONS(1934), - [anon_sym_continue] = ACTIONS(1934), - [anon_sym_default] = ACTIONS(1934), - [anon_sym_enum] = ACTIONS(1934), - [anon_sym_fn] = ACTIONS(1934), - [anon_sym_for] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1934), - [anon_sym_impl] = ACTIONS(1934), - [anon_sym_let] = ACTIONS(1934), - [anon_sym_loop] = ACTIONS(1934), - [anon_sym_match] = ACTIONS(1934), - [anon_sym_mod] = ACTIONS(1934), - [anon_sym_pub] = ACTIONS(1934), - [anon_sym_return] = ACTIONS(1934), - [anon_sym_static] = ACTIONS(1934), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_trait] = ACTIONS(1934), - [anon_sym_type] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1934), - [anon_sym_unsafe] = ACTIONS(1934), - [anon_sym_use] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1932), - [anon_sym_BANG] = ACTIONS(1932), - [anon_sym_extern] = ACTIONS(1934), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_COLON_COLON] = ACTIONS(1932), - [anon_sym_AMP] = ACTIONS(1932), - [anon_sym_DOT_DOT] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(1934), - [anon_sym_move] = ACTIONS(1934), - [sym_integer_literal] = ACTIONS(1932), - [aux_sym_string_literal_token1] = ACTIONS(1932), - [sym_char_literal] = ACTIONS(1932), - [anon_sym_true] = ACTIONS(1934), - [anon_sym_false] = ACTIONS(1934), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1934), - [sym_super] = ACTIONS(1934), - [sym_crate] = ACTIONS(1934), - [sym_metavariable] = ACTIONS(1932), - [sym_raw_string_literal] = ACTIONS(1932), - [sym_float_literal] = ACTIONS(1932), + [ts_builtin_sym_end] = ACTIONS(1914), + [sym_identifier] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_macro_rules_BANG] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_u8] = ACTIONS(1916), + [anon_sym_i8] = ACTIONS(1916), + [anon_sym_u16] = ACTIONS(1916), + [anon_sym_i16] = ACTIONS(1916), + [anon_sym_u32] = ACTIONS(1916), + [anon_sym_i32] = ACTIONS(1916), + [anon_sym_u64] = ACTIONS(1916), + [anon_sym_i64] = ACTIONS(1916), + [anon_sym_u128] = ACTIONS(1916), + [anon_sym_i128] = ACTIONS(1916), + [anon_sym_isize] = ACTIONS(1916), + [anon_sym_usize] = ACTIONS(1916), + [anon_sym_f32] = ACTIONS(1916), + [anon_sym_f64] = ACTIONS(1916), + [anon_sym_bool] = ACTIONS(1916), + [anon_sym_str] = ACTIONS(1916), + [anon_sym_char] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_async] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [anon_sym_default] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [anon_sym_fn] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_impl] = ACTIONS(1916), + [anon_sym_let] = ACTIONS(1916), + [anon_sym_loop] = ACTIONS(1916), + [anon_sym_match] = ACTIONS(1916), + [anon_sym_mod] = ACTIONS(1916), + [anon_sym_pub] = ACTIONS(1916), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_struct] = ACTIONS(1916), + [anon_sym_trait] = ACTIONS(1916), + [anon_sym_type] = ACTIONS(1916), + [anon_sym_union] = ACTIONS(1916), + [anon_sym_unsafe] = ACTIONS(1916), + [anon_sym_use] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_DOT_DOT] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1914), + [anon_sym_yield] = ACTIONS(1916), + [anon_sym_move] = ACTIONS(1916), + [sym_integer_literal] = ACTIONS(1914), + [aux_sym_string_literal_token1] = ACTIONS(1914), + [sym_char_literal] = ACTIONS(1914), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1916), + [sym_super] = ACTIONS(1916), + [sym_crate] = ACTIONS(1916), + [sym_metavariable] = ACTIONS(1914), + [sym_raw_string_literal] = ACTIONS(1914), + [sym_float_literal] = ACTIONS(1914), [sym_block_comment] = ACTIONS(3), }, [464] = { - [ts_builtin_sym_end] = ACTIONS(1936), - [sym_identifier] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym_macro_rules_BANG] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1936), - [anon_sym_RBRACE] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_u8] = ACTIONS(1938), - [anon_sym_i8] = ACTIONS(1938), - [anon_sym_u16] = ACTIONS(1938), - [anon_sym_i16] = ACTIONS(1938), - [anon_sym_u32] = ACTIONS(1938), - [anon_sym_i32] = ACTIONS(1938), - [anon_sym_u64] = ACTIONS(1938), - [anon_sym_i64] = ACTIONS(1938), - [anon_sym_u128] = ACTIONS(1938), - [anon_sym_i128] = ACTIONS(1938), - [anon_sym_isize] = ACTIONS(1938), - [anon_sym_usize] = ACTIONS(1938), - [anon_sym_f32] = ACTIONS(1938), - [anon_sym_f64] = ACTIONS(1938), - [anon_sym_bool] = ACTIONS(1938), - [anon_sym_str] = ACTIONS(1938), - [anon_sym_char] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_async] = ACTIONS(1938), - [anon_sym_break] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_continue] = ACTIONS(1938), - [anon_sym_default] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_fn] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1938), - [anon_sym_impl] = ACTIONS(1938), - [anon_sym_let] = ACTIONS(1938), - [anon_sym_loop] = ACTIONS(1938), - [anon_sym_match] = ACTIONS(1938), - [anon_sym_mod] = ACTIONS(1938), - [anon_sym_pub] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_trait] = ACTIONS(1938), - [anon_sym_type] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [anon_sym_unsafe] = ACTIONS(1938), - [anon_sym_use] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1938), - [anon_sym_POUND] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_DOT_DOT] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_yield] = ACTIONS(1938), - [anon_sym_move] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(1936), - [aux_sym_string_literal_token1] = ACTIONS(1936), - [sym_char_literal] = ACTIONS(1936), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1938), - [sym_super] = ACTIONS(1938), - [sym_crate] = ACTIONS(1938), - [sym_metavariable] = ACTIONS(1936), - [sym_raw_string_literal] = ACTIONS(1936), - [sym_float_literal] = ACTIONS(1936), + [ts_builtin_sym_end] = ACTIONS(1918), + [sym_identifier] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_macro_rules_BANG] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_RBRACE] = ACTIONS(1918), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_u8] = ACTIONS(1920), + [anon_sym_i8] = ACTIONS(1920), + [anon_sym_u16] = ACTIONS(1920), + [anon_sym_i16] = ACTIONS(1920), + [anon_sym_u32] = ACTIONS(1920), + [anon_sym_i32] = ACTIONS(1920), + [anon_sym_u64] = ACTIONS(1920), + [anon_sym_i64] = ACTIONS(1920), + [anon_sym_u128] = ACTIONS(1920), + [anon_sym_i128] = ACTIONS(1920), + [anon_sym_isize] = ACTIONS(1920), + [anon_sym_usize] = ACTIONS(1920), + [anon_sym_f32] = ACTIONS(1920), + [anon_sym_f64] = ACTIONS(1920), + [anon_sym_bool] = ACTIONS(1920), + [anon_sym_str] = ACTIONS(1920), + [anon_sym_char] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1920), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_break] = ACTIONS(1920), + [anon_sym_const] = ACTIONS(1920), + [anon_sym_continue] = ACTIONS(1920), + [anon_sym_default] = ACTIONS(1920), + [anon_sym_enum] = ACTIONS(1920), + [anon_sym_fn] = ACTIONS(1920), + [anon_sym_for] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1920), + [anon_sym_impl] = ACTIONS(1920), + [anon_sym_let] = ACTIONS(1920), + [anon_sym_loop] = ACTIONS(1920), + [anon_sym_match] = ACTIONS(1920), + [anon_sym_mod] = ACTIONS(1920), + [anon_sym_pub] = ACTIONS(1920), + [anon_sym_return] = ACTIONS(1920), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1920), + [anon_sym_trait] = ACTIONS(1920), + [anon_sym_type] = ACTIONS(1920), + [anon_sym_union] = ACTIONS(1920), + [anon_sym_unsafe] = ACTIONS(1920), + [anon_sym_use] = ACTIONS(1920), + [anon_sym_while] = ACTIONS(1920), + [anon_sym_POUND] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_extern] = ACTIONS(1920), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_COLON_COLON] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1918), + [anon_sym_DOT_DOT] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_yield] = ACTIONS(1920), + [anon_sym_move] = ACTIONS(1920), + [sym_integer_literal] = ACTIONS(1918), + [aux_sym_string_literal_token1] = ACTIONS(1918), + [sym_char_literal] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(1920), + [anon_sym_false] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1920), + [sym_super] = ACTIONS(1920), + [sym_crate] = ACTIONS(1920), + [sym_metavariable] = ACTIONS(1918), + [sym_raw_string_literal] = ACTIONS(1918), + [sym_float_literal] = ACTIONS(1918), [sym_block_comment] = ACTIONS(3), }, [465] = { - [ts_builtin_sym_end] = ACTIONS(1940), - [sym_identifier] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym_macro_rules_BANG] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_RBRACE] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_u8] = ACTIONS(1942), - [anon_sym_i8] = ACTIONS(1942), - [anon_sym_u16] = ACTIONS(1942), - [anon_sym_i16] = ACTIONS(1942), - [anon_sym_u32] = ACTIONS(1942), - [anon_sym_i32] = ACTIONS(1942), - [anon_sym_u64] = ACTIONS(1942), - [anon_sym_i64] = ACTIONS(1942), - [anon_sym_u128] = ACTIONS(1942), - [anon_sym_i128] = ACTIONS(1942), - [anon_sym_isize] = ACTIONS(1942), - [anon_sym_usize] = ACTIONS(1942), - [anon_sym_f32] = ACTIONS(1942), - [anon_sym_f64] = ACTIONS(1942), - [anon_sym_bool] = ACTIONS(1942), - [anon_sym_str] = ACTIONS(1942), - [anon_sym_char] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_async] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_fn] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_impl] = ACTIONS(1942), - [anon_sym_let] = ACTIONS(1942), - [anon_sym_loop] = ACTIONS(1942), - [anon_sym_match] = ACTIONS(1942), - [anon_sym_mod] = ACTIONS(1942), - [anon_sym_pub] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_trait] = ACTIONS(1942), - [anon_sym_type] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_unsafe] = ACTIONS(1942), - [anon_sym_use] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_POUND] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_yield] = ACTIONS(1942), - [anon_sym_move] = ACTIONS(1942), - [sym_integer_literal] = ACTIONS(1940), - [aux_sym_string_literal_token1] = ACTIONS(1940), - [sym_char_literal] = ACTIONS(1940), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1942), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1942), - [sym_super] = ACTIONS(1942), - [sym_crate] = ACTIONS(1942), - [sym_metavariable] = ACTIONS(1940), - [sym_raw_string_literal] = ACTIONS(1940), - [sym_float_literal] = ACTIONS(1940), + [ts_builtin_sym_end] = ACTIONS(1922), + [sym_identifier] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_macro_rules_BANG] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1922), + [anon_sym_u8] = ACTIONS(1924), + [anon_sym_i8] = ACTIONS(1924), + [anon_sym_u16] = ACTIONS(1924), + [anon_sym_i16] = ACTIONS(1924), + [anon_sym_u32] = ACTIONS(1924), + [anon_sym_i32] = ACTIONS(1924), + [anon_sym_u64] = ACTIONS(1924), + [anon_sym_i64] = ACTIONS(1924), + [anon_sym_u128] = ACTIONS(1924), + [anon_sym_i128] = ACTIONS(1924), + [anon_sym_isize] = ACTIONS(1924), + [anon_sym_usize] = ACTIONS(1924), + [anon_sym_f32] = ACTIONS(1924), + [anon_sym_f64] = ACTIONS(1924), + [anon_sym_bool] = ACTIONS(1924), + [anon_sym_str] = ACTIONS(1924), + [anon_sym_char] = ACTIONS(1924), + [anon_sym_SQUOTE] = ACTIONS(1924), + [anon_sym_async] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_fn] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_impl] = ACTIONS(1924), + [anon_sym_let] = ACTIONS(1924), + [anon_sym_loop] = ACTIONS(1924), + [anon_sym_match] = ACTIONS(1924), + [anon_sym_mod] = ACTIONS(1924), + [anon_sym_pub] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_trait] = ACTIONS(1924), + [anon_sym_type] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_unsafe] = ACTIONS(1924), + [anon_sym_use] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(1922), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1922), + [anon_sym_COLON_COLON] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1922), + [anon_sym_yield] = ACTIONS(1924), + [anon_sym_move] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(1922), + [aux_sym_string_literal_token1] = ACTIONS(1922), + [sym_char_literal] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_crate] = ACTIONS(1924), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1922), + [sym_float_literal] = ACTIONS(1922), [sym_block_comment] = ACTIONS(3), }, [466] = { - [ts_builtin_sym_end] = ACTIONS(1944), - [sym_identifier] = ACTIONS(1946), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_macro_rules_BANG] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1944), - [anon_sym_RBRACE] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_u8] = ACTIONS(1946), - [anon_sym_i8] = ACTIONS(1946), - [anon_sym_u16] = ACTIONS(1946), - [anon_sym_i16] = ACTIONS(1946), - [anon_sym_u32] = ACTIONS(1946), - [anon_sym_i32] = ACTIONS(1946), - [anon_sym_u64] = ACTIONS(1946), - [anon_sym_i64] = ACTIONS(1946), - [anon_sym_u128] = ACTIONS(1946), - [anon_sym_i128] = ACTIONS(1946), - [anon_sym_isize] = ACTIONS(1946), - [anon_sym_usize] = ACTIONS(1946), - [anon_sym_f32] = ACTIONS(1946), - [anon_sym_f64] = ACTIONS(1946), - [anon_sym_bool] = ACTIONS(1946), - [anon_sym_str] = ACTIONS(1946), - [anon_sym_char] = ACTIONS(1946), - [anon_sym_SQUOTE] = ACTIONS(1946), - [anon_sym_async] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_fn] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_impl] = ACTIONS(1946), - [anon_sym_let] = ACTIONS(1946), - [anon_sym_loop] = ACTIONS(1946), - [anon_sym_match] = ACTIONS(1946), - [anon_sym_mod] = ACTIONS(1946), - [anon_sym_pub] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_trait] = ACTIONS(1946), - [anon_sym_type] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_unsafe] = ACTIONS(1946), - [anon_sym_use] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_POUND] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_COLON_COLON] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_yield] = ACTIONS(1946), - [anon_sym_move] = ACTIONS(1946), - [sym_integer_literal] = ACTIONS(1944), - [aux_sym_string_literal_token1] = ACTIONS(1944), - [sym_char_literal] = ACTIONS(1944), - [anon_sym_true] = ACTIONS(1946), - [anon_sym_false] = ACTIONS(1946), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_crate] = ACTIONS(1946), - [sym_metavariable] = ACTIONS(1944), - [sym_raw_string_literal] = ACTIONS(1944), - [sym_float_literal] = ACTIONS(1944), + [ts_builtin_sym_end] = ACTIONS(1926), + [sym_identifier] = ACTIONS(1928), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_macro_rules_BANG] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_u8] = ACTIONS(1928), + [anon_sym_i8] = ACTIONS(1928), + [anon_sym_u16] = ACTIONS(1928), + [anon_sym_i16] = ACTIONS(1928), + [anon_sym_u32] = ACTIONS(1928), + [anon_sym_i32] = ACTIONS(1928), + [anon_sym_u64] = ACTIONS(1928), + [anon_sym_i64] = ACTIONS(1928), + [anon_sym_u128] = ACTIONS(1928), + [anon_sym_i128] = ACTIONS(1928), + [anon_sym_isize] = ACTIONS(1928), + [anon_sym_usize] = ACTIONS(1928), + [anon_sym_f32] = ACTIONS(1928), + [anon_sym_f64] = ACTIONS(1928), + [anon_sym_bool] = ACTIONS(1928), + [anon_sym_str] = ACTIONS(1928), + [anon_sym_char] = ACTIONS(1928), + [anon_sym_SQUOTE] = ACTIONS(1928), + [anon_sym_async] = ACTIONS(1928), + [anon_sym_break] = ACTIONS(1928), + [anon_sym_const] = ACTIONS(1928), + [anon_sym_continue] = ACTIONS(1928), + [anon_sym_default] = ACTIONS(1928), + [anon_sym_enum] = ACTIONS(1928), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_if] = ACTIONS(1928), + [anon_sym_impl] = ACTIONS(1928), + [anon_sym_let] = ACTIONS(1928), + [anon_sym_loop] = ACTIONS(1928), + [anon_sym_match] = ACTIONS(1928), + [anon_sym_mod] = ACTIONS(1928), + [anon_sym_pub] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(1928), + [anon_sym_static] = ACTIONS(1928), + [anon_sym_struct] = ACTIONS(1928), + [anon_sym_trait] = ACTIONS(1928), + [anon_sym_type] = ACTIONS(1928), + [anon_sym_union] = ACTIONS(1928), + [anon_sym_unsafe] = ACTIONS(1928), + [anon_sym_use] = ACTIONS(1928), + [anon_sym_while] = ACTIONS(1928), + [anon_sym_POUND] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_extern] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_DOT_DOT] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_yield] = ACTIONS(1928), + [anon_sym_move] = ACTIONS(1928), + [sym_integer_literal] = ACTIONS(1926), + [aux_sym_string_literal_token1] = ACTIONS(1926), + [sym_char_literal] = ACTIONS(1926), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1928), + [sym_super] = ACTIONS(1928), + [sym_crate] = ACTIONS(1928), + [sym_metavariable] = ACTIONS(1926), + [sym_raw_string_literal] = ACTIONS(1926), + [sym_float_literal] = ACTIONS(1926), [sym_block_comment] = ACTIONS(3), }, [467] = { - [ts_builtin_sym_end] = ACTIONS(1948), - [sym_identifier] = ACTIONS(1950), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_macro_rules_BANG] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1948), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_u8] = ACTIONS(1950), - [anon_sym_i8] = ACTIONS(1950), - [anon_sym_u16] = ACTIONS(1950), - [anon_sym_i16] = ACTIONS(1950), - [anon_sym_u32] = ACTIONS(1950), - [anon_sym_i32] = ACTIONS(1950), - [anon_sym_u64] = ACTIONS(1950), - [anon_sym_i64] = ACTIONS(1950), - [anon_sym_u128] = ACTIONS(1950), - [anon_sym_i128] = ACTIONS(1950), - [anon_sym_isize] = ACTIONS(1950), - [anon_sym_usize] = ACTIONS(1950), - [anon_sym_f32] = ACTIONS(1950), - [anon_sym_f64] = ACTIONS(1950), - [anon_sym_bool] = ACTIONS(1950), - [anon_sym_str] = ACTIONS(1950), - [anon_sym_char] = ACTIONS(1950), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_async] = ACTIONS(1950), - [anon_sym_break] = ACTIONS(1950), - [anon_sym_const] = ACTIONS(1950), - [anon_sym_continue] = ACTIONS(1950), - [anon_sym_default] = ACTIONS(1950), - [anon_sym_enum] = ACTIONS(1950), - [anon_sym_fn] = ACTIONS(1950), - [anon_sym_for] = ACTIONS(1950), - [anon_sym_if] = ACTIONS(1950), - [anon_sym_impl] = ACTIONS(1950), - [anon_sym_let] = ACTIONS(1950), - [anon_sym_loop] = ACTIONS(1950), - [anon_sym_match] = ACTIONS(1950), - [anon_sym_mod] = ACTIONS(1950), - [anon_sym_pub] = ACTIONS(1950), - [anon_sym_return] = ACTIONS(1950), - [anon_sym_static] = ACTIONS(1950), - [anon_sym_struct] = ACTIONS(1950), - [anon_sym_trait] = ACTIONS(1950), - [anon_sym_type] = ACTIONS(1950), - [anon_sym_union] = ACTIONS(1950), - [anon_sym_unsafe] = ACTIONS(1950), - [anon_sym_use] = ACTIONS(1950), - [anon_sym_while] = ACTIONS(1950), - [anon_sym_POUND] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1948), - [anon_sym_COLON_COLON] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PIPE] = ACTIONS(1948), - [anon_sym_yield] = ACTIONS(1950), - [anon_sym_move] = ACTIONS(1950), - [sym_integer_literal] = ACTIONS(1948), - [aux_sym_string_literal_token1] = ACTIONS(1948), - [sym_char_literal] = ACTIONS(1948), - [anon_sym_true] = ACTIONS(1950), - [anon_sym_false] = ACTIONS(1950), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1950), - [sym_super] = ACTIONS(1950), - [sym_crate] = ACTIONS(1950), - [sym_metavariable] = ACTIONS(1948), - [sym_raw_string_literal] = ACTIONS(1948), - [sym_float_literal] = ACTIONS(1948), + [ts_builtin_sym_end] = ACTIONS(1930), + [sym_identifier] = ACTIONS(1932), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_macro_rules_BANG] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1930), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_u8] = ACTIONS(1932), + [anon_sym_i8] = ACTIONS(1932), + [anon_sym_u16] = ACTIONS(1932), + [anon_sym_i16] = ACTIONS(1932), + [anon_sym_u32] = ACTIONS(1932), + [anon_sym_i32] = ACTIONS(1932), + [anon_sym_u64] = ACTIONS(1932), + [anon_sym_i64] = ACTIONS(1932), + [anon_sym_u128] = ACTIONS(1932), + [anon_sym_i128] = ACTIONS(1932), + [anon_sym_isize] = ACTIONS(1932), + [anon_sym_usize] = ACTIONS(1932), + [anon_sym_f32] = ACTIONS(1932), + [anon_sym_f64] = ACTIONS(1932), + [anon_sym_bool] = ACTIONS(1932), + [anon_sym_str] = ACTIONS(1932), + [anon_sym_char] = ACTIONS(1932), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_fn] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_impl] = ACTIONS(1932), + [anon_sym_let] = ACTIONS(1932), + [anon_sym_loop] = ACTIONS(1932), + [anon_sym_match] = ACTIONS(1932), + [anon_sym_mod] = ACTIONS(1932), + [anon_sym_pub] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_trait] = ACTIONS(1932), + [anon_sym_type] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_unsafe] = ACTIONS(1932), + [anon_sym_use] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_POUND] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_COLON_COLON] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_DOT_DOT] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_yield] = ACTIONS(1932), + [anon_sym_move] = ACTIONS(1932), + [sym_integer_literal] = ACTIONS(1930), + [aux_sym_string_literal_token1] = ACTIONS(1930), + [sym_char_literal] = ACTIONS(1930), + [anon_sym_true] = ACTIONS(1932), + [anon_sym_false] = ACTIONS(1932), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_crate] = ACTIONS(1932), + [sym_metavariable] = ACTIONS(1930), + [sym_raw_string_literal] = ACTIONS(1930), + [sym_float_literal] = ACTIONS(1930), [sym_block_comment] = ACTIONS(3), }, [468] = { - [ts_builtin_sym_end] = ACTIONS(1952), - [sym_identifier] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_macro_rules_BANG] = ACTIONS(1952), - [anon_sym_LPAREN] = ACTIONS(1952), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1952), - [anon_sym_STAR] = ACTIONS(1952), - [anon_sym_u8] = ACTIONS(1954), - [anon_sym_i8] = ACTIONS(1954), - [anon_sym_u16] = ACTIONS(1954), - [anon_sym_i16] = ACTIONS(1954), - [anon_sym_u32] = ACTIONS(1954), - [anon_sym_i32] = ACTIONS(1954), - [anon_sym_u64] = ACTIONS(1954), - [anon_sym_i64] = ACTIONS(1954), - [anon_sym_u128] = ACTIONS(1954), - [anon_sym_i128] = ACTIONS(1954), - [anon_sym_isize] = ACTIONS(1954), - [anon_sym_usize] = ACTIONS(1954), - [anon_sym_f32] = ACTIONS(1954), - [anon_sym_f64] = ACTIONS(1954), - [anon_sym_bool] = ACTIONS(1954), - [anon_sym_str] = ACTIONS(1954), - [anon_sym_char] = ACTIONS(1954), - [anon_sym_SQUOTE] = ACTIONS(1954), - [anon_sym_async] = ACTIONS(1954), - [anon_sym_break] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_continue] = ACTIONS(1954), - [anon_sym_default] = ACTIONS(1954), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_fn] = ACTIONS(1954), - [anon_sym_for] = ACTIONS(1954), - [anon_sym_if] = ACTIONS(1954), - [anon_sym_impl] = ACTIONS(1954), - [anon_sym_let] = ACTIONS(1954), - [anon_sym_loop] = ACTIONS(1954), - [anon_sym_match] = ACTIONS(1954), - [anon_sym_mod] = ACTIONS(1954), - [anon_sym_pub] = ACTIONS(1954), - [anon_sym_return] = ACTIONS(1954), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_struct] = ACTIONS(1954), - [anon_sym_trait] = ACTIONS(1954), - [anon_sym_type] = ACTIONS(1954), - [anon_sym_union] = ACTIONS(1954), - [anon_sym_unsafe] = ACTIONS(1954), - [anon_sym_use] = ACTIONS(1954), - [anon_sym_while] = ACTIONS(1954), - [anon_sym_POUND] = ACTIONS(1952), - [anon_sym_BANG] = ACTIONS(1952), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1952), - [anon_sym_DOT_DOT] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [anon_sym_yield] = ACTIONS(1954), - [anon_sym_move] = ACTIONS(1954), - [sym_integer_literal] = ACTIONS(1952), - [aux_sym_string_literal_token1] = ACTIONS(1952), - [sym_char_literal] = ACTIONS(1952), - [anon_sym_true] = ACTIONS(1954), - [anon_sym_false] = ACTIONS(1954), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1954), - [sym_super] = ACTIONS(1954), - [sym_crate] = ACTIONS(1954), - [sym_metavariable] = ACTIONS(1952), - [sym_raw_string_literal] = ACTIONS(1952), - [sym_float_literal] = ACTIONS(1952), + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_identifier] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_macro_rules_BANG] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_u8] = ACTIONS(1936), + [anon_sym_i8] = ACTIONS(1936), + [anon_sym_u16] = ACTIONS(1936), + [anon_sym_i16] = ACTIONS(1936), + [anon_sym_u32] = ACTIONS(1936), + [anon_sym_i32] = ACTIONS(1936), + [anon_sym_u64] = ACTIONS(1936), + [anon_sym_i64] = ACTIONS(1936), + [anon_sym_u128] = ACTIONS(1936), + [anon_sym_i128] = ACTIONS(1936), + [anon_sym_isize] = ACTIONS(1936), + [anon_sym_usize] = ACTIONS(1936), + [anon_sym_f32] = ACTIONS(1936), + [anon_sym_f64] = ACTIONS(1936), + [anon_sym_bool] = ACTIONS(1936), + [anon_sym_str] = ACTIONS(1936), + [anon_sym_char] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_fn] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_impl] = ACTIONS(1936), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_loop] = ACTIONS(1936), + [anon_sym_match] = ACTIONS(1936), + [anon_sym_mod] = ACTIONS(1936), + [anon_sym_pub] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_trait] = ACTIONS(1936), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), + [anon_sym_unsafe] = ACTIONS(1936), + [anon_sym_use] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1934), + [anon_sym_COLON_COLON] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_DOT_DOT] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_PIPE] = ACTIONS(1934), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_move] = ACTIONS(1936), + [sym_integer_literal] = ACTIONS(1934), + [aux_sym_string_literal_token1] = ACTIONS(1934), + [sym_char_literal] = ACTIONS(1934), + [anon_sym_true] = ACTIONS(1936), + [anon_sym_false] = ACTIONS(1936), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1936), + [sym_super] = ACTIONS(1936), + [sym_crate] = ACTIONS(1936), + [sym_metavariable] = ACTIONS(1934), + [sym_raw_string_literal] = ACTIONS(1934), + [sym_float_literal] = ACTIONS(1934), [sym_block_comment] = ACTIONS(3), }, [469] = { - [ts_builtin_sym_end] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1958), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_macro_rules_BANG] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1956), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(1956), - [anon_sym_u8] = ACTIONS(1958), - [anon_sym_i8] = ACTIONS(1958), - [anon_sym_u16] = ACTIONS(1958), - [anon_sym_i16] = ACTIONS(1958), - [anon_sym_u32] = ACTIONS(1958), - [anon_sym_i32] = ACTIONS(1958), - [anon_sym_u64] = ACTIONS(1958), - [anon_sym_i64] = ACTIONS(1958), - [anon_sym_u128] = ACTIONS(1958), - [anon_sym_i128] = ACTIONS(1958), - [anon_sym_isize] = ACTIONS(1958), - [anon_sym_usize] = ACTIONS(1958), - [anon_sym_f32] = ACTIONS(1958), - [anon_sym_f64] = ACTIONS(1958), - [anon_sym_bool] = ACTIONS(1958), - [anon_sym_str] = ACTIONS(1958), - [anon_sym_char] = ACTIONS(1958), - [anon_sym_SQUOTE] = ACTIONS(1958), - [anon_sym_async] = ACTIONS(1958), - [anon_sym_break] = ACTIONS(1958), - [anon_sym_const] = ACTIONS(1958), - [anon_sym_continue] = ACTIONS(1958), - [anon_sym_default] = ACTIONS(1958), - [anon_sym_enum] = ACTIONS(1958), - [anon_sym_fn] = ACTIONS(1958), - [anon_sym_for] = ACTIONS(1958), - [anon_sym_if] = ACTIONS(1958), - [anon_sym_impl] = ACTIONS(1958), - [anon_sym_let] = ACTIONS(1958), - [anon_sym_loop] = ACTIONS(1958), - [anon_sym_match] = ACTIONS(1958), - [anon_sym_mod] = ACTIONS(1958), - [anon_sym_pub] = ACTIONS(1958), - [anon_sym_return] = ACTIONS(1958), - [anon_sym_static] = ACTIONS(1958), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_trait] = ACTIONS(1958), - [anon_sym_type] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1958), - [anon_sym_unsafe] = ACTIONS(1958), - [anon_sym_use] = ACTIONS(1958), - [anon_sym_while] = ACTIONS(1958), - [anon_sym_POUND] = ACTIONS(1956), - [anon_sym_BANG] = ACTIONS(1956), - [anon_sym_extern] = ACTIONS(1958), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_COLON_COLON] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1956), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_yield] = ACTIONS(1958), - [anon_sym_move] = ACTIONS(1958), - [sym_integer_literal] = ACTIONS(1956), - [aux_sym_string_literal_token1] = ACTIONS(1956), - [sym_char_literal] = ACTIONS(1956), - [anon_sym_true] = ACTIONS(1958), - [anon_sym_false] = ACTIONS(1958), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1958), - [sym_super] = ACTIONS(1958), - [sym_crate] = ACTIONS(1958), - [sym_metavariable] = ACTIONS(1956), - [sym_raw_string_literal] = ACTIONS(1956), - [sym_float_literal] = ACTIONS(1956), + [ts_builtin_sym_end] = ACTIONS(1938), + [sym_identifier] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_macro_rules_BANG] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_u8] = ACTIONS(1940), + [anon_sym_i8] = ACTIONS(1940), + [anon_sym_u16] = ACTIONS(1940), + [anon_sym_i16] = ACTIONS(1940), + [anon_sym_u32] = ACTIONS(1940), + [anon_sym_i32] = ACTIONS(1940), + [anon_sym_u64] = ACTIONS(1940), + [anon_sym_i64] = ACTIONS(1940), + [anon_sym_u128] = ACTIONS(1940), + [anon_sym_i128] = ACTIONS(1940), + [anon_sym_isize] = ACTIONS(1940), + [anon_sym_usize] = ACTIONS(1940), + [anon_sym_f32] = ACTIONS(1940), + [anon_sym_f64] = ACTIONS(1940), + [anon_sym_bool] = ACTIONS(1940), + [anon_sym_str] = ACTIONS(1940), + [anon_sym_char] = ACTIONS(1940), + [anon_sym_SQUOTE] = ACTIONS(1940), + [anon_sym_async] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_fn] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_impl] = ACTIONS(1940), + [anon_sym_let] = ACTIONS(1940), + [anon_sym_loop] = ACTIONS(1940), + [anon_sym_match] = ACTIONS(1940), + [anon_sym_mod] = ACTIONS(1940), + [anon_sym_pub] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_trait] = ACTIONS(1940), + [anon_sym_type] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_unsafe] = ACTIONS(1940), + [anon_sym_use] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1938), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_yield] = ACTIONS(1940), + [anon_sym_move] = ACTIONS(1940), + [sym_integer_literal] = ACTIONS(1938), + [aux_sym_string_literal_token1] = ACTIONS(1938), + [sym_char_literal] = ACTIONS(1938), + [anon_sym_true] = ACTIONS(1940), + [anon_sym_false] = ACTIONS(1940), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_crate] = ACTIONS(1940), + [sym_metavariable] = ACTIONS(1938), + [sym_raw_string_literal] = ACTIONS(1938), + [sym_float_literal] = ACTIONS(1938), [sym_block_comment] = ACTIONS(3), }, [470] = { - [ts_builtin_sym_end] = ACTIONS(1960), - [sym_identifier] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1960), - [anon_sym_macro_rules_BANG] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1960), - [anon_sym_LBRACE] = ACTIONS(1960), - [anon_sym_RBRACE] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1960), - [anon_sym_STAR] = ACTIONS(1960), - [anon_sym_u8] = ACTIONS(1962), - [anon_sym_i8] = ACTIONS(1962), - [anon_sym_u16] = ACTIONS(1962), - [anon_sym_i16] = ACTIONS(1962), - [anon_sym_u32] = ACTIONS(1962), - [anon_sym_i32] = ACTIONS(1962), - [anon_sym_u64] = ACTIONS(1962), - [anon_sym_i64] = ACTIONS(1962), - [anon_sym_u128] = ACTIONS(1962), - [anon_sym_i128] = ACTIONS(1962), - [anon_sym_isize] = ACTIONS(1962), - [anon_sym_usize] = ACTIONS(1962), - [anon_sym_f32] = ACTIONS(1962), - [anon_sym_f64] = ACTIONS(1962), - [anon_sym_bool] = ACTIONS(1962), - [anon_sym_str] = ACTIONS(1962), - [anon_sym_char] = ACTIONS(1962), - [anon_sym_SQUOTE] = ACTIONS(1962), - [anon_sym_async] = ACTIONS(1962), - [anon_sym_break] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_continue] = ACTIONS(1962), - [anon_sym_default] = ACTIONS(1962), - [anon_sym_enum] = ACTIONS(1962), - [anon_sym_fn] = ACTIONS(1962), - [anon_sym_for] = ACTIONS(1962), - [anon_sym_if] = ACTIONS(1962), - [anon_sym_impl] = ACTIONS(1962), - [anon_sym_let] = ACTIONS(1962), - [anon_sym_loop] = ACTIONS(1962), - [anon_sym_match] = ACTIONS(1962), - [anon_sym_mod] = ACTIONS(1962), - [anon_sym_pub] = ACTIONS(1962), - [anon_sym_return] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_struct] = ACTIONS(1962), - [anon_sym_trait] = ACTIONS(1962), - [anon_sym_type] = ACTIONS(1962), - [anon_sym_union] = ACTIONS(1962), - [anon_sym_unsafe] = ACTIONS(1962), - [anon_sym_use] = ACTIONS(1962), - [anon_sym_while] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(1960), - [anon_sym_BANG] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1960), - [anon_sym_COLON_COLON] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_DOT_DOT] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_PIPE] = ACTIONS(1960), - [anon_sym_yield] = ACTIONS(1962), - [anon_sym_move] = ACTIONS(1962), - [sym_integer_literal] = ACTIONS(1960), - [aux_sym_string_literal_token1] = ACTIONS(1960), - [sym_char_literal] = ACTIONS(1960), - [anon_sym_true] = ACTIONS(1962), - [anon_sym_false] = ACTIONS(1962), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1962), - [sym_super] = ACTIONS(1962), - [sym_crate] = ACTIONS(1962), - [sym_metavariable] = ACTIONS(1960), - [sym_raw_string_literal] = ACTIONS(1960), - [sym_float_literal] = ACTIONS(1960), + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1944), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_macro_rules_BANG] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_u8] = ACTIONS(1944), + [anon_sym_i8] = ACTIONS(1944), + [anon_sym_u16] = ACTIONS(1944), + [anon_sym_i16] = ACTIONS(1944), + [anon_sym_u32] = ACTIONS(1944), + [anon_sym_i32] = ACTIONS(1944), + [anon_sym_u64] = ACTIONS(1944), + [anon_sym_i64] = ACTIONS(1944), + [anon_sym_u128] = ACTIONS(1944), + [anon_sym_i128] = ACTIONS(1944), + [anon_sym_isize] = ACTIONS(1944), + [anon_sym_usize] = ACTIONS(1944), + [anon_sym_f32] = ACTIONS(1944), + [anon_sym_f64] = ACTIONS(1944), + [anon_sym_bool] = ACTIONS(1944), + [anon_sym_str] = ACTIONS(1944), + [anon_sym_char] = ACTIONS(1944), + [anon_sym_SQUOTE] = ACTIONS(1944), + [anon_sym_async] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_enum] = ACTIONS(1944), + [anon_sym_fn] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_impl] = ACTIONS(1944), + [anon_sym_let] = ACTIONS(1944), + [anon_sym_loop] = ACTIONS(1944), + [anon_sym_match] = ACTIONS(1944), + [anon_sym_mod] = ACTIONS(1944), + [anon_sym_pub] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_struct] = ACTIONS(1944), + [anon_sym_trait] = ACTIONS(1944), + [anon_sym_type] = ACTIONS(1944), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_unsafe] = ACTIONS(1944), + [anon_sym_use] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_DOT_DOT] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_yield] = ACTIONS(1944), + [anon_sym_move] = ACTIONS(1944), + [sym_integer_literal] = ACTIONS(1942), + [aux_sym_string_literal_token1] = ACTIONS(1942), + [sym_char_literal] = ACTIONS(1942), + [anon_sym_true] = ACTIONS(1944), + [anon_sym_false] = ACTIONS(1944), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1944), + [sym_super] = ACTIONS(1944), + [sym_crate] = ACTIONS(1944), + [sym_metavariable] = ACTIONS(1942), + [sym_raw_string_literal] = ACTIONS(1942), + [sym_float_literal] = ACTIONS(1942), [sym_block_comment] = ACTIONS(3), }, [471] = { - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_macro_rules_BANG] = ACTIONS(1964), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_u8] = ACTIONS(1966), - [anon_sym_i8] = ACTIONS(1966), - [anon_sym_u16] = ACTIONS(1966), - [anon_sym_i16] = ACTIONS(1966), - [anon_sym_u32] = ACTIONS(1966), - [anon_sym_i32] = ACTIONS(1966), - [anon_sym_u64] = ACTIONS(1966), - [anon_sym_i64] = ACTIONS(1966), - [anon_sym_u128] = ACTIONS(1966), - [anon_sym_i128] = ACTIONS(1966), - [anon_sym_isize] = ACTIONS(1966), - [anon_sym_usize] = ACTIONS(1966), - [anon_sym_f32] = ACTIONS(1966), - [anon_sym_f64] = ACTIONS(1966), - [anon_sym_bool] = ACTIONS(1966), - [anon_sym_str] = ACTIONS(1966), - [anon_sym_char] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_break] = ACTIONS(1966), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_continue] = ACTIONS(1966), - [anon_sym_default] = ACTIONS(1966), - [anon_sym_enum] = ACTIONS(1966), - [anon_sym_fn] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_impl] = ACTIONS(1966), - [anon_sym_let] = ACTIONS(1966), - [anon_sym_loop] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_mod] = ACTIONS(1966), - [anon_sym_pub] = ACTIONS(1966), - [anon_sym_return] = ACTIONS(1966), - [anon_sym_static] = ACTIONS(1966), - [anon_sym_struct] = ACTIONS(1966), - [anon_sym_trait] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_union] = ACTIONS(1966), - [anon_sym_unsafe] = ACTIONS(1966), - [anon_sym_use] = ACTIONS(1966), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_POUND] = ACTIONS(1964), - [anon_sym_BANG] = ACTIONS(1964), - [anon_sym_extern] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1964), - [anon_sym_COLON_COLON] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [sym_integer_literal] = ACTIONS(1964), - [aux_sym_string_literal_token1] = ACTIONS(1964), - [sym_char_literal] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1966), - [sym_super] = ACTIONS(1966), - [sym_crate] = ACTIONS(1966), - [sym_metavariable] = ACTIONS(1964), - [sym_raw_string_literal] = ACTIONS(1964), - [sym_float_literal] = ACTIONS(1964), + [ts_builtin_sym_end] = ACTIONS(1946), + [sym_identifier] = ACTIONS(1948), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_macro_rules_BANG] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_u8] = ACTIONS(1948), + [anon_sym_i8] = ACTIONS(1948), + [anon_sym_u16] = ACTIONS(1948), + [anon_sym_i16] = ACTIONS(1948), + [anon_sym_u32] = ACTIONS(1948), + [anon_sym_i32] = ACTIONS(1948), + [anon_sym_u64] = ACTIONS(1948), + [anon_sym_i64] = ACTIONS(1948), + [anon_sym_u128] = ACTIONS(1948), + [anon_sym_i128] = ACTIONS(1948), + [anon_sym_isize] = ACTIONS(1948), + [anon_sym_usize] = ACTIONS(1948), + [anon_sym_f32] = ACTIONS(1948), + [anon_sym_f64] = ACTIONS(1948), + [anon_sym_bool] = ACTIONS(1948), + [anon_sym_str] = ACTIONS(1948), + [anon_sym_char] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_async] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_fn] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_impl] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(1948), + [anon_sym_loop] = ACTIONS(1948), + [anon_sym_match] = ACTIONS(1948), + [anon_sym_mod] = ACTIONS(1948), + [anon_sym_pub] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_trait] = ACTIONS(1948), + [anon_sym_type] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_unsafe] = ACTIONS(1948), + [anon_sym_use] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1946), + [anon_sym_COLON_COLON] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_DOT_DOT] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_yield] = ACTIONS(1948), + [anon_sym_move] = ACTIONS(1948), + [sym_integer_literal] = ACTIONS(1946), + [aux_sym_string_literal_token1] = ACTIONS(1946), + [sym_char_literal] = ACTIONS(1946), + [anon_sym_true] = ACTIONS(1948), + [anon_sym_false] = ACTIONS(1948), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1946), + [sym_raw_string_literal] = ACTIONS(1946), + [sym_float_literal] = ACTIONS(1946), [sym_block_comment] = ACTIONS(3), }, [472] = { - [ts_builtin_sym_end] = ACTIONS(1968), - [sym_identifier] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_macro_rules_BANG] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1968), - [anon_sym_RBRACE] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1968), - [anon_sym_STAR] = ACTIONS(1968), - [anon_sym_u8] = ACTIONS(1970), - [anon_sym_i8] = ACTIONS(1970), - [anon_sym_u16] = ACTIONS(1970), - [anon_sym_i16] = ACTIONS(1970), - [anon_sym_u32] = ACTIONS(1970), - [anon_sym_i32] = ACTIONS(1970), - [anon_sym_u64] = ACTIONS(1970), - [anon_sym_i64] = ACTIONS(1970), - [anon_sym_u128] = ACTIONS(1970), - [anon_sym_i128] = ACTIONS(1970), - [anon_sym_isize] = ACTIONS(1970), - [anon_sym_usize] = ACTIONS(1970), - [anon_sym_f32] = ACTIONS(1970), - [anon_sym_f64] = ACTIONS(1970), - [anon_sym_bool] = ACTIONS(1970), - [anon_sym_str] = ACTIONS(1970), - [anon_sym_char] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1970), - [anon_sym_async] = ACTIONS(1970), - [anon_sym_break] = ACTIONS(1970), - [anon_sym_const] = ACTIONS(1970), - [anon_sym_continue] = ACTIONS(1970), - [anon_sym_default] = ACTIONS(1970), - [anon_sym_enum] = ACTIONS(1970), - [anon_sym_fn] = ACTIONS(1970), - [anon_sym_for] = ACTIONS(1970), - [anon_sym_if] = ACTIONS(1970), - [anon_sym_impl] = ACTIONS(1970), - [anon_sym_let] = ACTIONS(1970), - [anon_sym_loop] = ACTIONS(1970), - [anon_sym_match] = ACTIONS(1970), - [anon_sym_mod] = ACTIONS(1970), - [anon_sym_pub] = ACTIONS(1970), - [anon_sym_return] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1970), - [anon_sym_struct] = ACTIONS(1970), - [anon_sym_trait] = ACTIONS(1970), - [anon_sym_type] = ACTIONS(1970), - [anon_sym_union] = ACTIONS(1970), - [anon_sym_unsafe] = ACTIONS(1970), - [anon_sym_use] = ACTIONS(1970), - [anon_sym_while] = ACTIONS(1970), - [anon_sym_POUND] = ACTIONS(1968), - [anon_sym_BANG] = ACTIONS(1968), - [anon_sym_extern] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1968), - [anon_sym_COLON_COLON] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_DOT_DOT] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1970), - [anon_sym_move] = ACTIONS(1970), - [sym_integer_literal] = ACTIONS(1968), - [aux_sym_string_literal_token1] = ACTIONS(1968), - [sym_char_literal] = ACTIONS(1968), - [anon_sym_true] = ACTIONS(1970), - [anon_sym_false] = ACTIONS(1970), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1970), - [sym_super] = ACTIONS(1970), - [sym_crate] = ACTIONS(1970), - [sym_metavariable] = ACTIONS(1968), - [sym_raw_string_literal] = ACTIONS(1968), - [sym_float_literal] = ACTIONS(1968), + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_macro_rules_BANG] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_u8] = ACTIONS(1952), + [anon_sym_i8] = ACTIONS(1952), + [anon_sym_u16] = ACTIONS(1952), + [anon_sym_i16] = ACTIONS(1952), + [anon_sym_u32] = ACTIONS(1952), + [anon_sym_i32] = ACTIONS(1952), + [anon_sym_u64] = ACTIONS(1952), + [anon_sym_i64] = ACTIONS(1952), + [anon_sym_u128] = ACTIONS(1952), + [anon_sym_i128] = ACTIONS(1952), + [anon_sym_isize] = ACTIONS(1952), + [anon_sym_usize] = ACTIONS(1952), + [anon_sym_f32] = ACTIONS(1952), + [anon_sym_f64] = ACTIONS(1952), + [anon_sym_bool] = ACTIONS(1952), + [anon_sym_str] = ACTIONS(1952), + [anon_sym_char] = ACTIONS(1952), + [anon_sym_SQUOTE] = ACTIONS(1952), + [anon_sym_async] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_const] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_default] = ACTIONS(1952), + [anon_sym_enum] = ACTIONS(1952), + [anon_sym_fn] = ACTIONS(1952), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_impl] = ACTIONS(1952), + [anon_sym_let] = ACTIONS(1952), + [anon_sym_loop] = ACTIONS(1952), + [anon_sym_match] = ACTIONS(1952), + [anon_sym_mod] = ACTIONS(1952), + [anon_sym_pub] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_static] = ACTIONS(1952), + [anon_sym_struct] = ACTIONS(1952), + [anon_sym_trait] = ACTIONS(1952), + [anon_sym_type] = ACTIONS(1952), + [anon_sym_union] = ACTIONS(1952), + [anon_sym_unsafe] = ACTIONS(1952), + [anon_sym_use] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1950), + [anon_sym_COLON_COLON] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_DOT_DOT] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1950), + [anon_sym_PIPE] = ACTIONS(1950), + [anon_sym_yield] = ACTIONS(1952), + [anon_sym_move] = ACTIONS(1952), + [sym_integer_literal] = ACTIONS(1950), + [aux_sym_string_literal_token1] = ACTIONS(1950), + [sym_char_literal] = ACTIONS(1950), + [anon_sym_true] = ACTIONS(1952), + [anon_sym_false] = ACTIONS(1952), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1952), + [sym_super] = ACTIONS(1952), + [sym_crate] = ACTIONS(1952), + [sym_metavariable] = ACTIONS(1950), + [sym_raw_string_literal] = ACTIONS(1950), + [sym_float_literal] = ACTIONS(1950), [sym_block_comment] = ACTIONS(3), }, [473] = { - [ts_builtin_sym_end] = ACTIONS(1972), - [sym_identifier] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_macro_rules_BANG] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_LBRACK] = ACTIONS(1972), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_u8] = ACTIONS(1974), - [anon_sym_i8] = ACTIONS(1974), - [anon_sym_u16] = ACTIONS(1974), - [anon_sym_i16] = ACTIONS(1974), - [anon_sym_u32] = ACTIONS(1974), - [anon_sym_i32] = ACTIONS(1974), - [anon_sym_u64] = ACTIONS(1974), - [anon_sym_i64] = ACTIONS(1974), - [anon_sym_u128] = ACTIONS(1974), - [anon_sym_i128] = ACTIONS(1974), - [anon_sym_isize] = ACTIONS(1974), - [anon_sym_usize] = ACTIONS(1974), - [anon_sym_f32] = ACTIONS(1974), - [anon_sym_f64] = ACTIONS(1974), - [anon_sym_bool] = ACTIONS(1974), - [anon_sym_str] = ACTIONS(1974), - [anon_sym_char] = ACTIONS(1974), - [anon_sym_SQUOTE] = ACTIONS(1974), - [anon_sym_async] = ACTIONS(1974), - [anon_sym_break] = ACTIONS(1974), - [anon_sym_const] = ACTIONS(1974), - [anon_sym_continue] = ACTIONS(1974), - [anon_sym_default] = ACTIONS(1974), - [anon_sym_enum] = ACTIONS(1974), - [anon_sym_fn] = ACTIONS(1974), - [anon_sym_for] = ACTIONS(1974), - [anon_sym_if] = ACTIONS(1974), - [anon_sym_impl] = ACTIONS(1974), - [anon_sym_let] = ACTIONS(1974), - [anon_sym_loop] = ACTIONS(1974), - [anon_sym_match] = ACTIONS(1974), - [anon_sym_mod] = ACTIONS(1974), - [anon_sym_pub] = ACTIONS(1974), - [anon_sym_return] = ACTIONS(1974), - [anon_sym_static] = ACTIONS(1974), - [anon_sym_struct] = ACTIONS(1974), - [anon_sym_trait] = ACTIONS(1974), - [anon_sym_type] = ACTIONS(1974), - [anon_sym_union] = ACTIONS(1974), - [anon_sym_unsafe] = ACTIONS(1974), - [anon_sym_use] = ACTIONS(1974), - [anon_sym_while] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1972), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1972), - [anon_sym_COLON_COLON] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_yield] = ACTIONS(1974), - [anon_sym_move] = ACTIONS(1974), - [sym_integer_literal] = ACTIONS(1972), - [aux_sym_string_literal_token1] = ACTIONS(1972), - [sym_char_literal] = ACTIONS(1972), - [anon_sym_true] = ACTIONS(1974), - [anon_sym_false] = ACTIONS(1974), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1974), - [sym_super] = ACTIONS(1974), - [sym_crate] = ACTIONS(1974), - [sym_metavariable] = ACTIONS(1972), - [sym_raw_string_literal] = ACTIONS(1972), - [sym_float_literal] = ACTIONS(1972), + [ts_builtin_sym_end] = ACTIONS(1954), + [sym_identifier] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_macro_rules_BANG] = ACTIONS(1954), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_u8] = ACTIONS(1956), + [anon_sym_i8] = ACTIONS(1956), + [anon_sym_u16] = ACTIONS(1956), + [anon_sym_i16] = ACTIONS(1956), + [anon_sym_u32] = ACTIONS(1956), + [anon_sym_i32] = ACTIONS(1956), + [anon_sym_u64] = ACTIONS(1956), + [anon_sym_i64] = ACTIONS(1956), + [anon_sym_u128] = ACTIONS(1956), + [anon_sym_i128] = ACTIONS(1956), + [anon_sym_isize] = ACTIONS(1956), + [anon_sym_usize] = ACTIONS(1956), + [anon_sym_f32] = ACTIONS(1956), + [anon_sym_f64] = ACTIONS(1956), + [anon_sym_bool] = ACTIONS(1956), + [anon_sym_str] = ACTIONS(1956), + [anon_sym_char] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1956), + [anon_sym_async] = ACTIONS(1956), + [anon_sym_break] = ACTIONS(1956), + [anon_sym_const] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1956), + [anon_sym_enum] = ACTIONS(1956), + [anon_sym_fn] = ACTIONS(1956), + [anon_sym_for] = ACTIONS(1956), + [anon_sym_if] = ACTIONS(1956), + [anon_sym_impl] = ACTIONS(1956), + [anon_sym_let] = ACTIONS(1956), + [anon_sym_loop] = ACTIONS(1956), + [anon_sym_match] = ACTIONS(1956), + [anon_sym_mod] = ACTIONS(1956), + [anon_sym_pub] = ACTIONS(1956), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_static] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1956), + [anon_sym_trait] = ACTIONS(1956), + [anon_sym_type] = ACTIONS(1956), + [anon_sym_union] = ACTIONS(1956), + [anon_sym_unsafe] = ACTIONS(1956), + [anon_sym_use] = ACTIONS(1956), + [anon_sym_while] = ACTIONS(1956), + [anon_sym_POUND] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_extern] = ACTIONS(1956), + [anon_sym_LT] = ACTIONS(1954), + [anon_sym_COLON_COLON] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_DOT_DOT] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_PIPE] = ACTIONS(1954), + [anon_sym_yield] = ACTIONS(1956), + [anon_sym_move] = ACTIONS(1956), + [sym_integer_literal] = ACTIONS(1954), + [aux_sym_string_literal_token1] = ACTIONS(1954), + [sym_char_literal] = ACTIONS(1954), + [anon_sym_true] = ACTIONS(1956), + [anon_sym_false] = ACTIONS(1956), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1956), + [sym_super] = ACTIONS(1956), + [sym_crate] = ACTIONS(1956), + [sym_metavariable] = ACTIONS(1954), + [sym_raw_string_literal] = ACTIONS(1954), + [sym_float_literal] = ACTIONS(1954), [sym_block_comment] = ACTIONS(3), }, [474] = { - [ts_builtin_sym_end] = ACTIONS(1976), - [sym_identifier] = ACTIONS(1978), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_macro_rules_BANG] = ACTIONS(1976), - [anon_sym_LPAREN] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1976), - [anon_sym_RBRACE] = ACTIONS(1976), - [anon_sym_LBRACK] = ACTIONS(1976), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_u8] = ACTIONS(1978), - [anon_sym_i8] = ACTIONS(1978), - [anon_sym_u16] = ACTIONS(1978), - [anon_sym_i16] = ACTIONS(1978), - [anon_sym_u32] = ACTIONS(1978), - [anon_sym_i32] = ACTIONS(1978), - [anon_sym_u64] = ACTIONS(1978), - [anon_sym_i64] = ACTIONS(1978), - [anon_sym_u128] = ACTIONS(1978), - [anon_sym_i128] = ACTIONS(1978), - [anon_sym_isize] = ACTIONS(1978), - [anon_sym_usize] = ACTIONS(1978), - [anon_sym_f32] = ACTIONS(1978), - [anon_sym_f64] = ACTIONS(1978), - [anon_sym_bool] = ACTIONS(1978), - [anon_sym_str] = ACTIONS(1978), - [anon_sym_char] = ACTIONS(1978), - [anon_sym_SQUOTE] = ACTIONS(1978), - [anon_sym_async] = ACTIONS(1978), - [anon_sym_break] = ACTIONS(1978), - [anon_sym_const] = ACTIONS(1978), - [anon_sym_continue] = ACTIONS(1978), - [anon_sym_default] = ACTIONS(1978), - [anon_sym_enum] = ACTIONS(1978), - [anon_sym_fn] = ACTIONS(1978), - [anon_sym_for] = ACTIONS(1978), - [anon_sym_if] = ACTIONS(1978), - [anon_sym_impl] = ACTIONS(1978), - [anon_sym_let] = ACTIONS(1978), - [anon_sym_loop] = ACTIONS(1978), - [anon_sym_match] = ACTIONS(1978), - [anon_sym_mod] = ACTIONS(1978), - [anon_sym_pub] = ACTIONS(1978), - [anon_sym_return] = ACTIONS(1978), - [anon_sym_static] = ACTIONS(1978), - [anon_sym_struct] = ACTIONS(1978), - [anon_sym_trait] = ACTIONS(1978), - [anon_sym_type] = ACTIONS(1978), - [anon_sym_union] = ACTIONS(1978), - [anon_sym_unsafe] = ACTIONS(1978), - [anon_sym_use] = ACTIONS(1978), - [anon_sym_while] = ACTIONS(1978), - [anon_sym_POUND] = ACTIONS(1976), - [anon_sym_BANG] = ACTIONS(1976), - [anon_sym_extern] = ACTIONS(1978), - [anon_sym_LT] = ACTIONS(1976), - [anon_sym_COLON_COLON] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym_DOT_DOT] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1976), - [anon_sym_PIPE] = ACTIONS(1976), - [anon_sym_yield] = ACTIONS(1978), - [anon_sym_move] = ACTIONS(1978), - [sym_integer_literal] = ACTIONS(1976), - [aux_sym_string_literal_token1] = ACTIONS(1976), - [sym_char_literal] = ACTIONS(1976), - [anon_sym_true] = ACTIONS(1978), - [anon_sym_false] = ACTIONS(1978), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1978), - [sym_super] = ACTIONS(1978), - [sym_crate] = ACTIONS(1978), - [sym_metavariable] = ACTIONS(1976), - [sym_raw_string_literal] = ACTIONS(1976), - [sym_float_literal] = ACTIONS(1976), + [ts_builtin_sym_end] = ACTIONS(1958), + [sym_identifier] = ACTIONS(1960), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_macro_rules_BANG] = ACTIONS(1958), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_RBRACE] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_STAR] = ACTIONS(1958), + [anon_sym_u8] = ACTIONS(1960), + [anon_sym_i8] = ACTIONS(1960), + [anon_sym_u16] = ACTIONS(1960), + [anon_sym_i16] = ACTIONS(1960), + [anon_sym_u32] = ACTIONS(1960), + [anon_sym_i32] = ACTIONS(1960), + [anon_sym_u64] = ACTIONS(1960), + [anon_sym_i64] = ACTIONS(1960), + [anon_sym_u128] = ACTIONS(1960), + [anon_sym_i128] = ACTIONS(1960), + [anon_sym_isize] = ACTIONS(1960), + [anon_sym_usize] = ACTIONS(1960), + [anon_sym_f32] = ACTIONS(1960), + [anon_sym_f64] = ACTIONS(1960), + [anon_sym_bool] = ACTIONS(1960), + [anon_sym_str] = ACTIONS(1960), + [anon_sym_char] = ACTIONS(1960), + [anon_sym_SQUOTE] = ACTIONS(1960), + [anon_sym_async] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_default] = ACTIONS(1960), + [anon_sym_enum] = ACTIONS(1960), + [anon_sym_fn] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_impl] = ACTIONS(1960), + [anon_sym_let] = ACTIONS(1960), + [anon_sym_loop] = ACTIONS(1960), + [anon_sym_match] = ACTIONS(1960), + [anon_sym_mod] = ACTIONS(1960), + [anon_sym_pub] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_static] = ACTIONS(1960), + [anon_sym_struct] = ACTIONS(1960), + [anon_sym_trait] = ACTIONS(1960), + [anon_sym_type] = ACTIONS(1960), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_unsafe] = ACTIONS(1960), + [anon_sym_use] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(1958), + [anon_sym_BANG] = ACTIONS(1958), + [anon_sym_extern] = ACTIONS(1960), + [anon_sym_LT] = ACTIONS(1958), + [anon_sym_COLON_COLON] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1958), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_DASH] = ACTIONS(1958), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_yield] = ACTIONS(1960), + [anon_sym_move] = ACTIONS(1960), + [sym_integer_literal] = ACTIONS(1958), + [aux_sym_string_literal_token1] = ACTIONS(1958), + [sym_char_literal] = ACTIONS(1958), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1960), + [sym_super] = ACTIONS(1960), + [sym_crate] = ACTIONS(1960), + [sym_metavariable] = ACTIONS(1958), + [sym_raw_string_literal] = ACTIONS(1958), + [sym_float_literal] = ACTIONS(1958), [sym_block_comment] = ACTIONS(3), }, [475] = { - [ts_builtin_sym_end] = ACTIONS(1980), - [sym_identifier] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_macro_rules_BANG] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1980), - [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_RBRACE] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(1980), - [anon_sym_u8] = ACTIONS(1982), - [anon_sym_i8] = ACTIONS(1982), - [anon_sym_u16] = ACTIONS(1982), - [anon_sym_i16] = ACTIONS(1982), - [anon_sym_u32] = ACTIONS(1982), - [anon_sym_i32] = ACTIONS(1982), - [anon_sym_u64] = ACTIONS(1982), - [anon_sym_i64] = ACTIONS(1982), - [anon_sym_u128] = ACTIONS(1982), - [anon_sym_i128] = ACTIONS(1982), - [anon_sym_isize] = ACTIONS(1982), - [anon_sym_usize] = ACTIONS(1982), - [anon_sym_f32] = ACTIONS(1982), - [anon_sym_f64] = ACTIONS(1982), - [anon_sym_bool] = ACTIONS(1982), - [anon_sym_str] = ACTIONS(1982), - [anon_sym_char] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1982), - [anon_sym_async] = ACTIONS(1982), - [anon_sym_break] = ACTIONS(1982), - [anon_sym_const] = ACTIONS(1982), - [anon_sym_continue] = ACTIONS(1982), - [anon_sym_default] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1982), - [anon_sym_fn] = ACTIONS(1982), - [anon_sym_for] = ACTIONS(1982), - [anon_sym_if] = ACTIONS(1982), - [anon_sym_impl] = ACTIONS(1982), - [anon_sym_let] = ACTIONS(1982), - [anon_sym_loop] = ACTIONS(1982), - [anon_sym_match] = ACTIONS(1982), - [anon_sym_mod] = ACTIONS(1982), - [anon_sym_pub] = ACTIONS(1982), - [anon_sym_return] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1982), - [anon_sym_struct] = ACTIONS(1982), - [anon_sym_trait] = ACTIONS(1982), - [anon_sym_type] = ACTIONS(1982), - [anon_sym_union] = ACTIONS(1982), - [anon_sym_unsafe] = ACTIONS(1982), - [anon_sym_use] = ACTIONS(1982), - [anon_sym_while] = ACTIONS(1982), - [anon_sym_POUND] = ACTIONS(1980), - [anon_sym_BANG] = ACTIONS(1980), - [anon_sym_extern] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_DOT_DOT] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_yield] = ACTIONS(1982), - [anon_sym_move] = ACTIONS(1982), - [sym_integer_literal] = ACTIONS(1980), - [aux_sym_string_literal_token1] = ACTIONS(1980), - [sym_char_literal] = ACTIONS(1980), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1982), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1982), - [sym_super] = ACTIONS(1982), - [sym_crate] = ACTIONS(1982), - [sym_metavariable] = ACTIONS(1980), - [sym_raw_string_literal] = ACTIONS(1980), - [sym_float_literal] = ACTIONS(1980), + [ts_builtin_sym_end] = ACTIONS(1962), + [sym_identifier] = ACTIONS(1964), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_macro_rules_BANG] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_RBRACE] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1962), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_u8] = ACTIONS(1964), + [anon_sym_i8] = ACTIONS(1964), + [anon_sym_u16] = ACTIONS(1964), + [anon_sym_i16] = ACTIONS(1964), + [anon_sym_u32] = ACTIONS(1964), + [anon_sym_i32] = ACTIONS(1964), + [anon_sym_u64] = ACTIONS(1964), + [anon_sym_i64] = ACTIONS(1964), + [anon_sym_u128] = ACTIONS(1964), + [anon_sym_i128] = ACTIONS(1964), + [anon_sym_isize] = ACTIONS(1964), + [anon_sym_usize] = ACTIONS(1964), + [anon_sym_f32] = ACTIONS(1964), + [anon_sym_f64] = ACTIONS(1964), + [anon_sym_bool] = ACTIONS(1964), + [anon_sym_str] = ACTIONS(1964), + [anon_sym_char] = ACTIONS(1964), + [anon_sym_SQUOTE] = ACTIONS(1964), + [anon_sym_async] = ACTIONS(1964), + [anon_sym_break] = ACTIONS(1964), + [anon_sym_const] = ACTIONS(1964), + [anon_sym_continue] = ACTIONS(1964), + [anon_sym_default] = ACTIONS(1964), + [anon_sym_enum] = ACTIONS(1964), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_if] = ACTIONS(1964), + [anon_sym_impl] = ACTIONS(1964), + [anon_sym_let] = ACTIONS(1964), + [anon_sym_loop] = ACTIONS(1964), + [anon_sym_match] = ACTIONS(1964), + [anon_sym_mod] = ACTIONS(1964), + [anon_sym_pub] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1964), + [anon_sym_static] = ACTIONS(1964), + [anon_sym_struct] = ACTIONS(1964), + [anon_sym_trait] = ACTIONS(1964), + [anon_sym_type] = ACTIONS(1964), + [anon_sym_union] = ACTIONS(1964), + [anon_sym_unsafe] = ACTIONS(1964), + [anon_sym_use] = ACTIONS(1964), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(1962), + [anon_sym_BANG] = ACTIONS(1962), + [anon_sym_extern] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1962), + [anon_sym_COLON_COLON] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_DOT_DOT] = ACTIONS(1962), + [anon_sym_DASH] = ACTIONS(1962), + [anon_sym_PIPE] = ACTIONS(1962), + [anon_sym_yield] = ACTIONS(1964), + [anon_sym_move] = ACTIONS(1964), + [sym_integer_literal] = ACTIONS(1962), + [aux_sym_string_literal_token1] = ACTIONS(1962), + [sym_char_literal] = ACTIONS(1962), + [anon_sym_true] = ACTIONS(1964), + [anon_sym_false] = ACTIONS(1964), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1964), + [sym_super] = ACTIONS(1964), + [sym_crate] = ACTIONS(1964), + [sym_metavariable] = ACTIONS(1962), + [sym_raw_string_literal] = ACTIONS(1962), + [sym_float_literal] = ACTIONS(1962), [sym_block_comment] = ACTIONS(3), }, [476] = { - [ts_builtin_sym_end] = ACTIONS(1984), - [sym_identifier] = ACTIONS(1986), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_macro_rules_BANG] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1984), - [anon_sym_RBRACE] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_u8] = ACTIONS(1986), - [anon_sym_i8] = ACTIONS(1986), - [anon_sym_u16] = ACTIONS(1986), - [anon_sym_i16] = ACTIONS(1986), - [anon_sym_u32] = ACTIONS(1986), - [anon_sym_i32] = ACTIONS(1986), - [anon_sym_u64] = ACTIONS(1986), - [anon_sym_i64] = ACTIONS(1986), - [anon_sym_u128] = ACTIONS(1986), - [anon_sym_i128] = ACTIONS(1986), - [anon_sym_isize] = ACTIONS(1986), - [anon_sym_usize] = ACTIONS(1986), - [anon_sym_f32] = ACTIONS(1986), - [anon_sym_f64] = ACTIONS(1986), - [anon_sym_bool] = ACTIONS(1986), - [anon_sym_str] = ACTIONS(1986), - [anon_sym_char] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [anon_sym_async] = ACTIONS(1986), - [anon_sym_break] = ACTIONS(1986), - [anon_sym_const] = ACTIONS(1986), - [anon_sym_continue] = ACTIONS(1986), - [anon_sym_default] = ACTIONS(1986), - [anon_sym_enum] = ACTIONS(1986), - [anon_sym_fn] = ACTIONS(1986), - [anon_sym_for] = ACTIONS(1986), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_impl] = ACTIONS(1986), - [anon_sym_let] = ACTIONS(1986), - [anon_sym_loop] = ACTIONS(1986), - [anon_sym_match] = ACTIONS(1986), - [anon_sym_mod] = ACTIONS(1986), - [anon_sym_pub] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1986), - [anon_sym_struct] = ACTIONS(1986), - [anon_sym_trait] = ACTIONS(1986), - [anon_sym_type] = ACTIONS(1986), - [anon_sym_union] = ACTIONS(1986), - [anon_sym_unsafe] = ACTIONS(1986), - [anon_sym_use] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_extern] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(1984), - [anon_sym_COLON_COLON] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_DOT_DOT] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1986), - [anon_sym_move] = ACTIONS(1986), - [sym_integer_literal] = ACTIONS(1984), - [aux_sym_string_literal_token1] = ACTIONS(1984), - [sym_char_literal] = ACTIONS(1984), - [anon_sym_true] = ACTIONS(1986), - [anon_sym_false] = ACTIONS(1986), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1986), - [sym_super] = ACTIONS(1986), - [sym_crate] = ACTIONS(1986), - [sym_metavariable] = ACTIONS(1984), - [sym_raw_string_literal] = ACTIONS(1984), - [sym_float_literal] = ACTIONS(1984), + [ts_builtin_sym_end] = ACTIONS(1966), + [sym_identifier] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_macro_rules_BANG] = ACTIONS(1966), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_RBRACE] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_u8] = ACTIONS(1968), + [anon_sym_i8] = ACTIONS(1968), + [anon_sym_u16] = ACTIONS(1968), + [anon_sym_i16] = ACTIONS(1968), + [anon_sym_u32] = ACTIONS(1968), + [anon_sym_i32] = ACTIONS(1968), + [anon_sym_u64] = ACTIONS(1968), + [anon_sym_i64] = ACTIONS(1968), + [anon_sym_u128] = ACTIONS(1968), + [anon_sym_i128] = ACTIONS(1968), + [anon_sym_isize] = ACTIONS(1968), + [anon_sym_usize] = ACTIONS(1968), + [anon_sym_f32] = ACTIONS(1968), + [anon_sym_f64] = ACTIONS(1968), + [anon_sym_bool] = ACTIONS(1968), + [anon_sym_str] = ACTIONS(1968), + [anon_sym_char] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_async] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_fn] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_impl] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_mod] = ACTIONS(1968), + [anon_sym_pub] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_trait] = ACTIONS(1968), + [anon_sym_type] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_unsafe] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_DOT_DOT] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_yield] = ACTIONS(1968), + [anon_sym_move] = ACTIONS(1968), + [sym_integer_literal] = ACTIONS(1966), + [aux_sym_string_literal_token1] = ACTIONS(1966), + [sym_char_literal] = ACTIONS(1966), + [anon_sym_true] = ACTIONS(1968), + [anon_sym_false] = ACTIONS(1968), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_crate] = ACTIONS(1968), + [sym_metavariable] = ACTIONS(1966), + [sym_raw_string_literal] = ACTIONS(1966), + [sym_float_literal] = ACTIONS(1966), [sym_block_comment] = ACTIONS(3), }, [477] = { - [ts_builtin_sym_end] = ACTIONS(1988), - [sym_identifier] = ACTIONS(1990), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_macro_rules_BANG] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_u8] = ACTIONS(1990), - [anon_sym_i8] = ACTIONS(1990), - [anon_sym_u16] = ACTIONS(1990), - [anon_sym_i16] = ACTIONS(1990), - [anon_sym_u32] = ACTIONS(1990), - [anon_sym_i32] = ACTIONS(1990), - [anon_sym_u64] = ACTIONS(1990), - [anon_sym_i64] = ACTIONS(1990), - [anon_sym_u128] = ACTIONS(1990), - [anon_sym_i128] = ACTIONS(1990), - [anon_sym_isize] = ACTIONS(1990), - [anon_sym_usize] = ACTIONS(1990), - [anon_sym_f32] = ACTIONS(1990), - [anon_sym_f64] = ACTIONS(1990), - [anon_sym_bool] = ACTIONS(1990), - [anon_sym_str] = ACTIONS(1990), - [anon_sym_char] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_async] = ACTIONS(1990), - [anon_sym_break] = ACTIONS(1990), - [anon_sym_const] = ACTIONS(1990), - [anon_sym_continue] = ACTIONS(1990), - [anon_sym_default] = ACTIONS(1990), - [anon_sym_enum] = ACTIONS(1990), - [anon_sym_fn] = ACTIONS(1990), - [anon_sym_for] = ACTIONS(1990), - [anon_sym_if] = ACTIONS(1990), - [anon_sym_impl] = ACTIONS(1990), - [anon_sym_let] = ACTIONS(1990), - [anon_sym_loop] = ACTIONS(1990), - [anon_sym_match] = ACTIONS(1990), - [anon_sym_mod] = ACTIONS(1990), - [anon_sym_pub] = ACTIONS(1990), - [anon_sym_return] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1990), - [anon_sym_struct] = ACTIONS(1990), - [anon_sym_trait] = ACTIONS(1990), - [anon_sym_type] = ACTIONS(1990), - [anon_sym_union] = ACTIONS(1990), - [anon_sym_unsafe] = ACTIONS(1990), - [anon_sym_use] = ACTIONS(1990), - [anon_sym_while] = ACTIONS(1990), - [anon_sym_POUND] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1990), - [anon_sym_LT] = ACTIONS(1988), - [anon_sym_COLON_COLON] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_DOT_DOT] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_PIPE] = ACTIONS(1988), - [anon_sym_yield] = ACTIONS(1990), - [anon_sym_move] = ACTIONS(1990), - [sym_integer_literal] = ACTIONS(1988), - [aux_sym_string_literal_token1] = ACTIONS(1988), - [sym_char_literal] = ACTIONS(1988), - [anon_sym_true] = ACTIONS(1990), - [anon_sym_false] = ACTIONS(1990), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1990), - [sym_super] = ACTIONS(1990), - [sym_crate] = ACTIONS(1990), - [sym_metavariable] = ACTIONS(1988), - [sym_raw_string_literal] = ACTIONS(1988), - [sym_float_literal] = ACTIONS(1988), + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_macro_rules_BANG] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_u8] = ACTIONS(1972), + [anon_sym_i8] = ACTIONS(1972), + [anon_sym_u16] = ACTIONS(1972), + [anon_sym_i16] = ACTIONS(1972), + [anon_sym_u32] = ACTIONS(1972), + [anon_sym_i32] = ACTIONS(1972), + [anon_sym_u64] = ACTIONS(1972), + [anon_sym_i64] = ACTIONS(1972), + [anon_sym_u128] = ACTIONS(1972), + [anon_sym_i128] = ACTIONS(1972), + [anon_sym_isize] = ACTIONS(1972), + [anon_sym_usize] = ACTIONS(1972), + [anon_sym_f32] = ACTIONS(1972), + [anon_sym_f64] = ACTIONS(1972), + [anon_sym_bool] = ACTIONS(1972), + [anon_sym_str] = ACTIONS(1972), + [anon_sym_char] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_async] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_fn] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_impl] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_mod] = ACTIONS(1972), + [anon_sym_pub] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_trait] = ACTIONS(1972), + [anon_sym_type] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_unsafe] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_COLON_COLON] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_yield] = ACTIONS(1972), + [anon_sym_move] = ACTIONS(1972), + [sym_integer_literal] = ACTIONS(1970), + [aux_sym_string_literal_token1] = ACTIONS(1970), + [sym_char_literal] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1972), + [anon_sym_false] = ACTIONS(1972), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_crate] = ACTIONS(1972), + [sym_metavariable] = ACTIONS(1970), + [sym_raw_string_literal] = ACTIONS(1970), + [sym_float_literal] = ACTIONS(1970), [sym_block_comment] = ACTIONS(3), }, [478] = { - [ts_builtin_sym_end] = ACTIONS(1992), - [sym_identifier] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1992), - [anon_sym_macro_rules_BANG] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1992), - [anon_sym_u8] = ACTIONS(1994), - [anon_sym_i8] = ACTIONS(1994), - [anon_sym_u16] = ACTIONS(1994), - [anon_sym_i16] = ACTIONS(1994), - [anon_sym_u32] = ACTIONS(1994), - [anon_sym_i32] = ACTIONS(1994), - [anon_sym_u64] = ACTIONS(1994), - [anon_sym_i64] = ACTIONS(1994), - [anon_sym_u128] = ACTIONS(1994), - [anon_sym_i128] = ACTIONS(1994), - [anon_sym_isize] = ACTIONS(1994), - [anon_sym_usize] = ACTIONS(1994), - [anon_sym_f32] = ACTIONS(1994), - [anon_sym_f64] = ACTIONS(1994), - [anon_sym_bool] = ACTIONS(1994), - [anon_sym_str] = ACTIONS(1994), - [anon_sym_char] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1994), - [anon_sym_async] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_fn] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_impl] = ACTIONS(1994), - [anon_sym_let] = ACTIONS(1994), - [anon_sym_loop] = ACTIONS(1994), - [anon_sym_match] = ACTIONS(1994), - [anon_sym_mod] = ACTIONS(1994), - [anon_sym_pub] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_trait] = ACTIONS(1994), - [anon_sym_type] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_unsafe] = ACTIONS(1994), - [anon_sym_use] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_POUND] = ACTIONS(1992), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_COLON_COLON] = ACTIONS(1992), - [anon_sym_AMP] = ACTIONS(1992), - [anon_sym_DOT_DOT] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PIPE] = ACTIONS(1992), - [anon_sym_yield] = ACTIONS(1994), - [anon_sym_move] = ACTIONS(1994), - [sym_integer_literal] = ACTIONS(1992), - [aux_sym_string_literal_token1] = ACTIONS(1992), - [sym_char_literal] = ACTIONS(1992), - [anon_sym_true] = ACTIONS(1994), - [anon_sym_false] = ACTIONS(1994), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_crate] = ACTIONS(1994), - [sym_metavariable] = ACTIONS(1992), - [sym_raw_string_literal] = ACTIONS(1992), - [sym_float_literal] = ACTIONS(1992), + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_macro_rules_BANG] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_u8] = ACTIONS(1976), + [anon_sym_i8] = ACTIONS(1976), + [anon_sym_u16] = ACTIONS(1976), + [anon_sym_i16] = ACTIONS(1976), + [anon_sym_u32] = ACTIONS(1976), + [anon_sym_i32] = ACTIONS(1976), + [anon_sym_u64] = ACTIONS(1976), + [anon_sym_i64] = ACTIONS(1976), + [anon_sym_u128] = ACTIONS(1976), + [anon_sym_i128] = ACTIONS(1976), + [anon_sym_isize] = ACTIONS(1976), + [anon_sym_usize] = ACTIONS(1976), + [anon_sym_f32] = ACTIONS(1976), + [anon_sym_f64] = ACTIONS(1976), + [anon_sym_bool] = ACTIONS(1976), + [anon_sym_str] = ACTIONS(1976), + [anon_sym_char] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_async] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_fn] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_impl] = ACTIONS(1976), + [anon_sym_let] = ACTIONS(1976), + [anon_sym_loop] = ACTIONS(1976), + [anon_sym_match] = ACTIONS(1976), + [anon_sym_mod] = ACTIONS(1976), + [anon_sym_pub] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_trait] = ACTIONS(1976), + [anon_sym_type] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_unsafe] = ACTIONS(1976), + [anon_sym_use] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_DOT_DOT] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_yield] = ACTIONS(1976), + [anon_sym_move] = ACTIONS(1976), + [sym_integer_literal] = ACTIONS(1974), + [aux_sym_string_literal_token1] = ACTIONS(1974), + [sym_char_literal] = ACTIONS(1974), + [anon_sym_true] = ACTIONS(1976), + [anon_sym_false] = ACTIONS(1976), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_crate] = ACTIONS(1976), + [sym_metavariable] = ACTIONS(1974), + [sym_raw_string_literal] = ACTIONS(1974), + [sym_float_literal] = ACTIONS(1974), [sym_block_comment] = ACTIONS(3), }, [479] = { - [ts_builtin_sym_end] = ACTIONS(1996), - [sym_identifier] = ACTIONS(1998), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_macro_rules_BANG] = ACTIONS(1996), - [anon_sym_LPAREN] = ACTIONS(1996), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_u8] = ACTIONS(1998), - [anon_sym_i8] = ACTIONS(1998), - [anon_sym_u16] = ACTIONS(1998), - [anon_sym_i16] = ACTIONS(1998), - [anon_sym_u32] = ACTIONS(1998), - [anon_sym_i32] = ACTIONS(1998), - [anon_sym_u64] = ACTIONS(1998), - [anon_sym_i64] = ACTIONS(1998), - [anon_sym_u128] = ACTIONS(1998), - [anon_sym_i128] = ACTIONS(1998), - [anon_sym_isize] = ACTIONS(1998), - [anon_sym_usize] = ACTIONS(1998), - [anon_sym_f32] = ACTIONS(1998), - [anon_sym_f64] = ACTIONS(1998), - [anon_sym_bool] = ACTIONS(1998), - [anon_sym_str] = ACTIONS(1998), - [anon_sym_char] = ACTIONS(1998), - [anon_sym_SQUOTE] = ACTIONS(1998), - [anon_sym_async] = ACTIONS(1998), - [anon_sym_break] = ACTIONS(1998), - [anon_sym_const] = ACTIONS(1998), - [anon_sym_continue] = ACTIONS(1998), - [anon_sym_default] = ACTIONS(1998), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_fn] = ACTIONS(1998), - [anon_sym_for] = ACTIONS(1998), - [anon_sym_if] = ACTIONS(1998), - [anon_sym_impl] = ACTIONS(1998), - [anon_sym_let] = ACTIONS(1998), - [anon_sym_loop] = ACTIONS(1998), - [anon_sym_match] = ACTIONS(1998), - [anon_sym_mod] = ACTIONS(1998), - [anon_sym_pub] = ACTIONS(1998), - [anon_sym_return] = ACTIONS(1998), - [anon_sym_static] = ACTIONS(1998), - [anon_sym_struct] = ACTIONS(1998), - [anon_sym_trait] = ACTIONS(1998), - [anon_sym_type] = ACTIONS(1998), - [anon_sym_union] = ACTIONS(1998), - [anon_sym_unsafe] = ACTIONS(1998), - [anon_sym_use] = ACTIONS(1998), - [anon_sym_while] = ACTIONS(1998), - [anon_sym_POUND] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1998), - [anon_sym_LT] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_DOT_DOT] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1996), - [anon_sym_yield] = ACTIONS(1998), - [anon_sym_move] = ACTIONS(1998), - [sym_integer_literal] = ACTIONS(1996), - [aux_sym_string_literal_token1] = ACTIONS(1996), - [sym_char_literal] = ACTIONS(1996), - [anon_sym_true] = ACTIONS(1998), - [anon_sym_false] = ACTIONS(1998), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1998), - [sym_super] = ACTIONS(1998), - [sym_crate] = ACTIONS(1998), - [sym_metavariable] = ACTIONS(1996), - [sym_raw_string_literal] = ACTIONS(1996), - [sym_float_literal] = ACTIONS(1996), + [ts_builtin_sym_end] = ACTIONS(1978), + [sym_identifier] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_macro_rules_BANG] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_u8] = ACTIONS(1980), + [anon_sym_i8] = ACTIONS(1980), + [anon_sym_u16] = ACTIONS(1980), + [anon_sym_i16] = ACTIONS(1980), + [anon_sym_u32] = ACTIONS(1980), + [anon_sym_i32] = ACTIONS(1980), + [anon_sym_u64] = ACTIONS(1980), + [anon_sym_i64] = ACTIONS(1980), + [anon_sym_u128] = ACTIONS(1980), + [anon_sym_i128] = ACTIONS(1980), + [anon_sym_isize] = ACTIONS(1980), + [anon_sym_usize] = ACTIONS(1980), + [anon_sym_f32] = ACTIONS(1980), + [anon_sym_f64] = ACTIONS(1980), + [anon_sym_bool] = ACTIONS(1980), + [anon_sym_str] = ACTIONS(1980), + [anon_sym_char] = ACTIONS(1980), + [anon_sym_SQUOTE] = ACTIONS(1980), + [anon_sym_async] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_default] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), + [anon_sym_fn] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_impl] = ACTIONS(1980), + [anon_sym_let] = ACTIONS(1980), + [anon_sym_loop] = ACTIONS(1980), + [anon_sym_match] = ACTIONS(1980), + [anon_sym_mod] = ACTIONS(1980), + [anon_sym_pub] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_struct] = ACTIONS(1980), + [anon_sym_trait] = ACTIONS(1980), + [anon_sym_type] = ACTIONS(1980), + [anon_sym_union] = ACTIONS(1980), + [anon_sym_unsafe] = ACTIONS(1980), + [anon_sym_use] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_POUND] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_extern] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1978), + [anon_sym_COLON_COLON] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_DOT_DOT] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_yield] = ACTIONS(1980), + [anon_sym_move] = ACTIONS(1980), + [sym_integer_literal] = ACTIONS(1978), + [aux_sym_string_literal_token1] = ACTIONS(1978), + [sym_char_literal] = ACTIONS(1978), + [anon_sym_true] = ACTIONS(1980), + [anon_sym_false] = ACTIONS(1980), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1980), + [sym_super] = ACTIONS(1980), + [sym_crate] = ACTIONS(1980), + [sym_metavariable] = ACTIONS(1978), + [sym_raw_string_literal] = ACTIONS(1978), + [sym_float_literal] = ACTIONS(1978), [sym_block_comment] = ACTIONS(3), }, [480] = { - [ts_builtin_sym_end] = ACTIONS(2000), - [sym_identifier] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_macro_rules_BANG] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(2000), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2000), - [anon_sym_STAR] = ACTIONS(2000), - [anon_sym_u8] = ACTIONS(2002), - [anon_sym_i8] = ACTIONS(2002), - [anon_sym_u16] = ACTIONS(2002), - [anon_sym_i16] = ACTIONS(2002), - [anon_sym_u32] = ACTIONS(2002), - [anon_sym_i32] = ACTIONS(2002), - [anon_sym_u64] = ACTIONS(2002), - [anon_sym_i64] = ACTIONS(2002), - [anon_sym_u128] = ACTIONS(2002), - [anon_sym_i128] = ACTIONS(2002), - [anon_sym_isize] = ACTIONS(2002), - [anon_sym_usize] = ACTIONS(2002), - [anon_sym_f32] = ACTIONS(2002), - [anon_sym_f64] = ACTIONS(2002), - [anon_sym_bool] = ACTIONS(2002), - [anon_sym_str] = ACTIONS(2002), - [anon_sym_char] = ACTIONS(2002), - [anon_sym_SQUOTE] = ACTIONS(2002), - [anon_sym_async] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_default] = ACTIONS(2002), - [anon_sym_enum] = ACTIONS(2002), - [anon_sym_fn] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_impl] = ACTIONS(2002), - [anon_sym_let] = ACTIONS(2002), - [anon_sym_loop] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2002), - [anon_sym_mod] = ACTIONS(2002), - [anon_sym_pub] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_static] = ACTIONS(2002), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_trait] = ACTIONS(2002), - [anon_sym_type] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2002), - [anon_sym_unsafe] = ACTIONS(2002), - [anon_sym_use] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2000), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2000), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2000), - [anon_sym_DOT_DOT] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(2000), - [anon_sym_PIPE] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(2002), - [anon_sym_move] = ACTIONS(2002), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2000), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2002), - [anon_sym_false] = ACTIONS(2002), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2002), - [sym_super] = ACTIONS(2002), - [sym_crate] = ACTIONS(2002), - [sym_metavariable] = ACTIONS(2000), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), + [ts_builtin_sym_end] = ACTIONS(1982), + [sym_identifier] = ACTIONS(1984), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_macro_rules_BANG] = ACTIONS(1982), + [anon_sym_LPAREN] = ACTIONS(1982), + [anon_sym_LBRACE] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_STAR] = ACTIONS(1982), + [anon_sym_u8] = ACTIONS(1984), + [anon_sym_i8] = ACTIONS(1984), + [anon_sym_u16] = ACTIONS(1984), + [anon_sym_i16] = ACTIONS(1984), + [anon_sym_u32] = ACTIONS(1984), + [anon_sym_i32] = ACTIONS(1984), + [anon_sym_u64] = ACTIONS(1984), + [anon_sym_i64] = ACTIONS(1984), + [anon_sym_u128] = ACTIONS(1984), + [anon_sym_i128] = ACTIONS(1984), + [anon_sym_isize] = ACTIONS(1984), + [anon_sym_usize] = ACTIONS(1984), + [anon_sym_f32] = ACTIONS(1984), + [anon_sym_f64] = ACTIONS(1984), + [anon_sym_bool] = ACTIONS(1984), + [anon_sym_str] = ACTIONS(1984), + [anon_sym_char] = ACTIONS(1984), + [anon_sym_SQUOTE] = ACTIONS(1984), + [anon_sym_async] = ACTIONS(1984), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_default] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1984), + [anon_sym_fn] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_impl] = ACTIONS(1984), + [anon_sym_let] = ACTIONS(1984), + [anon_sym_loop] = ACTIONS(1984), + [anon_sym_match] = ACTIONS(1984), + [anon_sym_mod] = ACTIONS(1984), + [anon_sym_pub] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1984), + [anon_sym_struct] = ACTIONS(1984), + [anon_sym_trait] = ACTIONS(1984), + [anon_sym_type] = ACTIONS(1984), + [anon_sym_union] = ACTIONS(1984), + [anon_sym_unsafe] = ACTIONS(1984), + [anon_sym_use] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1984), + [anon_sym_POUND] = ACTIONS(1982), + [anon_sym_BANG] = ACTIONS(1982), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_COLON_COLON] = ACTIONS(1982), + [anon_sym_AMP] = ACTIONS(1982), + [anon_sym_DOT_DOT] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_yield] = ACTIONS(1984), + [anon_sym_move] = ACTIONS(1984), + [sym_integer_literal] = ACTIONS(1982), + [aux_sym_string_literal_token1] = ACTIONS(1982), + [sym_char_literal] = ACTIONS(1982), + [anon_sym_true] = ACTIONS(1984), + [anon_sym_false] = ACTIONS(1984), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1984), + [sym_super] = ACTIONS(1984), + [sym_crate] = ACTIONS(1984), + [sym_metavariable] = ACTIONS(1982), + [sym_raw_string_literal] = ACTIONS(1982), + [sym_float_literal] = ACTIONS(1982), [sym_block_comment] = ACTIONS(3), }, [481] = { - [ts_builtin_sym_end] = ACTIONS(2004), - [sym_identifier] = ACTIONS(2006), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_macro_rules_BANG] = ACTIONS(2004), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_RBRACE] = ACTIONS(2004), - [anon_sym_LBRACK] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2004), - [anon_sym_u8] = ACTIONS(2006), - [anon_sym_i8] = ACTIONS(2006), - [anon_sym_u16] = ACTIONS(2006), - [anon_sym_i16] = ACTIONS(2006), - [anon_sym_u32] = ACTIONS(2006), - [anon_sym_i32] = ACTIONS(2006), - [anon_sym_u64] = ACTIONS(2006), - [anon_sym_i64] = ACTIONS(2006), - [anon_sym_u128] = ACTIONS(2006), - [anon_sym_i128] = ACTIONS(2006), - [anon_sym_isize] = ACTIONS(2006), - [anon_sym_usize] = ACTIONS(2006), - [anon_sym_f32] = ACTIONS(2006), - [anon_sym_f64] = ACTIONS(2006), - [anon_sym_bool] = ACTIONS(2006), - [anon_sym_str] = ACTIONS(2006), - [anon_sym_char] = ACTIONS(2006), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_async] = ACTIONS(2006), - [anon_sym_break] = ACTIONS(2006), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_continue] = ACTIONS(2006), - [anon_sym_default] = ACTIONS(2006), - [anon_sym_enum] = ACTIONS(2006), - [anon_sym_fn] = ACTIONS(2006), - [anon_sym_for] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_impl] = ACTIONS(2006), - [anon_sym_let] = ACTIONS(2006), - [anon_sym_loop] = ACTIONS(2006), - [anon_sym_match] = ACTIONS(2006), - [anon_sym_mod] = ACTIONS(2006), - [anon_sym_pub] = ACTIONS(2006), - [anon_sym_return] = ACTIONS(2006), - [anon_sym_static] = ACTIONS(2006), - [anon_sym_struct] = ACTIONS(2006), - [anon_sym_trait] = ACTIONS(2006), - [anon_sym_type] = ACTIONS(2006), - [anon_sym_union] = ACTIONS(2006), - [anon_sym_unsafe] = ACTIONS(2006), - [anon_sym_use] = ACTIONS(2006), - [anon_sym_while] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(2004), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2004), - [anon_sym_COLON_COLON] = ACTIONS(2004), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_DOT_DOT] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PIPE] = ACTIONS(2004), - [anon_sym_yield] = ACTIONS(2006), - [anon_sym_move] = ACTIONS(2006), - [sym_integer_literal] = ACTIONS(2004), - [aux_sym_string_literal_token1] = ACTIONS(2004), - [sym_char_literal] = ACTIONS(2004), - [anon_sym_true] = ACTIONS(2006), - [anon_sym_false] = ACTIONS(2006), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2006), - [sym_super] = ACTIONS(2006), - [sym_crate] = ACTIONS(2006), - [sym_metavariable] = ACTIONS(2004), - [sym_raw_string_literal] = ACTIONS(2004), - [sym_float_literal] = ACTIONS(2004), + [ts_builtin_sym_end] = ACTIONS(1986), + [sym_identifier] = ACTIONS(1988), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_macro_rules_BANG] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1986), + [anon_sym_LBRACK] = ACTIONS(1986), + [anon_sym_STAR] = ACTIONS(1986), + [anon_sym_u8] = ACTIONS(1988), + [anon_sym_i8] = ACTIONS(1988), + [anon_sym_u16] = ACTIONS(1988), + [anon_sym_i16] = ACTIONS(1988), + [anon_sym_u32] = ACTIONS(1988), + [anon_sym_i32] = ACTIONS(1988), + [anon_sym_u64] = ACTIONS(1988), + [anon_sym_i64] = ACTIONS(1988), + [anon_sym_u128] = ACTIONS(1988), + [anon_sym_i128] = ACTIONS(1988), + [anon_sym_isize] = ACTIONS(1988), + [anon_sym_usize] = ACTIONS(1988), + [anon_sym_f32] = ACTIONS(1988), + [anon_sym_f64] = ACTIONS(1988), + [anon_sym_bool] = ACTIONS(1988), + [anon_sym_str] = ACTIONS(1988), + [anon_sym_char] = ACTIONS(1988), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_async] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_enum] = ACTIONS(1988), + [anon_sym_fn] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_impl] = ACTIONS(1988), + [anon_sym_let] = ACTIONS(1988), + [anon_sym_loop] = ACTIONS(1988), + [anon_sym_match] = ACTIONS(1988), + [anon_sym_mod] = ACTIONS(1988), + [anon_sym_pub] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1988), + [anon_sym_trait] = ACTIONS(1988), + [anon_sym_type] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1988), + [anon_sym_unsafe] = ACTIONS(1988), + [anon_sym_use] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1986), + [anon_sym_COLON_COLON] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1986), + [anon_sym_DOT_DOT] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_PIPE] = ACTIONS(1986), + [anon_sym_yield] = ACTIONS(1988), + [anon_sym_move] = ACTIONS(1988), + [sym_integer_literal] = ACTIONS(1986), + [aux_sym_string_literal_token1] = ACTIONS(1986), + [sym_char_literal] = ACTIONS(1986), + [anon_sym_true] = ACTIONS(1988), + [anon_sym_false] = ACTIONS(1988), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1988), + [sym_super] = ACTIONS(1988), + [sym_crate] = ACTIONS(1988), + [sym_metavariable] = ACTIONS(1986), + [sym_raw_string_literal] = ACTIONS(1986), + [sym_float_literal] = ACTIONS(1986), [sym_block_comment] = ACTIONS(3), }, [482] = { - [sym_attribute_item] = STATE(548), - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_macro_invocation] = STATE(2349), - [sym_scoped_identifier] = STATE(1578), - [sym_scoped_type_identifier] = STATE(1974), - [sym_match_arm] = STATE(501), - [sym_last_match_arm] = STATE(2450), - [sym_match_pattern] = STATE(2359), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2070), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [ts_builtin_sym_end] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1992), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_macro_rules_BANG] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_u8] = ACTIONS(1992), + [anon_sym_i8] = ACTIONS(1992), + [anon_sym_u16] = ACTIONS(1992), + [anon_sym_i16] = ACTIONS(1992), + [anon_sym_u32] = ACTIONS(1992), + [anon_sym_i32] = ACTIONS(1992), + [anon_sym_u64] = ACTIONS(1992), + [anon_sym_i64] = ACTIONS(1992), + [anon_sym_u128] = ACTIONS(1992), + [anon_sym_i128] = ACTIONS(1992), + [anon_sym_isize] = ACTIONS(1992), + [anon_sym_usize] = ACTIONS(1992), + [anon_sym_f32] = ACTIONS(1992), + [anon_sym_f64] = ACTIONS(1992), + [anon_sym_bool] = ACTIONS(1992), + [anon_sym_str] = ACTIONS(1992), + [anon_sym_char] = ACTIONS(1992), + [anon_sym_SQUOTE] = ACTIONS(1992), + [anon_sym_async] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_impl] = ACTIONS(1992), + [anon_sym_let] = ACTIONS(1992), + [anon_sym_loop] = ACTIONS(1992), + [anon_sym_match] = ACTIONS(1992), + [anon_sym_mod] = ACTIONS(1992), + [anon_sym_pub] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_trait] = ACTIONS(1992), + [anon_sym_type] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_unsafe] = ACTIONS(1992), + [anon_sym_use] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_POUND] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym_LT] = ACTIONS(1990), + [anon_sym_COLON_COLON] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_DOT_DOT] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_yield] = ACTIONS(1992), + [anon_sym_move] = ACTIONS(1992), + [sym_integer_literal] = ACTIONS(1990), + [aux_sym_string_literal_token1] = ACTIONS(1990), + [sym_char_literal] = ACTIONS(1990), + [anon_sym_true] = ACTIONS(1992), + [anon_sym_false] = ACTIONS(1992), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_crate] = ACTIONS(1992), + [sym_metavariable] = ACTIONS(1990), + [sym_raw_string_literal] = ACTIONS(1990), + [sym_float_literal] = ACTIONS(1990), [sym_block_comment] = ACTIONS(3), }, [483] = { - [sym__token_pattern] = STATE(499), - [sym_token_tree_pattern] = STATE(499), - [sym_token_binding_pattern] = STATE(499), - [sym_token_repetition_pattern] = STATE(499), - [sym__literal] = STATE(499), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_pattern_repeat1] = STATE(499), + [ts_builtin_sym_end] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_macro_rules_BANG] = ACTIONS(1994), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_u8] = ACTIONS(1996), + [anon_sym_i8] = ACTIONS(1996), + [anon_sym_u16] = ACTIONS(1996), + [anon_sym_i16] = ACTIONS(1996), + [anon_sym_u32] = ACTIONS(1996), + [anon_sym_i32] = ACTIONS(1996), + [anon_sym_u64] = ACTIONS(1996), + [anon_sym_i64] = ACTIONS(1996), + [anon_sym_u128] = ACTIONS(1996), + [anon_sym_i128] = ACTIONS(1996), + [anon_sym_isize] = ACTIONS(1996), + [anon_sym_usize] = ACTIONS(1996), + [anon_sym_f32] = ACTIONS(1996), + [anon_sym_f64] = ACTIONS(1996), + [anon_sym_bool] = ACTIONS(1996), + [anon_sym_str] = ACTIONS(1996), + [anon_sym_char] = ACTIONS(1996), + [anon_sym_SQUOTE] = ACTIONS(1996), + [anon_sym_async] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), + [anon_sym_fn] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_impl] = ACTIONS(1996), + [anon_sym_let] = ACTIONS(1996), + [anon_sym_loop] = ACTIONS(1996), + [anon_sym_match] = ACTIONS(1996), + [anon_sym_mod] = ACTIONS(1996), + [anon_sym_pub] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1996), + [anon_sym_trait] = ACTIONS(1996), + [anon_sym_type] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1996), + [anon_sym_unsafe] = ACTIONS(1996), + [anon_sym_use] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_POUND] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_extern] = ACTIONS(1996), + [anon_sym_LT] = ACTIONS(1994), + [anon_sym_COLON_COLON] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_DOT_DOT] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1994), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_yield] = ACTIONS(1996), + [anon_sym_move] = ACTIONS(1996), + [sym_integer_literal] = ACTIONS(1994), + [aux_sym_string_literal_token1] = ACTIONS(1994), + [sym_char_literal] = ACTIONS(1994), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1996), + [sym_super] = ACTIONS(1996), + [sym_crate] = ACTIONS(1996), + [sym_metavariable] = ACTIONS(1994), + [sym_raw_string_literal] = ACTIONS(1994), + [sym_float_literal] = ACTIONS(1994), + [sym_block_comment] = ACTIONS(3), + }, + [484] = { + [ts_builtin_sym_end] = ACTIONS(1998), + [sym_identifier] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_macro_rules_BANG] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_RBRACE] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1998), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_u8] = ACTIONS(2000), + [anon_sym_i8] = ACTIONS(2000), + [anon_sym_u16] = ACTIONS(2000), + [anon_sym_i16] = ACTIONS(2000), + [anon_sym_u32] = ACTIONS(2000), + [anon_sym_i32] = ACTIONS(2000), + [anon_sym_u64] = ACTIONS(2000), + [anon_sym_i64] = ACTIONS(2000), + [anon_sym_u128] = ACTIONS(2000), + [anon_sym_i128] = ACTIONS(2000), + [anon_sym_isize] = ACTIONS(2000), + [anon_sym_usize] = ACTIONS(2000), + [anon_sym_f32] = ACTIONS(2000), + [anon_sym_f64] = ACTIONS(2000), + [anon_sym_bool] = ACTIONS(2000), + [anon_sym_str] = ACTIONS(2000), + [anon_sym_char] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_async] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_default] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [anon_sym_fn] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_impl] = ACTIONS(2000), + [anon_sym_let] = ACTIONS(2000), + [anon_sym_loop] = ACTIONS(2000), + [anon_sym_match] = ACTIONS(2000), + [anon_sym_mod] = ACTIONS(2000), + [anon_sym_pub] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_trait] = ACTIONS(2000), + [anon_sym_type] = ACTIONS(2000), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_unsafe] = ACTIONS(2000), + [anon_sym_use] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(1998), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(1998), + [anon_sym_DOT_DOT] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(1998), + [anon_sym_PIPE] = ACTIONS(1998), + [anon_sym_yield] = ACTIONS(2000), + [anon_sym_move] = ACTIONS(2000), + [sym_integer_literal] = ACTIONS(1998), + [aux_sym_string_literal_token1] = ACTIONS(1998), + [sym_char_literal] = ACTIONS(1998), + [anon_sym_true] = ACTIONS(2000), + [anon_sym_false] = ACTIONS(2000), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2000), + [sym_super] = ACTIONS(2000), + [sym_crate] = ACTIONS(2000), + [sym_metavariable] = ACTIONS(1998), + [sym_raw_string_literal] = ACTIONS(1998), + [sym_float_literal] = ACTIONS(1998), + [sym_block_comment] = ACTIONS(3), + }, + [485] = { + [ts_builtin_sym_end] = ACTIONS(2002), + [sym_identifier] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_macro_rules_BANG] = ACTIONS(2002), + [anon_sym_LPAREN] = ACTIONS(2002), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_u8] = ACTIONS(2004), + [anon_sym_i8] = ACTIONS(2004), + [anon_sym_u16] = ACTIONS(2004), + [anon_sym_i16] = ACTIONS(2004), + [anon_sym_u32] = ACTIONS(2004), + [anon_sym_i32] = ACTIONS(2004), + [anon_sym_u64] = ACTIONS(2004), + [anon_sym_i64] = ACTIONS(2004), + [anon_sym_u128] = ACTIONS(2004), + [anon_sym_i128] = ACTIONS(2004), + [anon_sym_isize] = ACTIONS(2004), + [anon_sym_usize] = ACTIONS(2004), + [anon_sym_f32] = ACTIONS(2004), + [anon_sym_f64] = ACTIONS(2004), + [anon_sym_bool] = ACTIONS(2004), + [anon_sym_str] = ACTIONS(2004), + [anon_sym_char] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_async] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_fn] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_impl] = ACTIONS(2004), + [anon_sym_let] = ACTIONS(2004), + [anon_sym_loop] = ACTIONS(2004), + [anon_sym_match] = ACTIONS(2004), + [anon_sym_mod] = ACTIONS(2004), + [anon_sym_pub] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_trait] = ACTIONS(2004), + [anon_sym_type] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_unsafe] = ACTIONS(2004), + [anon_sym_use] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_POUND] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_COLON_COLON] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_yield] = ACTIONS(2004), + [anon_sym_move] = ACTIONS(2004), + [sym_integer_literal] = ACTIONS(2002), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2002), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_crate] = ACTIONS(2004), + [sym_metavariable] = ACTIONS(2002), + [sym_raw_string_literal] = ACTIONS(2002), + [sym_float_literal] = ACTIONS(2002), + [sym_block_comment] = ACTIONS(3), + }, + [486] = { + [ts_builtin_sym_end] = ACTIONS(2006), [sym_identifier] = ACTIONS(2008), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2012), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_macro_rules_BANG] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(2006), [anon_sym_u8] = ACTIONS(2008), [anon_sym_i8] = ACTIONS(2008), [anon_sym_u16] = ACTIONS(2008), @@ -59301,11 +60932,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2008), [anon_sym_str] = ACTIONS(2008), [anon_sym_char] = ACTIONS(2008), - [aux_sym__non_special_token_token1] = ACTIONS(2008), [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_as] = ACTIONS(2008), [anon_sym_async] = ACTIONS(2008), - [anon_sym_await] = ACTIONS(2008), [anon_sym_break] = ACTIONS(2008), [anon_sym_const] = ACTIONS(2008), [anon_sym_continue] = ACTIONS(2008), @@ -59328,616 +60956,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2008), [anon_sym_unsafe] = ACTIONS(2008), [anon_sym_use] = ACTIONS(2008), - [anon_sym_where] = ACTIONS(2008), [anon_sym_while] = ACTIONS(2008), - [sym_mutable_specifier] = ACTIONS(2008), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_DOT_DOT] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2006), + [anon_sym_yield] = ACTIONS(2008), + [anon_sym_move] = ACTIONS(2008), + [sym_integer_literal] = ACTIONS(2006), + [aux_sym_string_literal_token1] = ACTIONS(2006), + [sym_char_literal] = ACTIONS(2006), + [anon_sym_true] = ACTIONS(2008), + [anon_sym_false] = ACTIONS(2008), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2008), [sym_super] = ACTIONS(2008), [sym_crate] = ACTIONS(2008), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [484] = { - [sym__token_pattern] = STATE(488), - [sym_token_tree_pattern] = STATE(488), - [sym_token_binding_pattern] = STATE(488), - [sym_token_repetition_pattern] = STATE(488), - [sym__literal] = STATE(488), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_pattern_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(2028), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2028), - [anon_sym_i8] = ACTIONS(2028), - [anon_sym_u16] = ACTIONS(2028), - [anon_sym_i16] = ACTIONS(2028), - [anon_sym_u32] = ACTIONS(2028), - [anon_sym_i32] = ACTIONS(2028), - [anon_sym_u64] = ACTIONS(2028), - [anon_sym_i64] = ACTIONS(2028), - [anon_sym_u128] = ACTIONS(2028), - [anon_sym_i128] = ACTIONS(2028), - [anon_sym_isize] = ACTIONS(2028), - [anon_sym_usize] = ACTIONS(2028), - [anon_sym_f32] = ACTIONS(2028), - [anon_sym_f64] = ACTIONS(2028), - [anon_sym_bool] = ACTIONS(2028), - [anon_sym_str] = ACTIONS(2028), - [anon_sym_char] = ACTIONS(2028), - [aux_sym__non_special_token_token1] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_as] = ACTIONS(2028), - [anon_sym_async] = ACTIONS(2028), - [anon_sym_await] = ACTIONS(2028), - [anon_sym_break] = ACTIONS(2028), - [anon_sym_const] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(2028), - [anon_sym_default] = ACTIONS(2028), - [anon_sym_enum] = ACTIONS(2028), - [anon_sym_fn] = ACTIONS(2028), - [anon_sym_for] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_impl] = ACTIONS(2028), - [anon_sym_let] = ACTIONS(2028), - [anon_sym_loop] = ACTIONS(2028), - [anon_sym_match] = ACTIONS(2028), - [anon_sym_mod] = ACTIONS(2028), - [anon_sym_pub] = ACTIONS(2028), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2028), - [anon_sym_struct] = ACTIONS(2028), - [anon_sym_trait] = ACTIONS(2028), - [anon_sym_type] = ACTIONS(2028), - [anon_sym_union] = ACTIONS(2028), - [anon_sym_unsafe] = ACTIONS(2028), - [anon_sym_use] = ACTIONS(2028), - [anon_sym_where] = ACTIONS(2028), - [anon_sym_while] = ACTIONS(2028), - [sym_mutable_specifier] = ACTIONS(2028), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2028), - [sym_super] = ACTIONS(2028), - [sym_crate] = ACTIONS(2028), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [485] = { - [sym__token_pattern] = STATE(489), - [sym_token_tree_pattern] = STATE(489), - [sym_token_binding_pattern] = STATE(489), - [sym_token_repetition_pattern] = STATE(489), - [sym__literal] = STATE(489), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_pattern_repeat1] = STATE(489), - [sym_identifier] = ACTIONS(2032), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2030), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [aux_sym__non_special_token_token1] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_as] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_where] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [sym_mutable_specifier] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [486] = { - [sym__token_pattern] = STATE(490), - [sym_token_tree_pattern] = STATE(490), - [sym_token_binding_pattern] = STATE(490), - [sym_token_repetition_pattern] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_pattern_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(2018), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_as] = ACTIONS(2034), - [anon_sym_async] = ACTIONS(2034), - [anon_sym_await] = 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_where] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2034), - [sym_mutable_specifier] = ACTIONS(2034), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2034), - [sym_super] = ACTIONS(2034), - [sym_crate] = ACTIONS(2034), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2006), + [sym_float_literal] = ACTIONS(2006), [sym_block_comment] = ACTIONS(3), }, [487] = { - [sym_attribute_item] = STATE(548), - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_macro_invocation] = STATE(2349), - [sym_scoped_identifier] = STATE(1578), - [sym_scoped_type_identifier] = STATE(1974), - [sym_match_arm] = STATE(501), - [sym_last_match_arm] = STATE(2415), - [sym_match_pattern] = STATE(2359), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2070), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [ts_builtin_sym_end] = ACTIONS(2010), + [sym_identifier] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_macro_rules_BANG] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(2010), + [anon_sym_u8] = ACTIONS(2012), + [anon_sym_i8] = ACTIONS(2012), + [anon_sym_u16] = ACTIONS(2012), + [anon_sym_i16] = ACTIONS(2012), + [anon_sym_u32] = ACTIONS(2012), + [anon_sym_i32] = ACTIONS(2012), + [anon_sym_u64] = ACTIONS(2012), + [anon_sym_i64] = ACTIONS(2012), + [anon_sym_u128] = ACTIONS(2012), + [anon_sym_i128] = ACTIONS(2012), + [anon_sym_isize] = ACTIONS(2012), + [anon_sym_usize] = ACTIONS(2012), + [anon_sym_f32] = ACTIONS(2012), + [anon_sym_f64] = ACTIONS(2012), + [anon_sym_bool] = ACTIONS(2012), + [anon_sym_str] = ACTIONS(2012), + [anon_sym_char] = ACTIONS(2012), + [anon_sym_SQUOTE] = ACTIONS(2012), + [anon_sym_async] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_fn] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_impl] = ACTIONS(2012), + [anon_sym_let] = ACTIONS(2012), + [anon_sym_loop] = ACTIONS(2012), + [anon_sym_match] = ACTIONS(2012), + [anon_sym_mod] = ACTIONS(2012), + [anon_sym_pub] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_trait] = ACTIONS(2012), + [anon_sym_type] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_unsafe] = ACTIONS(2012), + [anon_sym_use] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_POUND] = ACTIONS(2010), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2010), + [anon_sym_COLON_COLON] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2010), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2010), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_yield] = ACTIONS(2012), + [anon_sym_move] = ACTIONS(2012), + [sym_integer_literal] = ACTIONS(2010), + [aux_sym_string_literal_token1] = ACTIONS(2010), + [sym_char_literal] = ACTIONS(2010), + [anon_sym_true] = ACTIONS(2012), + [anon_sym_false] = ACTIONS(2012), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2012), + [sym_super] = ACTIONS(2012), + [sym_crate] = ACTIONS(2012), + [sym_metavariable] = ACTIONS(2010), + [sym_raw_string_literal] = ACTIONS(2010), + [sym_float_literal] = ACTIONS(2010), [sym_block_comment] = ACTIONS(3), }, [488] = { - [sym__token_pattern] = STATE(249), - [sym_token_tree_pattern] = STATE(249), - [sym_token_binding_pattern] = STATE(249), - [sym_token_repetition_pattern] = STATE(249), - [sym__literal] = STATE(249), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_pattern_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2038), + [ts_builtin_sym_end] = ACTIONS(2014), + [sym_identifier] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_macro_rules_BANG] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2014), [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u128] = ACTIONS(2036), - [anon_sym_i128] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_str] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [aux_sym__non_special_token_token1] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_as] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_await] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_fn] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_impl] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_mod] = ACTIONS(2036), - [anon_sym_pub] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_trait] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_unsafe] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_where] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [sym_mutable_specifier] = ACTIONS(2036), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_u8] = ACTIONS(2016), + [anon_sym_i8] = ACTIONS(2016), + [anon_sym_u16] = ACTIONS(2016), + [anon_sym_i16] = ACTIONS(2016), + [anon_sym_u32] = ACTIONS(2016), + [anon_sym_i32] = ACTIONS(2016), + [anon_sym_u64] = ACTIONS(2016), + [anon_sym_i64] = ACTIONS(2016), + [anon_sym_u128] = ACTIONS(2016), + [anon_sym_i128] = ACTIONS(2016), + [anon_sym_isize] = ACTIONS(2016), + [anon_sym_usize] = ACTIONS(2016), + [anon_sym_f32] = ACTIONS(2016), + [anon_sym_f64] = ACTIONS(2016), + [anon_sym_bool] = ACTIONS(2016), + [anon_sym_str] = ACTIONS(2016), + [anon_sym_char] = ACTIONS(2016), + [anon_sym_SQUOTE] = ACTIONS(2016), + [anon_sym_async] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_fn] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_impl] = ACTIONS(2016), + [anon_sym_let] = ACTIONS(2016), + [anon_sym_loop] = ACTIONS(2016), + [anon_sym_match] = ACTIONS(2016), + [anon_sym_mod] = ACTIONS(2016), + [anon_sym_pub] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_trait] = ACTIONS(2016), + [anon_sym_type] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_unsafe] = ACTIONS(2016), + [anon_sym_use] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_POUND] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_DOT_DOT] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_yield] = ACTIONS(2016), + [anon_sym_move] = ACTIONS(2016), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2014), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2016), + [anon_sym_false] = ACTIONS(2016), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_crate] = ACTIONS(2016), + [sym_metavariable] = ACTIONS(2014), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, [489] = { - [sym__token_pattern] = STATE(249), - [sym_token_tree_pattern] = STATE(249), - [sym_token_binding_pattern] = STATE(249), - [sym_token_repetition_pattern] = STATE(249), - [sym__literal] = STATE(249), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_pattern_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2038), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u128] = ACTIONS(2036), - [anon_sym_i128] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_str] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [aux_sym__non_special_token_token1] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_as] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_await] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_fn] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_impl] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_mod] = ACTIONS(2036), - [anon_sym_pub] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_trait] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_unsafe] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_where] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [sym_mutable_specifier] = ACTIONS(2036), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym__token_pattern] = STATE(502), + [sym_token_tree_pattern] = STATE(502), + [sym_token_binding_pattern] = STATE(502), + [sym_token_repetition_pattern] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_RPAREN] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2028), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_async] = ACTIONS(2018), + [anon_sym_await] = 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_where] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [sym_mutable_specifier] = ACTIONS(2018), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2018), + [sym_super] = ACTIONS(2018), + [sym_crate] = ACTIONS(2018), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [490] = { - [sym__token_pattern] = STATE(249), - [sym_token_tree_pattern] = STATE(249), - [sym_token_binding_pattern] = STATE(249), - [sym_token_repetition_pattern] = STATE(249), - [sym__literal] = STATE(249), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_pattern_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2038), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u128] = ACTIONS(2036), - [anon_sym_i128] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_str] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [aux_sym__non_special_token_token1] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_as] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_await] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_fn] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_impl] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_mod] = ACTIONS(2036), - [anon_sym_pub] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_trait] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_unsafe] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_where] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [sym_mutable_specifier] = ACTIONS(2036), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_RBRACK] = ACTIONS(2044), + [anon_sym_DOLLAR] = ACTIONS(2052), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_as] = ACTIONS(2038), + [anon_sym_async] = ACTIONS(2038), + [anon_sym_await] = 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_where] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [sym_mutable_specifier] = ACTIONS(2038), + [sym_integer_literal] = ACTIONS(2055), + [aux_sym_string_literal_token1] = ACTIONS(2058), + [sym_char_literal] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2038), + [sym_super] = ACTIONS(2038), + [sym_crate] = ACTIONS(2038), + [sym_metavariable] = ACTIONS(2064), + [sym_raw_string_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), [sym_block_comment] = ACTIONS(3), }, [491] = { - [sym_attribute_item] = STATE(548), - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_macro_invocation] = STATE(2349), - [sym_scoped_identifier] = STATE(1578), - [sym_scoped_type_identifier] = STATE(1974), - [sym_match_arm] = STATE(501), - [sym_last_match_arm] = STATE(2558), - [sym_match_pattern] = STATE(2359), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2070), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_attribute_item] = STATE(554), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_macro_invocation] = STATE(2537), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier] = STATE(1941), + [sym_match_arm] = STATE(508), + [sym_last_match_arm] = STATE(2482), + [sym_match_pattern] = STATE(2393), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1956), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_enum_variant_list_repeat1] = STATE(554), + [aux_sym_match_block_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1164), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -59945,392 +61356,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [492] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_RPAREN] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_RBRACE] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_RBRACK] = ACTIONS(2046), - [anon_sym_DOLLAR] = ACTIONS(2054), - [anon_sym_u8] = ACTIONS(2040), - [anon_sym_i8] = ACTIONS(2040), - [anon_sym_u16] = ACTIONS(2040), - [anon_sym_i16] = ACTIONS(2040), - [anon_sym_u32] = ACTIONS(2040), - [anon_sym_i32] = ACTIONS(2040), - [anon_sym_u64] = ACTIONS(2040), - [anon_sym_i64] = ACTIONS(2040), - [anon_sym_u128] = ACTIONS(2040), - [anon_sym_i128] = ACTIONS(2040), - [anon_sym_isize] = ACTIONS(2040), - [anon_sym_usize] = ACTIONS(2040), - [anon_sym_f32] = ACTIONS(2040), - [anon_sym_f64] = ACTIONS(2040), - [anon_sym_bool] = ACTIONS(2040), - [anon_sym_str] = ACTIONS(2040), - [anon_sym_char] = ACTIONS(2040), - [aux_sym__non_special_token_token1] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_as] = ACTIONS(2040), - [anon_sym_async] = ACTIONS(2040), - [anon_sym_await] = ACTIONS(2040), - [anon_sym_break] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2040), - [anon_sym_continue] = ACTIONS(2040), - [anon_sym_default] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_fn] = ACTIONS(2040), - [anon_sym_for] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2040), - [anon_sym_impl] = ACTIONS(2040), - [anon_sym_let] = ACTIONS(2040), - [anon_sym_loop] = ACTIONS(2040), - [anon_sym_match] = ACTIONS(2040), - [anon_sym_mod] = ACTIONS(2040), - [anon_sym_pub] = ACTIONS(2040), - [anon_sym_return] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2040), - [anon_sym_struct] = ACTIONS(2040), - [anon_sym_trait] = ACTIONS(2040), - [anon_sym_type] = ACTIONS(2040), - [anon_sym_union] = ACTIONS(2040), - [anon_sym_unsafe] = ACTIONS(2040), - [anon_sym_use] = ACTIONS(2040), - [anon_sym_where] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2040), - [sym_mutable_specifier] = ACTIONS(2040), - [sym_integer_literal] = ACTIONS(2057), - [aux_sym_string_literal_token1] = ACTIONS(2060), - [sym_char_literal] = ACTIONS(2057), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2040), - [sym_super] = ACTIONS(2040), - [sym_crate] = ACTIONS(2040), - [sym_raw_string_literal] = ACTIONS(2057), - [sym_float_literal] = ACTIONS(2057), + [sym__token_pattern] = STATE(260), + [sym_token_tree_pattern] = STATE(260), + [sym_token_binding_pattern] = STATE(260), + [sym_token_repetition_pattern] = STATE(260), + [sym__literal] = STATE(260), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2028), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_await] = 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_where] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [sym_mutable_specifier] = ACTIONS(2067), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_crate] = ACTIONS(2067), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [493] = { - [sym_token_tree] = STATE(493), - [sym_token_repetition] = STATE(493), - [sym__literal] = STATE(493), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2069), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_RBRACK] = ACTIONS(2072), - [anon_sym_DOLLAR] = ACTIONS(2080), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2066), - [anon_sym_SQUOTE] = ACTIONS(2066), - [anon_sym_as] = ACTIONS(2066), - [anon_sym_async] = ACTIONS(2066), - [anon_sym_await] = 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_where] = ACTIONS(2066), - [anon_sym_while] = ACTIONS(2066), - [sym_mutable_specifier] = ACTIONS(2066), - [sym_integer_literal] = ACTIONS(2083), - [aux_sym_string_literal_token1] = ACTIONS(2086), - [sym_char_literal] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2066), - [sym_super] = ACTIONS(2066), - [sym_crate] = ACTIONS(2066), - [sym_metavariable] = ACTIONS(2092), - [sym_raw_string_literal] = ACTIONS(2083), - [sym_float_literal] = ACTIONS(2083), + [sym__token_pattern] = STATE(260), + [sym_token_tree_pattern] = STATE(260), + [sym_token_binding_pattern] = STATE(260), + [sym_token_repetition_pattern] = STATE(260), + [sym__literal] = STATE(260), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2028), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_await] = 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_where] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [sym_mutable_specifier] = ACTIONS(2067), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_crate] = ACTIONS(2067), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [494] = { - [sym__token_pattern] = STATE(249), - [sym_token_tree_pattern] = STATE(249), - [sym_token_binding_pattern] = STATE(249), - [sym_token_repetition_pattern] = STATE(249), - [sym__literal] = STATE(249), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_pattern_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2095), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u128] = ACTIONS(2036), - [anon_sym_i128] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_str] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [aux_sym__non_special_token_token1] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_as] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_await] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_fn] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_impl] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_mod] = ACTIONS(2036), - [anon_sym_pub] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_trait] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_unsafe] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_where] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [sym_mutable_specifier] = ACTIONS(2036), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym__token_pattern] = STATE(260), + [sym_token_tree_pattern] = STATE(260), + [sym_token_binding_pattern] = STATE(260), + [sym_token_repetition_pattern] = STATE(260), + [sym__literal] = STATE(260), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2028), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_await] = 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_where] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [sym_mutable_specifier] = ACTIONS(2067), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_crate] = ACTIONS(2067), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [495] = { - [sym__token_pattern] = STATE(500), - [sym_token_tree_pattern] = STATE(500), - [sym_token_binding_pattern] = STATE(500), - [sym_token_repetition_pattern] = STATE(500), - [sym__literal] = STATE(500), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_pattern_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym__token_pattern] = STATE(493), + [sym_token_tree_pattern] = STATE(493), + [sym_token_binding_pattern] = STATE(493), + [sym_token_repetition_pattern] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2028), + [anon_sym_u8] = ACTIONS(2073), + [anon_sym_i8] = ACTIONS(2073), + [anon_sym_u16] = ACTIONS(2073), + [anon_sym_i16] = ACTIONS(2073), + [anon_sym_u32] = ACTIONS(2073), + [anon_sym_i32] = ACTIONS(2073), + [anon_sym_u64] = ACTIONS(2073), + [anon_sym_i64] = ACTIONS(2073), + [anon_sym_u128] = ACTIONS(2073), + [anon_sym_i128] = ACTIONS(2073), + [anon_sym_isize] = ACTIONS(2073), + [anon_sym_usize] = ACTIONS(2073), + [anon_sym_f32] = ACTIONS(2073), + [anon_sym_f64] = ACTIONS(2073), + [anon_sym_bool] = ACTIONS(2073), + [anon_sym_str] = ACTIONS(2073), + [anon_sym_char] = ACTIONS(2073), + [aux_sym__non_special_token_token1] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_as] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2073), + [anon_sym_break] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2073), + [anon_sym_continue] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(2073), + [anon_sym_enum] = ACTIONS(2073), + [anon_sym_fn] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_if] = ACTIONS(2073), + [anon_sym_impl] = ACTIONS(2073), + [anon_sym_let] = ACTIONS(2073), + [anon_sym_loop] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_mod] = ACTIONS(2073), + [anon_sym_pub] = ACTIONS(2073), + [anon_sym_return] = ACTIONS(2073), + [anon_sym_static] = ACTIONS(2073), + [anon_sym_struct] = ACTIONS(2073), + [anon_sym_trait] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_union] = ACTIONS(2073), + [anon_sym_unsafe] = ACTIONS(2073), + [anon_sym_use] = ACTIONS(2073), + [anon_sym_where] = ACTIONS(2073), + [anon_sym_while] = ACTIONS(2073), + [sym_mutable_specifier] = ACTIONS(2073), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2073), + [sym_super] = ACTIONS(2073), + [sym_crate] = ACTIONS(2073), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [496] = { - [sym__token_pattern] = STATE(249), - [sym_token_tree_pattern] = STATE(249), - [sym_token_binding_pattern] = STATE(249), - [sym_token_repetition_pattern] = STATE(249), - [sym__literal] = STATE(249), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_pattern_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u128] = ACTIONS(2036), - [anon_sym_i128] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_str] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [aux_sym__non_special_token_token1] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_as] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_await] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_fn] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_impl] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_mod] = ACTIONS(2036), - [anon_sym_pub] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_trait] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_unsafe] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_where] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [sym_mutable_specifier] = ACTIONS(2036), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym__token_pattern] = STATE(260), + [sym_token_tree_pattern] = STATE(260), + [sym_token_binding_pattern] = STATE(260), + [sym_token_repetition_pattern] = STATE(260), + [sym__literal] = STATE(260), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2028), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_await] = 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_where] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [sym_mutable_specifier] = ACTIONS(2067), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_crate] = ACTIONS(2067), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [497] = { @@ -60339,1133 +61750,1368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_token_binding_pattern] = STATE(496), [sym_token_repetition_pattern] = STATE(496), [sym__literal] = STATE(496), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), [aux_sym_token_tree_pattern_repeat1] = STATE(496), - [sym_identifier] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2101), - [anon_sym_i8] = ACTIONS(2101), - [anon_sym_u16] = ACTIONS(2101), - [anon_sym_i16] = ACTIONS(2101), - [anon_sym_u32] = ACTIONS(2101), - [anon_sym_i32] = ACTIONS(2101), - [anon_sym_u64] = ACTIONS(2101), - [anon_sym_i64] = ACTIONS(2101), - [anon_sym_u128] = ACTIONS(2101), - [anon_sym_i128] = ACTIONS(2101), - [anon_sym_isize] = ACTIONS(2101), - [anon_sym_usize] = ACTIONS(2101), - [anon_sym_f32] = ACTIONS(2101), - [anon_sym_f64] = ACTIONS(2101), - [anon_sym_bool] = ACTIONS(2101), - [anon_sym_str] = ACTIONS(2101), - [anon_sym_char] = ACTIONS(2101), - [aux_sym__non_special_token_token1] = ACTIONS(2101), - [anon_sym_SQUOTE] = ACTIONS(2101), - [anon_sym_as] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_await] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_default] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [anon_sym_fn] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_impl] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_loop] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_mod] = ACTIONS(2101), - [anon_sym_pub] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_struct] = ACTIONS(2101), - [anon_sym_trait] = ACTIONS(2101), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_union] = ACTIONS(2101), - [anon_sym_unsafe] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_where] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [sym_mutable_specifier] = ACTIONS(2101), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2101), - [sym_super] = ACTIONS(2101), - [sym_crate] = ACTIONS(2101), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2028), + [anon_sym_u8] = ACTIONS(2077), + [anon_sym_i8] = ACTIONS(2077), + [anon_sym_u16] = ACTIONS(2077), + [anon_sym_i16] = ACTIONS(2077), + [anon_sym_u32] = ACTIONS(2077), + [anon_sym_i32] = ACTIONS(2077), + [anon_sym_u64] = ACTIONS(2077), + [anon_sym_i64] = ACTIONS(2077), + [anon_sym_u128] = ACTIONS(2077), + [anon_sym_i128] = ACTIONS(2077), + [anon_sym_isize] = ACTIONS(2077), + [anon_sym_usize] = ACTIONS(2077), + [anon_sym_f32] = ACTIONS(2077), + [anon_sym_f64] = ACTIONS(2077), + [anon_sym_bool] = ACTIONS(2077), + [anon_sym_str] = ACTIONS(2077), + [anon_sym_char] = ACTIONS(2077), + [aux_sym__non_special_token_token1] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_as] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_default] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [anon_sym_fn] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_impl] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_loop] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_mod] = ACTIONS(2077), + [anon_sym_pub] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_struct] = ACTIONS(2077), + [anon_sym_trait] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_union] = ACTIONS(2077), + [anon_sym_unsafe] = ACTIONS(2077), + [anon_sym_use] = ACTIONS(2077), + [anon_sym_where] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [sym_mutable_specifier] = ACTIONS(2077), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_crate] = ACTIONS(2077), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [498] = { + [sym__token_pattern] = STATE(260), + [sym_token_tree_pattern] = STATE(260), + [sym_token_binding_pattern] = STATE(260), + [sym_token_repetition_pattern] = STATE(260), + [sym__literal] = STATE(260), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2081), + [anon_sym_DOLLAR] = ACTIONS(2028), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_await] = 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_where] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [sym_mutable_specifier] = ACTIONS(2067), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_crate] = ACTIONS(2067), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [499] = { [sym__token_pattern] = STATE(494), [sym_token_tree_pattern] = STATE(494), [sym_token_binding_pattern] = STATE(494), [sym_token_repetition_pattern] = STATE(494), [sym__literal] = STATE(494), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), [aux_sym_token_tree_pattern_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2099), - [anon_sym_DOLLAR] = ACTIONS(2018), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_as] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_await] = 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_where] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [sym_mutable_specifier] = ACTIONS(2103), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2103), - [sym_super] = ACTIONS(2103), - [sym_crate] = ACTIONS(2103), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [499] = { - [sym__token_pattern] = STATE(249), - [sym_token_tree_pattern] = STATE(249), - [sym_token_binding_pattern] = STATE(249), - [sym_token_repetition_pattern] = STATE(249), - [sym__literal] = STATE(249), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_pattern_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u128] = ACTIONS(2036), - [anon_sym_i128] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_str] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [aux_sym__non_special_token_token1] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_as] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_await] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_fn] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_impl] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_mod] = ACTIONS(2036), - [anon_sym_pub] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_trait] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_unsafe] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_where] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [sym_mutable_specifier] = ACTIONS(2036), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2028), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_as] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_await] = 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_where] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [sym_mutable_specifier] = ACTIONS(2083), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_crate] = ACTIONS(2083), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [500] = { - [sym__token_pattern] = STATE(249), - [sym_token_tree_pattern] = STATE(249), - [sym_token_binding_pattern] = STATE(249), - [sym_token_repetition_pattern] = STATE(249), - [sym__literal] = STATE(249), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_pattern_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u128] = ACTIONS(2036), - [anon_sym_i128] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_str] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [aux_sym__non_special_token_token1] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_as] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_await] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_fn] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_impl] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_mod] = ACTIONS(2036), - [anon_sym_pub] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_trait] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_unsafe] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_where] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [sym_mutable_specifier] = ACTIONS(2036), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym__token_pattern] = STATE(492), + [sym_token_tree_pattern] = STATE(492), + [sym_token_binding_pattern] = STATE(492), + [sym_token_repetition_pattern] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2079), + [anon_sym_DOLLAR] = ACTIONS(2028), + [anon_sym_u8] = ACTIONS(2085), + [anon_sym_i8] = ACTIONS(2085), + [anon_sym_u16] = ACTIONS(2085), + [anon_sym_i16] = ACTIONS(2085), + [anon_sym_u32] = ACTIONS(2085), + [anon_sym_i32] = ACTIONS(2085), + [anon_sym_u64] = ACTIONS(2085), + [anon_sym_i64] = ACTIONS(2085), + [anon_sym_u128] = ACTIONS(2085), + [anon_sym_i128] = ACTIONS(2085), + [anon_sym_isize] = ACTIONS(2085), + [anon_sym_usize] = ACTIONS(2085), + [anon_sym_f32] = ACTIONS(2085), + [anon_sym_f64] = ACTIONS(2085), + [anon_sym_bool] = ACTIONS(2085), + [anon_sym_str] = ACTIONS(2085), + [anon_sym_char] = ACTIONS(2085), + [aux_sym__non_special_token_token1] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_await] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), + [anon_sym_fn] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_impl] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_loop] = ACTIONS(2085), + [anon_sym_match] = ACTIONS(2085), + [anon_sym_mod] = ACTIONS(2085), + [anon_sym_pub] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_static] = ACTIONS(2085), + [anon_sym_struct] = ACTIONS(2085), + [anon_sym_trait] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_union] = ACTIONS(2085), + [anon_sym_unsafe] = ACTIONS(2085), + [anon_sym_use] = ACTIONS(2085), + [anon_sym_where] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [sym_mutable_specifier] = ACTIONS(2085), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_crate] = ACTIONS(2085), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [501] = { - [sym_attribute_item] = STATE(547), - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_macro_invocation] = STATE(2349), - [sym_scoped_identifier] = STATE(1578), - [sym_scoped_type_identifier] = STATE(1974), - [sym_match_arm] = STATE(501), - [sym_match_pattern] = STATE(2349), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2070), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_enum_variant_list_repeat1] = STATE(547), - [aux_sym_match_block_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2113), - [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_const] = ACTIONS(2119), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(2125), - [anon_sym_ref] = ACTIONS(2128), - [anon_sym_LT] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2134), - [anon_sym__] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2140), - [sym_mutable_specifier] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2146), - [anon_sym_DASH] = ACTIONS(2149), - [sym_integer_literal] = ACTIONS(2152), - [aux_sym_string_literal_token1] = ACTIONS(2155), - [sym_char_literal] = ACTIONS(2152), - [anon_sym_true] = ACTIONS(2158), - [anon_sym_false] = ACTIONS(2158), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2164), - [sym_raw_string_literal] = ACTIONS(2152), - [sym_float_literal] = ACTIONS(2152), + [sym__token_pattern] = STATE(260), + [sym_token_tree_pattern] = STATE(260), + [sym_token_binding_pattern] = STATE(260), + [sym_token_repetition_pattern] = STATE(260), + [sym__literal] = STATE(260), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2028), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_await] = 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_where] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [sym_mutable_specifier] = ACTIONS(2067), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_crate] = ACTIONS(2067), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [502] = { - [sym_delim_token_tree] = STATE(522), - [sym__delim_tokens] = STATE(522), - [sym__non_delim_token] = STATE(522), - [sym__literal] = STATE(522), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(522), - [sym_identifier] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2177), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_await] = 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_where] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [sym_mutable_specifier] = ACTIONS(2167), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_crate] = ACTIONS(2167), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym__token_pattern] = STATE(260), + [sym_token_tree_pattern] = STATE(260), + [sym_token_binding_pattern] = STATE(260), + [sym_token_repetition_pattern] = STATE(260), + [sym__literal] = STATE(260), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_RPAREN] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2028), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_await] = 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_where] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [sym_mutable_specifier] = ACTIONS(2067), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_crate] = ACTIONS(2067), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [503] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [aux_sym__non_special_token_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [sym_mutable_specifier] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_RBRACK] = ACTIONS(2093), + [anon_sym_DOLLAR] = ACTIONS(2101), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2087), + [anon_sym_SQUOTE] = ACTIONS(2087), + [anon_sym_as] = ACTIONS(2087), + [anon_sym_async] = ACTIONS(2087), + [anon_sym_await] = 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_where] = ACTIONS(2087), + [anon_sym_while] = ACTIONS(2087), + [sym_mutable_specifier] = ACTIONS(2087), + [sym_integer_literal] = ACTIONS(2104), + [aux_sym_string_literal_token1] = ACTIONS(2107), + [sym_char_literal] = ACTIONS(2104), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2087), + [sym_super] = ACTIONS(2087), + [sym_crate] = ACTIONS(2087), + [sym_raw_string_literal] = ACTIONS(2104), + [sym_float_literal] = ACTIONS(2104), [sym_block_comment] = ACTIONS(3), }, [504] = { - [sym_delim_token_tree] = STATE(521), - [sym__delim_tokens] = STATE(521), - [sym__non_delim_token] = STATE(521), - [sym__literal] = STATE(521), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2193), - [anon_sym_u8] = ACTIONS(2191), - [anon_sym_i8] = ACTIONS(2191), - [anon_sym_u16] = ACTIONS(2191), - [anon_sym_i16] = ACTIONS(2191), - [anon_sym_u32] = ACTIONS(2191), - [anon_sym_i32] = ACTIONS(2191), - [anon_sym_u64] = ACTIONS(2191), - [anon_sym_i64] = ACTIONS(2191), - [anon_sym_u128] = ACTIONS(2191), - [anon_sym_i128] = ACTIONS(2191), - [anon_sym_isize] = ACTIONS(2191), - [anon_sym_usize] = ACTIONS(2191), - [anon_sym_f32] = ACTIONS(2191), - [anon_sym_f64] = ACTIONS(2191), - [anon_sym_bool] = ACTIONS(2191), - [anon_sym_str] = ACTIONS(2191), - [anon_sym_char] = ACTIONS(2191), - [aux_sym__non_special_token_token1] = ACTIONS(2191), - [anon_sym_SQUOTE] = ACTIONS(2191), - [anon_sym_as] = ACTIONS(2191), - [anon_sym_async] = ACTIONS(2191), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_break] = ACTIONS(2191), - [anon_sym_const] = ACTIONS(2191), - [anon_sym_continue] = ACTIONS(2191), - [anon_sym_default] = ACTIONS(2191), - [anon_sym_enum] = ACTIONS(2191), - [anon_sym_fn] = ACTIONS(2191), - [anon_sym_for] = ACTIONS(2191), - [anon_sym_if] = ACTIONS(2191), - [anon_sym_impl] = ACTIONS(2191), - [anon_sym_let] = ACTIONS(2191), - [anon_sym_loop] = ACTIONS(2191), - [anon_sym_match] = ACTIONS(2191), - [anon_sym_mod] = ACTIONS(2191), - [anon_sym_pub] = ACTIONS(2191), - [anon_sym_return] = ACTIONS(2191), - [anon_sym_static] = ACTIONS(2191), - [anon_sym_struct] = ACTIONS(2191), - [anon_sym_trait] = ACTIONS(2191), - [anon_sym_type] = ACTIONS(2191), - [anon_sym_union] = ACTIONS(2191), - [anon_sym_unsafe] = ACTIONS(2191), - [anon_sym_use] = ACTIONS(2191), - [anon_sym_where] = ACTIONS(2191), - [anon_sym_while] = ACTIONS(2191), - [sym_mutable_specifier] = ACTIONS(2191), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2191), - [sym_super] = ACTIONS(2191), - [sym_crate] = ACTIONS(2191), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_attribute_item] = STATE(554), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_macro_invocation] = STATE(2537), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier] = STATE(1941), + [sym_match_arm] = STATE(508), + [sym_last_match_arm] = STATE(2560), + [sym_match_pattern] = STATE(2393), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1956), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_enum_variant_list_repeat1] = STATE(554), + [aux_sym_match_block_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1164), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [505] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [aux_sym__non_special_token_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [sym_mutable_specifier] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_attribute_item] = STATE(554), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_macro_invocation] = STATE(2537), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier] = STATE(1941), + [sym_match_arm] = STATE(508), + [sym_last_match_arm] = STATE(2435), + [sym_match_pattern] = STATE(2393), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1956), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_enum_variant_list_repeat1] = STATE(554), + [aux_sym_match_block_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1164), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [506] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [aux_sym__non_special_token_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [sym_mutable_specifier] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym__token_pattern] = STATE(501), + [sym_token_tree_pattern] = STATE(501), + [sym_token_binding_pattern] = STATE(501), + [sym_token_repetition_pattern] = STATE(501), + [sym__literal] = STATE(501), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(501), + [sym_identifier] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2028), + [anon_sym_u8] = ACTIONS(2113), + [anon_sym_i8] = ACTIONS(2113), + [anon_sym_u16] = ACTIONS(2113), + [anon_sym_i16] = ACTIONS(2113), + [anon_sym_u32] = ACTIONS(2113), + [anon_sym_i32] = ACTIONS(2113), + [anon_sym_u64] = ACTIONS(2113), + [anon_sym_i64] = ACTIONS(2113), + [anon_sym_u128] = ACTIONS(2113), + [anon_sym_i128] = ACTIONS(2113), + [anon_sym_isize] = ACTIONS(2113), + [anon_sym_usize] = ACTIONS(2113), + [anon_sym_f32] = ACTIONS(2113), + [anon_sym_f64] = ACTIONS(2113), + [anon_sym_bool] = ACTIONS(2113), + [anon_sym_str] = ACTIONS(2113), + [anon_sym_char] = ACTIONS(2113), + [aux_sym__non_special_token_token1] = ACTIONS(2113), + [anon_sym_SQUOTE] = ACTIONS(2113), + [anon_sym_as] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_await] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2113), + [anon_sym_fn] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_impl] = ACTIONS(2113), + [anon_sym_let] = ACTIONS(2113), + [anon_sym_loop] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2113), + [anon_sym_mod] = ACTIONS(2113), + [anon_sym_pub] = ACTIONS(2113), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_static] = ACTIONS(2113), + [anon_sym_struct] = ACTIONS(2113), + [anon_sym_trait] = ACTIONS(2113), + [anon_sym_type] = ACTIONS(2113), + [anon_sym_union] = ACTIONS(2113), + [anon_sym_unsafe] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_where] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [sym_mutable_specifier] = ACTIONS(2113), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2113), + [sym_super] = ACTIONS(2113), + [sym_crate] = ACTIONS(2113), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [507] = { - [sym_token_tree] = STATE(538), - [sym_token_repetition] = STATE(538), - [sym__literal] = STATE(538), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_await] = 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_where] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [sym_mutable_specifier] = ACTIONS(2197), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_crate] = ACTIONS(2197), - [sym_metavariable] = ACTIONS(2209), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym__token_pattern] = STATE(498), + [sym_token_tree_pattern] = STATE(498), + [sym_token_binding_pattern] = STATE(498), + [sym_token_repetition_pattern] = STATE(498), + [sym__literal] = STATE(498), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(498), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(2028), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2115), + [anon_sym_async] = ACTIONS(2115), + [anon_sym_await] = 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_where] = ACTIONS(2115), + [anon_sym_while] = ACTIONS(2115), + [sym_mutable_specifier] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2115), + [sym_super] = ACTIONS(2115), + [sym_crate] = ACTIONS(2115), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [508] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [aux_sym__non_special_token_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [sym_mutable_specifier] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_attribute_item] = STATE(553), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_macro_invocation] = STATE(2537), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier] = STATE(1941), + [sym_match_arm] = STATE(508), + [sym_match_pattern] = STATE(2537), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1956), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_enum_variant_list_repeat1] = STATE(553), + [aux_sym_match_block_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_u8] = ACTIONS(2126), + [anon_sym_i8] = ACTIONS(2126), + [anon_sym_u16] = ACTIONS(2126), + [anon_sym_i16] = ACTIONS(2126), + [anon_sym_u32] = ACTIONS(2126), + [anon_sym_i32] = ACTIONS(2126), + [anon_sym_u64] = ACTIONS(2126), + [anon_sym_i64] = ACTIONS(2126), + [anon_sym_u128] = ACTIONS(2126), + [anon_sym_i128] = ACTIONS(2126), + [anon_sym_isize] = ACTIONS(2126), + [anon_sym_usize] = ACTIONS(2126), + [anon_sym_f32] = ACTIONS(2126), + [anon_sym_f64] = ACTIONS(2126), + [anon_sym_bool] = ACTIONS(2126), + [anon_sym_str] = ACTIONS(2126), + [anon_sym_char] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_POUND] = ACTIONS(2135), + [anon_sym_ref] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2144), + [anon_sym__] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2150), + [sym_mutable_specifier] = ACTIONS(2153), + [anon_sym_DOT_DOT] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2159), + [sym_integer_literal] = ACTIONS(2162), + [aux_sym_string_literal_token1] = ACTIONS(2165), + [sym_char_literal] = ACTIONS(2162), + [anon_sym_true] = ACTIONS(2168), + [anon_sym_false] = ACTIONS(2168), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2171), + [sym_super] = ACTIONS(2171), + [sym_crate] = ACTIONS(2171), + [sym_metavariable] = ACTIONS(2174), + [sym_raw_string_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), [sym_block_comment] = ACTIONS(3), }, [509] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [aux_sym__non_special_token_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [sym_mutable_specifier] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [510] = { - [sym_token_tree] = STATE(539), - [sym_token_repetition] = STATE(539), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(539), + [sym__non_delim_token] = STATE(539), [sym__literal] = STATE(539), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(539), - [sym_identifier] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_RBRACK] = ACTIONS(2215), - [anon_sym_DOLLAR] = ACTIONS(2207), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_await] = 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_where] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [sym_mutable_specifier] = ACTIONS(2213), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_crate] = ACTIONS(2213), - [sym_metavariable] = ACTIONS(2217), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [511] = { - [sym_token_tree] = STATE(540), - [sym_token_repetition] = STATE(540), - [sym__literal] = STATE(540), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(540), - [sym_identifier] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_u8] = ACTIONS(2219), - [anon_sym_i8] = ACTIONS(2219), - [anon_sym_u16] = ACTIONS(2219), - [anon_sym_i16] = ACTIONS(2219), - [anon_sym_u32] = ACTIONS(2219), - [anon_sym_i32] = ACTIONS(2219), - [anon_sym_u64] = ACTIONS(2219), - [anon_sym_i64] = ACTIONS(2219), - [anon_sym_u128] = ACTIONS(2219), - [anon_sym_i128] = ACTIONS(2219), - [anon_sym_isize] = ACTIONS(2219), - [anon_sym_usize] = ACTIONS(2219), - [anon_sym_f32] = ACTIONS(2219), - [anon_sym_f64] = ACTIONS(2219), - [anon_sym_bool] = ACTIONS(2219), - [anon_sym_str] = ACTIONS(2219), - [anon_sym_char] = ACTIONS(2219), - [aux_sym__non_special_token_token1] = ACTIONS(2219), - [anon_sym_SQUOTE] = ACTIONS(2219), - [anon_sym_as] = ACTIONS(2219), - [anon_sym_async] = ACTIONS(2219), - [anon_sym_await] = ACTIONS(2219), - [anon_sym_break] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(2219), - [anon_sym_continue] = ACTIONS(2219), - [anon_sym_default] = ACTIONS(2219), - [anon_sym_enum] = ACTIONS(2219), - [anon_sym_fn] = ACTIONS(2219), - [anon_sym_for] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2219), - [anon_sym_impl] = ACTIONS(2219), - [anon_sym_let] = ACTIONS(2219), - [anon_sym_loop] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2219), - [anon_sym_mod] = ACTIONS(2219), - [anon_sym_pub] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2219), - [anon_sym_static] = ACTIONS(2219), - [anon_sym_struct] = ACTIONS(2219), - [anon_sym_trait] = ACTIONS(2219), - [anon_sym_type] = ACTIONS(2219), - [anon_sym_union] = ACTIONS(2219), - [anon_sym_unsafe] = ACTIONS(2219), - [anon_sym_use] = ACTIONS(2219), - [anon_sym_where] = ACTIONS(2219), - [anon_sym_while] = ACTIONS(2219), - [sym_mutable_specifier] = ACTIONS(2219), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2219), - [sym_super] = ACTIONS(2219), - [sym_crate] = ACTIONS(2219), - [sym_metavariable] = ACTIONS(2221), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [512] = { - [sym_delim_token_tree] = STATE(503), + [sym_delim_token_tree] = STATE(587), [sym__delim_tokens] = STATE(503), [sym__non_delim_token] = STATE(503), [sym__literal] = STATE(503), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [512] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_u8] = ACTIONS(2203), + [anon_sym_i8] = ACTIONS(2203), + [anon_sym_u16] = ACTIONS(2203), + [anon_sym_i16] = ACTIONS(2203), + [anon_sym_u32] = ACTIONS(2203), + [anon_sym_i32] = ACTIONS(2203), + [anon_sym_u64] = ACTIONS(2203), + [anon_sym_i64] = ACTIONS(2203), + [anon_sym_u128] = ACTIONS(2203), + [anon_sym_i128] = ACTIONS(2203), + [anon_sym_isize] = ACTIONS(2203), + [anon_sym_usize] = ACTIONS(2203), + [anon_sym_f32] = ACTIONS(2203), + [anon_sym_f64] = ACTIONS(2203), + [anon_sym_bool] = ACTIONS(2203), + [anon_sym_str] = ACTIONS(2203), + [anon_sym_char] = ACTIONS(2203), + [aux_sym__non_special_token_token1] = ACTIONS(2203), + [anon_sym_SQUOTE] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_async] = ACTIONS(2203), + [anon_sym_await] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(2203), + [anon_sym_enum] = ACTIONS(2203), + [anon_sym_fn] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_impl] = ACTIONS(2203), + [anon_sym_let] = ACTIONS(2203), + [anon_sym_loop] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_mod] = ACTIONS(2203), + [anon_sym_pub] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_static] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_trait] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(2203), + [anon_sym_use] = ACTIONS(2203), + [anon_sym_where] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [sym_mutable_specifier] = ACTIONS(2203), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2203), + [sym_super] = ACTIONS(2203), + [sym_crate] = ACTIONS(2203), + [sym_metavariable] = ACTIONS(2215), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [513] = { + [sym_token_tree] = STATE(514), + [sym_token_repetition] = STATE(514), + [sym__literal] = STATE(514), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(514), + [sym_identifier] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2213), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_as] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_await] = 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_where] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [sym_mutable_specifier] = ACTIONS(2217), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2217), + [sym_super] = ACTIONS(2217), + [sym_crate] = ACTIONS(2217), + [sym_metavariable] = ACTIONS(2221), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [514] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_RPAREN] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_u8] = ACTIONS(2203), + [anon_sym_i8] = ACTIONS(2203), + [anon_sym_u16] = ACTIONS(2203), + [anon_sym_i16] = ACTIONS(2203), + [anon_sym_u32] = ACTIONS(2203), + [anon_sym_i32] = ACTIONS(2203), + [anon_sym_u64] = ACTIONS(2203), + [anon_sym_i64] = ACTIONS(2203), + [anon_sym_u128] = ACTIONS(2203), + [anon_sym_i128] = ACTIONS(2203), + [anon_sym_isize] = ACTIONS(2203), + [anon_sym_usize] = ACTIONS(2203), + [anon_sym_f32] = ACTIONS(2203), + [anon_sym_f64] = ACTIONS(2203), + [anon_sym_bool] = ACTIONS(2203), + [anon_sym_str] = ACTIONS(2203), + [anon_sym_char] = ACTIONS(2203), + [aux_sym__non_special_token_token1] = ACTIONS(2203), + [anon_sym_SQUOTE] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_async] = ACTIONS(2203), + [anon_sym_await] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(2203), + [anon_sym_enum] = ACTIONS(2203), + [anon_sym_fn] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_impl] = ACTIONS(2203), + [anon_sym_let] = ACTIONS(2203), + [anon_sym_loop] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_mod] = ACTIONS(2203), + [anon_sym_pub] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_static] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_trait] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(2203), + [anon_sym_use] = ACTIONS(2203), + [anon_sym_where] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [sym_mutable_specifier] = ACTIONS(2203), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2203), + [sym_super] = ACTIONS(2203), + [sym_crate] = ACTIONS(2203), + [sym_metavariable] = ACTIONS(2215), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [515] = { + [sym_token_tree] = STATE(512), + [sym_token_repetition] = STATE(512), + [sym__literal] = STATE(512), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(512), [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2213), [anon_sym_u8] = ACTIONS(2223), [anon_sym_i8] = ACTIONS(2223), [anon_sym_u16] = ACTIONS(2223), @@ -61492,497 +63138,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2223), [anon_sym_continue] = ACTIONS(2223), [anon_sym_default] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_fn] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_impl] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_loop] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_mod] = ACTIONS(2223), - [anon_sym_pub] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_trait] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_union] = ACTIONS(2223), - [anon_sym_unsafe] = ACTIONS(2223), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), - [sym_block_comment] = ACTIONS(3), - }, - [513] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [aux_sym__non_special_token_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [sym_mutable_specifier] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), - [sym_block_comment] = ACTIONS(3), - }, - [514] = { - [sym_token_tree] = STATE(545), - [sym_token_repetition] = STATE(545), - [sym__literal] = STATE(545), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(545), - [sym_identifier] = ACTIONS(2231), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_u8] = ACTIONS(2231), - [anon_sym_i8] = ACTIONS(2231), - [anon_sym_u16] = ACTIONS(2231), - [anon_sym_i16] = ACTIONS(2231), - [anon_sym_u32] = ACTIONS(2231), - [anon_sym_i32] = ACTIONS(2231), - [anon_sym_u64] = ACTIONS(2231), - [anon_sym_i64] = ACTIONS(2231), - [anon_sym_u128] = ACTIONS(2231), - [anon_sym_i128] = ACTIONS(2231), - [anon_sym_isize] = ACTIONS(2231), - [anon_sym_usize] = ACTIONS(2231), - [anon_sym_f32] = ACTIONS(2231), - [anon_sym_f64] = ACTIONS(2231), - [anon_sym_bool] = ACTIONS(2231), - [anon_sym_str] = ACTIONS(2231), - [anon_sym_char] = ACTIONS(2231), - [aux_sym__non_special_token_token1] = ACTIONS(2231), - [anon_sym_SQUOTE] = ACTIONS(2231), - [anon_sym_as] = ACTIONS(2231), - [anon_sym_async] = ACTIONS(2231), - [anon_sym_await] = ACTIONS(2231), - [anon_sym_break] = ACTIONS(2231), - [anon_sym_const] = ACTIONS(2231), - [anon_sym_continue] = ACTIONS(2231), - [anon_sym_default] = ACTIONS(2231), - [anon_sym_enum] = ACTIONS(2231), - [anon_sym_fn] = ACTIONS(2231), - [anon_sym_for] = ACTIONS(2231), - [anon_sym_if] = ACTIONS(2231), - [anon_sym_impl] = ACTIONS(2231), - [anon_sym_let] = ACTIONS(2231), - [anon_sym_loop] = ACTIONS(2231), - [anon_sym_match] = ACTIONS(2231), - [anon_sym_mod] = ACTIONS(2231), - [anon_sym_pub] = ACTIONS(2231), - [anon_sym_return] = ACTIONS(2231), - [anon_sym_static] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2231), - [anon_sym_trait] = ACTIONS(2231), - [anon_sym_type] = ACTIONS(2231), - [anon_sym_union] = ACTIONS(2231), - [anon_sym_unsafe] = ACTIONS(2231), - [anon_sym_use] = ACTIONS(2231), - [anon_sym_where] = ACTIONS(2231), - [anon_sym_while] = ACTIONS(2231), - [sym_mutable_specifier] = ACTIONS(2231), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2231), - [sym_super] = ACTIONS(2231), - [sym_crate] = ACTIONS(2231), - [sym_metavariable] = ACTIONS(2233), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [515] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [aux_sym__non_special_token_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [sym_mutable_specifier] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), - [sym_block_comment] = ACTIONS(3), - }, - [516] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [aux_sym__non_special_token_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [sym_mutable_specifier] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), - [sym_block_comment] = ACTIONS(3), - }, - [517] = { - [sym_token_tree] = STATE(493), - [sym_token_repetition] = STATE(493), - [sym__literal] = STATE(493), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_RBRACK] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [518] = { - [sym_token_tree] = STATE(493), - [sym_token_repetition] = STATE(493), - [sym__literal] = STATE(493), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2223), + [anon_sym_fn] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_impl] = ACTIONS(2223), + [anon_sym_let] = ACTIONS(2223), + [anon_sym_loop] = ACTIONS(2223), + [anon_sym_match] = ACTIONS(2223), + [anon_sym_mod] = ACTIONS(2223), + [anon_sym_pub] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_static] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2223), + [anon_sym_trait] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_union] = ACTIONS(2223), + [anon_sym_unsafe] = ACTIONS(2223), + [anon_sym_use] = ACTIONS(2223), + [anon_sym_where] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [sym_mutable_specifier] = ACTIONS(2223), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_crate] = ACTIONS(2223), + [sym_metavariable] = ACTIONS(2225), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [516] = { + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2227), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [517] = { + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [518] = { + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [519] = { - [sym_token_tree] = STATE(493), - [sym_token_repetition] = STATE(493), - [sym__literal] = STATE(493), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(493), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(531), + [sym__non_delim_token] = STATE(531), + [sym__literal] = STATE(531), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(531), + [sym_identifier] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2233), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_await] = 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_where] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [sym_mutable_specifier] = ACTIONS(2229), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2229), + [sym_super] = ACTIONS(2229), + [sym_crate] = ACTIONS(2229), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [520] = { + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(516), + [sym__non_delim_token] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(516), [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2237), + [anon_sym_DOLLAR] = ACTIONS(2239), [anon_sym_u8] = ACTIONS(2235), [anon_sym_i8] = ACTIONS(2235), [anon_sym_u16] = ACTIONS(2235), @@ -62030,33 +63530,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2235), [anon_sym_while] = ACTIONS(2235), [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2235), [sym_super] = ACTIONS(2235), [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [520] = { - [sym_token_tree] = STATE(517), - [sym_token_repetition] = STATE(517), - [sym__literal] = STATE(517), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(517), + [521] = { + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(518), + [sym__non_delim_token] = STATE(518), + [sym__literal] = STATE(518), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(518), [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_RBRACK] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2243), [anon_sym_u8] = ACTIONS(2241), [anon_sym_i8] = ACTIONS(2241), [anon_sym_u16] = ACTIONS(2241), @@ -62104,256 +63604,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2241), [anon_sym_while] = ACTIONS(2241), [sym_mutable_specifier] = ACTIONS(2241), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2241), [sym_super] = ACTIONS(2241), [sym_crate] = ACTIONS(2241), - [sym_metavariable] = ACTIONS(2245), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [521] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [aux_sym__non_special_token_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [sym_mutable_specifier] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [522] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [aux_sym__non_special_token_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [sym_mutable_specifier] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(532), + [sym__non_delim_token] = STATE(532), + [sym__literal] = STATE(532), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(532), + [sym_identifier] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2247), + [anon_sym_u8] = ACTIONS(2245), + [anon_sym_i8] = ACTIONS(2245), + [anon_sym_u16] = ACTIONS(2245), + [anon_sym_i16] = ACTIONS(2245), + [anon_sym_u32] = ACTIONS(2245), + [anon_sym_i32] = ACTIONS(2245), + [anon_sym_u64] = ACTIONS(2245), + [anon_sym_i64] = ACTIONS(2245), + [anon_sym_u128] = ACTIONS(2245), + [anon_sym_i128] = ACTIONS(2245), + [anon_sym_isize] = ACTIONS(2245), + [anon_sym_usize] = ACTIONS(2245), + [anon_sym_f32] = ACTIONS(2245), + [anon_sym_f64] = ACTIONS(2245), + [anon_sym_bool] = ACTIONS(2245), + [anon_sym_str] = ACTIONS(2245), + [anon_sym_char] = ACTIONS(2245), + [aux_sym__non_special_token_token1] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_fn] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_impl] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_loop] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_mod] = ACTIONS(2245), + [anon_sym_pub] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_trait] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_union] = ACTIONS(2245), + [anon_sym_unsafe] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_where] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [sym_mutable_specifier] = ACTIONS(2245), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_crate] = ACTIONS(2245), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [523] = { - [sym_delim_token_tree] = STATE(505), - [sym__delim_tokens] = STATE(505), - [sym__non_delim_token] = STATE(505), - [sym__literal] = STATE(505), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(505), - [sym_identifier] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2249), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(533), + [sym__non_delim_token] = STATE(533), + [sym__literal] = STATE(533), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(533), + [sym_identifier] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2231), [anon_sym_DOLLAR] = ACTIONS(2251), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2247), - [anon_sym_SQUOTE] = ACTIONS(2247), - [anon_sym_as] = ACTIONS(2247), - [anon_sym_async] = ACTIONS(2247), - [anon_sym_await] = 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_where] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2247), - [sym_mutable_specifier] = ACTIONS(2247), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2247), - [sym_super] = ACTIONS(2247), - [sym_crate] = ACTIONS(2247), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [anon_sym_u8] = ACTIONS(2249), + [anon_sym_i8] = ACTIONS(2249), + [anon_sym_u16] = ACTIONS(2249), + [anon_sym_i16] = ACTIONS(2249), + [anon_sym_u32] = ACTIONS(2249), + [anon_sym_i32] = ACTIONS(2249), + [anon_sym_u64] = ACTIONS(2249), + [anon_sym_i64] = ACTIONS(2249), + [anon_sym_u128] = ACTIONS(2249), + [anon_sym_i128] = ACTIONS(2249), + [anon_sym_isize] = ACTIONS(2249), + [anon_sym_usize] = ACTIONS(2249), + [anon_sym_f32] = ACTIONS(2249), + [anon_sym_f64] = ACTIONS(2249), + [anon_sym_bool] = ACTIONS(2249), + [anon_sym_str] = ACTIONS(2249), + [anon_sym_char] = ACTIONS(2249), + [aux_sym__non_special_token_token1] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_as] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_impl] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_loop] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_mod] = ACTIONS(2249), + [anon_sym_pub] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_trait] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_unsafe] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_where] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [sym_mutable_specifier] = ACTIONS(2249), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_crate] = ACTIONS(2249), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [524] = { - [sym_delim_token_tree] = STATE(506), - [sym__delim_tokens] = STATE(506), - [sym__non_delim_token] = STATE(506), - [sym__literal] = STATE(506), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(535), + [sym__non_delim_token] = STATE(535), + [sym__literal] = STATE(535), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(535), [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2257), [anon_sym_u8] = ACTIONS(2253), [anon_sym_i8] = ACTIONS(2253), [anon_sym_u16] = ACTIONS(2253), @@ -62401,254 +63826,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2253), [anon_sym_while] = ACTIONS(2253), [sym_mutable_specifier] = ACTIONS(2253), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2253), [sym_super] = ACTIONS(2253), [sym_crate] = ACTIONS(2253), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [525] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [aux_sym__non_special_token_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [sym_mutable_specifier] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), - [sym_block_comment] = ACTIONS(3), - }, - [526] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [aux_sym__non_special_token_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [sym_mutable_specifier] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), - [sym_block_comment] = ACTIONS(3), - }, - [527] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [aux_sym__non_special_token_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [sym_mutable_specifier] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), - [sym_block_comment] = ACTIONS(3), - }, - [528] = { - [sym_delim_token_tree] = STATE(532), - [sym__delim_tokens] = STATE(532), - [sym__non_delim_token] = STATE(532), - [sym__literal] = STATE(532), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(532), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(509), + [sym__non_delim_token] = STATE(509), + [sym__literal] = STATE(509), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(509), [sym_identifier] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2185), [anon_sym_DOLLAR] = ACTIONS(2261), [anon_sym_u8] = ACTIONS(2259), [anon_sym_i8] = ACTIONS(2259), @@ -62697,33 +63900,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2259), [anon_sym_while] = ACTIONS(2259), [sym_mutable_specifier] = ACTIONS(2259), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2259), [sym_super] = ACTIONS(2259), [sym_crate] = ACTIONS(2259), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [529] = { - [sym_delim_token_tree] = STATE(525), - [sym__delim_tokens] = STATE(525), - [sym__non_delim_token] = STATE(525), - [sym__literal] = STATE(525), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(525), + [526] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_RBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_u8] = ACTIONS(2203), + [anon_sym_i8] = ACTIONS(2203), + [anon_sym_u16] = ACTIONS(2203), + [anon_sym_i16] = ACTIONS(2203), + [anon_sym_u32] = ACTIONS(2203), + [anon_sym_i32] = ACTIONS(2203), + [anon_sym_u64] = ACTIONS(2203), + [anon_sym_i64] = ACTIONS(2203), + [anon_sym_u128] = ACTIONS(2203), + [anon_sym_i128] = ACTIONS(2203), + [anon_sym_isize] = ACTIONS(2203), + [anon_sym_usize] = ACTIONS(2203), + [anon_sym_f32] = ACTIONS(2203), + [anon_sym_f64] = ACTIONS(2203), + [anon_sym_bool] = ACTIONS(2203), + [anon_sym_str] = ACTIONS(2203), + [anon_sym_char] = ACTIONS(2203), + [aux_sym__non_special_token_token1] = ACTIONS(2203), + [anon_sym_SQUOTE] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_async] = ACTIONS(2203), + [anon_sym_await] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(2203), + [anon_sym_enum] = ACTIONS(2203), + [anon_sym_fn] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_impl] = ACTIONS(2203), + [anon_sym_let] = ACTIONS(2203), + [anon_sym_loop] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_mod] = ACTIONS(2203), + [anon_sym_pub] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_static] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_trait] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(2203), + [anon_sym_use] = ACTIONS(2203), + [anon_sym_where] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [sym_mutable_specifier] = ACTIONS(2203), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2203), + [sym_super] = ACTIONS(2203), + [sym_crate] = ACTIONS(2203), + [sym_metavariable] = ACTIONS(2215), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [527] = { + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(538), + [sym__non_delim_token] = STATE(538), + [sym__literal] = STATE(538), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(538), [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2255), + [anon_sym_DOLLAR] = ACTIONS(2265), [anon_sym_u8] = ACTIONS(2263), [anon_sym_i8] = ACTIONS(2263), [anon_sym_u16] = ACTIONS(2263), @@ -62771,33 +64048,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2263), [anon_sym_while] = ACTIONS(2263), [sym_mutable_specifier] = ACTIONS(2263), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2263), [sym_super] = ACTIONS(2263), [sym_crate] = ACTIONS(2263), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [530] = { - [sym_delim_token_tree] = STATE(533), - [sym__delim_tokens] = STATE(533), - [sym__non_delim_token] = STATE(533), - [sym__literal] = STATE(533), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(533), + [528] = { + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2267), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [529] = { + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(547), + [sym__non_delim_token] = STATE(547), + [sym__literal] = STATE(547), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(547), [sym_identifier] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2271), + [anon_sym_DOLLAR] = ACTIONS(2273), [anon_sym_u8] = ACTIONS(2269), [anon_sym_i8] = ACTIONS(2269), [anon_sym_u16] = ACTIONS(2269), @@ -62845,255 +64196,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2269), [anon_sym_while] = ACTIONS(2269), [sym_mutable_specifier] = ACTIONS(2269), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2269), [sym_super] = ACTIONS(2269), [sym_crate] = ACTIONS(2269), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [530] = { + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [531] = { - [sym_delim_token_tree] = STATE(513), - [sym__delim_tokens] = STATE(513), - [sym__non_delim_token] = STATE(513), - [sym__literal] = STATE(513), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_u8] = ACTIONS(2273), - [anon_sym_i8] = ACTIONS(2273), - [anon_sym_u16] = ACTIONS(2273), - [anon_sym_i16] = ACTIONS(2273), - [anon_sym_u32] = ACTIONS(2273), - [anon_sym_i32] = ACTIONS(2273), - [anon_sym_u64] = ACTIONS(2273), - [anon_sym_i64] = ACTIONS(2273), - [anon_sym_u128] = ACTIONS(2273), - [anon_sym_i128] = ACTIONS(2273), - [anon_sym_isize] = ACTIONS(2273), - [anon_sym_usize] = ACTIONS(2273), - [anon_sym_f32] = ACTIONS(2273), - [anon_sym_f64] = ACTIONS(2273), - [anon_sym_bool] = ACTIONS(2273), - [anon_sym_str] = ACTIONS(2273), - [anon_sym_char] = ACTIONS(2273), - [aux_sym__non_special_token_token1] = ACTIONS(2273), - [anon_sym_SQUOTE] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_async] = ACTIONS(2273), - [anon_sym_await] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_default] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_impl] = ACTIONS(2273), - [anon_sym_let] = ACTIONS(2273), - [anon_sym_loop] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_mod] = ACTIONS(2273), - [anon_sym_pub] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_static] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_trait] = ACTIONS(2273), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_where] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [sym_mutable_specifier] = ACTIONS(2273), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2273), - [sym_super] = ACTIONS(2273), - [sym_crate] = ACTIONS(2273), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2275), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [532] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [aux_sym__non_special_token_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [sym_mutable_specifier] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2275), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [533] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [aux_sym__non_special_token_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_as] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_where] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [sym_mutable_specifier] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2275), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [534] = { - [sym_delim_token_tree] = STATE(508), - [sym__delim_tokens] = STATE(508), - [sym__non_delim_token] = STATE(508), - [sym__literal] = STATE(508), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(508), + [sym_token_tree] = STATE(526), + [sym_token_repetition] = STATE(526), + [sym__literal] = STATE(526), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(526), [sym_identifier] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_RBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2213), [anon_sym_u8] = ACTIONS(2277), [anon_sym_i8] = ACTIONS(2277), [anon_sym_u16] = ACTIONS(2277), @@ -63141,699 +64565,1069 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2277), [anon_sym_while] = ACTIONS(2277), [sym_mutable_specifier] = ACTIONS(2277), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2277), [sym_super] = ACTIONS(2277), [sym_crate] = ACTIONS(2277), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_metavariable] = ACTIONS(2279), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [535] = { - [sym_delim_token_tree] = STATE(526), - [sym__delim_tokens] = STATE(526), - [sym__non_delim_token] = STATE(526), - [sym__literal] = STATE(526), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(526), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2283), - [anon_sym_u8] = ACTIONS(2281), - [anon_sym_i8] = ACTIONS(2281), - [anon_sym_u16] = ACTIONS(2281), - [anon_sym_i16] = ACTIONS(2281), - [anon_sym_u32] = ACTIONS(2281), - [anon_sym_i32] = ACTIONS(2281), - [anon_sym_u64] = ACTIONS(2281), - [anon_sym_i64] = ACTIONS(2281), - [anon_sym_u128] = ACTIONS(2281), - [anon_sym_i128] = ACTIONS(2281), - [anon_sym_isize] = ACTIONS(2281), - [anon_sym_usize] = ACTIONS(2281), - [anon_sym_f32] = ACTIONS(2281), - [anon_sym_f64] = ACTIONS(2281), - [anon_sym_bool] = ACTIONS(2281), - [anon_sym_str] = ACTIONS(2281), - [anon_sym_char] = ACTIONS(2281), - [aux_sym__non_special_token_token1] = ACTIONS(2281), - [anon_sym_SQUOTE] = ACTIONS(2281), - [anon_sym_as] = ACTIONS(2281), - [anon_sym_async] = ACTIONS(2281), - [anon_sym_await] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_default] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [anon_sym_fn] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_impl] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_loop] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_mod] = ACTIONS(2281), - [anon_sym_pub] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_static] = ACTIONS(2281), - [anon_sym_struct] = ACTIONS(2281), - [anon_sym_trait] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2281), - [anon_sym_union] = ACTIONS(2281), - [anon_sym_unsafe] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_where] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [sym_mutable_specifier] = ACTIONS(2281), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2281), - [sym_super] = ACTIONS(2281), - [sym_crate] = ACTIONS(2281), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [536] = { - [sym_delim_token_tree] = STATE(527), - [sym__delim_tokens] = STATE(527), - [sym__non_delim_token] = STATE(527), - [sym__literal] = STATE(527), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(527), - [sym_identifier] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_u8] = ACTIONS(2285), - [anon_sym_i8] = ACTIONS(2285), - [anon_sym_u16] = ACTIONS(2285), - [anon_sym_i16] = ACTIONS(2285), - [anon_sym_u32] = ACTIONS(2285), - [anon_sym_i32] = ACTIONS(2285), - [anon_sym_u64] = ACTIONS(2285), - [anon_sym_i64] = ACTIONS(2285), - [anon_sym_u128] = ACTIONS(2285), - [anon_sym_i128] = ACTIONS(2285), - [anon_sym_isize] = ACTIONS(2285), - [anon_sym_usize] = ACTIONS(2285), - [anon_sym_f32] = ACTIONS(2285), - [anon_sym_f64] = ACTIONS(2285), - [anon_sym_bool] = ACTIONS(2285), - [anon_sym_str] = ACTIONS(2285), - [anon_sym_char] = ACTIONS(2285), - [aux_sym__non_special_token_token1] = ACTIONS(2285), - [anon_sym_SQUOTE] = ACTIONS(2285), - [anon_sym_as] = ACTIONS(2285), - [anon_sym_async] = ACTIONS(2285), - [anon_sym_await] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_enum] = ACTIONS(2285), - [anon_sym_fn] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_impl] = ACTIONS(2285), - [anon_sym_let] = ACTIONS(2285), - [anon_sym_loop] = ACTIONS(2285), - [anon_sym_match] = ACTIONS(2285), - [anon_sym_mod] = ACTIONS(2285), - [anon_sym_pub] = ACTIONS(2285), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_static] = ACTIONS(2285), - [anon_sym_struct] = ACTIONS(2285), - [anon_sym_trait] = ACTIONS(2285), - [anon_sym_type] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_unsafe] = ACTIONS(2285), - [anon_sym_use] = ACTIONS(2285), - [anon_sym_where] = ACTIONS(2285), - [anon_sym_while] = ACTIONS(2285), - [sym_mutable_specifier] = ACTIONS(2285), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2285), - [sym_super] = ACTIONS(2285), - [sym_crate] = ACTIONS(2285), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_RBRACK] = ACTIONS(2281), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_u8] = ACTIONS(2203), + [anon_sym_i8] = ACTIONS(2203), + [anon_sym_u16] = ACTIONS(2203), + [anon_sym_i16] = ACTIONS(2203), + [anon_sym_u32] = ACTIONS(2203), + [anon_sym_i32] = ACTIONS(2203), + [anon_sym_u64] = ACTIONS(2203), + [anon_sym_i64] = ACTIONS(2203), + [anon_sym_u128] = ACTIONS(2203), + [anon_sym_i128] = ACTIONS(2203), + [anon_sym_isize] = ACTIONS(2203), + [anon_sym_usize] = ACTIONS(2203), + [anon_sym_f32] = ACTIONS(2203), + [anon_sym_f64] = ACTIONS(2203), + [anon_sym_bool] = ACTIONS(2203), + [anon_sym_str] = ACTIONS(2203), + [anon_sym_char] = ACTIONS(2203), + [aux_sym__non_special_token_token1] = ACTIONS(2203), + [anon_sym_SQUOTE] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_async] = ACTIONS(2203), + [anon_sym_await] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(2203), + [anon_sym_enum] = ACTIONS(2203), + [anon_sym_fn] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_impl] = ACTIONS(2203), + [anon_sym_let] = ACTIONS(2203), + [anon_sym_loop] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_mod] = ACTIONS(2203), + [anon_sym_pub] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_static] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_trait] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(2203), + [anon_sym_use] = ACTIONS(2203), + [anon_sym_where] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [sym_mutable_specifier] = ACTIONS(2203), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2203), + [sym_super] = ACTIONS(2203), + [sym_crate] = ACTIONS(2203), + [sym_metavariable] = ACTIONS(2215), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [537] = { - [sym_token_tree] = STATE(519), - [sym_token_repetition] = STATE(519), - [sym__literal] = STATE(519), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(519), - [sym_identifier] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_u8] = ACTIONS(2289), - [anon_sym_i8] = ACTIONS(2289), - [anon_sym_u16] = ACTIONS(2289), - [anon_sym_i16] = ACTIONS(2289), - [anon_sym_u32] = ACTIONS(2289), - [anon_sym_i32] = ACTIONS(2289), - [anon_sym_u64] = ACTIONS(2289), - [anon_sym_i64] = ACTIONS(2289), - [anon_sym_u128] = ACTIONS(2289), - [anon_sym_i128] = ACTIONS(2289), - [anon_sym_isize] = ACTIONS(2289), - [anon_sym_usize] = ACTIONS(2289), - [anon_sym_f32] = ACTIONS(2289), - [anon_sym_f64] = ACTIONS(2289), - [anon_sym_bool] = ACTIONS(2289), - [anon_sym_str] = ACTIONS(2289), - [anon_sym_char] = ACTIONS(2289), - [aux_sym__non_special_token_token1] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_default] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - [anon_sym_fn] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_impl] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_loop] = ACTIONS(2289), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_mod] = ACTIONS(2289), - [anon_sym_pub] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_static] = ACTIONS(2289), - [anon_sym_struct] = ACTIONS(2289), - [anon_sym_trait] = ACTIONS(2289), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_union] = ACTIONS(2289), - [anon_sym_unsafe] = ACTIONS(2289), - [anon_sym_use] = ACTIONS(2289), - [anon_sym_where] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [sym_mutable_specifier] = ACTIONS(2289), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2289), - [sym_super] = ACTIONS(2289), - [sym_crate] = ACTIONS(2289), - [sym_metavariable] = ACTIONS(2291), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_u8] = ACTIONS(2203), + [anon_sym_i8] = ACTIONS(2203), + [anon_sym_u16] = ACTIONS(2203), + [anon_sym_i16] = ACTIONS(2203), + [anon_sym_u32] = ACTIONS(2203), + [anon_sym_i32] = ACTIONS(2203), + [anon_sym_u64] = ACTIONS(2203), + [anon_sym_i64] = ACTIONS(2203), + [anon_sym_u128] = ACTIONS(2203), + [anon_sym_i128] = ACTIONS(2203), + [anon_sym_isize] = ACTIONS(2203), + [anon_sym_usize] = ACTIONS(2203), + [anon_sym_f32] = ACTIONS(2203), + [anon_sym_f64] = ACTIONS(2203), + [anon_sym_bool] = ACTIONS(2203), + [anon_sym_str] = ACTIONS(2203), + [anon_sym_char] = ACTIONS(2203), + [aux_sym__non_special_token_token1] = ACTIONS(2203), + [anon_sym_SQUOTE] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_async] = ACTIONS(2203), + [anon_sym_await] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(2203), + [anon_sym_enum] = ACTIONS(2203), + [anon_sym_fn] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_impl] = ACTIONS(2203), + [anon_sym_let] = ACTIONS(2203), + [anon_sym_loop] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_mod] = ACTIONS(2203), + [anon_sym_pub] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_static] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_trait] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(2203), + [anon_sym_use] = ACTIONS(2203), + [anon_sym_where] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [sym_mutable_specifier] = ACTIONS(2203), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2203), + [sym_super] = ACTIONS(2203), + [sym_crate] = ACTIONS(2203), + [sym_metavariable] = ACTIONS(2215), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [538] = { - [sym_token_tree] = STATE(493), - [sym_token_repetition] = STATE(493), - [sym__literal] = STATE(493), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [539] = { - [sym_token_tree] = STATE(493), - [sym_token_repetition] = STATE(493), - [sym__literal] = STATE(493), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_RBRACK] = ACTIONS(2295), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [540] = { - [sym_token_tree] = STATE(493), - [sym_token_repetition] = STATE(493), - [sym__literal] = STATE(493), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [541] = { - [sym_delim_token_tree] = STATE(509), - [sym__delim_tokens] = STATE(509), - [sym__non_delim_token] = STATE(509), - [sym__literal] = STATE(509), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2301), - [anon_sym_u8] = ACTIONS(2297), - [anon_sym_i8] = ACTIONS(2297), - [anon_sym_u16] = ACTIONS(2297), - [anon_sym_i16] = ACTIONS(2297), - [anon_sym_u32] = ACTIONS(2297), - [anon_sym_i32] = ACTIONS(2297), - [anon_sym_u64] = ACTIONS(2297), - [anon_sym_i64] = ACTIONS(2297), - [anon_sym_u128] = ACTIONS(2297), - [anon_sym_i128] = ACTIONS(2297), - [anon_sym_isize] = ACTIONS(2297), - [anon_sym_usize] = ACTIONS(2297), - [anon_sym_f32] = ACTIONS(2297), - [anon_sym_f64] = ACTIONS(2297), - [anon_sym_bool] = ACTIONS(2297), - [anon_sym_str] = ACTIONS(2297), - [anon_sym_char] = ACTIONS(2297), - [aux_sym__non_special_token_token1] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [anon_sym_fn] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_impl] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_loop] = ACTIONS(2297), - [anon_sym_match] = ACTIONS(2297), - [anon_sym_mod] = ACTIONS(2297), - [anon_sym_pub] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_struct] = ACTIONS(2297), - [anon_sym_trait] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_union] = ACTIONS(2297), - [anon_sym_unsafe] = ACTIONS(2297), - [anon_sym_use] = ACTIONS(2297), - [anon_sym_where] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [sym_mutable_specifier] = ACTIONS(2297), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_crate] = ACTIONS(2297), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(528), + [sym__non_delim_token] = STATE(528), + [sym__literal] = STATE(528), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(528), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2285), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(2283), + [anon_sym_as] = ACTIONS(2283), + [anon_sym_async] = ACTIONS(2283), + [anon_sym_await] = 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_where] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2283), + [sym_mutable_specifier] = ACTIONS(2283), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2283), + [sym_super] = ACTIONS(2283), + [sym_crate] = ACTIONS(2283), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [542] = { - [sym_token_tree] = STATE(518), - [sym_token_repetition] = STATE(518), - [sym__literal] = STATE(518), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(518), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2303), - [anon_sym_SQUOTE] = ACTIONS(2303), - [anon_sym_as] = ACTIONS(2303), - [anon_sym_async] = ACTIONS(2303), - [anon_sym_await] = 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_where] = ACTIONS(2303), - [anon_sym_while] = ACTIONS(2303), - [sym_mutable_specifier] = ACTIONS(2303), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2303), - [sym_super] = ACTIONS(2303), - [sym_crate] = ACTIONS(2303), - [sym_metavariable] = ACTIONS(2305), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(530), + [sym__non_delim_token] = STATE(530), + [sym__literal] = STATE(530), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(530), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2289), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2287), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_as] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(2287), + [anon_sym_await] = 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_where] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [sym_mutable_specifier] = ACTIONS(2287), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2287), + [sym_super] = ACTIONS(2287), + [sym_crate] = ACTIONS(2287), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [543] = { - [sym_delim_token_tree] = STATE(515), - [sym__delim_tokens] = STATE(515), - [sym__non_delim_token] = STATE(515), - [sym__literal] = STATE(515), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(515), - [sym_identifier] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2309), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2307), - [anon_sym_SQUOTE] = ACTIONS(2307), - [anon_sym_as] = ACTIONS(2307), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_await] = 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_where] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [sym_mutable_specifier] = ACTIONS(2307), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2307), - [sym_super] = ACTIONS(2307), - [sym_crate] = ACTIONS(2307), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(511), + [sym__non_delim_token] = STATE(511), + [sym__literal] = STATE(511), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(511), + [sym_identifier] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2293), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2291), + [anon_sym_SQUOTE] = ACTIONS(2291), + [anon_sym_as] = ACTIONS(2291), + [anon_sym_async] = ACTIONS(2291), + [anon_sym_await] = 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_where] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [sym_mutable_specifier] = ACTIONS(2291), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2291), + [sym_super] = ACTIONS(2291), + [sym_crate] = ACTIONS(2291), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [544] = { - [sym_delim_token_tree] = STATE(516), - [sym__delim_tokens] = STATE(516), - [sym__non_delim_token] = STATE(516), - [sym__literal] = STATE(516), - [sym_string_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [aux_sym_delim_token_tree_repeat1] = STATE(516), + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_RPAREN] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_u8] = ACTIONS(2203), + [anon_sym_i8] = ACTIONS(2203), + [anon_sym_u16] = ACTIONS(2203), + [anon_sym_i16] = ACTIONS(2203), + [anon_sym_u32] = ACTIONS(2203), + [anon_sym_i32] = ACTIONS(2203), + [anon_sym_u64] = ACTIONS(2203), + [anon_sym_i64] = ACTIONS(2203), + [anon_sym_u128] = ACTIONS(2203), + [anon_sym_i128] = ACTIONS(2203), + [anon_sym_isize] = ACTIONS(2203), + [anon_sym_usize] = ACTIONS(2203), + [anon_sym_f32] = ACTIONS(2203), + [anon_sym_f64] = ACTIONS(2203), + [anon_sym_bool] = ACTIONS(2203), + [anon_sym_str] = ACTIONS(2203), + [anon_sym_char] = ACTIONS(2203), + [aux_sym__non_special_token_token1] = ACTIONS(2203), + [anon_sym_SQUOTE] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_async] = ACTIONS(2203), + [anon_sym_await] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(2203), + [anon_sym_enum] = ACTIONS(2203), + [anon_sym_fn] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_impl] = ACTIONS(2203), + [anon_sym_let] = ACTIONS(2203), + [anon_sym_loop] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_mod] = ACTIONS(2203), + [anon_sym_pub] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_static] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_trait] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(2203), + [anon_sym_use] = ACTIONS(2203), + [anon_sym_where] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [sym_mutable_specifier] = ACTIONS(2203), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2203), + [sym_super] = ACTIONS(2203), + [sym_crate] = ACTIONS(2203), + [sym_metavariable] = ACTIONS(2215), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [545] = { + [sym_token_tree] = STATE(536), + [sym_token_repetition] = STATE(536), + [sym__literal] = STATE(536), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(536), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_RBRACK] = ACTIONS(2297), + [anon_sym_DOLLAR] = ACTIONS(2213), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2295), + [anon_sym_SQUOTE] = ACTIONS(2295), + [anon_sym_as] = ACTIONS(2295), + [anon_sym_async] = ACTIONS(2295), + [anon_sym_await] = 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_where] = ACTIONS(2295), + [anon_sym_while] = ACTIONS(2295), + [sym_mutable_specifier] = ACTIONS(2295), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2295), + [sym_super] = ACTIONS(2295), + [sym_crate] = ACTIONS(2295), + [sym_metavariable] = ACTIONS(2299), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [546] = { + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(517), + [sym__non_delim_token] = STATE(517), + [sym__literal] = STATE(517), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(517), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2303), + [anon_sym_u8] = ACTIONS(2301), + [anon_sym_i8] = ACTIONS(2301), + [anon_sym_u16] = ACTIONS(2301), + [anon_sym_i16] = ACTIONS(2301), + [anon_sym_u32] = ACTIONS(2301), + [anon_sym_i32] = ACTIONS(2301), + [anon_sym_u64] = ACTIONS(2301), + [anon_sym_i64] = ACTIONS(2301), + [anon_sym_u128] = ACTIONS(2301), + [anon_sym_i128] = ACTIONS(2301), + [anon_sym_isize] = ACTIONS(2301), + [anon_sym_usize] = ACTIONS(2301), + [anon_sym_f32] = ACTIONS(2301), + [anon_sym_f64] = ACTIONS(2301), + [anon_sym_bool] = ACTIONS(2301), + [anon_sym_str] = ACTIONS(2301), + [anon_sym_char] = ACTIONS(2301), + [aux_sym__non_special_token_token1] = ACTIONS(2301), + [anon_sym_SQUOTE] = ACTIONS(2301), + [anon_sym_as] = ACTIONS(2301), + [anon_sym_async] = ACTIONS(2301), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_default] = ACTIONS(2301), + [anon_sym_enum] = ACTIONS(2301), + [anon_sym_fn] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_impl] = ACTIONS(2301), + [anon_sym_let] = ACTIONS(2301), + [anon_sym_loop] = ACTIONS(2301), + [anon_sym_match] = ACTIONS(2301), + [anon_sym_mod] = ACTIONS(2301), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_struct] = ACTIONS(2301), + [anon_sym_trait] = ACTIONS(2301), + [anon_sym_type] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(2301), + [anon_sym_unsafe] = ACTIONS(2301), + [anon_sym_use] = ACTIONS(2301), + [anon_sym_where] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [sym_mutable_specifier] = ACTIONS(2301), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2301), + [sym_super] = ACTIONS(2301), + [sym_crate] = ACTIONS(2301), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [547] = { + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2201), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [548] = { + [sym_token_tree] = STATE(550), + [sym_token_repetition] = STATE(550), + [sym__literal] = STATE(550), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(550), + [sym_identifier] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_RPAREN] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_u8] = ACTIONS(2305), + [anon_sym_i8] = ACTIONS(2305), + [anon_sym_u16] = ACTIONS(2305), + [anon_sym_i16] = ACTIONS(2305), + [anon_sym_u32] = ACTIONS(2305), + [anon_sym_i32] = ACTIONS(2305), + [anon_sym_u64] = ACTIONS(2305), + [anon_sym_i64] = ACTIONS(2305), + [anon_sym_u128] = ACTIONS(2305), + [anon_sym_i128] = ACTIONS(2305), + [anon_sym_isize] = ACTIONS(2305), + [anon_sym_usize] = ACTIONS(2305), + [anon_sym_f32] = ACTIONS(2305), + [anon_sym_f64] = ACTIONS(2305), + [anon_sym_bool] = ACTIONS(2305), + [anon_sym_str] = ACTIONS(2305), + [anon_sym_char] = ACTIONS(2305), + [aux_sym__non_special_token_token1] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_as] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_await] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_default] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), + [anon_sym_fn] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_impl] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_loop] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_mod] = ACTIONS(2305), + [anon_sym_pub] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_static] = ACTIONS(2305), + [anon_sym_struct] = ACTIONS(2305), + [anon_sym_trait] = ACTIONS(2305), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_union] = ACTIONS(2305), + [anon_sym_unsafe] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_where] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [sym_mutable_specifier] = ACTIONS(2305), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2305), + [sym_super] = ACTIONS(2305), + [sym_crate] = ACTIONS(2305), + [sym_metavariable] = ACTIONS(2309), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [549] = { + [sym_token_tree] = STATE(537), + [sym_token_repetition] = STATE(537), + [sym__literal] = STATE(537), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(537), [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2213), [anon_sym_u8] = ACTIONS(2311), [anon_sym_i8] = ACTIONS(2311), [anon_sym_u16] = ACTIONS(2311), @@ -63881,224 +65675,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2311), [anon_sym_while] = ACTIONS(2311), [sym_mutable_specifier] = ACTIONS(2311), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(1000), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2311), [sym_super] = ACTIONS(2311), [sym_crate] = ACTIONS(2311), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [sym_metavariable] = ACTIONS(2313), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [545] = { - [sym_token_tree] = STATE(493), - [sym_token_repetition] = STATE(493), - [sym__literal] = STATE(493), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), - [aux_sym_token_tree_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2295), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2020), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2020), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [550] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_RPAREN] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_u8] = ACTIONS(2203), + [anon_sym_i8] = ACTIONS(2203), + [anon_sym_u16] = ACTIONS(2203), + [anon_sym_i16] = ACTIONS(2203), + [anon_sym_u32] = ACTIONS(2203), + [anon_sym_i32] = ACTIONS(2203), + [anon_sym_u64] = ACTIONS(2203), + [anon_sym_i64] = ACTIONS(2203), + [anon_sym_u128] = ACTIONS(2203), + [anon_sym_i128] = ACTIONS(2203), + [anon_sym_isize] = ACTIONS(2203), + [anon_sym_usize] = ACTIONS(2203), + [anon_sym_f32] = ACTIONS(2203), + [anon_sym_f64] = ACTIONS(2203), + [anon_sym_bool] = ACTIONS(2203), + [anon_sym_str] = ACTIONS(2203), + [anon_sym_char] = ACTIONS(2203), + [aux_sym__non_special_token_token1] = ACTIONS(2203), + [anon_sym_SQUOTE] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_async] = ACTIONS(2203), + [anon_sym_await] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(2203), + [anon_sym_enum] = ACTIONS(2203), + [anon_sym_fn] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_impl] = ACTIONS(2203), + [anon_sym_let] = ACTIONS(2203), + [anon_sym_loop] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_mod] = ACTIONS(2203), + [anon_sym_pub] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_static] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_trait] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(2203), + [anon_sym_use] = ACTIONS(2203), + [anon_sym_where] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [sym_mutable_specifier] = ACTIONS(2203), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2203), + [sym_super] = ACTIONS(2203), + [sym_crate] = ACTIONS(2203), + [sym_metavariable] = ACTIONS(2215), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [546] = { - [sym_attribute_item] = STATE(557), - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym_visibility_modifier] = STATE(685), - [sym__type] = STATE(1811), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_enum_variant_list_repeat1] = STATE(557), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), + [551] = { + [sym_delim_token_tree] = STATE(587), + [sym__delim_tokens] = STATE(540), + [sym__non_delim_token] = STATE(540), + [sym__literal] = STATE(540), + [sym_string_literal] = STATE(591), + [sym_boolean_literal] = STATE(591), + [aux_sym_delim_token_tree_repeat1] = STATE(540), + [sym_identifier] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_u8] = ACTIONS(2317), + [anon_sym_i8] = ACTIONS(2317), + [anon_sym_u16] = ACTIONS(2317), + [anon_sym_i16] = ACTIONS(2317), + [anon_sym_u32] = ACTIONS(2317), + [anon_sym_i32] = ACTIONS(2317), + [anon_sym_u64] = ACTIONS(2317), + [anon_sym_i64] = ACTIONS(2317), + [anon_sym_u128] = ACTIONS(2317), + [anon_sym_i128] = ACTIONS(2317), + [anon_sym_isize] = ACTIONS(2317), + [anon_sym_usize] = ACTIONS(2317), + [anon_sym_f32] = ACTIONS(2317), + [anon_sym_f64] = ACTIONS(2317), + [anon_sym_bool] = ACTIONS(2317), + [anon_sym_str] = ACTIONS(2317), + [anon_sym_char] = ACTIONS(2317), + [aux_sym__non_special_token_token1] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_as] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_default] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_fn] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_impl] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_loop] = ACTIONS(2317), + [anon_sym_match] = ACTIONS(2317), + [anon_sym_mod] = ACTIONS(2317), + [anon_sym_pub] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_static] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_trait] = ACTIONS(2317), + [anon_sym_type] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [anon_sym_unsafe] = ACTIONS(2317), + [anon_sym_use] = ACTIONS(2317), + [anon_sym_where] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [sym_mutable_specifier] = ACTIONS(2317), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2317), + [sym_super] = ACTIONS(2317), + [sym_crate] = ACTIONS(2317), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [552] = { + [sym_token_tree] = STATE(544), + [sym_token_repetition] = STATE(544), + [sym__literal] = STATE(544), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(544), + [sym_identifier] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_RPAREN] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_u8] = ACTIONS(2321), + [anon_sym_i8] = ACTIONS(2321), + [anon_sym_u16] = ACTIONS(2321), + [anon_sym_i16] = ACTIONS(2321), + [anon_sym_u32] = ACTIONS(2321), + [anon_sym_i32] = ACTIONS(2321), + [anon_sym_u64] = ACTIONS(2321), + [anon_sym_i64] = ACTIONS(2321), + [anon_sym_u128] = ACTIONS(2321), + [anon_sym_i128] = ACTIONS(2321), + [anon_sym_isize] = ACTIONS(2321), + [anon_sym_usize] = ACTIONS(2321), + [anon_sym_f32] = ACTIONS(2321), + [anon_sym_f64] = ACTIONS(2321), + [anon_sym_bool] = ACTIONS(2321), + [anon_sym_str] = ACTIONS(2321), + [anon_sym_char] = ACTIONS(2321), + [aux_sym__non_special_token_token1] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_as] = ACTIONS(2321), + [anon_sym_async] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2321), + [anon_sym_enum] = ACTIONS(2321), + [anon_sym_fn] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_impl] = ACTIONS(2321), + [anon_sym_let] = ACTIONS(2321), + [anon_sym_loop] = ACTIONS(2321), + [anon_sym_match] = ACTIONS(2321), + [anon_sym_mod] = ACTIONS(2321), [anon_sym_pub] = ACTIONS(2321), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(2325), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2327), - [sym_metavariable] = ACTIONS(908), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_static] = ACTIONS(2321), + [anon_sym_struct] = ACTIONS(2321), + [anon_sym_trait] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2321), + [anon_sym_union] = ACTIONS(2321), + [anon_sym_unsafe] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2321), + [anon_sym_where] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [sym_mutable_specifier] = ACTIONS(2321), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2321), + [sym_super] = ACTIONS(2321), + [sym_crate] = ACTIONS(2321), + [sym_metavariable] = ACTIONS(2323), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [547] = { - [sym_attribute_item] = STATE(629), - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_macro_invocation] = STATE(2448), - [sym_scoped_identifier] = STATE(1578), - [sym_scoped_type_identifier] = STATE(1974), - [sym_match_pattern] = STATE(2448), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2070), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [553] = { + [sym_attribute_item] = STATE(613), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_macro_invocation] = STATE(2477), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier] = STATE(1941), + [sym_match_pattern] = STATE(2477), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1956), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_enum_variant_list_repeat1] = STATE(629), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_enum_variant_list_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1164), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -64106,72 +65976,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [548] = { - [sym_attribute_item] = STATE(629), - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_macro_invocation] = STATE(2448), - [sym_scoped_identifier] = STATE(1578), - [sym_scoped_type_identifier] = STATE(1974), - [sym_match_pattern] = STATE(2449), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2070), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [554] = { + [sym_attribute_item] = STATE(613), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_macro_invocation] = STATE(2477), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier] = STATE(1941), + [sym_match_pattern] = STATE(2478), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1956), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_enum_variant_list_repeat1] = STATE(629), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [aux_sym_enum_variant_list_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1164), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -64179,871 +66049,804 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [549] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym_visibility_modifier] = STATE(740), - [sym__type] = STATE(2006), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(890), + [555] = { + [sym_attribute_item] = STATE(563), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym_visibility_modifier] = STATE(689), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_enum_variant_list_repeat1] = STATE(563), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2321), - [anon_sym_union] = ACTIONS(896), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(2335), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2327), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [550] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym_visibility_modifier] = STATE(740), - [sym__type] = STATE(2006), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(890), + [556] = { + [sym_attribute_item] = STATE(562), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym_visibility_modifier] = STATE(687), + [sym__type] = STATE(1991), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_enum_variant_list_repeat1] = STATE(562), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2339), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2321), - [anon_sym_union] = ACTIONS(896), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2327), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [551] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym_visibility_modifier] = STATE(740), - [sym__type] = STATE(2006), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2333), - [anon_sym_LBRACK] = ACTIONS(890), + [557] = { + [sym_attribute_item] = STATE(562), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym_visibility_modifier] = STATE(687), + [sym__type] = STATE(1991), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_enum_variant_list_repeat1] = STATE(562), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2321), - [anon_sym_union] = ACTIONS(896), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(920), + [sym_block_comment] = ACTIONS(3), + }, + [558] = { + [sym_attribute_item] = STATE(562), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym_visibility_modifier] = STATE(687), + [sym__type] = STATE(1991), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_enum_variant_list_repeat1] = STATE(562), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(688), + [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_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2327), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [552] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym_visibility_modifier] = STATE(740), - [sym__type] = STATE(2006), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(890), + [559] = { + [sym_attribute_item] = STATE(562), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym_visibility_modifier] = STATE(687), + [sym__type] = STATE(1991), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_enum_variant_list_repeat1] = STATE(562), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2321), - [anon_sym_union] = ACTIONS(896), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2327), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [553] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym_visibility_modifier] = STATE(740), - [sym__type] = STATE(2006), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(890), + [560] = { + [sym_attribute_item] = STATE(562), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym_visibility_modifier] = STATE(687), + [sym__type] = STATE(1991), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_enum_variant_list_repeat1] = STATE(562), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2321), - [anon_sym_union] = ACTIONS(896), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2327), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [554] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym_visibility_modifier] = STATE(740), - [sym__type] = STATE(2006), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2339), - [anon_sym_LBRACK] = ACTIONS(890), + [561] = { + [sym_attribute_item] = STATE(562), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym_visibility_modifier] = STATE(687), + [sym__type] = STATE(1991), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_enum_variant_list_repeat1] = STATE(562), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2321), - [anon_sym_union] = ACTIONS(896), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2327), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [555] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym_visibility_modifier] = STATE(740), - [sym__type] = STATE(2006), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), + [562] = { + [sym_attribute_item] = STATE(1138), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym_visibility_modifier] = STATE(677), + [sym__type] = STATE(1911), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_enum_variant_list_repeat1] = STATE(1138), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2321), - [anon_sym_union] = ACTIONS(896), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2327), - [sym_metavariable] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, - [556] = { - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_RPAREN] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_RBRACK] = ACTIONS(2343), - [anon_sym_COLON] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_u8] = ACTIONS(2341), - [anon_sym_i8] = ACTIONS(2341), - [anon_sym_u16] = ACTIONS(2341), - [anon_sym_i16] = ACTIONS(2341), - [anon_sym_u32] = ACTIONS(2341), - [anon_sym_i32] = ACTIONS(2341), - [anon_sym_u64] = ACTIONS(2341), - [anon_sym_i64] = ACTIONS(2341), - [anon_sym_u128] = ACTIONS(2341), - [anon_sym_i128] = ACTIONS(2341), - [anon_sym_isize] = ACTIONS(2341), - [anon_sym_usize] = ACTIONS(2341), - [anon_sym_f32] = ACTIONS(2341), - [anon_sym_f64] = ACTIONS(2341), - [anon_sym_bool] = ACTIONS(2341), - [anon_sym_str] = ACTIONS(2341), - [anon_sym_char] = ACTIONS(2341), - [aux_sym__non_special_token_token1] = ACTIONS(2341), - [anon_sym_SQUOTE] = ACTIONS(2341), - [anon_sym_as] = ACTIONS(2341), - [anon_sym_async] = ACTIONS(2341), - [anon_sym_await] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_default] = ACTIONS(2341), - [anon_sym_enum] = ACTIONS(2341), - [anon_sym_fn] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_impl] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_loop] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_mod] = ACTIONS(2341), - [anon_sym_pub] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_static] = ACTIONS(2341), - [anon_sym_struct] = ACTIONS(2341), - [anon_sym_trait] = ACTIONS(2341), - [anon_sym_type] = ACTIONS(2341), - [anon_sym_union] = ACTIONS(2341), - [anon_sym_unsafe] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_where] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [sym_mutable_specifier] = ACTIONS(2341), - [sym_integer_literal] = ACTIONS(2343), - [aux_sym_string_literal_token1] = ACTIONS(2343), - [sym_char_literal] = ACTIONS(2343), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2341), - [sym_super] = ACTIONS(2341), - [sym_crate] = ACTIONS(2341), - [sym_metavariable] = ACTIONS(2343), - [sym_raw_string_literal] = ACTIONS(2343), - [sym_float_literal] = ACTIONS(2343), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [557] = { - [sym_attribute_item] = STATE(1140), - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym_visibility_modifier] = STATE(669), - [sym__type] = STATE(1804), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_enum_variant_list_repeat1] = STATE(1140), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), + [563] = { + [sym_attribute_item] = STATE(1138), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym_visibility_modifier] = STATE(678), + [sym__type] = STATE(1851), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_enum_variant_list_repeat1] = STATE(1138), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2321), - [anon_sym_union] = ACTIONS(896), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2327), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [558] = { - [sym_attribute_item] = STATE(1140), - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym_visibility_modifier] = STATE(713), - [sym__type] = STATE(2101), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_enum_variant_list_repeat1] = STATE(1140), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), + [564] = { + [sym_attribute_item] = STATE(562), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym_visibility_modifier] = STATE(687), + [sym__type] = STATE(1991), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_enum_variant_list_repeat1] = STATE(562), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2321), - [anon_sym_union] = ACTIONS(896), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2327), - [sym_metavariable] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, - [559] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_RPAREN] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_RBRACK] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(2347), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2347), - [anon_sym_as] = ACTIONS(2347), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_await] = 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_where] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [sym_mutable_specifier] = ACTIONS(2347), - [sym_integer_literal] = ACTIONS(2349), - [aux_sym_string_literal_token1] = ACTIONS(2349), - [sym_char_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2347), - [sym_super] = ACTIONS(2347), - [sym_crate] = ACTIONS(2347), - [sym_metavariable] = ACTIONS(2349), - [sym_raw_string_literal] = ACTIONS(2349), - [sym_float_literal] = ACTIONS(2349), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [560] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1843), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), + [565] = { [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(2353), [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_COMMA] = ACTIONS(840), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(2353), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_RBRACK] = ACTIONS(2353), + [anon_sym_COLON] = ACTIONS(2355), + [anon_sym_DOLLAR] = ACTIONS(2351), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2351), + [anon_sym_SQUOTE] = ACTIONS(2351), + [anon_sym_as] = ACTIONS(2351), + [anon_sym_async] = ACTIONS(2351), + [anon_sym_await] = 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_where] = ACTIONS(2351), + [anon_sym_while] = ACTIONS(2351), + [sym_mutable_specifier] = ACTIONS(2351), + [sym_integer_literal] = ACTIONS(2353), + [aux_sym_string_literal_token1] = ACTIONS(2353), + [sym_char_literal] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(2351), + [anon_sym_false] = ACTIONS(2351), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2351), + [sym_super] = ACTIONS(2351), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(2353), + [sym_raw_string_literal] = ACTIONS(2353), + [sym_float_literal] = ACTIONS(2353), [sym_block_comment] = ACTIONS(3), }, - [561] = { + [566] = { [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(2359), [anon_sym_RPAREN] = ACTIONS(2359), @@ -65104,7 +66907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2359), [anon_sym_true] = ACTIONS(2357), [anon_sym_false] = ACTIONS(2357), - [sym_line_comment] = ACTIONS(1000), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2357), [sym_super] = ACTIONS(2357), [sym_crate] = ACTIONS(2357), @@ -65113,427 +66916,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2359), [sym_block_comment] = ACTIONS(3), }, - [562] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1821), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [567] = { + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_RPAREN] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_RBRACK] = ACTIONS(2363), + [anon_sym_DOLLAR] = ACTIONS(2361), + [anon_sym_u8] = ACTIONS(2361), + [anon_sym_i8] = ACTIONS(2361), + [anon_sym_u16] = ACTIONS(2361), + [anon_sym_i16] = ACTIONS(2361), + [anon_sym_u32] = ACTIONS(2361), + [anon_sym_i32] = ACTIONS(2361), + [anon_sym_u64] = ACTIONS(2361), + [anon_sym_i64] = ACTIONS(2361), + [anon_sym_u128] = ACTIONS(2361), + [anon_sym_i128] = ACTIONS(2361), + [anon_sym_isize] = ACTIONS(2361), + [anon_sym_usize] = ACTIONS(2361), + [anon_sym_f32] = ACTIONS(2361), + [anon_sym_f64] = ACTIONS(2361), + [anon_sym_bool] = ACTIONS(2361), + [anon_sym_str] = ACTIONS(2361), + [anon_sym_char] = ACTIONS(2361), + [aux_sym__non_special_token_token1] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_as] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_await] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_fn] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_impl] = ACTIONS(2361), + [anon_sym_let] = ACTIONS(2361), + [anon_sym_loop] = ACTIONS(2361), + [anon_sym_match] = ACTIONS(2361), + [anon_sym_mod] = ACTIONS(2361), + [anon_sym_pub] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_trait] = ACTIONS(2361), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_unsafe] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2361), + [anon_sym_where] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [sym_mutable_specifier] = ACTIONS(2361), + [sym_integer_literal] = ACTIONS(2363), + [aux_sym_string_literal_token1] = ACTIONS(2363), + [sym_char_literal] = ACTIONS(2363), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2361), + [sym_super] = ACTIONS(2361), + [sym_crate] = ACTIONS(2361), + [sym_metavariable] = ACTIONS(2363), + [sym_raw_string_literal] = ACTIONS(2363), + [sym_float_literal] = ACTIONS(2363), + [sym_block_comment] = ACTIONS(3), + }, + [568] = { + [sym_identifier] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2367), + [anon_sym_RBRACK] = ACTIONS(2367), + [anon_sym_DOLLAR] = ACTIONS(2365), + [anon_sym_u8] = ACTIONS(2365), + [anon_sym_i8] = ACTIONS(2365), + [anon_sym_u16] = ACTIONS(2365), + [anon_sym_i16] = ACTIONS(2365), + [anon_sym_u32] = ACTIONS(2365), + [anon_sym_i32] = ACTIONS(2365), + [anon_sym_u64] = ACTIONS(2365), + [anon_sym_i64] = ACTIONS(2365), + [anon_sym_u128] = ACTIONS(2365), + [anon_sym_i128] = ACTIONS(2365), + [anon_sym_isize] = ACTIONS(2365), + [anon_sym_usize] = ACTIONS(2365), + [anon_sym_f32] = ACTIONS(2365), + [anon_sym_f64] = ACTIONS(2365), + [anon_sym_bool] = ACTIONS(2365), + [anon_sym_str] = ACTIONS(2365), + [anon_sym_char] = ACTIONS(2365), + [aux_sym__non_special_token_token1] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2365), + [anon_sym_as] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_fn] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_impl] = ACTIONS(2365), + [anon_sym_let] = ACTIONS(2365), + [anon_sym_loop] = ACTIONS(2365), + [anon_sym_match] = ACTIONS(2365), + [anon_sym_mod] = ACTIONS(2365), + [anon_sym_pub] = ACTIONS(2365), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2365), + [anon_sym_trait] = ACTIONS(2365), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_union] = ACTIONS(2365), + [anon_sym_unsafe] = ACTIONS(2365), + [anon_sym_use] = ACTIONS(2365), + [anon_sym_where] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [sym_mutable_specifier] = ACTIONS(2365), + [sym_integer_literal] = ACTIONS(2367), + [aux_sym_string_literal_token1] = ACTIONS(2367), + [sym_char_literal] = ACTIONS(2367), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2365), + [sym_super] = ACTIONS(2365), + [sym_crate] = ACTIONS(2365), + [sym_metavariable] = ACTIONS(2367), + [sym_raw_string_literal] = ACTIONS(2367), + [sym_float_literal] = ACTIONS(2367), + [sym_block_comment] = ACTIONS(3), + }, + [569] = { + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_RBRACK] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_u8] = ACTIONS(2369), + [anon_sym_i8] = ACTIONS(2369), + [anon_sym_u16] = ACTIONS(2369), + [anon_sym_i16] = ACTIONS(2369), + [anon_sym_u32] = ACTIONS(2369), + [anon_sym_i32] = ACTIONS(2369), + [anon_sym_u64] = ACTIONS(2369), + [anon_sym_i64] = ACTIONS(2369), + [anon_sym_u128] = ACTIONS(2369), + [anon_sym_i128] = ACTIONS(2369), + [anon_sym_isize] = ACTIONS(2369), + [anon_sym_usize] = ACTIONS(2369), + [anon_sym_f32] = ACTIONS(2369), + [anon_sym_f64] = ACTIONS(2369), + [anon_sym_bool] = ACTIONS(2369), + [anon_sym_str] = ACTIONS(2369), + [anon_sym_char] = ACTIONS(2369), + [aux_sym__non_special_token_token1] = ACTIONS(2369), + [anon_sym_SQUOTE] = ACTIONS(2369), + [anon_sym_as] = ACTIONS(2369), + [anon_sym_async] = ACTIONS(2369), + [anon_sym_await] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_fn] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_impl] = ACTIONS(2369), + [anon_sym_let] = ACTIONS(2369), + [anon_sym_loop] = ACTIONS(2369), + [anon_sym_match] = ACTIONS(2369), + [anon_sym_mod] = ACTIONS(2369), + [anon_sym_pub] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2369), + [anon_sym_trait] = ACTIONS(2369), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_union] = ACTIONS(2369), + [anon_sym_unsafe] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_where] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [sym_mutable_specifier] = ACTIONS(2369), + [sym_integer_literal] = ACTIONS(2371), + [aux_sym_string_literal_token1] = ACTIONS(2371), + [sym_char_literal] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2369), + [sym_super] = ACTIONS(2369), + [sym_crate] = ACTIONS(2369), + [sym_metavariable] = ACTIONS(2371), + [sym_raw_string_literal] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2371), + [sym_block_comment] = ACTIONS(3), + }, + [570] = { + [sym_parameter] = STATE(1990), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1810), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_COMMA] = ACTIONS(2363), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2375), + [anon_sym_union] = ACTIONS(2375), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(2377), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(2379), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(2381), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [563] = { - [sym_function_modifiers] = STATE(2411), - [sym_const_parameter] = STATE(2119), - [sym_constrained_type_parameter] = STATE(1862), - [sym_optional_type_parameter] = STATE(2119), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(2068), - [sym_bracketed_type] = STATE(2370), - [sym_qualified_type] = STATE(2346), - [sym_lifetime] = STATE(1682), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(2367), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [571] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1822), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(2369), - [sym_block_comment] = ACTIONS(3), - }, - [564] = { - [sym_identifier] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_RPAREN] = ACTIONS(2373), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2373), - [anon_sym_RBRACK] = ACTIONS(2373), - [anon_sym_DOLLAR] = ACTIONS(2371), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2371), - [anon_sym_SQUOTE] = ACTIONS(2371), - [anon_sym_as] = ACTIONS(2371), - [anon_sym_async] = ACTIONS(2371), - [anon_sym_await] = 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_where] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [sym_mutable_specifier] = ACTIONS(2371), - [sym_integer_literal] = ACTIONS(2373), - [aux_sym_string_literal_token1] = ACTIONS(2373), - [sym_char_literal] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2371), - [anon_sym_false] = ACTIONS(2371), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2371), - [sym_super] = ACTIONS(2371), - [sym_crate] = ACTIONS(2371), - [sym_metavariable] = ACTIONS(2373), - [sym_raw_string_literal] = ACTIONS(2373), - [sym_float_literal] = ACTIONS(2373), - [sym_block_comment] = ACTIONS(3), - }, - [565] = { - [sym_identifier] = ACTIONS(2375), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_RPAREN] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2377), - [anon_sym_RBRACE] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2377), - [anon_sym_RBRACK] = ACTIONS(2377), - [anon_sym_DOLLAR] = ACTIONS(2375), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2375), - [anon_sym_SQUOTE] = ACTIONS(2375), - [anon_sym_as] = ACTIONS(2375), - [anon_sym_async] = ACTIONS(2375), - [anon_sym_await] = 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_where] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [sym_mutable_specifier] = ACTIONS(2375), - [sym_integer_literal] = ACTIONS(2377), - [aux_sym_string_literal_token1] = ACTIONS(2377), - [sym_char_literal] = ACTIONS(2377), - [anon_sym_true] = ACTIONS(2375), - [anon_sym_false] = ACTIONS(2375), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2375), - [sym_super] = ACTIONS(2375), - [sym_crate] = ACTIONS(2375), - [sym_metavariable] = ACTIONS(2377), - [sym_raw_string_literal] = ACTIONS(2377), - [sym_float_literal] = ACTIONS(2377), - [sym_block_comment] = ACTIONS(3), - }, - [566] = { - [sym_identifier] = ACTIONS(2379), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_RBRACE] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(2381), - [anon_sym_RBRACK] = ACTIONS(2381), - [anon_sym_DOLLAR] = ACTIONS(2379), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2379), - [anon_sym_SQUOTE] = ACTIONS(2379), - [anon_sym_as] = ACTIONS(2379), - [anon_sym_async] = ACTIONS(2379), - [anon_sym_await] = 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_where] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [sym_mutable_specifier] = ACTIONS(2379), - [sym_integer_literal] = ACTIONS(2381), - [aux_sym_string_literal_token1] = ACTIONS(2381), - [sym_char_literal] = ACTIONS(2381), - [anon_sym_true] = ACTIONS(2379), - [anon_sym_false] = ACTIONS(2379), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2379), - [sym_super] = ACTIONS(2379), - [sym_crate] = ACTIONS(2379), - [sym_metavariable] = ACTIONS(2381), - [sym_raw_string_literal] = ACTIONS(2381), - [sym_float_literal] = ACTIONS(2381), - [sym_block_comment] = ACTIONS(3), - }, - [567] = { - [sym_identifier] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_RPAREN] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_RBRACK] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(2383), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2383), - [anon_sym_SQUOTE] = ACTIONS(2383), - [anon_sym_as] = ACTIONS(2383), - [anon_sym_async] = ACTIONS(2383), - [anon_sym_await] = 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_where] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [sym_mutable_specifier] = ACTIONS(2383), - [sym_integer_literal] = ACTIONS(2385), - [aux_sym_string_literal_token1] = ACTIONS(2385), - [sym_char_literal] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(2383), - [anon_sym_false] = ACTIONS(2383), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2383), - [sym_super] = ACTIONS(2383), - [sym_crate] = ACTIONS(2383), - [sym_metavariable] = ACTIONS(2385), - [sym_raw_string_literal] = ACTIONS(2385), - [sym_float_literal] = ACTIONS(2385), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [568] = { + [572] = { [sym_identifier] = ACTIONS(2387), [anon_sym_LPAREN] = ACTIONS(2389), [anon_sym_RPAREN] = ACTIONS(2389), @@ -65594,7 +67327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2389), [anon_sym_true] = ACTIONS(2387), [anon_sym_false] = ACTIONS(2387), - [sym_line_comment] = ACTIONS(1000), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2387), [sym_super] = ACTIONS(2387), [sym_crate] = ACTIONS(2387), @@ -65603,7 +67336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2389), [sym_block_comment] = ACTIONS(3), }, - [569] = { + [573] = { [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN] = ACTIONS(2393), [anon_sym_RPAREN] = ACTIONS(2393), @@ -65664,7 +67397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2393), [anon_sym_true] = ACTIONS(2391), [anon_sym_false] = ACTIONS(2391), - [sym_line_comment] = ACTIONS(1000), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2391), [sym_super] = ACTIONS(2391), [sym_crate] = ACTIONS(2391), @@ -65673,77 +67406,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2393), [sym_block_comment] = ACTIONS(3), }, - [570] = { - [sym_identifier] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2397), - [anon_sym_RPAREN] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2397), - [anon_sym_RBRACE] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_RBRACK] = ACTIONS(2397), - [anon_sym_DOLLAR] = ACTIONS(2395), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2395), - [anon_sym_SQUOTE] = ACTIONS(2395), - [anon_sym_as] = ACTIONS(2395), - [anon_sym_async] = ACTIONS(2395), - [anon_sym_await] = 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_where] = ACTIONS(2395), - [anon_sym_while] = ACTIONS(2395), - [sym_mutable_specifier] = ACTIONS(2395), - [sym_integer_literal] = ACTIONS(2397), - [aux_sym_string_literal_token1] = ACTIONS(2397), - [sym_char_literal] = ACTIONS(2397), - [anon_sym_true] = ACTIONS(2395), - [anon_sym_false] = ACTIONS(2395), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2395), - [sym_super] = ACTIONS(2395), - [sym_crate] = ACTIONS(2395), - [sym_metavariable] = ACTIONS(2397), - [sym_raw_string_literal] = ACTIONS(2397), - [sym_float_literal] = ACTIONS(2397), + [574] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_RBRACK] = ACTIONS(830), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_COMMA] = ACTIONS(838), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [571] = { + [575] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1835), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_COMMA] = ACTIONS(2397), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [576] = { [sym_identifier] = ACTIONS(2399), [anon_sym_LPAREN] = ACTIONS(2401), [anon_sym_RPAREN] = ACTIONS(2401), @@ -65804,7 +67607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2401), [anon_sym_true] = ACTIONS(2399), [anon_sym_false] = ACTIONS(2399), - [sym_line_comment] = ACTIONS(1000), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2399), [sym_super] = ACTIONS(2399), [sym_crate] = ACTIONS(2399), @@ -65813,7 +67616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2401), [sym_block_comment] = ACTIONS(3), }, - [572] = { + [577] = { [sym_identifier] = ACTIONS(2403), [anon_sym_LPAREN] = ACTIONS(2405), [anon_sym_RPAREN] = ACTIONS(2405), @@ -65874,7 +67677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2405), [anon_sym_true] = ACTIONS(2403), [anon_sym_false] = ACTIONS(2403), - [sym_line_comment] = ACTIONS(1000), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2403), [sym_super] = ACTIONS(2403), [sym_crate] = ACTIONS(2403), @@ -65883,7 +67686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2405), [sym_block_comment] = ACTIONS(3), }, - [573] = { + [578] = { [sym_identifier] = ACTIONS(2407), [anon_sym_LPAREN] = ACTIONS(2409), [anon_sym_RPAREN] = ACTIONS(2409), @@ -65944,7 +67747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2409), [anon_sym_true] = ACTIONS(2407), [anon_sym_false] = ACTIONS(2407), - [sym_line_comment] = ACTIONS(1000), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2407), [sym_super] = ACTIONS(2407), [sym_crate] = ACTIONS(2407), @@ -65953,7 +67756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2409), [sym_block_comment] = ACTIONS(3), }, - [574] = { + [579] = { [sym_identifier] = ACTIONS(2411), [anon_sym_LPAREN] = ACTIONS(2413), [anon_sym_RPAREN] = ACTIONS(2413), @@ -66014,7 +67817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2413), [anon_sym_true] = ACTIONS(2411), [anon_sym_false] = ACTIONS(2411), - [sym_line_comment] = ACTIONS(1000), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2411), [sym_super] = ACTIONS(2411), [sym_crate] = ACTIONS(2411), @@ -66023,7 +67826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2413), [sym_block_comment] = ACTIONS(3), }, - [575] = { + [580] = { [sym_identifier] = ACTIONS(2415), [anon_sym_LPAREN] = ACTIONS(2417), [anon_sym_RPAREN] = ACTIONS(2417), @@ -66084,503 +67887,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2417), [anon_sym_true] = ACTIONS(2415), [anon_sym_false] = ACTIONS(2415), - [sym_line_comment] = ACTIONS(1000), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2415), [sym_super] = ACTIONS(2415), [sym_crate] = ACTIONS(2415), [sym_metavariable] = ACTIONS(2417), [sym_raw_string_literal] = ACTIONS(2417), - [sym_float_literal] = ACTIONS(2417), - [sym_block_comment] = ACTIONS(3), - }, - [576] = { - [sym_identifier] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_RPAREN] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_RBRACK] = ACTIONS(2421), - [anon_sym_DOLLAR] = ACTIONS(2419), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_as] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_await] = 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_where] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [sym_mutable_specifier] = ACTIONS(2419), - [sym_integer_literal] = ACTIONS(2421), - [aux_sym_string_literal_token1] = ACTIONS(2421), - [sym_char_literal] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2419), - [anon_sym_false] = ACTIONS(2419), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2419), - [sym_super] = ACTIONS(2419), - [sym_crate] = ACTIONS(2419), - [sym_metavariable] = ACTIONS(2421), - [sym_raw_string_literal] = ACTIONS(2421), - [sym_float_literal] = ACTIONS(2421), - [sym_block_comment] = ACTIONS(3), - }, - [577] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1834), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(810), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [578] = { - [sym_parameter] = STATE(1986), - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1817), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2423), - [anon_sym_union] = ACTIONS(2423), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(2425), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(2427), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2429), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [579] = { - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_RPAREN] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_RBRACK] = ACTIONS(2433), - [anon_sym_DOLLAR] = ACTIONS(2431), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_as] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_await] = 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_where] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [sym_mutable_specifier] = ACTIONS(2431), - [sym_integer_literal] = ACTIONS(2433), - [aux_sym_string_literal_token1] = ACTIONS(2433), - [sym_char_literal] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2431), - [anon_sym_false] = ACTIONS(2431), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2431), - [sym_super] = ACTIONS(2431), - [sym_crate] = ACTIONS(2431), - [sym_metavariable] = ACTIONS(2433), - [sym_raw_string_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), - [sym_block_comment] = ACTIONS(3), - }, - [580] = { - [sym_identifier] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_RPAREN] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_RBRACK] = ACTIONS(620), - [anon_sym_DOLLAR] = ACTIONS(620), - [anon_sym_u8] = ACTIONS(622), - [anon_sym_i8] = ACTIONS(622), - [anon_sym_u16] = ACTIONS(622), - [anon_sym_i16] = ACTIONS(622), - [anon_sym_u32] = ACTIONS(622), - [anon_sym_i32] = ACTIONS(622), - [anon_sym_u64] = ACTIONS(622), - [anon_sym_i64] = ACTIONS(622), - [anon_sym_u128] = ACTIONS(622), - [anon_sym_i128] = ACTIONS(622), - [anon_sym_isize] = ACTIONS(622), - [anon_sym_usize] = ACTIONS(622), - [anon_sym_f32] = ACTIONS(622), - [anon_sym_f64] = ACTIONS(622), - [anon_sym_bool] = ACTIONS(622), - [anon_sym_str] = ACTIONS(622), - [anon_sym_char] = ACTIONS(622), - [aux_sym__non_special_token_token1] = ACTIONS(622), - [anon_sym_SQUOTE] = ACTIONS(622), - [anon_sym_as] = ACTIONS(622), - [anon_sym_async] = ACTIONS(622), - [anon_sym_await] = ACTIONS(622), - [anon_sym_break] = ACTIONS(622), - [anon_sym_const] = ACTIONS(622), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_enum] = ACTIONS(622), - [anon_sym_fn] = ACTIONS(622), - [anon_sym_for] = ACTIONS(622), - [anon_sym_if] = ACTIONS(622), - [anon_sym_impl] = ACTIONS(622), - [anon_sym_let] = ACTIONS(622), - [anon_sym_loop] = ACTIONS(622), - [anon_sym_match] = ACTIONS(622), - [anon_sym_mod] = ACTIONS(622), - [anon_sym_pub] = ACTIONS(622), - [anon_sym_return] = ACTIONS(622), - [anon_sym_static] = ACTIONS(622), - [anon_sym_struct] = ACTIONS(622), - [anon_sym_trait] = ACTIONS(622), - [anon_sym_type] = ACTIONS(622), - [anon_sym_union] = ACTIONS(622), - [anon_sym_unsafe] = ACTIONS(622), - [anon_sym_use] = ACTIONS(622), - [anon_sym_where] = ACTIONS(622), - [anon_sym_while] = ACTIONS(622), - [sym_mutable_specifier] = ACTIONS(622), - [sym_integer_literal] = ACTIONS(620), - [aux_sym_string_literal_token1] = ACTIONS(620), - [sym_char_literal] = ACTIONS(620), - [anon_sym_true] = ACTIONS(622), - [anon_sym_false] = ACTIONS(622), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(622), - [sym_super] = ACTIONS(622), - [sym_crate] = ACTIONS(622), - [sym_raw_string_literal] = ACTIONS(620), - [sym_float_literal] = ACTIONS(620), - [sym_block_comment] = ACTIONS(3), - }, - [581] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1825), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [582] = { - [sym_identifier] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_RBRACK] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(654), - [anon_sym_i8] = ACTIONS(654), - [anon_sym_u16] = ACTIONS(654), - [anon_sym_i16] = ACTIONS(654), - [anon_sym_u32] = ACTIONS(654), - [anon_sym_i32] = ACTIONS(654), - [anon_sym_u64] = ACTIONS(654), - [anon_sym_i64] = ACTIONS(654), - [anon_sym_u128] = ACTIONS(654), - [anon_sym_i128] = ACTIONS(654), - [anon_sym_isize] = ACTIONS(654), - [anon_sym_usize] = ACTIONS(654), - [anon_sym_f32] = ACTIONS(654), - [anon_sym_f64] = ACTIONS(654), - [anon_sym_bool] = ACTIONS(654), - [anon_sym_str] = ACTIONS(654), - [anon_sym_char] = ACTIONS(654), - [aux_sym__non_special_token_token1] = ACTIONS(654), - [anon_sym_SQUOTE] = ACTIONS(654), - [anon_sym_as] = ACTIONS(654), - [anon_sym_async] = ACTIONS(654), - [anon_sym_await] = ACTIONS(654), - [anon_sym_break] = ACTIONS(654), - [anon_sym_const] = ACTIONS(654), - [anon_sym_continue] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_enum] = ACTIONS(654), - [anon_sym_fn] = ACTIONS(654), - [anon_sym_for] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_impl] = ACTIONS(654), - [anon_sym_let] = ACTIONS(654), - [anon_sym_loop] = ACTIONS(654), - [anon_sym_match] = ACTIONS(654), - [anon_sym_mod] = ACTIONS(654), - [anon_sym_pub] = ACTIONS(654), - [anon_sym_return] = ACTIONS(654), - [anon_sym_static] = ACTIONS(654), - [anon_sym_struct] = ACTIONS(654), - [anon_sym_trait] = ACTIONS(654), - [anon_sym_type] = ACTIONS(654), - [anon_sym_union] = ACTIONS(654), - [anon_sym_unsafe] = ACTIONS(654), - [anon_sym_use] = ACTIONS(654), - [anon_sym_where] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [sym_mutable_specifier] = ACTIONS(654), - [sym_integer_literal] = ACTIONS(652), - [aux_sym_string_literal_token1] = ACTIONS(652), - [sym_char_literal] = ACTIONS(652), - [anon_sym_true] = ACTIONS(654), - [anon_sym_false] = ACTIONS(654), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(654), - [sym_super] = ACTIONS(654), - [sym_crate] = ACTIONS(654), - [sym_raw_string_literal] = ACTIONS(652), - [sym_float_literal] = ACTIONS(652), + [sym_float_literal] = ACTIONS(2417), [sym_block_comment] = ACTIONS(3), }, - [583] = { + [581] = { [sym_identifier] = ACTIONS(2419), [anon_sym_LPAREN] = ACTIONS(2421), [anon_sym_RPAREN] = ACTIONS(2421), @@ -66588,7 +67904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(2421), [anon_sym_LBRACK] = ACTIONS(2421), [anon_sym_RBRACK] = ACTIONS(2421), - [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_DOLLAR] = ACTIONS(2419), [anon_sym_u8] = ACTIONS(2419), [anon_sym_i8] = ACTIONS(2419), [anon_sym_u16] = ACTIONS(2419), @@ -66641,275 +67957,488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2421), [anon_sym_true] = ACTIONS(2419), [anon_sym_false] = ACTIONS(2419), - [sym_line_comment] = ACTIONS(1000), + [sym_line_comment] = ACTIONS(1099), [sym_self] = ACTIONS(2419), [sym_super] = ACTIONS(2419), [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), [sym_raw_string_literal] = ACTIONS(2421), [sym_float_literal] = ACTIONS(2421), [sym_block_comment] = ACTIONS(3), }, - [584] = { - [sym_function_modifiers] = STATE(2411), - [sym_higher_ranked_trait_bound] = STATE(1560), - [sym_removed_trait_bound] = STATE(1560), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1563), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(1564), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), + [582] = { + [sym_identifier] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_RPAREN] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_RBRACK] = ACTIONS(2425), + [anon_sym_DOLLAR] = ACTIONS(2423), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2423), + [anon_sym_as] = ACTIONS(2423), + [anon_sym_async] = ACTIONS(2423), + [anon_sym_await] = 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_where] = ACTIONS(2423), + [anon_sym_while] = ACTIONS(2423), + [sym_mutable_specifier] = ACTIONS(2423), + [sym_integer_literal] = ACTIONS(2425), + [aux_sym_string_literal_token1] = ACTIONS(2425), + [sym_char_literal] = ACTIONS(2425), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2423), + [sym_super] = ACTIONS(2423), + [sym_crate] = ACTIONS(2423), + [sym_metavariable] = ACTIONS(2425), + [sym_raw_string_literal] = ACTIONS(2425), + [sym_float_literal] = ACTIONS(2425), + [sym_block_comment] = ACTIONS(3), + }, + [583] = { + [sym_function_modifiers] = STATE(2427), + [sym_const_parameter] = STATE(2140), + [sym_constrained_type_parameter] = STATE(1833), + [sym_optional_type_parameter] = STATE(2140), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1985), + [sym_bracketed_type] = STATE(2395), + [sym_qualified_type] = STATE(2379), + [sym_lifetime] = STATE(1733), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(2431), + [sym_block_comment] = ACTIONS(3), + }, + [584] = { + [sym_identifier] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_DOLLAR] = ACTIONS(2433), + [anon_sym_u8] = ACTIONS(2433), + [anon_sym_i8] = ACTIONS(2433), + [anon_sym_u16] = ACTIONS(2433), + [anon_sym_i16] = ACTIONS(2433), + [anon_sym_u32] = ACTIONS(2433), + [anon_sym_i32] = ACTIONS(2433), + [anon_sym_u64] = ACTIONS(2433), + [anon_sym_i64] = ACTIONS(2433), + [anon_sym_u128] = ACTIONS(2433), + [anon_sym_i128] = ACTIONS(2433), + [anon_sym_isize] = ACTIONS(2433), + [anon_sym_usize] = ACTIONS(2433), + [anon_sym_f32] = ACTIONS(2433), + [anon_sym_f64] = ACTIONS(2433), + [anon_sym_bool] = ACTIONS(2433), + [anon_sym_str] = ACTIONS(2433), + [anon_sym_char] = ACTIONS(2433), + [aux_sym__non_special_token_token1] = ACTIONS(2433), + [anon_sym_SQUOTE] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_async] = ACTIONS(2433), + [anon_sym_await] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_default] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_fn] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_impl] = ACTIONS(2433), + [anon_sym_let] = ACTIONS(2433), + [anon_sym_loop] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_mod] = ACTIONS(2433), + [anon_sym_pub] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_trait] = ACTIONS(2433), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_union] = ACTIONS(2433), + [anon_sym_unsafe] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_where] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [sym_mutable_specifier] = ACTIONS(2433), + [sym_integer_literal] = ACTIONS(2435), + [aux_sym_string_literal_token1] = ACTIONS(2435), + [sym_char_literal] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2433), + [anon_sym_false] = ACTIONS(2433), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2433), + [sym_super] = ACTIONS(2433), + [sym_crate] = ACTIONS(2433), + [sym_metavariable] = ACTIONS(2435), + [sym_raw_string_literal] = ACTIONS(2435), + [sym_float_literal] = ACTIONS(2435), [sym_block_comment] = ACTIONS(3), }, [585] = { - [sym_function_modifiers] = STATE(2411), - [sym_higher_ranked_trait_bound] = STATE(1623), - [sym_removed_trait_bound] = STATE(1623), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1624), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(1626), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_identifier] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_RPAREN] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2439), + [anon_sym_RBRACK] = ACTIONS(2439), + [anon_sym_DOLLAR] = ACTIONS(2437), + [anon_sym_u8] = ACTIONS(2437), + [anon_sym_i8] = ACTIONS(2437), + [anon_sym_u16] = ACTIONS(2437), + [anon_sym_i16] = ACTIONS(2437), + [anon_sym_u32] = ACTIONS(2437), + [anon_sym_i32] = ACTIONS(2437), + [anon_sym_u64] = ACTIONS(2437), + [anon_sym_i64] = ACTIONS(2437), + [anon_sym_u128] = ACTIONS(2437), + [anon_sym_i128] = ACTIONS(2437), + [anon_sym_isize] = ACTIONS(2437), + [anon_sym_usize] = ACTIONS(2437), + [anon_sym_f32] = ACTIONS(2437), + [anon_sym_f64] = ACTIONS(2437), + [anon_sym_bool] = ACTIONS(2437), + [anon_sym_str] = ACTIONS(2437), + [anon_sym_char] = ACTIONS(2437), + [aux_sym__non_special_token_token1] = ACTIONS(2437), + [anon_sym_SQUOTE] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_await] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_default] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_fn] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_impl] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_loop] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_mod] = ACTIONS(2437), + [anon_sym_pub] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2437), + [anon_sym_trait] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_union] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_where] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [sym_mutable_specifier] = ACTIONS(2437), + [sym_integer_literal] = ACTIONS(2439), + [aux_sym_string_literal_token1] = ACTIONS(2439), + [sym_char_literal] = ACTIONS(2439), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2437), + [sym_super] = ACTIONS(2437), + [sym_crate] = ACTIONS(2437), + [sym_metavariable] = ACTIONS(2439), + [sym_raw_string_literal] = ACTIONS(2439), + [sym_float_literal] = ACTIONS(2439), [sym_block_comment] = ACTIONS(3), }, [586] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1825), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_RBRACK] = ACTIONS(2443), + [anon_sym_DOLLAR] = ACTIONS(2441), + [anon_sym_u8] = ACTIONS(2441), + [anon_sym_i8] = ACTIONS(2441), + [anon_sym_u16] = ACTIONS(2441), + [anon_sym_i16] = ACTIONS(2441), + [anon_sym_u32] = ACTIONS(2441), + [anon_sym_i32] = ACTIONS(2441), + [anon_sym_u64] = ACTIONS(2441), + [anon_sym_i64] = ACTIONS(2441), + [anon_sym_u128] = ACTIONS(2441), + [anon_sym_i128] = ACTIONS(2441), + [anon_sym_isize] = ACTIONS(2441), + [anon_sym_usize] = ACTIONS(2441), + [anon_sym_f32] = ACTIONS(2441), + [anon_sym_f64] = ACTIONS(2441), + [anon_sym_bool] = ACTIONS(2441), + [anon_sym_str] = ACTIONS(2441), + [anon_sym_char] = ACTIONS(2441), + [aux_sym__non_special_token_token1] = ACTIONS(2441), + [anon_sym_SQUOTE] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_await] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_fn] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_impl] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_loop] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_mod] = ACTIONS(2441), + [anon_sym_pub] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2441), + [anon_sym_trait] = ACTIONS(2441), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_union] = ACTIONS(2441), + [anon_sym_unsafe] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_where] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [sym_mutable_specifier] = ACTIONS(2441), + [sym_integer_literal] = ACTIONS(2443), + [aux_sym_string_literal_token1] = ACTIONS(2443), + [sym_char_literal] = ACTIONS(2443), + [anon_sym_true] = ACTIONS(2441), + [anon_sym_false] = ACTIONS(2441), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2441), + [sym_super] = ACTIONS(2441), + [sym_crate] = ACTIONS(2441), + [sym_metavariable] = ACTIONS(2443), + [sym_raw_string_literal] = ACTIONS(2443), + [sym_float_literal] = ACTIONS(2443), [sym_block_comment] = ACTIONS(3), }, [587] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1825), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [sym_identifier] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_RPAREN] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_RBRACK] = ACTIONS(2447), + [anon_sym_DOLLAR] = ACTIONS(2447), + [anon_sym_u8] = ACTIONS(2445), + [anon_sym_i8] = ACTIONS(2445), + [anon_sym_u16] = ACTIONS(2445), + [anon_sym_i16] = ACTIONS(2445), + [anon_sym_u32] = ACTIONS(2445), + [anon_sym_i32] = ACTIONS(2445), + [anon_sym_u64] = ACTIONS(2445), + [anon_sym_i64] = ACTIONS(2445), + [anon_sym_u128] = ACTIONS(2445), + [anon_sym_i128] = ACTIONS(2445), + [anon_sym_isize] = ACTIONS(2445), + [anon_sym_usize] = ACTIONS(2445), + [anon_sym_f32] = ACTIONS(2445), + [anon_sym_f64] = ACTIONS(2445), + [anon_sym_bool] = ACTIONS(2445), + [anon_sym_str] = ACTIONS(2445), + [anon_sym_char] = ACTIONS(2445), + [aux_sym__non_special_token_token1] = ACTIONS(2445), + [anon_sym_SQUOTE] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_await] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_default] = ACTIONS(2445), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_impl] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_loop] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_mod] = ACTIONS(2445), + [anon_sym_pub] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_struct] = ACTIONS(2445), + [anon_sym_trait] = ACTIONS(2445), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_union] = ACTIONS(2445), + [anon_sym_unsafe] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), + [anon_sym_where] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [sym_mutable_specifier] = ACTIONS(2445), + [sym_integer_literal] = ACTIONS(2447), + [aux_sym_string_literal_token1] = ACTIONS(2447), + [sym_char_literal] = ACTIONS(2447), + [anon_sym_true] = ACTIONS(2445), + [anon_sym_false] = ACTIONS(2445), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2445), + [sym_super] = ACTIONS(2445), + [sym_crate] = ACTIONS(2445), + [sym_raw_string_literal] = ACTIONS(2447), + [sym_float_literal] = ACTIONS(2447), + [sym_block_comment] = ACTIONS(3), + }, + [588] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1870), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -66917,344 +68446,551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [588] = { - [sym_function_modifiers] = STATE(2411), - [sym_higher_ranked_trait_bound] = STATE(1623), - [sym_removed_trait_bound] = STATE(1623), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1629), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(1635), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), + [589] = { + [sym_identifier] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_RPAREN] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_RBRACK] = ACTIONS(590), + [anon_sym_DOLLAR] = ACTIONS(590), + [anon_sym_u8] = ACTIONS(592), + [anon_sym_i8] = ACTIONS(592), + [anon_sym_u16] = ACTIONS(592), + [anon_sym_i16] = ACTIONS(592), + [anon_sym_u32] = ACTIONS(592), + [anon_sym_i32] = ACTIONS(592), + [anon_sym_u64] = ACTIONS(592), + [anon_sym_i64] = ACTIONS(592), + [anon_sym_u128] = ACTIONS(592), + [anon_sym_i128] = ACTIONS(592), + [anon_sym_isize] = ACTIONS(592), + [anon_sym_usize] = ACTIONS(592), + [anon_sym_f32] = ACTIONS(592), + [anon_sym_f64] = ACTIONS(592), + [anon_sym_bool] = ACTIONS(592), + [anon_sym_str] = ACTIONS(592), + [anon_sym_char] = ACTIONS(592), + [aux_sym__non_special_token_token1] = ACTIONS(592), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_as] = ACTIONS(592), + [anon_sym_async] = ACTIONS(592), + [anon_sym_await] = ACTIONS(592), + [anon_sym_break] = ACTIONS(592), + [anon_sym_const] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(592), + [anon_sym_fn] = ACTIONS(592), + [anon_sym_for] = ACTIONS(592), + [anon_sym_if] = ACTIONS(592), + [anon_sym_impl] = ACTIONS(592), + [anon_sym_let] = ACTIONS(592), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(592), + [anon_sym_mod] = ACTIONS(592), + [anon_sym_pub] = ACTIONS(592), + [anon_sym_return] = ACTIONS(592), + [anon_sym_static] = ACTIONS(592), + [anon_sym_struct] = ACTIONS(592), + [anon_sym_trait] = ACTIONS(592), + [anon_sym_type] = ACTIONS(592), + [anon_sym_union] = ACTIONS(592), + [anon_sym_unsafe] = ACTIONS(592), + [anon_sym_use] = ACTIONS(592), + [anon_sym_where] = ACTIONS(592), + [anon_sym_while] = ACTIONS(592), + [sym_mutable_specifier] = ACTIONS(592), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(590), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(592), + [anon_sym_false] = ACTIONS(592), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(592), + [sym_super] = ACTIONS(592), + [sym_crate] = ACTIONS(592), + [sym_raw_string_literal] = ACTIONS(590), + [sym_float_literal] = ACTIONS(590), + [sym_block_comment] = ACTIONS(3), + }, + [590] = { + [sym_identifier] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_DOLLAR] = ACTIONS(2435), + [anon_sym_u8] = ACTIONS(2433), + [anon_sym_i8] = ACTIONS(2433), + [anon_sym_u16] = ACTIONS(2433), + [anon_sym_i16] = ACTIONS(2433), + [anon_sym_u32] = ACTIONS(2433), + [anon_sym_i32] = ACTIONS(2433), + [anon_sym_u64] = ACTIONS(2433), + [anon_sym_i64] = ACTIONS(2433), + [anon_sym_u128] = ACTIONS(2433), + [anon_sym_i128] = ACTIONS(2433), + [anon_sym_isize] = ACTIONS(2433), + [anon_sym_usize] = ACTIONS(2433), + [anon_sym_f32] = ACTIONS(2433), + [anon_sym_f64] = ACTIONS(2433), + [anon_sym_bool] = ACTIONS(2433), + [anon_sym_str] = ACTIONS(2433), + [anon_sym_char] = ACTIONS(2433), + [aux_sym__non_special_token_token1] = ACTIONS(2433), + [anon_sym_SQUOTE] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_async] = ACTIONS(2433), + [anon_sym_await] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_default] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_fn] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_impl] = ACTIONS(2433), + [anon_sym_let] = ACTIONS(2433), + [anon_sym_loop] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_mod] = ACTIONS(2433), + [anon_sym_pub] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_trait] = ACTIONS(2433), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_union] = ACTIONS(2433), + [anon_sym_unsafe] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_where] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [sym_mutable_specifier] = ACTIONS(2433), + [sym_integer_literal] = ACTIONS(2435), + [aux_sym_string_literal_token1] = ACTIONS(2435), + [sym_char_literal] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2433), + [anon_sym_false] = ACTIONS(2433), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2433), + [sym_super] = ACTIONS(2433), + [sym_crate] = ACTIONS(2433), + [sym_raw_string_literal] = ACTIONS(2435), + [sym_float_literal] = ACTIONS(2435), + [sym_block_comment] = ACTIONS(3), + }, + [591] = { + [sym_identifier] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_RPAREN] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2439), + [anon_sym_RBRACK] = ACTIONS(2439), + [anon_sym_DOLLAR] = ACTIONS(2439), + [anon_sym_u8] = ACTIONS(2437), + [anon_sym_i8] = ACTIONS(2437), + [anon_sym_u16] = ACTIONS(2437), + [anon_sym_i16] = ACTIONS(2437), + [anon_sym_u32] = ACTIONS(2437), + [anon_sym_i32] = ACTIONS(2437), + [anon_sym_u64] = ACTIONS(2437), + [anon_sym_i64] = ACTIONS(2437), + [anon_sym_u128] = ACTIONS(2437), + [anon_sym_i128] = ACTIONS(2437), + [anon_sym_isize] = ACTIONS(2437), + [anon_sym_usize] = ACTIONS(2437), + [anon_sym_f32] = ACTIONS(2437), + [anon_sym_f64] = ACTIONS(2437), + [anon_sym_bool] = ACTIONS(2437), + [anon_sym_str] = ACTIONS(2437), + [anon_sym_char] = ACTIONS(2437), + [aux_sym__non_special_token_token1] = ACTIONS(2437), + [anon_sym_SQUOTE] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_await] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_default] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_fn] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_impl] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_loop] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_mod] = ACTIONS(2437), + [anon_sym_pub] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2437), + [anon_sym_trait] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_union] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_where] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [sym_mutable_specifier] = ACTIONS(2437), + [sym_integer_literal] = ACTIONS(2439), + [aux_sym_string_literal_token1] = ACTIONS(2439), + [sym_char_literal] = ACTIONS(2439), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2437), + [sym_super] = ACTIONS(2437), + [sym_crate] = ACTIONS(2437), + [sym_raw_string_literal] = ACTIONS(2439), + [sym_float_literal] = ACTIONS(2439), + [sym_block_comment] = ACTIONS(3), + }, + [592] = { + [sym_function_modifiers] = STATE(2427), + [sym_higher_ranked_trait_bound] = STATE(1608), + [sym_removed_trait_bound] = STATE(1608), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1607), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(1606), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2451), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2453), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [589] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1825), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(2445), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [593] = { + [sym_identifier] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(628), + [anon_sym_RPAREN] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_RBRACK] = ACTIONS(628), + [anon_sym_DOLLAR] = ACTIONS(628), + [anon_sym_u8] = ACTIONS(630), + [anon_sym_i8] = ACTIONS(630), + [anon_sym_u16] = ACTIONS(630), + [anon_sym_i16] = ACTIONS(630), + [anon_sym_u32] = ACTIONS(630), + [anon_sym_i32] = ACTIONS(630), + [anon_sym_u64] = ACTIONS(630), + [anon_sym_i64] = ACTIONS(630), + [anon_sym_u128] = ACTIONS(630), + [anon_sym_i128] = ACTIONS(630), + [anon_sym_isize] = ACTIONS(630), + [anon_sym_usize] = ACTIONS(630), + [anon_sym_f32] = ACTIONS(630), + [anon_sym_f64] = ACTIONS(630), + [anon_sym_bool] = ACTIONS(630), + [anon_sym_str] = ACTIONS(630), + [anon_sym_char] = ACTIONS(630), + [aux_sym__non_special_token_token1] = ACTIONS(630), + [anon_sym_SQUOTE] = ACTIONS(630), + [anon_sym_as] = ACTIONS(630), + [anon_sym_async] = ACTIONS(630), + [anon_sym_await] = ACTIONS(630), + [anon_sym_break] = ACTIONS(630), + [anon_sym_const] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(630), + [anon_sym_default] = ACTIONS(630), + [anon_sym_enum] = ACTIONS(630), + [anon_sym_fn] = ACTIONS(630), + [anon_sym_for] = ACTIONS(630), + [anon_sym_if] = ACTIONS(630), + [anon_sym_impl] = ACTIONS(630), + [anon_sym_let] = ACTIONS(630), + [anon_sym_loop] = ACTIONS(630), + [anon_sym_match] = ACTIONS(630), + [anon_sym_mod] = ACTIONS(630), + [anon_sym_pub] = ACTIONS(630), + [anon_sym_return] = ACTIONS(630), + [anon_sym_static] = ACTIONS(630), + [anon_sym_struct] = ACTIONS(630), + [anon_sym_trait] = ACTIONS(630), + [anon_sym_type] = ACTIONS(630), + [anon_sym_union] = ACTIONS(630), + [anon_sym_unsafe] = ACTIONS(630), + [anon_sym_use] = ACTIONS(630), + [anon_sym_where] = ACTIONS(630), + [anon_sym_while] = ACTIONS(630), + [sym_mutable_specifier] = ACTIONS(630), + [sym_integer_literal] = ACTIONS(628), + [aux_sym_string_literal_token1] = ACTIONS(628), + [sym_char_literal] = ACTIONS(628), + [anon_sym_true] = ACTIONS(630), + [anon_sym_false] = ACTIONS(630), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(630), + [sym_super] = ACTIONS(630), + [sym_crate] = ACTIONS(630), + [sym_raw_string_literal] = ACTIONS(628), + [sym_float_literal] = ACTIONS(628), [sym_block_comment] = ACTIONS(3), }, - [590] = { - [sym_function_modifiers] = STATE(2411), - [sym_higher_ranked_trait_bound] = STATE(1623), - [sym_removed_trait_bound] = STATE(1623), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1629), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(1626), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), + [594] = { + [sym_function_modifiers] = STATE(2427), + [sym_higher_ranked_trait_bound] = STATE(1608), + [sym_removed_trait_bound] = STATE(1608), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1602), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(1601), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_QMARK] = ACTIONS(2451), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2453), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [591] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_RPAREN] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_RBRACK] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(2349), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2347), - [anon_sym_as] = ACTIONS(2347), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_await] = 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_where] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [sym_mutable_specifier] = ACTIONS(2347), - [sym_integer_literal] = ACTIONS(2349), - [aux_sym_string_literal_token1] = ACTIONS(2349), - [sym_char_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2347), - [sym_super] = ACTIONS(2347), - [sym_crate] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - [sym_float_literal] = ACTIONS(2349), + [595] = { + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_RBRACK] = ACTIONS(2443), + [anon_sym_DOLLAR] = ACTIONS(2443), + [anon_sym_u8] = ACTIONS(2441), + [anon_sym_i8] = ACTIONS(2441), + [anon_sym_u16] = ACTIONS(2441), + [anon_sym_i16] = ACTIONS(2441), + [anon_sym_u32] = ACTIONS(2441), + [anon_sym_i32] = ACTIONS(2441), + [anon_sym_u64] = ACTIONS(2441), + [anon_sym_i64] = ACTIONS(2441), + [anon_sym_u128] = ACTIONS(2441), + [anon_sym_i128] = ACTIONS(2441), + [anon_sym_isize] = ACTIONS(2441), + [anon_sym_usize] = ACTIONS(2441), + [anon_sym_f32] = ACTIONS(2441), + [anon_sym_f64] = ACTIONS(2441), + [anon_sym_bool] = ACTIONS(2441), + [anon_sym_str] = ACTIONS(2441), + [anon_sym_char] = ACTIONS(2441), + [aux_sym__non_special_token_token1] = ACTIONS(2441), + [anon_sym_SQUOTE] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_await] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_fn] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_impl] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_loop] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_mod] = ACTIONS(2441), + [anon_sym_pub] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2441), + [anon_sym_trait] = ACTIONS(2441), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_union] = ACTIONS(2441), + [anon_sym_unsafe] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_where] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [sym_mutable_specifier] = ACTIONS(2441), + [sym_integer_literal] = ACTIONS(2443), + [aux_sym_string_literal_token1] = ACTIONS(2443), + [sym_char_literal] = ACTIONS(2443), + [anon_sym_true] = ACTIONS(2441), + [anon_sym_false] = ACTIONS(2441), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2441), + [sym_super] = ACTIONS(2441), + [sym_crate] = ACTIONS(2441), + [sym_raw_string_literal] = ACTIONS(2443), + [sym_float_literal] = ACTIONS(2443), [sym_block_comment] = ACTIONS(3), }, - [592] = { - [sym_parameter] = STATE(2300), - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2131), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [596] = { + [sym_parameter] = STATE(2295), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1943), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2423), - [anon_sym_union] = ACTIONS(2423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2375), + [anon_sym_union] = ACTIONS(2375), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(2425), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(2377), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67262,68 +68998,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2429), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(2381), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [593] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1825), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [597] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1870), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(2447), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_RBRACK] = ACTIONS(2455), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67331,137 +69067,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [594] = { - [sym_identifier] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_RBRACE] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_RBRACK] = ACTIONS(2405), - [anon_sym_DOLLAR] = ACTIONS(2405), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_as] = ACTIONS(2403), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_await] = 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_where] = ACTIONS(2403), - [anon_sym_while] = ACTIONS(2403), - [sym_mutable_specifier] = ACTIONS(2403), - [sym_integer_literal] = ACTIONS(2405), - [aux_sym_string_literal_token1] = ACTIONS(2405), - [sym_char_literal] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2403), - [anon_sym_false] = ACTIONS(2403), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2403), - [sym_super] = ACTIONS(2403), - [sym_crate] = ACTIONS(2403), - [sym_raw_string_literal] = ACTIONS(2405), - [sym_float_literal] = ACTIONS(2405), + [598] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1870), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [595] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1825), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [599] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1870), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(2459), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67469,136 +69205,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [596] = { - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym_RPAREN] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2393), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_LBRACK] = ACTIONS(2393), - [anon_sym_RBRACK] = ACTIONS(2393), - [anon_sym_DOLLAR] = ACTIONS(2393), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2391), - [anon_sym_SQUOTE] = ACTIONS(2391), - [anon_sym_as] = ACTIONS(2391), - [anon_sym_async] = ACTIONS(2391), - [anon_sym_await] = 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_where] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(2391), - [sym_mutable_specifier] = ACTIONS(2391), - [sym_integer_literal] = ACTIONS(2393), - [aux_sym_string_literal_token1] = ACTIONS(2393), - [sym_char_literal] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(2391), - [anon_sym_false] = ACTIONS(2391), - [sym_line_comment] = ACTIONS(1000), - [sym_self] = ACTIONS(2391), - [sym_super] = ACTIONS(2391), - [sym_crate] = ACTIONS(2391), - [sym_raw_string_literal] = ACTIONS(2393), - [sym_float_literal] = ACTIONS(2393), + [600] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1870), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_RBRACK] = ACTIONS(2461), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [597] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1873), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [601] = { + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_RPAREN] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_RBRACK] = ACTIONS(2363), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_u8] = ACTIONS(2361), + [anon_sym_i8] = ACTIONS(2361), + [anon_sym_u16] = ACTIONS(2361), + [anon_sym_i16] = ACTIONS(2361), + [anon_sym_u32] = ACTIONS(2361), + [anon_sym_i32] = ACTIONS(2361), + [anon_sym_u64] = ACTIONS(2361), + [anon_sym_i64] = ACTIONS(2361), + [anon_sym_u128] = ACTIONS(2361), + [anon_sym_i128] = ACTIONS(2361), + [anon_sym_isize] = ACTIONS(2361), + [anon_sym_usize] = ACTIONS(2361), + [anon_sym_f32] = ACTIONS(2361), + [anon_sym_f64] = ACTIONS(2361), + [anon_sym_bool] = ACTIONS(2361), + [anon_sym_str] = ACTIONS(2361), + [anon_sym_char] = ACTIONS(2361), + [aux_sym__non_special_token_token1] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_as] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_await] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_fn] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_impl] = ACTIONS(2361), + [anon_sym_let] = ACTIONS(2361), + [anon_sym_loop] = ACTIONS(2361), + [anon_sym_match] = ACTIONS(2361), + [anon_sym_mod] = ACTIONS(2361), + [anon_sym_pub] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_trait] = ACTIONS(2361), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_unsafe] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2361), + [anon_sym_where] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [sym_mutable_specifier] = ACTIONS(2361), + [sym_integer_literal] = ACTIONS(2363), + [aux_sym_string_literal_token1] = ACTIONS(2363), + [sym_char_literal] = ACTIONS(2363), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [sym_line_comment] = ACTIONS(1099), + [sym_self] = ACTIONS(2361), + [sym_super] = ACTIONS(2361), + [sym_crate] = ACTIONS(2361), + [sym_raw_string_literal] = ACTIONS(2363), + [sym_float_literal] = ACTIONS(2363), + [sym_block_comment] = ACTIONS(3), + }, + [602] = { + [sym_function_modifiers] = STATE(2427), + [sym_higher_ranked_trait_bound] = STATE(1559), + [sym_removed_trait_bound] = STATE(1559), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1560), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(1561), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2451), + [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_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_block_comment] = ACTIONS(3), + }, + [603] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1870), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(2451), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67606,67 +69481,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [598] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2191), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [604] = { + [sym_function_modifiers] = STATE(2427), + [sym_higher_ranked_trait_bound] = STATE(1608), + [sym_removed_trait_bound] = STATE(1608), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1602), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(1606), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2451), + [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_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_block_comment] = ACTIONS(3), + }, + [605] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67674,271 +69618,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [599] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1394), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [606] = { + [sym_function_modifiers] = STATE(2398), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1116), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(2373), + [sym_array_type] = STATE(1113), + [sym_for_lifetimes] = STATE(1212), + [sym_function_type] = STATE(1113), + [sym_tuple_type] = STATE(1113), + [sym_unit_type] = STATE(1113), + [sym_generic_type] = STATE(854), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1113), + [sym_reference_type] = STATE(1113), + [sym_pointer_type] = STATE(1113), + [sym_empty_type] = STATE(1113), + [sym_abstract_type] = STATE(1113), + [sym_dynamic_type] = STATE(1113), + [sym_macro_invocation] = STATE(1113), + [sym_scoped_identifier] = STATE(2331), + [sym_scoped_type_identifier] = STATE(773), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2471), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), + [anon_sym_default] = ACTIONS(2477), + [anon_sym_fn] = ACTIONS(2479), [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_impl] = ACTIONS(2481), + [anon_sym_union] = ACTIONS(2483), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), + [anon_sym_BANG] = ACTIONS(2485), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2489), + [anon_sym_dyn] = ACTIONS(2491), + [sym_mutable_specifier] = ACTIONS(2493), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2457), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(2495), + [sym_super] = ACTIONS(2495), + [sym_crate] = ACTIONS(2495), + [sym_metavariable] = ACTIONS(2497), [sym_block_comment] = ACTIONS(3), }, - [600] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1394), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [607] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2184), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2459), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [601] = { - [sym_function_modifiers] = STATE(2376), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1059), - [sym_bracketed_type] = STATE(2479), - [sym_lifetime] = STATE(2470), - [sym_array_type] = STATE(1075), - [sym_for_lifetimes] = STATE(1207), - [sym_function_type] = STATE(1075), - [sym_tuple_type] = STATE(1075), - [sym_unit_type] = STATE(1075), - [sym_generic_type] = STATE(1007), - [sym_generic_type_with_turbofish] = STATE(2480), - [sym_bounded_type] = STATE(1075), - [sym_reference_type] = STATE(1075), - [sym_pointer_type] = STATE(1075), - [sym_empty_type] = STATE(1075), - [sym_abstract_type] = STATE(1075), - [sym_dynamic_type] = STATE(1075), - [sym_macro_invocation] = STATE(1075), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(771), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2467), - [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_SQUOTE] = ACTIONS(2319), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2473), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2477), - [anon_sym_union] = ACTIONS(2479), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_extern] = ACTIONS(714), + [608] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1921), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_dyn] = ACTIONS(2487), - [sym_mutable_specifier] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2491), - [sym_super] = ACTIONS(2491), - [sym_crate] = ACTIONS(2491), - [sym_metavariable] = ACTIONS(2493), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [602] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2229), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [609] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2178), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67946,67 +69890,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [603] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1796), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [610] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2185), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68014,67 +69958,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [604] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1979), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [611] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2293), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68082,67 +70026,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [605] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2247), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [612] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1870), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68150,67 +70094,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [606] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2179), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [613] = { + [sym_attribute_item] = STATE(613), + [aux_sym_enum_variant_list_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(2499), + [anon_sym_LPAREN] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_RBRACK] = ACTIONS(2501), + [anon_sym_STAR] = ACTIONS(2501), + [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_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_for] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_loop] = ACTIONS(2499), + [anon_sym_match] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_unsafe] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(2503), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_COMMA] = ACTIONS(2501), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym__] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(2501), + [sym_mutable_specifier] = ACTIONS(2499), + [anon_sym_DOT_DOT] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_PIPE] = ACTIONS(2501), + [anon_sym_yield] = ACTIONS(2499), + [anon_sym_move] = ACTIONS(2499), + [sym_integer_literal] = ACTIONS(2501), + [aux_sym_string_literal_token1] = ACTIONS(2501), + [sym_char_literal] = ACTIONS(2501), + [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(2501), + [sym_raw_string_literal] = ACTIONS(2501), + [sym_float_literal] = ACTIONS(2501), + [sym_block_comment] = ACTIONS(3), + }, + [614] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1803), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(2506), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68218,67 +70230,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [607] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2181), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [615] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2189), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68286,67 +70298,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [608] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2199), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [616] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1461), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68354,67 +70366,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [609] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1848), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [617] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2206), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68422,67 +70434,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2497), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [610] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1825), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [618] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1395), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(688), + [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_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2510), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2512), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_block_comment] = ACTIONS(3), + }, + [619] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1462), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(2514), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68490,67 +70570,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [611] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2193), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [620] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2210), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(688), + [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_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2516), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_block_comment] = ACTIONS(3), + }, + [621] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2222), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68558,67 +70706,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [612] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1489), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [622] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2196), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68626,67 +70774,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [613] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1471), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [623] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2181), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68694,67 +70842,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [614] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2212), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [624] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2180), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68762,67 +70910,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [615] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1460), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [625] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2057), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68830,67 +70978,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [616] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1488), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [626] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1478), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(2499), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68898,67 +71046,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [617] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1481), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [627] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1847), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68966,67 +71114,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [618] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2284), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [628] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1490), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69034,135 +71182,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [619] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1826), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_ref] = ACTIONS(716), + [629] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1395), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(688), + [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_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2518), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [620] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1816), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [630] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1882), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_union] = ACTIONS(2520), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(2501), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69170,67 +71318,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(2522), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [621] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2085), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [631] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1485), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69238,67 +71386,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [622] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2185), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [632] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1907), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69306,135 +71454,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [623] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(2297), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2503), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, - [624] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2226), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [633] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1470), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69442,67 +71522,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [625] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2190), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [634] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1882), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_union] = ACTIONS(2520), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69510,67 +71590,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(2524), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [626] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [635] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1867), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(2526), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69578,67 +71658,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [627] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2184), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [636] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2226), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69646,67 +71726,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [628] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1487), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [637] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2179), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69714,135 +71794,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [629] = { - [sym_attribute_item] = STATE(629), - [aux_sym_enum_variant_list_repeat1] = STATE(629), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_RBRACK] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_u8] = ACTIONS(2505), - [anon_sym_i8] = ACTIONS(2505), - [anon_sym_u16] = ACTIONS(2505), - [anon_sym_i16] = ACTIONS(2505), - [anon_sym_u32] = ACTIONS(2505), - [anon_sym_i32] = ACTIONS(2505), - [anon_sym_u64] = ACTIONS(2505), - [anon_sym_i64] = ACTIONS(2505), - [anon_sym_u128] = ACTIONS(2505), - [anon_sym_i128] = ACTIONS(2505), - [anon_sym_isize] = ACTIONS(2505), - [anon_sym_usize] = ACTIONS(2505), - [anon_sym_f32] = ACTIONS(2505), - [anon_sym_f64] = ACTIONS(2505), - [anon_sym_bool] = ACTIONS(2505), - [anon_sym_str] = ACTIONS(2505), - [anon_sym_char] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2505), - [anon_sym_async] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_default] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_loop] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_union] = ACTIONS(2505), - [anon_sym_unsafe] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_COMMA] = ACTIONS(2507), - [anon_sym_ref] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2507), - [anon_sym__] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2507), - [sym_mutable_specifier] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2507), - [anon_sym_yield] = ACTIONS(2505), - [anon_sym_move] = ACTIONS(2505), - [sym_integer_literal] = ACTIONS(2507), - [aux_sym_string_literal_token1] = ACTIONS(2507), - [sym_char_literal] = ACTIONS(2507), - [anon_sym_true] = ACTIONS(2505), - [anon_sym_false] = ACTIONS(2505), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2505), - [sym_super] = ACTIONS(2505), - [sym_crate] = ACTIONS(2505), - [sym_metavariable] = ACTIONS(2507), - [sym_raw_string_literal] = ACTIONS(2507), - [sym_float_literal] = ACTIONS(2507), - [sym_block_comment] = ACTIONS(3), - }, - [630] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1848), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [638] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2343), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69850,67 +71862,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2512), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [631] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2210), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [639] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(1857), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69918,67 +71930,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [632] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2275), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), + [640] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1361), + [sym_scoped_type_identifier] = STATE(1941), + [sym_const_block] = STATE(1455), + [sym__pattern] = STATE(2276), + [sym_tuple_pattern] = STATE(1455), + [sym_slice_pattern] = STATE(1455), + [sym_tuple_struct_pattern] = STATE(1455), + [sym_struct_pattern] = STATE(1455), + [sym_remaining_field_pattern] = STATE(1455), + [sym_mut_pattern] = STATE(1455), + [sym_range_pattern] = STATE(1455), + [sym_ref_pattern] = STATE(1455), + [sym_captured_pattern] = STATE(1455), + [sym_reference_pattern] = STATE(1455), + [sym_or_pattern] = STATE(1455), [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), + [sym_negative_literal] = STATE(1419), + [sym_string_literal] = STATE(1419), + [sym_boolean_literal] = STATE(1419), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1168), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69986,1441 +71998,956 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [633] = { - [sym_function_modifiers] = STATE(2376), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1110), - [sym_bracketed_type] = STATE(2479), - [sym_lifetime] = STATE(601), - [sym_array_type] = STATE(1075), - [sym_for_lifetimes] = STATE(1207), - [sym_function_type] = STATE(1075), - [sym_tuple_type] = STATE(1075), - [sym_unit_type] = STATE(1075), - [sym_generic_type] = STATE(1007), - [sym_generic_type_with_turbofish] = STATE(2480), - [sym_bounded_type] = STATE(1075), - [sym_reference_type] = STATE(1075), - [sym_pointer_type] = STATE(1075), - [sym_empty_type] = STATE(1075), - [sym_abstract_type] = STATE(1075), - [sym_dynamic_type] = STATE(1075), - [sym_macro_invocation] = STATE(1075), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(771), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_LBRACK] = ACTIONS(2465), - [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_SQUOTE] = ACTIONS(2514), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2473), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2477), - [anon_sym_union] = ACTIONS(2479), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_dyn] = ACTIONS(2487), - [sym_mutable_specifier] = ACTIONS(2516), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2491), - [sym_super] = ACTIONS(2491), - [sym_crate] = ACTIONS(2491), - [sym_metavariable] = ACTIONS(2493), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [634] = { - [sym_function_modifiers] = STATE(2411), - [sym_type_parameters] = STATE(662), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1701), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1705), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1538), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), + [641] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1985), + [sym_bracketed_type] = STATE(2395), + [sym_qualified_type] = STATE(2379), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [635] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1800), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(890), + [642] = { + [sym_function_modifiers] = STATE(2427), + [sym_type_parameters] = STATE(732), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1655), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1656), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1531), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [636] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1939), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(890), + [643] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2013), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [637] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(2306), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(623), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), + [644] = { + [sym_function_modifiers] = STATE(2427), + [sym_type_parameters] = STATE(693), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1663), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1665), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1513), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2514), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2526), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [638] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1939), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [645] = { + [sym_function_modifiers] = STATE(2398), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1108), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(606), + [sym_array_type] = STATE(1113), + [sym_for_lifetimes] = STATE(1212), + [sym_function_type] = STATE(1113), + [sym_tuple_type] = STATE(1113), + [sym_unit_type] = STATE(1113), + [sym_generic_type] = STATE(854), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1113), + [sym_reference_type] = STATE(1113), + [sym_pointer_type] = STATE(1113), + [sym_empty_type] = STATE(1113), + [sym_abstract_type] = STATE(1113), + [sym_dynamic_type] = STATE(1113), + [sym_macro_invocation] = STATE(1113), + [sym_scoped_identifier] = STATE(2331), + [sym_scoped_type_identifier] = STATE(773), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2469), + [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_SQUOTE] = ACTIONS(2536), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), + [anon_sym_default] = ACTIONS(2477), + [anon_sym_fn] = ACTIONS(2479), [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_impl] = ACTIONS(2481), + [anon_sym_union] = ACTIONS(2483), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), + [anon_sym_BANG] = ACTIONS(2485), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2489), + [anon_sym_dyn] = ACTIONS(2491), + [sym_mutable_specifier] = ACTIONS(2538), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(2495), + [sym_super] = ACTIONS(2495), + [sym_crate] = ACTIONS(2495), + [sym_metavariable] = ACTIONS(2497), [sym_block_comment] = ACTIONS(3), }, - [639] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1939), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(890), + [646] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1829), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [640] = { - [sym_function_modifiers] = STATE(2411), - [sym_type_parameters] = STATE(657), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1664), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1670), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1524), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), + [647] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2013), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [641] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(2068), - [sym_bracketed_type] = STATE(2370), - [sym_qualified_type] = STATE(2346), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), + [648] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2013), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [642] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1784), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(890), + [649] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1862), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [643] = { - [sym_function_modifiers] = STATE(2411), - [sym_type_parameters] = STATE(692), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1711), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1641), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1526), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2536), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), + [650] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2321), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(620), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2536), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2548), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [644] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1397), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(600), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), + [651] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1398), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(629), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2514), + [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_SQUOTE] = ACTIONS(2536), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2538), + [sym_mutable_specifier] = ACTIONS(2550), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [645] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1939), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(890), + [652] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(2013), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1382), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1356), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), + [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [646] = { - [sym_function_modifiers] = STATE(2411), - [sym_type_parameters] = STATE(665), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1648), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1650), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1543), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), + [653] = { + [sym_function_modifiers] = STATE(2427), + [sym_type_parameters] = STATE(664), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1646), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1657), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1539), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2554), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, - sym_scoped_type_identifier, - STATE(1375), 1, - sym_generic_type, - STATE(2143), 1, - sym__type, - STATE(2301), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, - sym_lifetime, - STATE(2411), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1410), 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(892), 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(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, - sym_scoped_type_identifier, - STATE(1375), 1, - sym_generic_type, - STATE(2120), 1, - sym__type, - STATE(2301), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, - sym_lifetime, - STATE(2411), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1410), 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(892), 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(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, - sym_scoped_type_identifier, - STATE(1375), 1, - sym_generic_type, - STATE(1717), 1, - sym__type, - STATE(2301), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, - sym_lifetime, - STATE(2411), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1410), 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(892), 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(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, - sym_scoped_type_identifier, - STATE(1375), 1, - sym_generic_type, - STATE(2150), 1, - sym__type, - STATE(2301), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, - sym_lifetime, - STATE(2411), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1410), 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(892), 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(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, - sym_scoped_type_identifier, - STATE(1375), 1, - sym_generic_type, - STATE(1401), 1, - sym__type, - STATE(2301), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, - sym_lifetime, - STATE(2411), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1410), 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(892), 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, + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_block_comment] = ACTIONS(3), + }, + [654] = { + [sym_function_modifiers] = STATE(2427), + [sym_type_parameters] = STATE(671), + [sym_extern_modifier] = STATE(1563), + [sym__type] = STATE(1722), + [sym_bracketed_type] = STATE(2395), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1421), + [sym_for_lifetimes] = STATE(1211), + [sym_function_type] = STATE(1421), + [sym_tuple_type] = STATE(1421), + [sym_unit_type] = STATE(1421), + [sym_generic_type] = STATE(1717), + [sym_generic_type_with_turbofish] = STATE(2396), + [sym_bounded_type] = STATE(1421), + [sym_reference_type] = STATE(1421), + [sym_pointer_type] = STATE(1421), + [sym_empty_type] = STATE(1421), + [sym_abstract_type] = STATE(1421), + [sym_dynamic_type] = STATE(1421), + [sym_macro_invocation] = STATE(1421), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1527), + [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_identifier] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(688), + [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_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_block_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71437,251 +72964,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, - sym_scoped_type_identifier, - STATE(1375), 1, - sym_generic_type, - STATE(1658), 1, - sym__type, - STATE(2301), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, - sym_lifetime, - STATE(2411), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1410), 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(892), 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(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(902), 1, - anon_sym_AMP, ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, - sym_scoped_type_identifier, - STATE(1375), 1, - sym_generic_type, - STATE(1395), 1, - sym__type, - STATE(2301), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, - sym_lifetime, - STATE(2411), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1410), 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(892), 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(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1651), 1, + STATE(2210), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71693,7 +73026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71711,7 +73044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1032] = 32, + [129] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71728,154 +73061,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, - sym_scoped_type_identifier, - STATE(1375), 1, - sym_generic_type, - STATE(1659), 1, - sym__type, - STATE(2301), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, - sym_lifetime, - STATE(2411), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1410), 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(892), 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(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2187), 1, + STATE(2013), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71887,7 +73123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71905,7 +73141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1290] = 32, + [258] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71922,154 +73158,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, - anon_sym_COLON_COLON, ACTIONS(902), 1, - anon_sym_AMP, - ACTIONS(908), 1, - sym_metavariable, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2544), 1, - sym_identifier, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1539), 1, - sym_scoped_type_identifier, - STATE(1724), 1, - sym_generic_type, - STATE(1725), 1, - sym__type, - STATE(2301), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, - sym_lifetime, - STATE(2411), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1410), 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(892), 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(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2089), 1, + STATE(1413), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72081,7 +73220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72099,7 +73238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1548] = 32, + [387] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72116,154 +73255,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1405), 1, + STATE(1932), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1410), 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(892), 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(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2461), 1, - sym_identifier, - ACTIONS(2463), 1, - anon_sym_LPAREN, - ACTIONS(2465), 1, - anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, - anon_sym_default, - ACTIONS(2475), 1, - anon_sym_fn, - ACTIONS(2477), 1, - anon_sym_impl, - ACTIONS(2479), 1, - anon_sym_union, - ACTIONS(2481), 1, - anon_sym_BANG, - ACTIONS(2483), 1, - anon_sym_COLON_COLON, - ACTIONS(2485), 1, - anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, - sym_metavariable, - STATE(771), 1, - sym_scoped_type_identifier, - STATE(1007), 1, - sym_generic_type, - STATE(1112), 1, - sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, - sym_scoped_identifier, - STATE(2376), 1, + STATE(2427), 1, sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, - sym_bracketed_type, - STATE(2480), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2491), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72275,7 +73317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72293,7 +73335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1806] = 32, + [516] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72310,57 +73352,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1896), 1, + STATE(1407), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72372,7 +73414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72390,7 +73432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1935] = 32, + [645] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72407,57 +73449,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2546), 1, + ACTIONS(2325), 1, sym_identifier, - STATE(1201), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, sym_for_lifetimes, - STATE(1517), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1709), 1, + STATE(1382), 1, sym_generic_type, - STATE(1712), 1, + STATE(1679), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72469,7 +73511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72487,7 +73529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2064] = 32, + [774] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72504,57 +73546,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2000), 1, + STATE(1649), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72566,7 +73608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72584,7 +73626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2193] = 32, + [903] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72601,57 +73643,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1661), 1, + STATE(1410), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72663,7 +73705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72681,7 +73723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2322] = 32, + [1032] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72698,57 +73740,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2548), 1, + ACTIONS(2325), 1, sym_identifier, - STATE(1201), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, sym_for_lifetimes, - STATE(1546), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1653), 1, + STATE(1382), 1, sym_generic_type, - STATE(1691), 1, + STATE(1648), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72760,7 +73802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72778,7 +73820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2451] = 32, + [1161] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72795,57 +73837,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + ACTIONS(2558), 1, + sym_identifier, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1546), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1650), 1, sym_generic_type, - STATE(2298), 1, + STATE(1701), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72857,7 +73899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72875,7 +73917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2580] = 32, + [1290] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72892,57 +73934,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1928), 1, + STATE(1829), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72954,7 +73996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72972,7 +74014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2709] = 32, + [1419] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72989,57 +74031,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2297), 1, + STATE(1658), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73051,7 +74093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73069,74 +74111,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2838] = 32, + [1548] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2469), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2473), 1, + anon_sym_STAR, + ACTIONS(2477), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2479), 1, + anon_sym_fn, + ACTIONS(2481), 1, + anon_sym_impl, + ACTIONS(2483), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2485), 1, + anon_sym_BANG, + ACTIONS(2487), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2489), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2491), 1, + anon_sym_dyn, + ACTIONS(2497), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(773), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(854), 1, sym_generic_type, - STATE(1815), 1, + STATE(1136), 1, sym__type, - STATE(2301), 1, + STATE(1212), 1, + sym_for_lifetimes, + STATE(2331), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2373), 1, sym_lifetime, - STATE(2411), 1, + STATE(2398), 1, sym_function_modifiers, + STATE(2495), 1, + sym_bracketed_type, + STATE(2496), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2495), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1113), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73148,7 +74190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2475), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73166,7 +74208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2967] = 32, + [1677] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73183,57 +74225,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1419), 1, + STATE(1406), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73245,7 +74287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73263,7 +74305,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3096] = 32, + [1806] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, + anon_sym_LPAREN, + ACTIONS(2469), 1, + anon_sym_LBRACK, + ACTIONS(2473), 1, + anon_sym_STAR, + ACTIONS(2477), 1, + anon_sym_default, + ACTIONS(2479), 1, + anon_sym_fn, + ACTIONS(2481), 1, + anon_sym_impl, + ACTIONS(2483), 1, + anon_sym_union, + ACTIONS(2485), 1, + anon_sym_BANG, + ACTIONS(2487), 1, + anon_sym_COLON_COLON, + ACTIONS(2489), 1, + anon_sym_AMP, + ACTIONS(2491), 1, + anon_sym_dyn, + ACTIONS(2497), 1, + sym_metavariable, + STATE(773), 1, + sym_scoped_type_identifier, + STATE(854), 1, + sym_generic_type, + STATE(1119), 1, + sym__type, + STATE(1212), 1, + sym_for_lifetimes, + STATE(2331), 1, + sym_scoped_identifier, + STATE(2373), 1, + sym_lifetime, + STATE(2398), 1, + sym_function_modifiers, + STATE(2495), 1, + sym_bracketed_type, + STATE(2496), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1563), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2495), 3, + sym_self, + sym_super, + sym_crate, + STATE(1113), 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(2475), 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(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73280,57 +74419,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1424), 1, + STATE(2056), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73342,7 +74481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73360,7 +74499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3225] = 32, + [2064] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73377,57 +74516,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + ACTIONS(2560), 1, + sym_identifier, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1552), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1714), 1, sym_generic_type, - STATE(1713), 1, + STATE(1718), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73439,7 +74578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73457,7 +74596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3354] = 32, + [2193] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73474,57 +74613,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2301), 1, - sym_scoped_identifier, - STATE(2310), 1, + STATE(2190), 1, sym__type, - STATE(2370), 1, + STATE(2314), 1, + sym_scoped_identifier, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73536,7 +74675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73554,74 +74693,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3483] = 32, + [2322] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2461), 1, + ACTIONS(2465), 1, sym_identifier, - ACTIONS(2463), 1, + ACTIONS(2467), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, - anon_sym_LBRACK, ACTIONS(2469), 1, - anon_sym_STAR, + anon_sym_LBRACK, ACTIONS(2473), 1, + anon_sym_STAR, + ACTIONS(2477), 1, anon_sym_default, - ACTIONS(2475), 1, + ACTIONS(2479), 1, anon_sym_fn, - ACTIONS(2477), 1, + ACTIONS(2481), 1, anon_sym_impl, - ACTIONS(2479), 1, + ACTIONS(2483), 1, anon_sym_union, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(2487), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(2489), 1, anon_sym_AMP, - ACTIONS(2487), 1, + ACTIONS(2491), 1, anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(2497), 1, sym_metavariable, - STATE(771), 1, + STATE(773), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(854), 1, sym_generic_type, - STATE(1058), 1, + STATE(1128), 1, sym__type, - STATE(1207), 1, + STATE(1212), 1, sym_for_lifetimes, - STATE(2318), 1, + STATE(2331), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, + STATE(2373), 1, sym_lifetime, - STATE(2479), 1, + STATE(2398), 1, + sym_function_modifiers, + STATE(2495), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2496), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2491), 3, + ACTIONS(2495), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1113), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73633,7 +74772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(2475), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73651,7 +74790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3612] = 32, + [2451] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73668,57 +74807,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1400), 1, + STATE(2118), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73730,7 +74869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73748,74 +74887,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3741] = 32, + [2580] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2469), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2473), 1, + anon_sym_STAR, + ACTIONS(2477), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2479), 1, + anon_sym_fn, + ACTIONS(2481), 1, + anon_sym_impl, + ACTIONS(2483), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2485), 1, + anon_sym_BANG, + ACTIONS(2487), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2489), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2491), 1, + anon_sym_dyn, + ACTIONS(2497), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(773), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(854), 1, sym_generic_type, - STATE(1420), 1, + STATE(1127), 1, sym__type, - STATE(2301), 1, + STATE(1212), 1, + sym_for_lifetimes, + STATE(2331), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2373), 1, sym_lifetime, - STATE(2411), 1, + STATE(2398), 1, sym_function_modifiers, + STATE(2495), 1, + sym_bracketed_type, + STATE(2496), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2495), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1113), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73827,7 +74966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2475), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73845,7 +74984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3870] = 32, + [2709] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73862,57 +75001,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1726), 1, + STATE(1982), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73924,7 +75063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73942,7 +75081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3999] = 32, + [2838] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73959,57 +75098,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2021), 1, + STATE(1913), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74021,7 +75160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74039,7 +75178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4128] = 32, + [2967] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74056,57 +75195,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2075), 1, + STATE(1807), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74118,7 +75257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74136,7 +75275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4257] = 32, + [3096] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74153,57 +75292,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1884), 1, + STATE(2110), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74215,7 +75354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74233,7 +75372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4386] = 32, + [3225] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74250,57 +75389,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1964), 1, + STATE(1697), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74312,7 +75451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74330,32 +75469,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4515] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1272), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + [3354] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, anon_sym_STAR, - anon_sym_POUND, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, anon_sym_BANG, - anon_sym_COMMA, - anon_sym_LT, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, + anon_sym_LPAREN, + ACTIONS(902), 1, + anon_sym_LBRACK, + ACTIONS(906), 1, + anon_sym_default, + ACTIONS(908), 1, + anon_sym_union, + ACTIONS(912), 1, anon_sym_COLON_COLON, + ACTIONS(914), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(1274), 42, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, + sym_scoped_type_identifier, + STATE(1382), 1, + sym_generic_type, + STATE(1696), 1, + sym__type, + STATE(2314), 1, + sym_scoped_identifier, + STATE(2395), 1, + sym_bracketed_type, + STATE(2396), 1, + sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1563), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + STATE(1421), 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(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74373,32 +75566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4586] = 32, + [3483] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74415,57 +75583,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1997), 1, + STATE(1908), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74477,7 +75645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74495,7 +75663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4715] = 32, + [3612] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74512,57 +75680,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2102), 1, + STATE(2051), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74574,7 +75742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74592,7 +75760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4844] = 32, + [3741] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74609,57 +75777,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1804), 1, + STATE(2106), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74671,7 +75839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74689,74 +75857,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4973] = 32, + [3870] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2469), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2473), 1, + anon_sym_STAR, + ACTIONS(2477), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2479), 1, + anon_sym_fn, + ACTIONS(2481), 1, + anon_sym_impl, + ACTIONS(2483), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2485), 1, + anon_sym_BANG, + ACTIONS(2487), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2489), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2491), 1, + anon_sym_dyn, + ACTIONS(2497), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(773), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(854), 1, sym_generic_type, - STATE(2236), 1, + STATE(1091), 1, sym__type, - STATE(2301), 1, + STATE(1212), 1, + sym_for_lifetimes, + STATE(2331), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2373), 1, sym_lifetime, - STATE(2411), 1, + STATE(2398), 1, sym_function_modifiers, + STATE(2495), 1, + sym_bracketed_type, + STATE(2496), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2495), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1113), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74768,7 +75936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2475), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74786,7 +75954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5102] = 32, + [3999] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74803,57 +75971,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2301), 1, - sym_scoped_identifier, - STATE(2302), 1, + STATE(2064), 1, sym__type, - STATE(2370), 1, + STATE(2314), 1, + sym_scoped_identifier, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74865,7 +76033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74883,74 +76051,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5231] = 32, + [4128] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2461), 1, - sym_identifier, - ACTIONS(2463), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2475), 1, - anon_sym_fn, - ACTIONS(2477), 1, - anon_sym_impl, - ACTIONS(2479), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(2481), 1, - anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(771), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1382), 1, sym_generic_type, - STATE(1100), 1, + STATE(1911), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2491), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74962,7 +76130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74980,7 +76148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5360] = 32, + [4257] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74997,57 +76165,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1882), 1, + STATE(2077), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75059,7 +76227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75077,7 +76245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5489] = 32, + [4386] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75094,57 +76262,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1875), 1, + STATE(1851), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75156,7 +76324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75174,7 +76342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5618] = 32, + [4515] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75191,57 +76359,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1678), 1, + STATE(1687), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75253,7 +76421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75271,74 +76439,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5747] = 32, + [4644] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2469), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2473), 1, + anon_sym_STAR, + ACTIONS(2477), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2479), 1, + anon_sym_fn, + ACTIONS(2481), 1, + anon_sym_impl, + ACTIONS(2483), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2485), 1, + anon_sym_BANG, + ACTIONS(2487), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2489), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2491), 1, + anon_sym_dyn, + ACTIONS(2497), 1, sym_metavariable, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2550), 1, - sym_identifier, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1529), 1, + STATE(773), 1, sym_scoped_type_identifier, - STATE(1647), 1, - sym__type, - STATE(1694), 1, + STATE(854), 1, sym_generic_type, - STATE(2301), 1, + STATE(1117), 1, + sym__type, + STATE(1212), 1, + sym_for_lifetimes, + STATE(2331), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2373), 1, sym_lifetime, - STATE(2411), 1, + STATE(2398), 1, sym_function_modifiers, + STATE(2495), 1, + sym_bracketed_type, + STATE(2496), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2495), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1113), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75350,7 +76518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2475), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75368,74 +76536,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5876] = 32, + [4773] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2461), 1, - sym_identifier, - ACTIONS(2463), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2475), 1, - anon_sym_fn, - ACTIONS(2477), 1, - anon_sym_impl, - ACTIONS(2479), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(2481), 1, - anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(771), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1382), 1, sym_generic_type, - STATE(1099), 1, + STATE(1671), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2491), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75447,7 +76615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75465,7 +76633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6005] = 32, + [4902] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75482,57 +76650,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + ACTIONS(2562), 1, + sym_identifier, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1520), 1, sym_scoped_type_identifier, - STATE(1375), 1, - sym_generic_type, - STATE(2059), 1, + STATE(1652), 1, sym__type, - STATE(2301), 1, + STATE(1660), 1, + sym_generic_type, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75544,7 +76712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75562,7 +76730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6134] = 32, + [5031] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75579,57 +76747,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1679), 1, + STATE(1724), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75641,7 +76809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75659,7 +76827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6263] = 32, + [5160] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75676,57 +76844,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1879), 1, + STATE(2116), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75738,7 +76906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75756,7 +76924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6392] = 32, + [5289] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75773,57 +76941,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1695), 1, + STATE(2030), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75835,7 +77003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75853,7 +77021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6521] = 32, + [5418] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75870,57 +77038,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1939), 1, + STATE(1408), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75932,7 +77100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75950,7 +77118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6650] = 32, + [5547] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75967,57 +77135,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1981), 1, + STATE(1906), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76029,7 +77197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76047,74 +77215,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6779] = 32, + [5676] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2461), 1, - sym_identifier, - ACTIONS(2463), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2475), 1, + ACTIONS(908), 1, + anon_sym_union, + ACTIONS(912), 1, + anon_sym_COLON_COLON, + ACTIONS(914), 1, + anon_sym_AMP, + ACTIONS(920), 1, + sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, + sym_scoped_type_identifier, + STATE(1382), 1, + sym_generic_type, + STATE(2047), 1, + sym__type, + STATE(2314), 1, + sym_scoped_identifier, + STATE(2395), 1, + sym_bracketed_type, + STATE(2396), 1, + sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1563), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + STATE(1421), 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(904), 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(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(2477), 1, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(2479), 1, - anon_sym_union, - ACTIONS(2481), 1, + ACTIONS(710), 1, anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, + anon_sym_LPAREN, + ACTIONS(902), 1, + anon_sym_LBRACK, + ACTIONS(906), 1, + anon_sym_default, + ACTIONS(908), 1, + anon_sym_union, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(771), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1382), 1, sym_generic_type, - STATE(1095), 1, + STATE(1691), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2491), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76126,7 +77391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76144,7 +77409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6908] = 32, + [5934] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76161,57 +77426,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, + ACTIONS(920), 1, + sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, + sym_scoped_type_identifier, + STATE(1382), 1, + sym_generic_type, + STATE(1692), 1, + sym__type, + STATE(2314), 1, + sym_scoped_identifier, + STATE(2395), 1, + sym_bracketed_type, + STATE(2396), 1, + sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1563), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + STATE(1421), 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(904), 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(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, + anon_sym_LPAREN, + ACTIONS(902), 1, + anon_sym_LBRACK, + ACTIONS(906), 1, + anon_sym_default, ACTIONS(908), 1, + anon_sym_union, + ACTIONS(912), 1, + anon_sym_COLON_COLON, + ACTIONS(914), 1, + anon_sym_AMP, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1601), 1, + STATE(1416), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76223,7 +77585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76241,7 +77603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7037] = 32, + [6192] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76258,57 +77620,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2171), 1, + STATE(1415), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76320,7 +77682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76338,7 +77700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7166] = 32, + [6321] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76355,57 +77717,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2288), 1, + STATE(1613), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76417,7 +77779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76435,7 +77797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7295] = 32, + [6450] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76452,57 +77814,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1681), 1, + STATE(1902), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76514,7 +77876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76532,7 +77894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7424] = 32, + [6579] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76549,57 +77911,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2138), 1, + STATE(2172), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76611,7 +77973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76629,7 +77991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7553] = 32, + [6708] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76646,57 +78008,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1418), 1, + STATE(1414), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76708,7 +78070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76726,7 +78088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7682] = 32, + [6837] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76743,57 +78105,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1415), 1, - sym_lifetime, - STATE(1418), 1, + STATE(1892), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2411), 1, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76805,7 +78167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76823,7 +78185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7811] = 32, + [6966] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76840,57 +78202,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1640), 1, + STATE(2135), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76902,7 +78264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76920,7 +78282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7940] = 32, + [7095] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76937,57 +78299,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1727), 1, + STATE(1725), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76999,7 +78361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77017,7 +78379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8069] = 32, + [7224] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77034,57 +78396,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, + ACTIONS(914), 1, + anon_sym_AMP, + ACTIONS(920), 1, + sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, + sym_scoped_type_identifier, + STATE(1382), 1, + sym_generic_type, + STATE(1395), 1, + sym__type, + STATE(2314), 1, + sym_scoped_identifier, + STATE(2395), 1, + sym_bracketed_type, + STATE(2396), 1, + sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1563), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + STATE(1421), 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(904), 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(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, + anon_sym_LPAREN, ACTIONS(902), 1, + anon_sym_LBRACK, + ACTIONS(906), 1, + anon_sym_default, + ACTIONS(908), 1, + anon_sym_union, + ACTIONS(912), 1, + anon_sym_COLON_COLON, + ACTIONS(914), 1, anon_sym_AMP, + ACTIONS(920), 1, + sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, + sym_scoped_type_identifier, + STATE(1382), 1, + sym_generic_type, + STATE(1698), 1, + sym__type, + STATE(2314), 1, + sym_scoped_identifier, + STATE(2395), 1, + sym_bracketed_type, + STATE(2396), 1, + sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1563), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + STATE(1421), 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(904), 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(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, + anon_sym_LPAREN, + ACTIONS(902), 1, + anon_sym_LBRACK, + ACTIONS(906), 1, + anon_sym_default, ACTIONS(908), 1, + anon_sym_union, + ACTIONS(912), 1, + anon_sym_COLON_COLON, + ACTIONS(914), 1, + anon_sym_AMP, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1627), 1, + STATE(2124), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77096,7 +78652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77114,7 +78670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8198] = 32, + [7611] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77131,57 +78687,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1685), 1, + STATE(2022), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77193,7 +78749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77211,7 +78767,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8327] = 32, + [7740] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1498), 20, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(1500), 42, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7811] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77228,57 +78852,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1956), 1, + STATE(1879), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77290,7 +78914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77308,7 +78932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8456] = 32, + [7940] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77325,57 +78949,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2132), 1, + STATE(2018), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77387,7 +79011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77405,74 +79029,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8585] = 32, + [8069] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2461), 1, - sym_identifier, - ACTIONS(2463), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2475), 1, - anon_sym_fn, - ACTIONS(2477), 1, - anon_sym_impl, - ACTIONS(2479), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(2481), 1, - anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(771), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1382), 1, sym_generic_type, - STATE(1059), 1, + STATE(2232), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2491), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77484,7 +79108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77502,74 +79126,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8714] = 32, + [8198] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2469), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2473), 1, + anon_sym_STAR, + ACTIONS(2477), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2479), 1, + anon_sym_fn, + ACTIONS(2481), 1, + anon_sym_impl, + ACTIONS(2483), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2485), 1, + anon_sym_BANG, + ACTIONS(2487), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2489), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2491), 1, + anon_sym_dyn, + ACTIONS(2497), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(773), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(854), 1, sym_generic_type, - STATE(2261), 1, + STATE(1116), 1, sym__type, - STATE(2301), 1, + STATE(1212), 1, + sym_for_lifetimes, + STATE(2331), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2373), 1, sym_lifetime, - STATE(2411), 1, + STATE(2398), 1, sym_function_modifiers, + STATE(2495), 1, + sym_bracketed_type, + STATE(2496), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2495), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1113), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77581,7 +79205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2475), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77599,7 +79223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8843] = 32, + [8327] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77616,57 +79240,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1900), 1, + STATE(1878), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77678,7 +79302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77696,7 +79320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8972] = 32, + [8456] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77713,57 +79337,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1894), 1, + STATE(1720), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77775,7 +79399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77793,7 +79417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9101] = 32, + [8585] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77810,57 +79434,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1394), 1, + STATE(1417), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77872,7 +79496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77890,7 +79514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9230] = 32, + [8714] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77907,57 +79531,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1708), 1, + STATE(1686), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77969,7 +79593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77987,7 +79611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9359] = 32, + [8843] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78004,57 +79628,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1680), 1, - sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2316), 1, + sym__type, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78066,7 +79690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78084,7 +79708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9488] = 32, + [8972] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78101,57 +79725,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1784), 1, + STATE(1732), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78163,7 +79787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78181,7 +79805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9617] = 32, + [9101] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78198,57 +79822,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2108), 1, + STATE(2039), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78260,7 +79884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78278,74 +79902,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9746] = 32, + [9230] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2469), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2473), 1, + anon_sym_STAR, + ACTIONS(2477), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2479), 1, + anon_sym_fn, + ACTIONS(2481), 1, + anon_sym_impl, + ACTIONS(2483), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2485), 1, + anon_sym_BANG, + ACTIONS(2487), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2489), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2491), 1, + anon_sym_dyn, + ACTIONS(2497), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(773), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(854), 1, sym_generic_type, - STATE(2061), 1, + STATE(1069), 1, sym__type, - STATE(2301), 1, + STATE(1212), 1, + sym_for_lifetimes, + STATE(2331), 1, sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2373), 1, sym_lifetime, - STATE(2411), 1, + STATE(2398), 1, sym_function_modifiers, + STATE(2495), 1, + sym_bracketed_type, + STATE(2496), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2495), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1113), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78357,7 +79981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2475), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78375,74 +79999,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9875] = 32, + [9359] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2461), 1, - sym_identifier, - ACTIONS(2463), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2475), 1, - anon_sym_fn, - ACTIONS(2477), 1, - anon_sym_impl, - ACTIONS(2479), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(2481), 1, - anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(771), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1382), 1, sym_generic_type, - STATE(1109), 1, + STATE(1626), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2491), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78454,7 +80078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78472,7 +80096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10004] = 32, + [9488] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78489,57 +80113,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1409), 1, + STATE(2239), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78551,7 +80175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78569,7 +80193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10133] = 32, + [9617] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78586,57 +80210,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1649), 1, + STATE(2149), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78648,7 +80272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78666,7 +80290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10262] = 33, + [9746] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78683,58 +80307,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2552), 1, - sym_self, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1401), 1, + STATE(1688), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(906), 2, - sym_super, - sym_crate, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - STATE(1410), 11, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78746,7 +80369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78764,7 +80387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10393] = 32, + [9875] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78781,57 +80404,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + ACTIONS(2564), 1, + sym_identifier, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1551), 1, sym_scoped_type_identifier, - STATE(1375), 1, - sym_generic_type, - STATE(1683), 1, + STATE(1680), 1, sym__type, - STATE(2301), 1, + STATE(1682), 1, + sym_generic_type, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78843,7 +80466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78861,7 +80484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10522] = 32, + [10004] = 33, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78878,57 +80501,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + ACTIONS(2566), 1, + sym_self, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1660), 1, + STATE(1413), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + ACTIONS(918), 2, + sym_super, + sym_crate, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78940,7 +80564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78958,74 +80582,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10651] = 32, + [10135] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2461), 1, - sym_identifier, - ACTIONS(2463), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2475), 1, - anon_sym_fn, - ACTIONS(2477), 1, - anon_sym_impl, - ACTIONS(2479), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(2481), 1, - anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(771), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1382), 1, sym_generic_type, - STATE(1060), 1, + STATE(1695), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2491), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79037,7 +80661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79055,7 +80679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10780] = 32, + [10264] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79072,57 +80696,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1646), 1, + STATE(1916), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79134,7 +80758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79152,7 +80776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10909] = 32, + [10393] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79169,57 +80793,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1412), 1, + STATE(1713), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79231,7 +80855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79249,74 +80873,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11038] = 32, + [10522] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2461), 1, - sym_identifier, - ACTIONS(2463), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2475), 1, - anon_sym_fn, - ACTIONS(2477), 1, - anon_sym_impl, - ACTIONS(2479), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(2481), 1, - anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(771), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1382), 1, sym_generic_type, - STATE(1103), 1, + STATE(1721), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2491), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79328,7 +80952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79346,7 +80970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11167] = 32, + [10651] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79363,57 +80987,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2090), 1, + STATE(1669), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79425,7 +81049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79443,74 +81067,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11296] = 32, + [10780] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2461), 1, - sym_identifier, - ACTIONS(2463), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2475), 1, - anon_sym_fn, - ACTIONS(2477), 1, - anon_sym_impl, - ACTIONS(2479), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(2481), 1, - anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(771), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1382), 1, sym_generic_type, - STATE(1098), 1, + STATE(2209), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2491), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79522,7 +81146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79540,74 +81164,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11425] = 32, + [10909] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2461), 1, - sym_identifier, - ACTIONS(2463), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2475), 1, - anon_sym_fn, - ACTIONS(2477), 1, - anon_sym_impl, - ACTIONS(2479), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(2481), 1, - anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(771), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1382), 1, sym_generic_type, - STATE(1101), 1, + STATE(1673), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2376), 1, + STATE(2395), 1, + sym_bracketed_type, + STATE(2396), 1, + sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, sym_function_modifiers, - STATE(2470), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1563), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + STATE(1421), 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(904), 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, + [11038] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, + anon_sym_LPAREN, + ACTIONS(902), 1, + anon_sym_LBRACK, + ACTIONS(906), 1, + anon_sym_default, + ACTIONS(908), 1, + anon_sym_union, + ACTIONS(912), 1, + anon_sym_COLON_COLON, + ACTIONS(914), 1, + anon_sym_AMP, + ACTIONS(920), 1, + sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, + sym_scoped_type_identifier, + STATE(1382), 1, + sym_generic_type, + STATE(1399), 1, + sym__type, + STATE(1401), 1, sym_lifetime, - STATE(2479), 1, + STATE(2314), 1, + sym_scoped_identifier, + STATE(2395), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2491), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79619,7 +81340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79637,7 +81358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11554] = 32, + [11167] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79654,57 +81375,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2221), 1, + STATE(1674), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79716,7 +81437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79734,7 +81455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11683] = 32, + [11296] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79751,57 +81472,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1657), 1, + STATE(2308), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79813,7 +81534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79831,7 +81552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11812] = 32, + [11425] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79848,57 +81569,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2223), 1, + STATE(1726), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79910,7 +81631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79928,7 +81649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11941] = 32, + [11554] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79945,57 +81666,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2101), 1, + STATE(1651), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80007,7 +81728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80025,7 +81746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12070] = 32, + [11683] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80042,57 +81763,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1674), 1, + STATE(1640), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80104,7 +81825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80122,7 +81843,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12199] = 32, + [11812] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, + anon_sym_LPAREN, + ACTIONS(2469), 1, + anon_sym_LBRACK, + ACTIONS(2473), 1, + anon_sym_STAR, + ACTIONS(2477), 1, + anon_sym_default, + ACTIONS(2479), 1, + anon_sym_fn, + ACTIONS(2481), 1, + anon_sym_impl, + ACTIONS(2483), 1, + anon_sym_union, + ACTIONS(2485), 1, + anon_sym_BANG, + ACTIONS(2487), 1, + anon_sym_COLON_COLON, + ACTIONS(2489), 1, + anon_sym_AMP, + ACTIONS(2491), 1, + anon_sym_dyn, + ACTIONS(2497), 1, + sym_metavariable, + STATE(773), 1, + sym_scoped_type_identifier, + STATE(854), 1, + sym_generic_type, + STATE(1115), 1, + sym__type, + STATE(1212), 1, + sym_for_lifetimes, + STATE(2331), 1, + sym_scoped_identifier, + STATE(2373), 1, + sym_lifetime, + STATE(2398), 1, + sym_function_modifiers, + STATE(2495), 1, + sym_bracketed_type, + STATE(2496), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1563), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2495), 3, + sym_self, + sym_super, + sym_crate, + STATE(1113), 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(2475), 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, + [11941] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80139,57 +81957,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2056), 1, + STATE(1837), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80201,7 +82019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80219,7 +82037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12328] = 32, + [12070] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80236,57 +82054,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1675), 1, + STATE(2311), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80298,7 +82116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80316,7 +82134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12457] = 32, + [12199] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80333,57 +82151,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2094), 1, + STATE(2187), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80395,7 +82213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80413,7 +82231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12586] = 32, + [12328] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80430,57 +82248,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2197), 1, + STATE(1983), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80492,7 +82310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80510,7 +82328,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12715] = 32, + [12457] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, + anon_sym_LPAREN, + ACTIONS(2469), 1, + anon_sym_LBRACK, + ACTIONS(2473), 1, + anon_sym_STAR, + ACTIONS(2477), 1, + anon_sym_default, + ACTIONS(2479), 1, + anon_sym_fn, + ACTIONS(2481), 1, + anon_sym_impl, + ACTIONS(2483), 1, + anon_sym_union, + ACTIONS(2485), 1, + anon_sym_BANG, + ACTIONS(2487), 1, + anon_sym_COLON_COLON, + ACTIONS(2489), 1, + anon_sym_AMP, + ACTIONS(2491), 1, + anon_sym_dyn, + ACTIONS(2497), 1, + sym_metavariable, + STATE(773), 1, + sym_scoped_type_identifier, + STATE(854), 1, + sym_generic_type, + STATE(1150), 1, + sym__type, + STATE(1212), 1, + sym_for_lifetimes, + STATE(2331), 1, + sym_scoped_identifier, + STATE(2373), 1, + sym_lifetime, + STATE(2398), 1, + sym_function_modifiers, + STATE(2495), 1, + sym_bracketed_type, + STATE(2496), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1563), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2495), 3, + sym_self, + sym_super, + sym_crate, + STATE(1113), 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(2475), 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, + [12586] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80527,57 +82442,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2037), 1, + STATE(2203), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80589,7 +82504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80607,7 +82522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12844] = 32, + [12715] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80624,57 +82539,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(2137), 1, + STATE(1915), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80686,7 +82601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80704,7 +82619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12973] = 32, + [12844] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80721,57 +82636,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1854), 1, + STATE(2233), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80783,7 +82698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80801,74 +82716,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13102] = 32, + [12973] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2469), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2473), 1, + anon_sym_STAR, + ACTIONS(2477), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2479), 1, + anon_sym_fn, + ACTIONS(2481), 1, + anon_sym_impl, + ACTIONS(2483), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2485), 1, + anon_sym_BANG, + ACTIONS(2487), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2489), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2491), 1, + anon_sym_dyn, + ACTIONS(2497), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(773), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(854), 1, sym_generic_type, - STATE(1856), 1, + STATE(1151), 1, sym__type, - STATE(2301), 1, + STATE(1212), 1, + sym_for_lifetimes, + STATE(2331), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2373), 1, + sym_lifetime, + STATE(2398), 1, + sym_function_modifiers, + STATE(2495), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2496), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1563), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2495), 3, + sym_self, + sym_super, + sym_crate, + STATE(1113), 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(2475), 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, + [13102] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, + anon_sym_LPAREN, + ACTIONS(2469), 1, + anon_sym_LBRACK, + ACTIONS(2473), 1, + anon_sym_STAR, + ACTIONS(2477), 1, + anon_sym_default, + ACTIONS(2479), 1, + anon_sym_fn, + ACTIONS(2481), 1, + anon_sym_impl, + ACTIONS(2483), 1, + anon_sym_union, + ACTIONS(2485), 1, + anon_sym_BANG, + ACTIONS(2487), 1, + anon_sym_COLON_COLON, + ACTIONS(2489), 1, + anon_sym_AMP, + ACTIONS(2491), 1, + anon_sym_dyn, + ACTIONS(2497), 1, + sym_metavariable, + STATE(773), 1, + sym_scoped_type_identifier, + STATE(854), 1, + sym_generic_type, + STATE(1147), 1, + sym__type, + STATE(1212), 1, + sym_for_lifetimes, + STATE(2331), 1, + sym_scoped_identifier, + STATE(2373), 1, sym_lifetime, - STATE(2411), 1, + STATE(2398), 1, sym_function_modifiers, + STATE(2495), 1, + sym_bracketed_type, + STATE(2496), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2495), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1113), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80880,7 +82892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2475), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80915,57 +82927,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1676), 1, + STATE(2136), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80977,7 +82989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81012,57 +83024,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1723), 1, + STATE(1654), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81074,7 +83086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81109,57 +83121,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1895), 1, + STATE(2069), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81171,7 +83183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81206,57 +83218,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1722), 1, + STATE(2236), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81268,7 +83280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81303,57 +83315,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1637), 1, + STATE(1399), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81365,7 +83377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81400,57 +83412,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(920), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1382), 1, sym_generic_type, - STATE(1673), 1, + STATE(1723), 1, sym__type, - STATE(2301), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2425), 1, sym_lifetime, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81462,7 +83474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81483,71 +83495,71 @@ static const uint16_t ts_small_parse_table[] = { [14005] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2461), 1, - sym_identifier, - ACTIONS(2463), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2475), 1, - anon_sym_fn, - ACTIONS(2477), 1, - anon_sym_impl, - ACTIONS(2479), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(2481), 1, - anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(771), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1356), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1382), 1, sym_generic_type, - STATE(1062), 1, + STATE(1838), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2491), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1421), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81559,7 +83571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81581,7 +83593,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2556), 17, + ACTIONS(2570), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -81599,7 +83611,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2554), 40, + ACTIONS(2568), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81644,25 +83656,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(880), 17, + ACTIONS(406), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, - anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(878), 40, + ACTIONS(2572), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81694,7 +83707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, - anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -81707,26 +83719,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(406), 18, + ACTIONS(2576), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2558), 39, + ACTIONS(2574), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81758,6 +83769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, + anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -81770,7 +83782,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2562), 17, + ACTIONS(880), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -81788,7 +83800,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2560), 40, + ACTIONS(878), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81833,7 +83845,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1272), 15, + ACTIONS(1498), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -81849,7 +83861,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1274), 38, + ACTIONS(1500), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81889,22 +83901,22 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [14460] = 9, - ACTIONS(2566), 1, + ACTIONS(2580), 1, anon_sym_LPAREN, - ACTIONS(2570), 1, + ACTIONS(2584), 1, anon_sym_BANG, - ACTIONS(2572), 1, + ACTIONS(2586), 1, anon_sym_COLON_COLON, - ACTIONS(2574), 1, + ACTIONS(2588), 1, anon_sym_LT2, - STATE(813), 1, + STATE(945), 1, sym_type_arguments, - STATE(858), 1, + STATE(1000), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2568), 17, + ACTIONS(2582), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81922,7 +83934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2564), 26, + ACTIONS(2578), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -81950,20 +83962,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, [14530] = 8, - ACTIONS(2566), 1, + ACTIONS(2580), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2586), 1, anon_sym_COLON_COLON, - ACTIONS(2574), 1, + ACTIONS(2588), 1, anon_sym_LT2, - STATE(813), 1, + STATE(945), 1, sym_type_arguments, - STATE(858), 1, + STATE(1000), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 17, + ACTIONS(2592), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81981,7 +83993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2576), 26, + ACTIONS(2590), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -82009,20 +84021,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, [14597] = 8, - ACTIONS(2566), 1, + ACTIONS(2580), 1, anon_sym_LPAREN, - ACTIONS(2572), 1, + ACTIONS(2586), 1, anon_sym_COLON_COLON, - ACTIONS(2574), 1, + ACTIONS(2588), 1, anon_sym_LT2, - STATE(813), 1, + STATE(945), 1, sym_type_arguments, - STATE(858), 1, + STATE(1000), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 17, + ACTIONS(2596), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82040,7 +84052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2580), 26, + ACTIONS(2594), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -82067,72 +84079,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14664] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1408), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1410), 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, - [14720] = 7, - ACTIONS(2566), 1, + [14664] = 7, + ACTIONS(2580), 1, anon_sym_LPAREN, - ACTIONS(2574), 1, + ACTIONS(2588), 1, anon_sym_LT2, - STATE(814), 1, + STATE(958), 1, sym_type_arguments, - STATE(866), 1, + STATE(1012), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 17, + ACTIONS(2600), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82150,7 +84109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2584), 26, + ACTIONS(2598), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -82177,78 +84136,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14784] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1716), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1718), 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, - [14840] = 6, - ACTIONS(2594), 1, + [14728] = 5, + ACTIONS(2606), 1, anon_sym_BANG, - ACTIONS(2596), 1, + ACTIONS(2608), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(2590), 16, + ACTIONS(2604), 17, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82257,24 +84155,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2588), 23, + ACTIONS(2602), 28, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, 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, @@ -82284,13 +84190,12 @@ 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, - [14902] = 3, + [14788] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1328), 9, + ACTIONS(1894), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82300,7 +84205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1330), 38, + ACTIONS(1896), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82339,119 +84244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14958] = 5, - ACTIONS(2602), 1, - anon_sym_BANG, - ACTIONS(2604), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2600), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2598), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [15018] = 7, - ACTIONS(2566), 1, - anon_sym_LPAREN, - ACTIONS(2574), 1, - anon_sym_LT2, - STATE(814), 1, - sym_type_arguments, - STATE(866), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2608), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2606), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [15082] = 5, + [14844] = 5, ACTIONS(2614), 1, anon_sym_BANG, ACTIONS(2616), 1, @@ -82506,11 +84299,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15142] = 5, - ACTIONS(2622), 1, - anon_sym_BANG, - ACTIONS(2624), 1, - anon_sym_COLON_COLON, + [14904] = 7, + ACTIONS(2580), 1, + anon_sym_LPAREN, + ACTIONS(2588), 1, + anon_sym_LT2, + STATE(958), 1, + sym_type_arguments, + STATE(1012), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -82532,9 +84329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2618), 28, + ACTIONS(2618), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82545,7 +84341,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -82561,11 +84356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15202] = 3, + [14968] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1848), 9, + ACTIONS(1954), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82575,7 +84370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1850), 38, + ACTIONS(1956), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82614,19 +84409,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15258] = 7, - ACTIONS(2566), 1, + [15024] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1560), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1562), 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, + [15080] = 7, + ACTIONS(2580), 1, anon_sym_LPAREN, - ACTIONS(2574), 1, + ACTIONS(2588), 1, anon_sym_LT2, - STATE(814), 1, + STATE(958), 1, sym_type_arguments, - STATE(866), 1, + STATE(1012), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 17, + ACTIONS(2624), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82644,7 +84492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2626), 26, + ACTIONS(2622), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -82671,15 +84519,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15322] = 5, - ACTIONS(2634), 1, + [15144] = 7, + ACTIONS(2584), 1, anon_sym_BANG, - ACTIONS(2636), 1, + ACTIONS(2626), 1, + anon_sym_LBRACE, + ACTIONS(2628), 1, anon_sym_COLON_COLON, + STATE(1076), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2632), 17, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82690,18 +84542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2630), 28, + ACTIONS(564), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -82710,12 +84559,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, 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, @@ -82725,12 +84574,13 @@ 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, - [15382] = 3, + [15208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1558), 9, + ACTIONS(1918), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82740,7 +84590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1560), 38, + ACTIONS(1920), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82779,19 +84629,68 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15438] = 7, - ACTIONS(2570), 1, + [15264] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2014), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2016), 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, + [15320] = 5, + ACTIONS(2634), 1, anon_sym_BANG, - ACTIONS(2638), 1, - anon_sym_LBRACE, - ACTIONS(2640), 1, + ACTIONS(2636), 1, anon_sym_COLON_COLON, - STATE(1117), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, + ACTIONS(2632), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82802,15 +84701,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(564), 28, + ACTIONS(2630), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -82819,6 +84721,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, 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, + [15380] = 6, + ACTIONS(2644), 1, + anon_sym_BANG, + ACTIONS(2646), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2642), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(2640), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2638), 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, @@ -82836,13 +84793,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [15442] = 5, + ACTIONS(2652), 1, + anon_sym_BANG, + ACTIONS(2654), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2650), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2648), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, [15502] = 4, - ACTIONS(2642), 1, + ACTIONS(2656), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 16, + ACTIONS(2614), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -82859,7 +84871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2636), 29, + ACTIONS(2616), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82890,14 +84902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [15559] = 5, - ACTIONS(2644), 1, + ACTIONS(2658), 1, anon_sym_else, - STATE(1055), 1, + STATE(1103), 1, sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(396), 15, + ACTIONS(394), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82913,7 +84925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(394), 29, + ACTIONS(392), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82943,17 +84955,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15618] = 5, - ACTIONS(2650), 1, - anon_sym_SQUOTE, - STATE(1066), 1, - sym_loop_label, + [15618] = 4, + ACTIONS(2660), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 15, + ACTIONS(2634), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82967,11 +84978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2646), 29, + ACTIONS(2636), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -82979,6 +84989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -82997,13 +85008,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15677] = 4, - ACTIONS(2652), 1, + [15675] = 4, + ACTIONS(2662), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 16, + ACTIONS(2652), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -83020,7 +85031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2616), 29, + ACTIONS(2654), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83050,11 +85061,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15734] = 3, + [15732] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 16, + ACTIONS(2606), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -83071,7 +85082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2616), 30, + ACTIONS(2608), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83102,16 +85113,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15789] = 4, - ACTIONS(2654), 1, - anon_sym_LBRACE, + [15787] = 5, + ACTIONS(2668), 1, + anon_sym_SQUOTE, + STATE(1067), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 16, + ACTIONS(2666), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83125,10 +85137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2624), 29, + ACTIONS(2664), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83136,7 +85149,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -83155,17 +85167,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15846] = 5, - ACTIONS(2644), 1, - anon_sym_else, - STATE(1067), 1, - sym_else_clause, + [15846] = 4, + ACTIONS(2670), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(502), 15, + ACTIONS(2606), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83179,11 +85190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(500), 29, + ACTIONS(2608), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83191,6 +85201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -83209,16 +85220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15905] = 4, - ACTIONS(2656), 1, - anon_sym_LBRACE, + [15903] = 5, + ACTIONS(2658), 1, + anon_sym_else, + STATE(1098), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 16, + ACTIONS(500), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83232,10 +85244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2604), 29, + ACTIONS(498), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83243,7 +85256,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -83266,7 +85278,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1428), 7, + ACTIONS(1690), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83274,7 +85286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1430), 38, + ACTIONS(1692), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83317,7 +85329,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1656), 7, + ACTIONS(1314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83325,7 +85337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1658), 38, + ACTIONS(1316), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83368,7 +85380,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1880), 7, + ACTIONS(1564), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83376,7 +85388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1882), 38, + ACTIONS(1566), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83419,7 +85431,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1840), 7, + ACTIONS(1576), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83427,7 +85439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1842), 38, + ACTIONS(1578), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83470,7 +85482,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1872), 7, + ACTIONS(1580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83478,7 +85490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1874), 38, + ACTIONS(1582), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83517,113 +85529,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16232] = 3, + [16232] = 5, + ACTIONS(2674), 1, + anon_sym_LPAREN, + STATE(1079), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1836), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2676), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1838), 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, - [16286] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1832), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2672), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1834), 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, - [16340] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [16290] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1824), 7, + ACTIONS(1634), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83631,7 +85594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1826), 38, + ACTIONS(1636), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83670,11 +85633,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16394] = 3, + [16344] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1904), 7, + ACTIONS(1638), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83682,7 +85645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1906), 38, + ACTIONS(1640), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83721,117 +85684,67 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16448] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1808), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + [16398] = 4, + ACTIONS(2678), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1810), 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, - [16502] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1800), 7, + ACTIONS(562), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(564), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1802), 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, - [16556] = 5, - ACTIONS(2596), 1, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [16454] = 5, + ACTIONS(2646), 1, anon_sym_COLON_COLON, - ACTIONS(2658), 1, + ACTIONS(2680), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 15, + ACTIONS(2640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83847,7 +85760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2588), 28, + ACTIONS(2638), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83876,113 +85789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16614] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1900), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1902), 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, - [16668] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1796), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1798), 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, - [16722] = 3, + [16512] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1868), 7, + ACTIONS(1870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83990,7 +85801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1870), 38, + ACTIONS(1872), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84029,11 +85840,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16776] = 3, + [16566] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(546), 15, + ACTIONS(848), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84049,7 +85860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(544), 30, + ACTIONS(850), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84058,6 +85869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, @@ -84079,114 +85891,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_else, - [16830] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1188), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + [16620] = 5, + ACTIONS(2584), 1, + anon_sym_BANG, + ACTIONS(2682), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1190), 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, - [16884] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1792), 7, + ACTIONS(562), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(564), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1794), 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, - [16938] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [16678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1896), 7, + ACTIONS(1120), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84194,7 +85956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1898), 38, + ACTIONS(1122), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84233,11 +85995,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16992] = 3, + [16732] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1892), 7, + ACTIONS(1886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84245,7 +86007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1894), 38, + ACTIONS(1888), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84284,11 +86046,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17046] = 3, + [16786] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1856), 7, + ACTIONS(1194), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84296,7 +86058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1858), 38, + ACTIONS(1196), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84335,11 +86097,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17100] = 3, + [16840] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1784), 7, + ACTIONS(1136), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84347,7 +86109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1786), 38, + ACTIONS(1138), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84386,11 +86148,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17154] = 3, + [16894] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1780), 7, + ACTIONS(536), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84398,7 +86160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1782), 38, + ACTIONS(538), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84437,11 +86199,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17208] = 3, + [16948] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1852), 7, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84449,7 +86211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1854), 38, + ACTIONS(1972), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84488,11 +86250,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17262] = 3, + [17002] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1224), 7, + ACTIONS(1982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84500,7 +86262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1226), 38, + ACTIONS(1984), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84539,11 +86301,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17316] = 3, + [17056] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(1116), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84551,7 +86313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1910), 38, + ACTIONS(1118), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84590,113 +86352,215 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17370] = 3, + [17110] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2662), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1186), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2660), 30, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1188), 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, + [17164] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1178), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - 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, - [17424] = 3, + sym_metavariable, + ACTIONS(1180), 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, + [17218] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2666), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1112), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2664), 30, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1114), 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, + [17272] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1148), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - 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, - [17478] = 3, + sym_metavariable, + ACTIONS(1150), 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, + [17326] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1776), 7, + ACTIONS(1998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84704,7 +86568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1778), 38, + ACTIONS(2000), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84743,11 +86607,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17532] = 3, + [17380] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1764), 7, + ACTIONS(1144), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84755,7 +86619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1766), 38, + ACTIONS(1146), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84794,11 +86658,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17586] = 3, + [17434] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1744), 7, + ACTIONS(1978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84806,7 +86670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1746), 38, + ACTIONS(1980), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84845,11 +86709,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17640] = 3, + [17488] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1740), 7, + ACTIONS(554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84857,7 +86721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1742), 38, + ACTIONS(556), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84896,11 +86760,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17694] = 3, + [17542] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1732), 7, + ACTIONS(550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84908,7 +86772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1734), 38, + ACTIONS(552), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84947,11 +86811,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17748] = 3, + [17596] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1924), 7, + ACTIONS(628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84959,7 +86823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1926), 38, + ACTIONS(630), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84998,11 +86862,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17802] = 3, + [17650] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1952), 7, + ACTIONS(1922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85010,7 +86874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1954), 38, + ACTIONS(1924), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85049,11 +86913,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17856] = 3, + [17704] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1704), 7, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85061,7 +86925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1706), 38, + ACTIONS(1940), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85100,11 +86964,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17910] = 3, + [17758] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1960), 7, + ACTIONS(1910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85112,7 +86976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1962), 38, + ACTIONS(1912), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85151,11 +87015,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17964] = 3, + [17812] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(544), 7, + ACTIONS(590), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85163,7 +87027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(546), 38, + ACTIONS(592), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85202,11 +87066,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18018] = 3, + [17866] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(550), 7, + ACTIONS(1498), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85214,7 +87078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(552), 38, + ACTIONS(1500), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85253,11 +87117,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18072] = 3, + [17920] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1590), 7, + ACTIONS(1540), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85265,7 +87129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1592), 38, + ACTIONS(1542), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85304,62 +87168,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18126] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(552), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(550), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_else, - [18180] = 3, + [17974] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1304), 7, + ACTIONS(656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85367,7 +87180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1306), 38, + ACTIONS(658), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85406,11 +87219,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18234] = 3, + [18028] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1582), 7, + ACTIONS(1544), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85418,7 +87231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1584), 38, + ACTIONS(1546), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85457,63 +87270,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18288] = 4, - ACTIONS(2672), 1, - anon_sym_DASH_GT, + [18082] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2670), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2668), 29, + ACTIONS(1140), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [18344] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1142), 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, + [18136] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(620), 7, + ACTIONS(668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85521,7 +87333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(622), 38, + ACTIONS(670), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85560,11 +87372,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18398] = 3, + [18190] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2676), 15, + ACTIONS(552), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85580,7 +87392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2674), 30, + ACTIONS(550), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85592,7 +87404,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85611,11 +87422,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18452] = 3, + anon_sym_else, + [18244] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1828), 7, + ACTIONS(1548), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85623,7 +87435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1830), 38, + ACTIONS(1550), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85662,62 +87474,115 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18506] = 3, + [18298] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1820), 7, + ACTIONS(2686), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2688), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2684), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [18354] = 4, + ACTIONS(2690), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1822), 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, - [18560] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1804), 7, + ACTIONS(2600), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2598), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [18410] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1202), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85725,7 +87590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1806), 38, + ACTIONS(1204), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85764,11 +87629,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18614] = 3, + [18464] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1788), 7, + ACTIONS(1206), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85776,7 +87641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1790), 38, + ACTIONS(1208), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85815,62 +87680,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18668] = 3, + [18518] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2680), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1210), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2678), 30, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1212), 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, + [18572] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1214), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - 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, - [18722] = 3, + sym_metavariable, + ACTIONS(1216), 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, + [18626] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(652), 7, + ACTIONS(1226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85878,7 +87794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(654), 38, + ACTIONS(1228), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85917,13 +87833,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18776] = 4, - ACTIONS(2682), 1, + [18680] = 4, + ACTIONS(2692), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 15, + ACTIONS(2600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85939,7 +87855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2626), 29, + ACTIONS(2598), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85969,11 +87885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18832] = 3, + [18736] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1344), 7, + ACTIONS(1882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85981,7 +87897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1346), 38, + ACTIONS(1884), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86020,11 +87936,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18886] = 3, + [18790] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1272), 7, + ACTIONS(1866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86032,7 +87948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1274), 38, + ACTIONS(1868), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86071,11 +87987,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18940] = 3, + [18844] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1648), 7, + ACTIONS(1262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86083,7 +87999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1650), 38, + ACTIONS(1264), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86122,62 +88038,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18994] = 3, + [18898] = 4, + ACTIONS(2698), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1632), 7, + ACTIONS(2696), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2694), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1634), 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, - [19048] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [18954] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(676), 7, + ACTIONS(1270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86185,7 +88102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(678), 38, + ACTIONS(1272), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86224,11 +88141,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19102] = 3, + [19008] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1628), 7, + ACTIONS(1818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86236,7 +88153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1630), 38, + ACTIONS(1820), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86275,11 +88192,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19156] = 3, + [19062] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1624), 7, + ACTIONS(1104), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86287,7 +88204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1626), 38, + ACTIONS(1106), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86326,11 +88243,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19210] = 3, + [19116] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1420), 7, + ACTIONS(1802), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86338,7 +88255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1422), 38, + ACTIONS(1804), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86377,14 +88294,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19264] = 4, + [19170] = 4, + ACTIONS(2700), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2686), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2688), 15, + ACTIONS(2600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86400,10 +88316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2684), 28, + ACTIONS(2598), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -86429,64 +88346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19320] = 3, + [19226] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(574), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(576), 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, - [19374] = 4, - ACTIONS(2694), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2692), 15, + ACTIONS(2704), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86502,7 +88366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2690), 29, + ACTIONS(2702), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86514,6 +88378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -86532,62 +88397,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19430] = 3, + [19280] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1984), 7, + ACTIONS(2708), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2706), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_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, + 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, + [19334] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2712), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2710), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1986), 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, - [19484] = 3, + 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, + [19388] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2000), 7, + ACTIONS(1798), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86595,7 +88511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2002), 38, + ACTIONS(1800), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86634,11 +88550,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19538] = 3, + [19442] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1098), 7, + ACTIONS(1362), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86646,7 +88562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1100), 38, + ACTIONS(1364), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86685,13 +88601,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19592] = 4, - ACTIONS(2682), 1, - anon_sym_COLON_COLON, + [19496] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 15, + ACTIONS(2714), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86707,11 +88624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2584), 29, + ACTIONS(2684), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -86737,11 +88653,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19648] = 3, + [19552] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1472), 7, + ACTIONS(1406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86749,7 +88665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1474), 38, + ACTIONS(1408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86788,11 +88704,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19702] = 3, + [19606] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1300), 7, + ACTIONS(1786), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86800,7 +88716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1302), 38, + ACTIONS(1788), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86839,11 +88755,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19756] = 3, + [19660] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1598), 7, + ACTIONS(1426), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86851,7 +88767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1600), 38, + ACTIONS(1428), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86890,63 +88806,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19810] = 4, - ACTIONS(2700), 1, - anon_sym_DASH_GT, + [19714] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2698), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2696), 29, + ACTIONS(1654), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [19866] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1656), 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, + [19768] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1484), 7, + ACTIONS(1450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86954,7 +88869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1486), 38, + ACTIONS(1452), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86993,11 +88908,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19920] = 3, + [19822] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1610), 7, + ACTIONS(1658), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87005,7 +88920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1612), 38, + ACTIONS(1660), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87044,11 +88959,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19974] = 3, + [19876] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1492), 7, + ACTIONS(1646), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87056,7 +88971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1494), 38, + ACTIONS(1648), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87095,11 +89010,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20028] = 3, + [19930] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1692), 7, + ACTIONS(1650), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87107,7 +89022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1694), 38, + ACTIONS(1652), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87146,11 +89061,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20082] = 3, + [19984] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1578), 7, + ACTIONS(1596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87158,7 +89073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1580), 38, + ACTIONS(1598), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87197,11 +89112,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20136] = 3, + [20038] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1566), 7, + ACTIONS(1462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87209,7 +89124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1568), 38, + ACTIONS(1464), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87248,11 +89163,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20190] = 3, + [20092] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(848), 15, + ACTIONS(2718), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87268,7 +89183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(850), 30, + ACTIONS(2716), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87277,10 +89192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -87299,13 +89214,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20244] = 4, - ACTIONS(2706), 1, - anon_sym_DASH_GT, + [20146] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2704), 15, + ACTIONS(1614), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1616), 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, + [20200] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2722), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87321,7 +89285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2702), 29, + ACTIONS(2720), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87333,6 +89297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -87351,11 +89316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20300] = 3, + [20254] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1528), 7, + ACTIONS(1434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87363,7 +89328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1530), 38, + ACTIONS(1436), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87402,11 +89367,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20354] = 3, + [20308] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1964), 7, + ACTIONS(1610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87414,7 +89379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1966), 38, + ACTIONS(1612), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87453,11 +89418,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20408] = 3, + [20362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1956), 7, + ACTIONS(1370), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87465,7 +89430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1958), 38, + ACTIONS(1372), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87504,11 +89469,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20462] = 3, + [20416] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1546), 7, + ACTIONS(1606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87516,7 +89481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1548), 38, + ACTIONS(1608), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87555,11 +89520,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20516] = 3, + [20470] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1550), 7, + ACTIONS(1346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87567,7 +89532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1552), 38, + ACTIONS(1348), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87606,11 +89571,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20570] = 3, + [20524] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1574), 7, + ACTIONS(1518), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87618,7 +89583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1576), 38, + ACTIONS(1520), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87657,11 +89622,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20624] = 3, + [20578] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1948), 7, + ACTIONS(1584), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87669,7 +89634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1950), 38, + ACTIONS(1586), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87708,11 +89673,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20678] = 3, + [20632] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1700), 7, + ACTIONS(1642), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87720,7 +89685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1702), 38, + ACTIONS(1644), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87759,11 +89724,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20732] = 3, + [20686] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2710), 15, + ACTIONS(1298), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1300), 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, + [20740] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2726), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87779,7 +89795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2708), 30, + ACTIONS(2724), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87791,7 +89807,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DASH_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, + 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, + [20794] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2730), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2728), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -87810,11 +89877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20786] = 3, + [20848] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1456), 7, + ACTIONS(1662), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87822,7 +89889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1458), 38, + ACTIONS(1664), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87861,11 +89928,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20840] = 3, + [20902] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1536), 7, + ACTIONS(1514), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87873,7 +89940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1538), 38, + ACTIONS(1516), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87912,11 +89979,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20894] = 3, + [20956] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1452), 7, + ACTIONS(1666), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87924,7 +89991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1454), 38, + ACTIONS(1668), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87963,11 +90030,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20948] = 3, + [21010] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1436), 7, + ACTIONS(1482), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87975,7 +90042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1438), 38, + ACTIONS(1484), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88014,11 +90081,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21002] = 3, + [21064] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1532), 7, + ACTIONS(1286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88026,7 +90093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1534), 38, + ACTIONS(1288), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88065,11 +90132,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21056] = 3, + [21118] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1412), 7, + ACTIONS(1470), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88077,7 +90144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1414), 38, + ACTIONS(1472), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88116,11 +90183,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21110] = 3, + [21172] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1500), 7, + ACTIONS(1132), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88128,7 +90195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1502), 38, + ACTIONS(1134), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88167,11 +90234,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21164] = 3, + [21226] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1352), 7, + ACTIONS(1730), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88179,7 +90246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1354), 38, + ACTIONS(1732), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88218,62 +90285,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21218] = 3, + [21280] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2714), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2712), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_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, - 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, - [21272] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1276), 7, + ACTIONS(1250), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88281,7 +90297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1278), 38, + ACTIONS(1252), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88320,11 +90336,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21326] = 3, + [21334] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1336), 7, + ACTIONS(1738), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88332,7 +90348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1338), 38, + ACTIONS(1740), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88371,11 +90387,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21380] = 3, + [21388] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1884), 7, + ACTIONS(1274), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88383,7 +90399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1886), 38, + ACTIONS(1276), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88422,11 +90438,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21434] = 3, + [21442] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1312), 7, + ACTIONS(1198), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88434,7 +90450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1314), 38, + ACTIONS(1200), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88473,11 +90489,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21488] = 3, + [21496] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1586), 7, + ACTIONS(1174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88485,7 +90501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1588), 38, + ACTIONS(1176), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88524,11 +90540,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21542] = 3, + [21550] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1212), 7, + ACTIONS(1230), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88536,7 +90552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1214), 38, + ACTIONS(1232), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88575,11 +90591,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21596] = 3, + [21604] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1280), 7, + ACTIONS(1326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88587,7 +90603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1282), 38, + ACTIONS(1328), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88626,11 +90642,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21650] = 3, + [21658] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1200), 7, + ACTIONS(1342), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88638,7 +90654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1202), 38, + ACTIONS(1344), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88677,11 +90693,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21704] = 3, + [21712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1102), 7, + ACTIONS(1382), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88689,7 +90705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1104), 38, + ACTIONS(1384), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88728,11 +90744,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21758] = 3, + [21766] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1192), 7, + ACTIONS(1394), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88740,7 +90756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1194), 38, + ACTIONS(1396), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88779,11 +90795,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21812] = 3, + [21820] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1154), 7, + ACTIONS(1974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88791,7 +90807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1156), 38, + ACTIONS(1976), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88830,11 +90846,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21866] = 3, + [21874] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1106), 7, + ACTIONS(1266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88842,7 +90858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1108), 38, + ACTIONS(1268), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88881,11 +90897,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21920] = 3, + [21928] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1606), 7, + ACTIONS(2002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88893,7 +90909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1608), 38, + ACTIONS(2004), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88932,11 +90948,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21974] = 3, + [21982] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1110), 7, + ACTIONS(1410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88944,7 +90960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1112), 38, + ACTIONS(1412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88983,11 +90999,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22028] = 3, + [22036] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1620), 7, + ACTIONS(1418), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88995,7 +91011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1622), 38, + ACTIONS(1420), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89034,11 +91050,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22082] = 3, + [22090] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1150), 7, + ACTIONS(2006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89046,7 +91062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1152), 38, + ACTIONS(2008), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89085,11 +91101,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22136] = 3, + [22144] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1114), 7, + ACTIONS(1438), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89097,7 +91113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1116), 38, + ACTIONS(1440), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89136,11 +91152,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22190] = 3, + [22198] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 7, + ACTIONS(1278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89148,7 +91164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1120), 38, + ACTIONS(1280), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89187,11 +91203,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22244] = 3, + [22252] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1292), 7, + ACTIONS(1446), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89199,7 +91215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1294), 38, + ACTIONS(1448), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89238,11 +91254,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22298] = 3, + [22306] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1122), 7, + ACTIONS(1486), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89250,7 +91266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1124), 38, + ACTIONS(1488), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89289,11 +91305,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22352] = 3, + [22360] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 15, + ACTIONS(556), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89309,7 +91325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2716), 30, + ACTIONS(554), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89321,7 +91337,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -89340,11 +91355,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22406] = 3, + anon_sym_else, + [22414] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2010), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2012), 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, + [22468] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1330), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1332), 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, + [22522] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1126), 7, + ACTIONS(1622), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89352,7 +91470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1128), 38, + ACTIONS(1624), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89391,11 +91509,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22460] = 3, + [22576] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1130), 7, + ACTIONS(1390), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89403,7 +91521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1132), 38, + ACTIONS(1392), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89442,63 +91560,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22514] = 4, - ACTIONS(2720), 1, - anon_sym_COLON_COLON, + [22630] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2606), 29, + ACTIONS(1674), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [22570] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1676), 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, + [22684] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1134), 7, + ACTIONS(1686), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89506,7 +91623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1136), 38, + ACTIONS(1688), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89545,11 +91662,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22624] = 3, + [22738] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1340), 7, + ACTIONS(1754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89557,7 +91674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1342), 38, + ACTIONS(1756), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89596,11 +91713,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22678] = 3, + [22792] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1138), 7, + ACTIONS(1758), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89608,7 +91725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1140), 38, + ACTIONS(1760), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89647,62 +91764,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22732] = 3, + [22846] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2724), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2722), 30, + ACTIONS(1766), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - 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, - [22786] = 3, + sym_metavariable, + ACTIONS(1768), 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, + [22900] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1146), 7, + ACTIONS(1778), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89710,7 +91827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1148), 38, + ACTIONS(1780), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89749,11 +91866,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22840] = 3, + [22954] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1256), 7, + ACTIONS(1182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89761,7 +91878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1258), 38, + ACTIONS(1184), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89800,11 +91917,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22894] = 3, + [23008] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1562), 7, + ACTIONS(1782), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89812,7 +91929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1564), 38, + ACTIONS(1784), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89851,11 +91968,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22948] = 3, + [23062] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1360), 7, + ACTIONS(1790), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89863,7 +91980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1362), 38, + ACTIONS(1792), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89902,11 +92019,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23002] = 3, + [23116] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1376), 7, + ACTIONS(1794), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89914,7 +92031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1378), 38, + ACTIONS(1796), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89953,11 +92070,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23056] = 3, + [23170] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1380), 7, + ACTIONS(1990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89965,7 +92082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1382), 38, + ACTIONS(1992), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90004,63 +92121,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23110] = 4, + [23224] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2726), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2688), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2684), 28, + ACTIONS(1834), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [23166] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1836), 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, + [23278] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1424), 7, + ACTIONS(1842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90068,7 +92184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1426), 38, + ACTIONS(1844), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90107,11 +92223,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23220] = 3, + [23332] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1570), 7, + ACTIONS(1846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90119,7 +92235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1572), 38, + ACTIONS(1848), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90158,11 +92274,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23274] = 3, + [23386] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1440), 7, + ACTIONS(1806), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90170,7 +92286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1442), 38, + ACTIONS(1808), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90209,11 +92325,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23328] = 3, + [23440] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1640), 7, + ACTIONS(1854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90221,7 +92337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1642), 38, + ACTIONS(1856), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90260,11 +92376,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23382] = 3, + [23494] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90272,7 +92388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1654), 38, + ACTIONS(1772), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90311,11 +92427,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23436] = 3, + [23548] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1444), 7, + ACTIONS(1762), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90323,7 +92439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1446), 38, + ACTIONS(1764), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90362,11 +92478,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23490] = 3, + [23602] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1464), 7, + ACTIONS(1874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90374,7 +92490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1466), 38, + ACTIONS(1876), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90413,11 +92529,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23544] = 3, + [23656] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1748), 7, + ACTIONS(1750), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90425,7 +92541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1750), 38, + ACTIONS(1752), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90464,11 +92580,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23598] = 3, + [23710] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1480), 7, + ACTIONS(1402), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90476,7 +92592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1482), 38, + ACTIONS(1404), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90515,11 +92631,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23652] = 3, + [23764] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1752), 7, + ACTIONS(1734), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90527,7 +92643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1754), 38, + ACTIONS(1736), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90566,11 +92682,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23706] = 3, + [23818] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1760), 7, + ACTIONS(1722), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90578,7 +92694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1762), 38, + ACTIONS(1724), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90617,11 +92733,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23760] = 3, + [23872] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1488), 7, + ACTIONS(1714), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90629,7 +92745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1490), 38, + ACTIONS(1716), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90668,11 +92784,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23814] = 3, + [23926] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1768), 7, + ACTIONS(1706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90680,7 +92796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1770), 38, + ACTIONS(1708), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90719,63 +92835,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23868] = 4, - ACTIONS(2728), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(562), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(564), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [23924] = 3, + [23980] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1812), 7, + ACTIONS(1626), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90783,7 +92847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1814), 38, + ACTIONS(1628), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90822,11 +92886,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23978] = 3, + [24034] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1860), 7, + ACTIONS(1190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90834,7 +92898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1862), 38, + ACTIONS(1192), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90873,113 +92937,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24032] = 3, + [24088] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1916), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2734), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1918), 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, - [24086] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1504), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2732), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1506), 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, - [24140] = 3, + 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, + [24142] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1094), 7, + ACTIONS(1682), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90987,7 +93000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1096), 38, + ACTIONS(1684), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91026,11 +93039,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24194] = 3, + [24196] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1516), 7, + ACTIONS(1678), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91038,7 +93051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1518), 38, + ACTIONS(1680), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91077,11 +93090,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24248] = 3, + [24250] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1594), 7, + ACTIONS(1746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91089,7 +93102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1596), 38, + ACTIONS(1748), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91128,11 +93141,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24302] = 3, + [24304] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1468), 7, + ACTIONS(1536), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91140,7 +93153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1470), 38, + ACTIONS(1538), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91179,11 +93192,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24356] = 3, + [24358] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1308), 7, + ACTIONS(1810), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91191,7 +93204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1310), 38, + ACTIONS(1812), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91230,11 +93243,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24410] = 3, + [24412] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2004), 7, + ACTIONS(1494), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91242,7 +93255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2006), 38, + ACTIONS(1496), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91281,11 +93294,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24464] = 3, + [24466] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 7, + ACTIONS(1442), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91293,7 +93306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1998), 38, + ACTIONS(1444), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91332,11 +93345,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24518] = 3, + [24520] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1988), 7, + ACTIONS(1958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91344,7 +93357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1990), 38, + ACTIONS(1960), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91383,11 +93396,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24572] = 3, + [24574] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1976), 7, + ACTIONS(1430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91395,7 +93408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1978), 38, + ACTIONS(1432), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91434,11 +93447,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24626] = 3, + [24628] = 4, + ACTIONS(2740), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 15, + ACTIONS(2738), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91454,7 +93469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2730), 30, + ACTIONS(2736), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91466,7 +93481,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -91485,11 +93499,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24680] = 3, + [24684] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1524), 7, + ACTIONS(1422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91497,7 +93511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1526), 38, + ACTIONS(1424), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91536,11 +93550,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24734] = 3, + [24738] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1288), 7, + ACTIONS(1814), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91548,7 +93562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1290), 38, + ACTIONS(1816), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91587,13 +93601,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24788] = 4, - ACTIONS(2734), 1, - anon_sym_COLON_COLON, + [24792] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 15, + ACTIONS(2744), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91609,7 +93621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2606), 29, + ACTIONS(2742), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91621,6 +93633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -91639,11 +93652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24844] = 3, + [24846] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1816), 7, + ACTIONS(1822), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91651,7 +93664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1818), 38, + ACTIONS(1824), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91690,62 +93703,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24898] = 3, + [24900] = 4, + ACTIONS(2750), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1636), 7, + ACTIONS(2748), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2746), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1638), 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, - [24952] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [24956] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1772), 7, + ACTIONS(1398), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91753,7 +93767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1774), 38, + ACTIONS(1400), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91792,11 +93806,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25006] = 3, + [25010] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1712), 7, + ACTIONS(1386), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91804,7 +93818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1714), 38, + ACTIONS(1388), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91843,11 +93857,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25060] = 3, + [25064] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(524), 7, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91855,7 +93869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(526), 38, + ACTIONS(1944), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91894,11 +93908,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25114] = 3, + [25118] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1756), 7, + ACTIONS(1914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91906,7 +93920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1758), 38, + ACTIONS(1916), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91945,62 +93959,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25168] = 3, + [25172] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2738), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2736), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - 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, - [25222] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1644), 7, + ACTIONS(1826), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92008,7 +93971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1646), 38, + ACTIONS(1828), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92047,11 +94010,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25276] = 3, + [25226] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1476), 7, + ACTIONS(1378), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92059,7 +94022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1478), 38, + ACTIONS(1380), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92098,13 +94061,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25330] = 4, - ACTIONS(2744), 1, + [25280] = 4, + ACTIONS(2756), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 15, + ACTIONS(2754), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92120,7 +94083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2740), 29, + ACTIONS(2752), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92150,11 +94113,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25386] = 3, + [25336] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1372), 7, + ACTIONS(1374), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92162,7 +94125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1374), 38, + ACTIONS(1376), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92201,63 +94164,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25440] = 4, - ACTIONS(2750), 1, - anon_sym_DASH_GT, + [25390] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2748), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2746), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [25496] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1684), 7, + ACTIONS(1366), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92265,7 +94176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1686), 38, + ACTIONS(1368), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92304,11 +94215,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25550] = 3, + [25444] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1680), 7, + ACTIONS(1350), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92316,7 +94227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1682), 38, + ACTIONS(1352), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92355,11 +94266,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25604] = 3, + [25498] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1676), 7, + ACTIONS(1862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92367,7 +94278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1678), 38, + ACTIONS(1864), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92406,11 +94317,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25658] = 3, + [25552] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1844), 7, + ACTIONS(1774), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92418,7 +94329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1846), 38, + ACTIONS(1776), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92457,11 +94368,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25712] = 3, + [25606] = 4, + ACTIONS(2762), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2760), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2758), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [25662] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1660), 7, + ACTIONS(1338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92469,7 +94432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1662), 38, + ACTIONS(1340), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92508,11 +94471,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25766] = 3, + [25716] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1196), 7, + ACTIONS(1310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92520,7 +94483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1198), 38, + ACTIONS(1312), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92559,11 +94522,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25820] = 3, + [25770] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1980), 7, + ACTIONS(1306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92571,7 +94534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1982), 38, + ACTIONS(1308), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92610,11 +94573,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25874] = 3, + [25824] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1672), 7, + ACTIONS(1302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92622,7 +94585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1674), 38, + ACTIONS(1304), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92661,11 +94624,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25928] = 3, + [25878] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1972), 7, + ACTIONS(1986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92673,7 +94636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1974), 38, + ACTIONS(1988), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92712,11 +94675,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25982] = 3, + [25932] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(1702), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92724,7 +94687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1666), 38, + ACTIONS(1704), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92763,11 +94726,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26036] = 3, + [25986] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1614), 7, + ACTIONS(1254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92775,7 +94738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1616), 38, + ACTIONS(1256), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92814,11 +94777,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26090] = 3, + [26040] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1668), 7, + ACTIONS(1238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92826,7 +94789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1670), 38, + ACTIONS(1240), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92865,13 +94828,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26144] = 4, - ACTIONS(2756), 1, - anon_sym_DASH_GT, + [26094] = 4, + ACTIONS(2700), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 15, + ACTIONS(2620), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92887,7 +94850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2752), 29, + ACTIONS(2618), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92917,11 +94880,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26200] = 3, + [26150] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1554), 7, + ACTIONS(1630), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92929,7 +94892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1556), 38, + ACTIONS(1632), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92968,11 +94931,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26254] = 3, + [26204] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1520), 7, + ACTIONS(1726), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92980,7 +94943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1522), 38, + ACTIONS(1728), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93019,11 +94982,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26308] = 3, + [26258] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1388), 7, + ACTIONS(1124), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93031,7 +94994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1390), 38, + ACTIONS(1126), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93070,11 +95033,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26362] = 3, + [26312] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1384), 7, + ACTIONS(1218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93082,7 +95045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1386), 38, + ACTIONS(1220), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93121,11 +95084,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26416] = 3, + [26366] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1222), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1224), 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, + [26420] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2766), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2764), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_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, + 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, + [26474] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1368), 7, + ACTIONS(1506), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93133,7 +95198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1370), 38, + ACTIONS(1508), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93172,11 +95237,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26470] = 3, + [26528] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1364), 7, + ACTIONS(1966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93184,7 +95249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1366), 38, + ACTIONS(1968), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93223,11 +95288,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26524] = 3, + [26582] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1356), 7, + ACTIONS(1234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93235,7 +95300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1358), 38, + ACTIONS(1236), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93274,11 +95339,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26578] = 3, + [26636] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1332), 7, + ACTIONS(1858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93286,7 +95351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1334), 38, + ACTIONS(1860), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93325,62 +95390,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26632] = 3, + [26690] = 4, + ACTIONS(2700), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1324), 7, + ACTIONS(2624), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2622), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1326), 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, - [26686] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [26746] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1936), 7, + ACTIONS(1414), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93388,7 +95454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1938), 38, + ACTIONS(1416), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93427,11 +95493,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26740] = 3, + [26800] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1320), 7, + ACTIONS(1592), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93439,7 +95505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1322), 38, + ACTIONS(1594), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93478,11 +95544,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26794] = 3, + [26854] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1316), 7, + ACTIONS(1670), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93490,7 +95556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1318), 38, + ACTIONS(1672), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93529,11 +95595,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26848] = 3, + [26908] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1284), 7, + ACTIONS(1128), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93541,7 +95607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1286), 38, + ACTIONS(1130), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93580,11 +95646,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26902] = 3, + [26962] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1268), 7, + ACTIONS(1710), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93592,7 +95658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1270), 38, + ACTIONS(1712), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93631,11 +95697,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26956] = 3, + [27016] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1264), 7, + ACTIONS(1742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93643,7 +95709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1266), 38, + ACTIONS(1744), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93682,62 +95748,165 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27010] = 3, + [27070] = 4, + ACTIONS(2772), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1252), 7, + ACTIONS(2770), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2768), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [27126] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2604), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2602), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [27180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2776), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2774), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1254), 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, - [27064] = 3, + 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, + [27234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1932), 7, + ACTIONS(1466), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93745,7 +95914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1934), 38, + ACTIONS(1468), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93784,11 +95953,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27118] = 3, + [27288] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1244), 7, + ACTIONS(1474), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93796,7 +95965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1246), 38, + ACTIONS(1476), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93835,11 +96004,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27172] = 3, + [27342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1240), 7, + ACTIONS(1838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93847,7 +96016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1242), 38, + ACTIONS(1840), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93886,11 +96055,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27226] = 3, + [27396] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1236), 7, + ACTIONS(1294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93898,7 +96067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1238), 38, + ACTIONS(1296), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93937,11 +96106,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27280] = 3, + [27450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1142), 7, + ACTIONS(1354), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93949,7 +96118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1144), 38, + ACTIONS(1356), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93988,11 +96157,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27334] = 3, + [27504] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1232), 7, + ACTIONS(1358), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94000,7 +96169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1234), 38, + ACTIONS(1360), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94039,11 +96208,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27388] = 3, + [27558] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1228), 7, + ACTIONS(1906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94051,7 +96220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1230), 38, + ACTIONS(1908), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94090,11 +96259,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27442] = 3, + [27612] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1928), 7, + ACTIONS(1318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94102,7 +96271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1930), 38, + ACTIONS(1320), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94141,11 +96310,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27496] = 3, + [27666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1220), 7, + ACTIONS(1322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94153,7 +96322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1222), 38, + ACTIONS(1324), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94192,62 +96361,114 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27550] = 3, + [27720] = 4, + ACTIONS(2782), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(2780), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2778), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [27776] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2786), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1922), 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, - [27604] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2784), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_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, + 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, + [27830] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1864), 7, + ACTIONS(1490), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94255,7 +96476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1866), 38, + ACTIONS(1492), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94294,62 +96515,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27658] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2612), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2610), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [27712] = 3, + [27884] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1216), 7, + ACTIONS(1502), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94357,7 +96527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1218), 38, + ACTIONS(1504), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94396,11 +96566,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27766] = 3, + [27938] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1940), 7, + ACTIONS(1572), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94408,7 +96578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1942), 38, + ACTIONS(1574), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94447,11 +96617,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27820] = 3, + [27992] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1204), 7, + ACTIONS(1552), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94459,7 +96629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1206), 38, + ACTIONS(1554), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94498,13 +96668,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27874] = 4, - ACTIONS(2682), 1, - anon_sym_COLON_COLON, + [28046] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 15, + ACTIONS(538), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94520,7 +96688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2606), 29, + ACTIONS(536), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94550,11 +96718,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27930] = 3, + anon_sym_else, + [28100] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1876), 7, + ACTIONS(1830), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94562,7 +96731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1878), 38, + ACTIONS(1832), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94601,11 +96770,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27984] = 3, + [28154] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1888), 7, + ACTIONS(1108), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94613,7 +96782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1890), 38, + ACTIONS(1110), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94652,11 +96821,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28038] = 3, + [28208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1184), 7, + ACTIONS(1510), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94664,7 +96833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1186), 38, + ACTIONS(1512), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94703,11 +96872,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28092] = 3, + [28262] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1158), 7, + ACTIONS(1528), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94715,7 +96884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1160), 38, + ACTIONS(1530), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94754,62 +96923,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28146] = 3, + [28316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2760), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2758), 30, + ACTIONS(1878), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_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, - 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, - [28200] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1880), 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, + [28370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1944), 7, + ACTIONS(1698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94817,7 +96986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1946), 38, + ACTIONS(1700), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94856,11 +97025,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28254] = 3, + [28424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1968), 7, + ACTIONS(1718), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94868,7 +97037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1970), 38, + ACTIONS(1720), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94907,11 +97076,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28308] = 3, + [28478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1992), 7, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94919,7 +97088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1994), 38, + ACTIONS(1948), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94958,11 +97127,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28362] = 3, + [28532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1542), 7, + ACTIONS(1950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94970,7 +97139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1544), 38, + ACTIONS(1952), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95009,11 +97178,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28416] = 3, + [28586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1912), 7, + ACTIONS(1532), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95021,7 +97190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1914), 38, + ACTIONS(1534), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95060,117 +97229,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28470] = 5, - ACTIONS(2570), 1, - anon_sym_BANG, - ACTIONS(2762), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(562), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(564), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [28528] = 5, - ACTIONS(2766), 1, - anon_sym_LPAREN, - STATE(1132), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2768), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2764), 28, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [28586] = 3, + [28640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1724), 7, + ACTIONS(1962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95178,7 +97241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1726), 38, + ACTIONS(1964), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95217,62 +97280,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28640] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(526), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(524), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_else, [28694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1602), 7, + ACTIONS(1994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95280,7 +97292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1604), 38, + ACTIONS(1996), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95323,58 +97335,58 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2772), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2770), 30, + ACTIONS(1556), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_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, - 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, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1558), 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, [28802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1296), 7, + ACTIONS(1524), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95382,7 +97394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1298), 38, + ACTIONS(1526), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95425,7 +97437,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1260), 7, + ACTIONS(1890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95433,7 +97445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1262), 38, + ACTIONS(1892), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95476,7 +97488,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1248), 7, + ACTIONS(1568), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95484,7 +97496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1250), 38, + ACTIONS(1570), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95527,7 +97539,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1720), 7, + ACTIONS(1588), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95535,7 +97547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1722), 38, + ACTIONS(1590), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95578,7 +97590,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1208), 7, + ACTIONS(1898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95586,7 +97598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1210), 38, + ACTIONS(1900), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95629,7 +97641,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1508), 7, + ACTIONS(1242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95637,7 +97649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1510), 38, + ACTIONS(1244), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95680,7 +97692,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1392), 7, + ACTIONS(1902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95688,7 +97700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1394), 38, + ACTIONS(1904), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95731,7 +97743,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1396), 7, + ACTIONS(1246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95739,7 +97751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1398), 38, + ACTIONS(1248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95782,7 +97794,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1400), 7, + ACTIONS(1602), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95790,7 +97802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1402), 38, + ACTIONS(1604), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95833,7 +97845,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1736), 7, + ACTIONS(1926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95841,7 +97853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1738), 38, + ACTIONS(1928), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95884,7 +97896,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1404), 7, + ACTIONS(1618), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95892,7 +97904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1406), 38, + ACTIONS(1620), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95935,7 +97947,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1416), 7, + ACTIONS(1934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95943,7 +97955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1418), 38, + ACTIONS(1936), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95986,7 +97998,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1432), 7, + ACTIONS(1478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95994,7 +98006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1434), 38, + ACTIONS(1480), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96037,7 +98049,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1448), 7, + ACTIONS(1930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96045,7 +98057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1450), 38, + ACTIONS(1932), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96088,7 +98100,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1460), 7, + ACTIONS(1458), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96096,7 +98108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1462), 38, + ACTIONS(1460), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96139,7 +98151,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1728), 7, + ACTIONS(1694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96147,7 +98159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1730), 38, + ACTIONS(1696), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96190,7 +98202,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1496), 7, + ACTIONS(1258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96198,7 +98210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1498), 38, + ACTIONS(1260), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96241,7 +98253,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1708), 7, + ACTIONS(1850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96249,7 +98261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1710), 38, + ACTIONS(1852), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96292,7 +98304,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1512), 7, + ACTIONS(1282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96300,7 +98312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1514), 38, + ACTIONS(1284), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96343,7 +98355,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1688), 7, + ACTIONS(1290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96351,7 +98363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1690), 38, + ACTIONS(1292), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96394,7 +98406,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1696), 7, + ACTIONS(1454), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96402,7 +98414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1698), 38, + ACTIONS(1456), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96441,13 +98453,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29936] = 4, - ACTIONS(2774), 1, - anon_sym_COLON_COLON, + [29936] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, + ACTIONS(618), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96463,10 +98473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(564), 28, + ACTIONS(616), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -96492,11 +98503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29991] = 3, + [29989] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2403), 15, + ACTIONS(584), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96512,7 +98523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2405), 29, + ACTIONS(582), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96542,11 +98553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30044] = 3, + [30042] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(654), 15, + ACTIONS(658), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96562,7 +98573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(652), 29, + ACTIONS(656), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96592,11 +98603,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30097] = 3, + [30095] = 4, + ACTIONS(2646), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2778), 15, + ACTIONS(2640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96612,11 +98625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2776), 29, + ACTIONS(2638), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -96646,7 +98658,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(646), 15, + ACTIONS(2361), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96662,7 +98674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(644), 29, + ACTIONS(2363), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96692,11 +98704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30203] = 3, + [30203] = 4, + ACTIONS(2788), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 15, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96712,11 +98726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2780), 29, + ACTIONS(564), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -96742,11 +98755,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30256] = 3, + [30258] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(630), 15, + ACTIONS(674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96762,7 +98775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(628), 29, + ACTIONS(672), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96792,11 +98805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30309] = 3, + [30311] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(662), 15, + ACTIONS(2792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96812,7 +98825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(660), 29, + ACTIONS(2790), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96842,11 +98855,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30362] = 3, + [30364] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(642), 15, + ACTIONS(2796), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96862,7 +98875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(640), 29, + ACTIONS(2794), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96892,11 +98905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30415] = 3, + [30417] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2786), 15, + ACTIONS(2676), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96912,7 +98925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2784), 29, + ACTIONS(2672), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96942,11 +98955,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30468] = 3, + [30470] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(638), 15, + ACTIONS(2800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96962,7 +98975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(636), 29, + ACTIONS(2798), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96992,11 +99005,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30521] = 3, + [30523] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2790), 15, + ACTIONS(2804), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97012,7 +99025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2788), 29, + ACTIONS(2802), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97042,11 +99055,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30574] = 3, + [30576] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2794), 15, + ACTIONS(2808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97062,7 +99075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2792), 29, + ACTIONS(2806), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97092,11 +99105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30627] = 3, + [30629] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 15, + ACTIONS(2812), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97112,7 +99125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2796), 29, + ACTIONS(2810), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97142,11 +99155,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30680] = 3, + [30682] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2802), 15, + ACTIONS(2816), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97162,7 +99175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2800), 29, + ACTIONS(2814), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97192,11 +99205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30733] = 3, + [30735] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2806), 15, + ACTIONS(2437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97212,7 +99225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2804), 29, + ACTIONS(2439), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97242,11 +99255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30786] = 3, + [30788] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(678), 15, + ACTIONS(2820), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97262,7 +99275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(676), 29, + ACTIONS(2818), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97292,174 +99305,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30839] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2810), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2808), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + [30841] = 4, + ACTIONS(2826), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [30892] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2810), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2808), 29, - anon_sym_SEMI, + ACTIONS(2824), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [30945] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2768), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2764), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [30998] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2814), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2812), 32, + ACTIONS(2822), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97477,26 +99344,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [31051] = 3, + [30896] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2818), 15, + ACTIONS(2830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97512,7 +99376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2816), 29, + ACTIONS(2828), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97542,61 +99406,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31104] = 3, + [30949] = 4, + ACTIONS(2836), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(618), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2834), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(616), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [31157] = 3, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2832), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31004] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2822), 15, + ACTIONS(318), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97612,7 +99477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2820), 29, + ACTIONS(316), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97642,11 +99507,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31210] = 3, + [31057] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2826), 15, + ACTIONS(2441), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97662,7 +99527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2824), 29, + ACTIONS(2443), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97692,11 +99557,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31263] = 3, + [31110] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(634), 15, + ACTIONS(2840), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97712,7 +99577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(632), 29, + ACTIONS(2838), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97742,11 +99607,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31316] = 3, + [31163] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2830), 15, + ACTIONS(2844), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97762,7 +99627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2828), 29, + ACTIONS(2842), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97792,11 +99657,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31369] = 3, + [31216] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(670), 15, + ACTIONS(2848), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97812,7 +99677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(668), 29, + ACTIONS(2846), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97842,61 +99707,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31422] = 3, + [31269] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2834), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2852), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(2832), 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, - [31475] = 3, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2850), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [31322] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2391), 15, + ACTIONS(2856), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97912,7 +99777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2393), 29, + ACTIONS(2854), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97942,11 +99807,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31528] = 3, + [31375] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 15, + ACTIONS(2860), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97962,7 +99827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2606), 29, + ACTIONS(2858), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97992,11 +99857,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31581] = 3, + [31428] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2838), 15, + ACTIONS(2864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98012,7 +99877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2836), 29, + ACTIONS(2862), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98042,11 +99907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31634] = 3, + [31481] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2842), 15, + ACTIONS(626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98062,7 +99927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2840), 29, + ACTIONS(624), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98092,11 +99957,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31687] = 3, + [31534] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2846), 15, + ACTIONS(2868), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98112,7 +99977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2844), 29, + ACTIONS(2866), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98142,11 +100007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31740] = 3, + [31587] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2850), 15, + ACTIONS(2872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98162,7 +100027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2848), 29, + ACTIONS(2870), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98192,11 +100057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31793] = 3, + [31640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2854), 15, + ACTIONS(592), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98212,7 +100077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2852), 29, + ACTIONS(590), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98242,11 +100107,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31846] = 3, + [31693] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 15, + ACTIONS(2876), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98262,7 +100127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2684), 29, + ACTIONS(2874), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98292,111 +100157,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31899] = 3, + [31746] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2858), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2880), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(2856), 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, - [31952] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2862), 12, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2878), 29, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [31799] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2884), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(2860), 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, - [32005] = 3, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2882), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [31852] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(580), 15, + ACTIONS(2888), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98412,7 +100277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(578), 29, + ACTIONS(2886), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98442,11 +100307,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32058] = 3, + [31905] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(674), 15, + ACTIONS(2892), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98462,7 +100327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(672), 29, + ACTIONS(2890), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98492,11 +100357,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32111] = 3, + [31958] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(626), 15, + ACTIONS(2896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98512,7 +100377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(624), 29, + ACTIONS(2894), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98542,11 +100407,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32164] = 3, + [32011] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(622), 15, + ACTIONS(2900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98562,7 +100427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(620), 29, + ACTIONS(2898), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98592,11 +100457,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32217] = 3, + [32064] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(614), 15, + ACTIONS(2433), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98612,7 +100477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(612), 29, + ACTIONS(2435), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98642,11 +100507,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32270] = 3, + [32117] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2866), 15, + ACTIONS(2904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98662,7 +100527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2864), 29, + ACTIONS(2902), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98692,11 +100557,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32323] = 3, + [32170] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(666), 15, + ACTIONS(2908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98712,7 +100577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(664), 29, + ACTIONS(2906), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98742,11 +100607,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32376] = 3, + [32223] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(610), 15, + ACTIONS(2912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98762,7 +100627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(608), 29, + ACTIONS(2910), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98792,11 +100657,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32429] = 3, + [32276] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(650), 15, + ACTIONS(2916), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98812,7 +100677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(648), 29, + ACTIONS(2914), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98842,11 +100707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32482] = 3, + [32329] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2870), 15, + ACTIONS(662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98862,7 +100727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2868), 29, + ACTIONS(660), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98892,57 +100757,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32535] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2872), 1, - sym_identifier, - ACTIONS(2876), 1, - anon_sym_LPAREN, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2884), 1, - anon_sym_for, - ACTIONS(2886), 1, - anon_sym_AMP, - ACTIONS(2888), 1, - sym_metavariable, - STATE(1855), 1, - sym_scoped_type_identifier, - STATE(1923), 1, - sym_generic_type, - STATE(1958), 1, - sym_where_predicate, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2550), 1, - sym_scoped_identifier, + [32382] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2874), 2, + ACTIONS(2920), 12, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(2882), 2, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2918), 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, - ACTIONS(906), 3, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(2316), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2880), 17, + [32435] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(576), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(574), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [32488] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2924), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2922), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98960,11 +100892,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [32624] = 3, + 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, + [32541] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2892), 15, + ACTIONS(2624), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98980,7 +100927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2890), 29, + ACTIONS(2622), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99010,11 +100957,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32677] = 3, + [32594] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2896), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99030,7 +100977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2894), 29, + ACTIONS(566), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99060,11 +101007,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32730] = 3, + [32647] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(912), 1, + anon_sym_COLON_COLON, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2926), 1, + sym_identifier, + ACTIONS(2930), 1, + anon_sym_LPAREN, + ACTIONS(2932), 1, + anon_sym_STAR, + ACTIONS(2938), 1, + anon_sym_for, + ACTIONS(2940), 1, + anon_sym_AMP, + ACTIONS(2942), 1, + sym_metavariable, + STATE(1869), 1, + sym_scoped_type_identifier, + STATE(1988), 1, + sym_generic_type, + STATE(2085), 1, + sym_where_predicate, + STATE(2395), 1, + sym_bracketed_type, + STATE(2396), 1, + sym_generic_type_with_turbofish, + STATE(2552), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2900), 15, + ACTIONS(2928), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(2936), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + STATE(2337), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2934), 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, + [32736] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99080,7 +101095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2898), 29, + ACTIONS(648), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99110,11 +101125,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32783] = 3, + [32789] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2904), 15, + ACTIONS(2946), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99130,7 +101145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2902), 29, + ACTIONS(2944), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99160,11 +101175,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32836] = 3, + [32842] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2908), 15, + ACTIONS(580), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99180,7 +101195,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2906), 29, + ACTIONS(578), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [32895] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2950), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2948), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99210,11 +101275,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32889] = 3, + [32948] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2912), 15, + ACTIONS(572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99230,7 +101295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2910), 29, + ACTIONS(570), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99260,11 +101325,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32942] = 3, + [33001] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2916), 15, + ACTIONS(2954), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99280,7 +101345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2914), 29, + ACTIONS(2952), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99310,11 +101375,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32995] = 3, + [33054] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2920), 15, + ACTIONS(2958), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99330,7 +101395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2918), 29, + ACTIONS(2956), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99360,11 +101425,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33048] = 3, + [33107] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(912), 1, + anon_sym_COLON_COLON, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2926), 1, + sym_identifier, + ACTIONS(2930), 1, + anon_sym_LPAREN, + ACTIONS(2932), 1, + anon_sym_STAR, + ACTIONS(2938), 1, + anon_sym_for, + ACTIONS(2940), 1, + anon_sym_AMP, + ACTIONS(2942), 1, + sym_metavariable, + STATE(1869), 1, + sym_scoped_type_identifier, + STATE(1988), 1, + sym_generic_type, + STATE(2085), 1, + sym_where_predicate, + STATE(2395), 1, + sym_bracketed_type, + STATE(2396), 1, + sym_generic_type_with_turbofish, + STATE(2552), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2924), 15, + ACTIONS(2936), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2960), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + STATE(2337), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2934), 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, + [33196] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99380,7 +101513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2922), 29, + ACTIONS(2598), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99410,11 +101543,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33101] = 3, + [33249] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2928), 15, + ACTIONS(2620), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99430,7 +101563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2926), 29, + ACTIONS(2618), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99460,11 +101593,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33154] = 3, + [33302] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(322), 15, + ACTIONS(2964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99480,7 +101613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(320), 29, + ACTIONS(2962), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99510,11 +101643,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33207] = 3, + [33355] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(572), 15, + ACTIONS(2968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99530,7 +101663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(570), 29, + ACTIONS(2966), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99560,11 +101693,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33260] = 3, + [33408] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 15, + ACTIONS(2972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99580,7 +101713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2584), 29, + ACTIONS(2970), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99610,79 +101743,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33313] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2872), 1, - sym_identifier, - ACTIONS(2876), 1, - anon_sym_LPAREN, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2884), 1, - anon_sym_for, - ACTIONS(2886), 1, - anon_sym_AMP, - ACTIONS(2888), 1, - sym_metavariable, - STATE(1855), 1, - sym_scoped_type_identifier, - STATE(1923), 1, - sym_generic_type, - STATE(1958), 1, - sym_where_predicate, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2550), 1, - sym_scoped_identifier, + [33461] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2882), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(2930), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(2316), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2880), 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, - [33402] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2934), 15, + ACTIONS(2976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99698,7 +101763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2932), 29, + ACTIONS(2974), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99728,11 +101793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33455] = 3, + [33514] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2938), 15, + ACTIONS(2980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99748,7 +101813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2936), 29, + ACTIONS(2978), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99778,11 +101843,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33508] = 3, + [33567] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2347), 15, + ACTIONS(2984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99798,7 +101863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2349), 29, + ACTIONS(2982), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99828,11 +101893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33561] = 3, + [33620] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2942), 15, + ACTIONS(2980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99848,7 +101913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2940), 29, + ACTIONS(2978), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99878,11 +101943,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33614] = 3, + [33673] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(606), 15, + ACTIONS(642), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99898,7 +101963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(604), 29, + ACTIONS(640), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99928,11 +101993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33667] = 3, + [33726] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2946), 15, + ACTIONS(646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99948,7 +102013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2944), 29, + ACTIONS(644), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99978,11 +102043,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33720] = 3, + [33779] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2419), 15, + ACTIONS(2988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99998,7 +102063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2421), 29, + ACTIONS(2986), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100028,11 +102093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33773] = 3, + [33832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2950), 15, + ACTIONS(2992), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100048,7 +102113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2948), 29, + ACTIONS(2990), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100078,11 +102143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33826] = 3, + [33885] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 15, + ACTIONS(678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100098,7 +102163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2952), 29, + ACTIONS(676), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100128,11 +102193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33879] = 3, + [33938] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 15, + ACTIONS(2996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100148,7 +102213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2626), 29, + ACTIONS(2994), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100178,11 +102243,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33932] = 3, + [33991] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2958), 15, + ACTIONS(3000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100198,7 +102263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2956), 29, + ACTIONS(2998), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100228,11 +102293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33985] = 3, + [34044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2962), 15, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100248,7 +102313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2960), 29, + ACTIONS(2684), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100278,11 +102343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34038] = 3, + [34097] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 15, + ACTIONS(3004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100298,7 +102363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2964), 29, + ACTIONS(3002), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100328,11 +102393,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34091] = 3, + [34150] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2970), 15, + ACTIONS(670), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100348,7 +102413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2968), 29, + ACTIONS(668), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100378,11 +102443,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34144] = 3, + [34203] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2974), 15, + ACTIONS(3008), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3006), 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, + [34256] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100398,7 +102513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2972), 29, + ACTIONS(3010), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100428,11 +102543,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34197] = 3, + [34309] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(584), 15, + ACTIONS(3016), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3014), 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, + [34362] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100448,7 +102613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(582), 29, + ACTIONS(620), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100478,11 +102643,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34250] = 3, + [34415] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 15, + ACTIONS(3020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100498,7 +102663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2976), 29, + ACTIONS(3018), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100528,11 +102693,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34303] = 3, + [34468] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2982), 15, + ACTIONS(638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100548,7 +102713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2980), 29, + ACTIONS(636), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100578,28 +102743,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34356] = 4, - ACTIONS(2988), 1, - anon_sym_RBRACE, + [34521] = 5, + ACTIONS(3022), 1, + anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2986), 14, - sym_raw_string_literal, - sym_float_literal, + STATE(1138), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2501), 9, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_POUND, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2984), 29, + ACTIONS(2499), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100617,23 +102780,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [34411] = 3, + [34578] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2992), 15, + ACTIONS(3027), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100649,7 +102815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2990), 29, + ACTIONS(3025), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100679,11 +102845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34464] = 3, + [34631] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 15, + ACTIONS(3031), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100699,7 +102865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2994), 29, + ACTIONS(3029), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100729,13 +102895,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34517] = 4, - ACTIONS(2596), 1, + [34684] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3035), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3033), 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, + [34737] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 15, + ACTIONS(654), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100751,10 +102965,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2588), 28, + ACTIONS(652), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -100780,11 +102995,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34572] = 3, + [34790] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3000), 15, + ACTIONS(3039), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3037), 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, + [34843] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100800,7 +103065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2998), 29, + ACTIONS(664), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100830,11 +103095,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34625] = 3, + [34896] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3004), 15, + ACTIONS(3043), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100850,7 +103115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3002), 29, + ACTIONS(3041), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100880,11 +103145,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34678] = 3, + [34949] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3008), 15, + ACTIONS(3047), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100900,7 +103165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3006), 29, + ACTIONS(3045), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100930,11 +103195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34731] = 3, + [35002] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(576), 15, + ACTIONS(3051), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100950,7 +103215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(574), 29, + ACTIONS(3049), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100980,61 +103245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34784] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3012), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3010), 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, - [34837] = 3, + [35055] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3016), 15, + ACTIONS(588), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101050,7 +103265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3014), 29, + ACTIONS(586), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101080,11 +103295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34890] = 3, + [35108] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(614), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101100,7 +103315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 29, + ACTIONS(612), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101130,11 +103345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34943] = 3, + [35161] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3020), 15, + ACTIONS(3055), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101150,7 +103365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3018), 29, + ACTIONS(3053), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101180,11 +103395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34996] = 3, + [35214] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3024), 15, + ACTIONS(3059), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101200,7 +103415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3022), 29, + ACTIONS(3057), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101230,63 +103445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35049] = 5, - ACTIONS(3026), 1, - anon_sym_POUND, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1140), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2507), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2505), 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, - [35106] = 3, + [35267] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3031), 15, + ACTIONS(630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101302,7 +103465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3029), 29, + ACTIONS(628), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101332,13 +103495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35159] = 4, - ACTIONS(3037), 1, - anon_sym_RBRACE, + [35320] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3035), 14, + ACTIONS(2834), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -101353,7 +103514,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3033), 29, + ACTIONS(2832), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101383,46 +103544,59 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35214] = 3, + [35372] = 17, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, + anon_sym_EQ, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3077), 1, + anon_sym_DOT_DOT, + ACTIONS(3079), 1, + anon_sym_AMP_AMP, + ACTIONS(3081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3083), 1, + anon_sym_PIPE, + ACTIONS(3085), 1, + anon_sym_CARET, + ACTIONS(3091), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3041), 15, + ACTIONS(3065), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3075), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3067), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3039), 29, + ACTIONS(3087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3061), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - 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, @@ -101433,100 +103607,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35267] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3045), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3043), 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, - [35320] = 17, - ACTIONS(3049), 1, + [35452] = 17, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_EQ, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, + ACTIONS(3095), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3047), 19, + ACTIONS(3093), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101546,59 +103670,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35400] = 17, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3063), 1, - anon_sym_DOT_DOT, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_EQ, + [35532] = 7, + ACTIONS(2626), 1, + anon_sym_LBRACE, + ACTIONS(2628), 1, + anon_sym_COLON_COLON, + ACTIONS(3097), 1, + anon_sym_BANG, + STATE(1076), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(562), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3057), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3061), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3079), 19, + anon_sym_DOT, + ACTIONS(564), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COMMA, + 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, @@ -101609,62 +103723,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35480] = 20, - ACTIONS(3049), 1, + [35592] = 15, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3101), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3083), 7, + ACTIONS(3099), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3091), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101675,124 +103784,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35566] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2986), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2984), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35618] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3035), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, + [35668] = 7, + ACTIONS(3063), 1, anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3077), 1, anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3033), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35670] = 7, - ACTIONS(2638), 1, - anon_sym_LBRACE, - ACTIONS(2640), 1, - anon_sym_COLON_COLON, - ACTIONS(3093), 1, - anon_sym_BANG, - STATE(1117), 1, - sym_field_initializer_list, + ACTIONS(3091), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, + ACTIONS(3075), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3105), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -101800,16 +103811,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(564), 24, + ACTIONS(3103), 25, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -101826,20 +103837,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35730] = 7, - ACTIONS(3049), 1, - anon_sym_LBRACK, + [35728] = 7, ACTIONS(3063), 1, - anon_sym_DOT_DOT, + anon_sym_LBRACK, ACTIONS(3077), 1, + anon_sym_DOT_DOT, + ACTIONS(3091), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3061), 2, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3097), 13, + ACTIONS(3109), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101853,7 +103864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3095), 25, + ACTIONS(3107), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101879,62 +103890,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35790] = 20, - ACTIONS(3049), 1, + [35788] = 16, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3101), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3099), 7, + ACTIONS(3099), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3091), 10, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101945,50 +103952,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35876] = 17, - ACTIONS(3049), 1, + [35866] = 17, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(3113), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3101), 19, + ACTIONS(3111), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102008,104 +104015,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35956] = 9, - ACTIONS(3049), 1, - anon_sym_LBRACK, + [35946] = 20, ACTIONS(3063), 1, - anon_sym_DOT_DOT, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, ACTIONS(3077), 1, + anon_sym_DOT_DOT, + ACTIONS(3079), 1, + anon_sym_AMP_AMP, + ACTIONS(3081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3083), 1, + anon_sym_PIPE, + ACTIONS(3085), 1, + anon_sym_CARET, + ACTIONS(3091), 1, anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3061), 2, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3089), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 8, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3105), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3087), 4, 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, - [36020] = 7, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3063), 1, - anon_sym_DOT_DOT, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3061), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3111), 13, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3109), 25, + ACTIONS(3115), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, - 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(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102116,34 +104081,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36080] = 7, - ACTIONS(3049), 1, - anon_sym_LBRACK, + [36032] = 17, + ACTIONS(288), 1, + anon_sym_EQ, ACTIONS(3063), 1, - anon_sym_DOT_DOT, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, ACTIONS(3077), 1, + anon_sym_DOT_DOT, + ACTIONS(3079), 1, + anon_sym_AMP_AMP, + ACTIONS(3081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3083), 1, + anon_sym_PIPE, + ACTIONS(3085), 1, + anon_sym_CARET, + ACTIONS(3091), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3061), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3115), 13, + ACTIONS(3065), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3075), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3067), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3113), 25, + ACTIONS(3087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(282), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102153,12 +104134,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - 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, @@ -102169,59 +104144,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36140] = 17, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(3049), 1, + [36112] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 19, + ACTIONS(3125), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102232,38 +104210,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36220] = 11, - ACTIONS(3049), 1, + [36198] = 12, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3063), 1, - anon_sym_DOT_DOT, ACTIONS(3077), 1, + anon_sym_DOT_DOT, + ACTIONS(3085), 1, + anon_sym_CARET, + ACTIONS(3091), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3061), 2, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 5, + ACTIONS(3101), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3105), 25, + ACTIONS(3099), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102289,35 +104268,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36288] = 8, - ACTIONS(3049), 1, - anon_sym_LBRACK, + [36268] = 9, ACTIONS(3063), 1, - anon_sym_DOT_DOT, + anon_sym_LBRACK, ACTIONS(3077), 1, + anon_sym_DOT_DOT, + ACTIONS(3091), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3061), 2, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 10, - anon_sym_PLUS, + ACTIONS(3101), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3105), 25, + ACTIONS(3099), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102343,20 +104323,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36350] = 7, - ACTIONS(3049), 1, - anon_sym_LBRACK, + [36332] = 7, ACTIONS(3063), 1, - anon_sym_DOT_DOT, + anon_sym_LBRACK, ACTIONS(3077), 1, + anon_sym_DOT_DOT, + ACTIONS(3091), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3061), 2, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 13, + ACTIONS(3129), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102370,7 +104350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3105), 25, + ACTIONS(3127), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102396,50 +104376,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36410] = 17, - ACTIONS(3049), 1, + [36392] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2824), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3059), 1, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2822), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [36444] = 8, + ACTIONS(3063), 1, + anon_sym_LBRACK, ACTIONS(3077), 1, + anon_sym_DOT_DOT, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3119), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3057), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3117), 19, + ACTIONS(3101), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3099), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102449,6 +104463,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + 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, @@ -102459,40 +104479,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36490] = 13, - ACTIONS(3049), 1, + [36506] = 17, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3069), 1, + ACTIONS(3079), 1, + anon_sym_AMP_AMP, + ACTIONS(3081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, + ACTIONS(3133), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3061), 2, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3105), 25, + ACTIONS(3087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3131), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102502,12 +104532,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - 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, @@ -102518,37 +104542,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36562] = 10, - ACTIONS(3049), 1, - anon_sym_LBRACK, + [36586] = 11, ACTIONS(3063), 1, - anon_sym_DOT_DOT, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, ACTIONS(3077), 1, + anon_sym_DOT_DOT, + ACTIONS(3091), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3061), 2, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 6, + ACTIONS(3101), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3105), 25, + ACTIONS(3099), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102574,50 +104599,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36628] = 17, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, + [36654] = 7, ACTIONS(3063), 1, - anon_sym_DOT_DOT, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, + anon_sym_LBRACK, ACTIONS(3077), 1, + anon_sym_DOT_DOT, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3123), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3075), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3101), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3057), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3061), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3121), 19, + ACTIONS(3099), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102627,6 +104636,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + 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, @@ -102637,39 +104652,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36708] = 12, - ACTIONS(3049), 1, + [36714] = 13, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3071), 1, + ACTIONS(3083), 1, + anon_sym_PIPE, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3061), 2, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 4, + ACTIONS(3101), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3105), 25, + ACTIONS(3099), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102695,46 +104711,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36778] = 15, - ACTIONS(3049), 1, + [36786] = 17, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3069), 1, + ACTIONS(3079), 1, + anon_sym_AMP_AMP, + ACTIONS(3081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3107), 1, + ACTIONS(3137), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3105), 21, + ACTIONS(3135), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102744,8 +104764,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102756,48 +104774,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36854] = 16, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, + [36866] = 10, ACTIONS(3063), 1, - anon_sym_DOT_DOT, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, + anon_sym_LBRACK, ACTIONS(3077), 1, + anon_sym_DOT_DOT, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3107), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3105), 20, + ACTIONS(3101), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3099), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102807,7 +104814,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + 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, @@ -102818,54 +104830,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36932] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2872), 1, - sym_identifier, - ACTIONS(2876), 1, - anon_sym_LPAREN, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2884), 1, - anon_sym_for, - ACTIONS(2886), 1, - anon_sym_AMP, - ACTIONS(2888), 1, - sym_metavariable, - STATE(1855), 1, - sym_scoped_type_identifier, - STATE(1859), 1, - sym_where_predicate, - STATE(1923), 1, - sym_generic_type, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2550), 1, - sym_scoped_identifier, + [36932] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2882), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(2316), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2880), 17, + ACTIONS(1498), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(1500), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102883,7 +104863,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37017] = 21, + 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, + [36983] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(700), 1, @@ -102892,45 +104887,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2888), 1, + ACTIONS(2942), 1, sym_metavariable, - ACTIONS(3125), 1, + ACTIONS(3139), 1, sym_identifier, - ACTIONS(3127), 1, + ACTIONS(3141), 1, anon_sym_default, - STATE(1201), 1, + STATE(1211), 1, sym_for_lifetimes, - STATE(1349), 1, + STATE(1355), 1, sym_scoped_type_identifier, - STATE(1380), 1, + STATE(1391), 1, sym_generic_type, - STATE(1396), 1, + STATE(1405), 1, sym_function_type, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2411), 1, + STATE(2427), 1, sym_function_modifiers, - STATE(2550), 1, + STATE(2552), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - ACTIONS(2882), 18, + ACTIONS(2936), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102949,54 +104944,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37104] = 20, + [37070] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2872), 1, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2876), 1, + ACTIONS(2930), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2932), 1, anon_sym_STAR, - ACTIONS(2884), 1, + ACTIONS(2938), 1, anon_sym_for, - ACTIONS(2886), 1, + ACTIONS(2940), 1, anon_sym_AMP, - ACTIONS(2888), 1, + ACTIONS(2942), 1, sym_metavariable, - STATE(1855), 1, + STATE(1869), 1, sym_scoped_type_identifier, - STATE(1923), 1, - sym_generic_type, - STATE(1958), 1, + STATE(1872), 1, sym_where_predicate, - STATE(2370), 1, + STATE(1988), 1, + sym_generic_type, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2550), 1, + STATE(2552), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2882), 2, + ACTIONS(2936), 2, anon_sym_default, anon_sym_union, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(2316), 5, + STATE(2337), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2880), 17, + ACTIONS(2934), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103014,105 +105009,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37189] = 6, - ACTIONS(2594), 1, - anon_sym_BANG, - ACTIONS(2596), 1, - anon_sym_COLON_COLON, - ACTIONS(3129), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2590), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2588), 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, - [37246] = 21, + [37155] = 21, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2475), 1, - anon_sym_fn, - ACTIONS(2483), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(3131), 1, - sym_identifier, - ACTIONS(3135), 1, - anon_sym_default, - ACTIONS(3137), 1, + ACTIONS(2942), 1, sym_metavariable, - STATE(766), 1, + ACTIONS(3141), 1, + anon_sym_default, + ACTIONS(3143), 1, + sym_identifier, + STATE(1211), 1, + sym_for_lifetimes, + STATE(1349), 1, sym_scoped_type_identifier, - STATE(854), 1, + STATE(1389), 1, sym_generic_type, - STATE(1107), 1, + STATE(1397), 1, sym_function_type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2376), 1, - sym_function_modifiers, - STATE(2401), 1, - sym_scoped_identifier, - STATE(2479), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, + STATE(2427), 1, + sym_function_modifiers, + STATE(2552), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2491), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - ACTIONS(3133), 18, + ACTIONS(2936), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103131,22 +105075,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37333] = 3, + [37242] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1272), 10, + ACTIONS(2974), 10, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SQUOTE, - anon_sym_POUND, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(1274), 32, + ACTIONS(2976), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103170,63 +105114,63 @@ static const uint16_t ts_small_parse_table[] = { 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_mutable_specifier, sym_identifier, sym_self, sym_super, sym_crate, - [37384] = 21, + [37293] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2888), 1, - sym_metavariable, - ACTIONS(3127), 1, - anon_sym_default, - ACTIONS(3139), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2926), 1, sym_identifier, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1348), 1, + ACTIONS(2930), 1, + anon_sym_LPAREN, + ACTIONS(2932), 1, + anon_sym_STAR, + ACTIONS(2938), 1, + anon_sym_for, + ACTIONS(2940), 1, + anon_sym_AMP, + ACTIONS(2942), 1, + sym_metavariable, + STATE(1869), 1, sym_scoped_type_identifier, - STATE(1381), 1, + STATE(1988), 1, sym_generic_type, - STATE(1399), 1, - sym_function_type, - STATE(2370), 1, + STATE(2085), 1, + sym_where_predicate, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2411), 1, - sym_function_modifiers, - STATE(2550), 1, + STATE(2552), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2936), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - ACTIONS(2882), 18, + STATE(2337), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2934), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103244,98 +105188,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_union, - [37471] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2972), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + [37378] = 21, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2974), 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, + ACTIONS(702), 1, anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, + ACTIONS(714), 1, anon_sym_extern, - anon_sym_dyn, - sym_mutable_specifier, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37522] = 17, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(966), 1, + ACTIONS(2479), 1, + anon_sym_fn, + ACTIONS(2487), 1, anon_sym_COLON_COLON, - ACTIONS(3141), 1, + ACTIONS(3145), 1, sym_identifier, - ACTIONS(3143), 1, - anon_sym_RPAREN, - ACTIONS(3147), 1, - anon_sym_COMMA, + ACTIONS(3149), 1, + anon_sym_default, ACTIONS(3151), 1, sym_metavariable, - STATE(1597), 1, + STATE(777), 1, + sym_scoped_type_identifier, + STATE(982), 1, + sym_generic_type, + STATE(1114), 1, + sym_function_type, + STATE(1212), 1, + sym_for_lifetimes, + STATE(2398), 1, + sym_function_modifiers, + STATE(2417), 1, sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 1, + STATE(2495), 1, sym_bracketed_type, + STATE(2496), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1074), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1913), 2, - sym_meta_item, - sym__literal, - ACTIONS(3149), 3, + STATE(1563), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2495), 3, sym_self, sym_super, sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3145), 19, + ACTIONS(3147), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103353,56 +105253,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, anon_sym_union, - [37601] = 21, + [37465] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2475), 1, + ACTIONS(2479), 1, anon_sym_fn, - ACTIONS(2483), 1, + ACTIONS(2487), 1, anon_sym_COLON_COLON, - ACTIONS(3135), 1, + ACTIONS(3149), 1, anon_sym_default, - ACTIONS(3137), 1, + ACTIONS(3151), 1, sym_metavariable, ACTIONS(3153), 1, sym_identifier, - STATE(775), 1, + STATE(780), 1, sym_scoped_type_identifier, - STATE(839), 1, + STATE(993), 1, sym_generic_type, - STATE(1118), 1, + STATE(1102), 1, sym_function_type, - STATE(1207), 1, + STATE(1212), 1, sym_for_lifetimes, - STATE(2376), 1, + STATE(2398), 1, sym_function_modifiers, - STATE(2401), 1, + STATE(2417), 1, sym_scoped_identifier, - STATE(2479), 1, + STATE(2495), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2496), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2491), 3, + ACTIONS(2495), 3, sym_self, sym_super, sym_crate, - ACTIONS(3133), 18, + ACTIONS(3147), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103421,24 +105320,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37688] = 16, + [37552] = 6, + ACTIONS(2644), 1, + anon_sym_BANG, + ACTIONS(2646), 1, + anon_sym_COLON_COLON, + ACTIONS(3155), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2640), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2638), 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, + [37609] = 17, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, - ACTIONS(966), 1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3141), 1, + ACTIONS(3157), 1, sym_identifier, - ACTIONS(3151), 1, - sym_metavariable, - ACTIONS(3155), 1, + ACTIONS(3159), 1, anon_sym_RPAREN, - STATE(1597), 1, + ACTIONS(3163), 1, + anon_sym_COMMA, + ACTIONS(3167), 1, + sym_metavariable, + STATE(1712), 1, sym_scoped_identifier, - STATE(2357), 1, + STATE(2388), 1, sym_generic_type_with_turbofish, - STATE(2476), 1, + STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -103446,13 +105398,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1074), 2, + STATE(1068), 2, sym_string_literal, sym_boolean_literal, - STATE(2213), 2, + STATE(2141), 2, sym_meta_item, sym__literal, - ACTIONS(3149), 3, + ACTIONS(3165), 3, sym_self, sym_super, sym_crate, @@ -103461,7 +105413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3145), 19, + ACTIONS(3161), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103481,47 +105433,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37764] = 16, + [37688] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(732), 1, - anon_sym_DASH, - ACTIONS(736), 1, + ACTIONS(93), 1, aux_sym_string_literal_token1, - ACTIONS(966), 1, + ACTIONS(888), 1, anon_sym_COLON_COLON, ACTIONS(3157), 1, sym_identifier, - ACTIONS(3163), 1, + ACTIONS(3167), 1, sym_metavariable, - STATE(1442), 1, + ACTIONS(3169), 1, + anon_sym_RPAREN, + STATE(1712), 1, sym_scoped_identifier, - STATE(1451), 1, - sym__literal_pattern, - STATE(2357), 1, + STATE(2388), 1, sym_generic_type_with_turbofish, - STATE(2362), 1, + STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(738), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3161), 3, + STATE(1068), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2194), 2, + sym_meta_item, + sym__literal, + ACTIONS(3165), 3, sym_self, sym_super, sym_crate, - STATE(1421), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(734), 4, + ACTIONS(91), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3159), 19, + ACTIONS(3161), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103541,13 +105493,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37840] = 6, - ACTIONS(2570), 1, - anon_sym_BANG, - ACTIONS(3165), 1, + [37764] = 5, + ACTIONS(2682), 1, anon_sym_COLON_COLON, - STATE(1117), 1, - sym_field_initializer_list, + ACTIONS(3097), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -103567,9 +105517,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(564), 23, + ACTIONS(564), 24, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, @@ -103591,26 +105542,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37896] = 16, + [37818] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(732), 1, anon_sym_DASH, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(966), 1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3167), 1, + ACTIONS(3171), 1, sym_identifier, - ACTIONS(3173), 1, + ACTIONS(3177), 1, sym_metavariable, - STATE(1445), 1, + STATE(1441), 1, sym_scoped_identifier, - STATE(1462), 1, + STATE(1454), 1, sym__literal_pattern, - STATE(2357), 1, + STATE(2388), 1, sym_generic_type_with_turbofish, - STATE(2362), 1, + STATE(2391), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -103618,11 +105569,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(738), 2, anon_sym_true, anon_sym_false, - ACTIONS(3171), 3, + ACTIONS(3175), 3, sym_self, sym_super, sym_crate, - STATE(1421), 3, + STATE(1419), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, @@ -103631,7 +105582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3169), 19, + ACTIONS(3173), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103651,73 +105602,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37972] = 5, - ACTIONS(2762), 1, + [37894] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(732), 1, + anon_sym_DASH, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3093), 1, - anon_sym_BANG, + ACTIONS(3179), 1, + sym_identifier, + ACTIONS(3185), 1, + sym_metavariable, + STATE(1436), 1, + sym_scoped_identifier, + STATE(1486), 1, + sym__literal_pattern, + STATE(2388), 1, + sym_generic_type_with_turbofish, + STATE(2391), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(564), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - 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, - [38026] = 16, + ACTIONS(738), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3183), 3, + sym_self, + sym_super, + sym_crate, + STATE(1419), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(734), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3181), 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, + [37970] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, - ACTIONS(966), 1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3141), 1, + ACTIONS(3157), 1, sym_identifier, - ACTIONS(3151), 1, + ACTIONS(3167), 1, sym_metavariable, - ACTIONS(3175), 1, + ACTIONS(3187), 1, anon_sym_RPAREN, - STATE(1597), 1, + STATE(1712), 1, sym_scoped_identifier, - STATE(2357), 1, + STATE(2388), 1, sym_generic_type_with_turbofish, - STATE(2476), 1, + STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -103725,13 +105687,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1074), 2, + STATE(1068), 2, sym_string_literal, sym_boolean_literal, - STATE(2213), 2, + STATE(2194), 2, sym_meta_item, sym__literal, - ACTIONS(3149), 3, + ACTIONS(3165), 3, sym_self, sym_super, sym_crate, @@ -103740,7 +105702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3145), 19, + ACTIONS(3161), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103760,14 +105722,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [38102] = 3, + [38046] = 6, + ACTIONS(2584), 1, + anon_sym_BANG, + ACTIONS(3189), 1, + anon_sym_COLON_COLON, + STATE(1076), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 16, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103781,13 +105748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2604), 24, + ACTIONS(564), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -103806,42 +105772,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38151] = 3, + [38102] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 16, - anon_sym_PLUS, + ACTIONS(3193), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, + anon_sym_SQUOTE, anon_sym_BANG, - anon_sym_EQ, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, + sym_metavariable, + ACTIONS(3191), 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, + [38151] = 23, + ACTIONS(374), 1, + anon_sym_RBRACK, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_AMP_AMP, + ACTIONS(3081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3083), 1, anon_sym_PIPE, + ACTIONS(3085), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(2616), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(3117), 1, anon_sym_QMARK, + ACTIONS(3119), 1, anon_sym_as, - anon_sym_COLON_COLON, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3195), 1, + anon_sym_SEMI, + ACTIONS(3197), 1, + anon_sym_COMMA, + ACTIONS(3201), 1, + anon_sym_DOT_DOT, + STATE(2119), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3089), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103852,45 +105884,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38200] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(966), 1, - anon_sym_COLON_COLON, - ACTIONS(3141), 1, - sym_identifier, - ACTIONS(3151), 1, - sym_metavariable, - STATE(1597), 1, - sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 1, - sym_bracketed_type, + [38240] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1074), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2213), 2, - sym_meta_item, - sym__literal, - ACTIONS(3149), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3145), 19, + ACTIONS(3205), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3203), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103908,19 +105916,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - [38273] = 5, - ACTIONS(2570), 1, - anon_sym_BANG, - ACTIONS(3177), 1, - anon_sym_COLON_COLON, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38289] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, + ACTIONS(2606), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103934,12 +105951,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(564), 23, + ACTIONS(2608), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -103958,11 +105976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38326] = 3, + [38338] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 9, + ACTIONS(3008), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -103972,7 +105990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3179), 31, + ACTIONS(3006), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104004,22 +106022,45 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38375] = 4, - ACTIONS(3185), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3187), 8, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + [38387] = 15, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3157), 1, + sym_identifier, + ACTIONS(3167), 1, sym_metavariable, - ACTIONS(3183), 31, + STATE(1712), 1, + sym_scoped_identifier, + STATE(2388), 1, + sym_generic_type_with_turbofish, + STATE(2492), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1068), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2194), 2, + sym_meta_item, + sym__literal, + ACTIONS(3165), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3161), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104037,29 +106078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38426] = 5, - ACTIONS(2658), 1, + [38460] = 5, + ACTIONS(2680), 1, anon_sym_BANG, - ACTIONS(3189), 1, + ACTIONS(3207), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 15, + ACTIONS(2640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104075,7 +106104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2588), 23, + ACTIONS(2638), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104099,21 +106128,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38479] = 3, + [38513] = 4, + ACTIONS(3213), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3193), 9, + ACTIONS(3211), 8, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, anon_sym_LT, - anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3191), 31, + ACTIONS(3209), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104145,22 +106175,68 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38528] = 4, - ACTIONS(3195), 1, - anon_sym_COLON_COLON, + [38564] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3187), 8, + ACTIONS(3217), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3215), 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, + [38613] = 4, + ACTIONS(3219), 1, anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3211), 8, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3183), 31, + ACTIONS(3209), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104192,11 +106268,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38579] = 3, + [38664] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 16, + ACTIONS(2614), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -104213,7 +106289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2624), 24, + ACTIONS(2616), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104238,11 +106314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38628] = 3, + [38713] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 16, + ACTIONS(2652), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -104259,7 +106335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2636), 24, + ACTIONS(2654), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104284,174 +106360,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38677] = 23, - ACTIONS(374), 1, + [38762] = 23, + ACTIONS(548), 1, anon_sym_RBRACK, - ACTIONS(3049), 1, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, - anon_sym_DOT, ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3089), 1, - anon_sym_EQ, - ACTIONS(3197), 1, - anon_sym_SEMI, - ACTIONS(3199), 1, - anon_sym_COMMA, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - STATE(2064), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3057), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3073), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3091), 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, - [38766] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2858), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2856), 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, - [38815] = 23, - ACTIONS(554), 1, - anon_sym_RBRACK, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3205), 1, + ACTIONS(3221), 1, anon_sym_SEMI, - ACTIONS(3207), 1, + ACTIONS(3223), 1, anon_sym_COMMA, - STATE(2014), 1, + STATE(1927), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104462,11 +106426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38904] = 3, + [38851] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2834), 9, + ACTIONS(2924), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -104476,7 +106440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2832), 31, + ACTIONS(2922), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104508,183 +106472,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38953] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3211), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, + [38900] = 5, + ACTIONS(2584), 1, anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3209), 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, - [39002] = 22, - ACTIONS(386), 1, - anon_sym_RPAREN, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3089), 1, - anon_sym_EQ, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3213), 1, - anon_sym_COMMA, - STATE(1943), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3057), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3073), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3091), 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, - [39088] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(2888), 1, - sym_metavariable, - ACTIONS(3127), 1, - anon_sym_default, - ACTIONS(3215), 1, - sym_identifier, - ACTIONS(3217), 1, - anon_sym_fn, - STATE(1835), 1, - sym_scoped_type_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_generic_type, - STATE(2542), 1, - sym_function_modifiers, - STATE(2550), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2882), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [39166] = 4, - ACTIONS(2726), 1, + ACTIONS(3225), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 15, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104700,7 +106496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2684), 23, + ACTIONS(564), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104724,15 +106520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39216] = 4, - ACTIONS(3189), 1, - anon_sym_COLON_COLON, + [38953] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 15, + ACTIONS(2634), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104746,12 +106541,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2588), 23, + ACTIONS(2636), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -104770,60 +106566,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39266] = 22, - ACTIONS(3049), 1, + [39002] = 22, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3219), 1, + ACTIONS(3227), 1, anon_sym_RPAREN, - ACTIONS(3221), 1, + ACTIONS(3229), 1, anon_sym_COMMA, - STATE(2052), 1, + STATE(1929), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104834,7 +106630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39352] = 4, + [39088] = 4, ACTIONS(2686), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, @@ -104880,13 +106676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39402] = 4, - ACTIONS(3223), 1, + [39138] = 4, + ACTIONS(2714), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104902,7 +106698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(564), 23, + ACTIONS(2684), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104926,48 +106722,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39452] = 18, + [39188] = 18, ACTIONS(77), 1, anon_sym_LT, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(900), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2888), 1, + ACTIONS(2942), 1, sym_metavariable, - ACTIONS(3127), 1, + ACTIONS(3141), 1, anon_sym_default, - ACTIONS(3225), 1, + ACTIONS(3231), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3233), 1, anon_sym_fn, - STATE(1797), 1, + STATE(1846), 1, sym_scoped_type_identifier, - STATE(2370), 1, + STATE(2395), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2396), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, - sym_function_modifiers, - STATE(2425), 1, + STATE(2441), 1, sym_generic_type, - STATE(2550), 1, + STATE(2522), 1, + sym_function_modifiers, + STATE(2552), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1563), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - ACTIONS(2882), 18, + ACTIONS(2936), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104986,58 +106782,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [39530] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3233), 1, - anon_sym_EQ, + [39266] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(912), 1, + anon_sym_COLON_COLON, + ACTIONS(2942), 1, + sym_metavariable, + ACTIONS(3141), 1, + anon_sym_default, + ACTIONS(3235), 1, + sym_identifier, ACTIONS(3237), 1, + anon_sym_fn, + STATE(1858), 1, + sym_scoped_type_identifier, + STATE(2395), 1, + sym_bracketed_type, + STATE(2396), 1, + sym_generic_type_with_turbofish, + STATE(2419), 1, + sym_function_modifiers, + STATE(2441), 1, + sym_generic_type, + STATE(2552), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1563), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2936), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [39344] = 22, + ACTIONS(384), 1, + anon_sym_RPAREN, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3085), 1, anon_sym_CARET, - STATE(1088), 1, - sym_block, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, + anon_sym_DOT_DOT, + ACTIONS(3239), 1, + anon_sym_COMMA, + STATE(2127), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3199), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105048,120 +106906,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39613] = 21, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3233), 1, - anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, + [39430] = 4, ACTIONS(3241), 1, - anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, - anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(239), 1, - sym_match_block, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(562), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3235), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3255), 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, - [39696] = 21, - ACTIONS(586), 1, + anon_sym_DOT, + ACTIONS(564), 23, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3233), 1, - anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, - anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(244), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3229), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3235), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3231), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3251), 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(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105172,26 +106952,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39779] = 7, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3261), 1, - anon_sym_DOT_DOT, + [39480] = 4, + ACTIONS(3207), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 13, + ACTIONS(2640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -105199,78 +106973,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3105), 20, + anon_sym_DOT, + ACTIONS(2638), 23, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - 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, - [39834] = 20, - ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_EQ, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3057), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3263), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3053), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3073), 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(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105281,58 +106998,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39915] = 21, - ACTIONS(586), 1, + [39530] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - STATE(216), 1, + STATE(1059), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105343,58 +107060,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39998] = 21, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [39613] = 9, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3233), 1, - anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, - anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(231), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3101), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3099), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105405,58 +107110,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40081] = 21, - ACTIONS(264), 1, - anon_sym_RBRACE, - ACTIONS(3049), 1, + [39672] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3275), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105467,58 +107171,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40164] = 21, - ACTIONS(3049), 1, + [39753] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3251), 1, + anon_sym_AMP, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3267), 1, - anon_sym_RBRACE, - ACTIONS(3269), 1, - anon_sym_COMMA, + ACTIONS(3257), 1, + anon_sym_AMP_AMP, + ACTIONS(3259), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3261), 1, + anon_sym_PIPE, + ACTIONS(3263), 1, + anon_sym_CARET, + STATE(49), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3267), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105529,58 +107233,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40247] = 21, + [39836] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - STATE(167), 1, + STATE(177), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105591,22 +107295,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40330] = 7, - ACTIONS(3049), 1, + [39919] = 8, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3261), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3097), 13, - anon_sym_PLUS, + ACTIONS(3245), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3101), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105616,9 +107323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3095), 20, + ACTIONS(3099), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105639,113 +107344,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40385] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, + [39976] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3275), 1, - anon_sym_RBRACE, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3281), 1, - anon_sym_COMMA, - ACTIONS(3283), 1, - anon_sym_COLON_COLON, - ACTIONS(3287), 1, - sym_metavariable, - STATE(1773), 1, - sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3285), 3, - sym_self, - sym_super, - sym_crate, - STATE(1985), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3279), 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, - [40456] = 20, - ACTIONS(3049), 1, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3251), 1, + anon_sym_AMP, + ACTIONS(3255), 1, anon_sym_DOT_DOT, + ACTIONS(3257), 1, + anon_sym_AMP_AMP, + ACTIONS(3259), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3261), 1, + anon_sym_PIPE, + ACTIONS(3263), 1, + anon_sym_CARET, + STATE(181), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3289), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3267), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105756,58 +107406,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40537] = 21, - ACTIONS(284), 1, + [40059] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - STATE(1049), 1, + STATE(117), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105818,58 +107468,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40620] = 21, - ACTIONS(272), 1, - anon_sym_RBRACE, - ACTIONS(3049), 1, + [40142] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3277), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105880,58 +107529,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40703] = 21, + [40223] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - STATE(46), 1, + STATE(45), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105942,54 +107591,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40786] = 17, - ACTIONS(3049), 1, + [40306] = 21, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3261), 1, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, anon_sym_DOT_DOT, + ACTIONS(3279), 1, + anon_sym_SEMI, + ACTIONS(3281), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3101), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106000,44 +107653,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40861] = 7, - ACTIONS(3049), 1, + [40389] = 21, + ACTIONS(502), 1, + anon_sym_RPAREN, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_AMP_AMP, + ACTIONS(3081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3083), 1, + anon_sym_PIPE, + ACTIONS(3085), 1, + anon_sym_CARET, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3261), 1, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, anon_sym_DOT_DOT, + ACTIONS(3283), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3115), 13, + ACTIONS(3065), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3199), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3113), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106048,58 +107715,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40916] = 21, - ACTIONS(392), 1, - anon_sym_RPAREN, - ACTIONS(3049), 1, + [40472] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3251), 1, + anon_sym_AMP, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3291), 1, - anon_sym_COMMA, + ACTIONS(3257), 1, + anon_sym_AMP_AMP, + ACTIONS(3259), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3261), 1, + anon_sym_PIPE, + ACTIONS(3263), 1, + anon_sym_CARET, + STATE(182), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3267), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106110,58 +107777,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40999] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [40555] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3233), 1, - anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3085), 1, anon_sym_CARET, - STATE(1072), 1, - sym_block, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3199), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3285), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106172,58 +107838,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41082] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [40636] = 16, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3101), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - STATE(99), 1, - sym_block, + ACTIONS(3273), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3271), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3099), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106234,54 +107895,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41165] = 17, - ACTIONS(3049), 1, + [40709] = 21, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_EQ, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3261), 1, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, anon_sym_DOT_DOT, + ACTIONS(3279), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3047), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106292,58 +107957,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41240] = 21, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [40792] = 7, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3233), 1, - anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, - anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(224), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3271), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3129), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3235), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3127), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106354,57 +108005,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41323] = 20, - ACTIONS(3049), 1, + [40847] = 17, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3263), 1, anon_sym_CARET, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3089), 1, - anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3293), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(282), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106415,58 +108063,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41404] = 21, - ACTIONS(3049), 1, + [40922] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - ACTIONS(3295), 1, - anon_sym_LBRACE, - STATE(1092), 1, - sym_match_block, + STATE(788), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106477,57 +108125,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41487] = 20, - ACTIONS(3049), 1, + [41005] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3255), 1, + anon_sym_DOT_DOT, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - ACTIONS(3261), 1, - anon_sym_DOT_DOT, + STATE(84), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3083), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3253), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3267), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106538,58 +108187,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41568] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [41088] = 21, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - STATE(1051), 1, - sym_block, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(1082), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106600,57 +108249,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41651] = 20, - ACTIONS(3049), 1, + [41171] = 17, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3137), 1, + anon_sym_EQ, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3263), 1, anon_sym_CARET, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3089), 1, - anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3297), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3135), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106661,53 +108307,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41732] = 16, - ACTIONS(3049), 1, + [41246] = 17, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3107), 1, + ACTIONS(3095), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3259), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - ACTIONS(3261), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3105), 15, + ACTIONS(3093), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106718,58 +108365,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41805] = 21, - ACTIONS(107), 1, + [41321] = 21, + ACTIONS(115), 1, anon_sym_RBRACE, - ACTIONS(3049), 1, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, + ACTIONS(3279), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106780,36 +108427,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41888] = 9, - ACTIONS(3049), 1, + [41404] = 7, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3261), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3259), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3109), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3107), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3105), 20, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3107), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -106830,58 +108475,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41947] = 21, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [41459] = 17, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3113), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - STATE(232), 1, - sym_block, + ACTIONS(3273), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3271), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3111), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106892,116 +108533,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42030] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [41534] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, - anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_PIPE_PIPE, ACTIONS(3247), 1, - anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(780), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3229), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3235), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3231), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3251), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3255), 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, - [42113] = 17, - ACTIONS(288), 1, anon_sym_EQ, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - ACTIONS(3261), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3125), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107012,52 +108594,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42188] = 15, - ACTIONS(3049), 1, + [41615] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3107), 1, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3257), 1, + anon_sym_AMP_AMP, + ACTIONS(3259), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - ACTIONS(3261), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3115), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3105), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107068,37 +108655,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42259] = 10, - ACTIONS(3049), 1, + [41696] = 7, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3261), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3253), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3105), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3107), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3105), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3103), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107119,20 +108703,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42320] = 7, - ACTIONS(3049), 1, + [41751] = 7, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3261), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3111), 13, + ACTIONS(3101), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107146,7 +108730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3109), 20, + ACTIONS(3099), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107167,58 +108751,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42375] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [41806] = 21, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3233), 1, - anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3085), 1, anon_sym_CARET, - STATE(1085), 1, - sym_block, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, + anon_sym_DOT_DOT, + ACTIONS(3283), 1, + anon_sym_COMMA, + ACTIONS(3289), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3199), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107229,40 +108813,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42458] = 13, - ACTIONS(3049), 1, + [41889] = 13, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - ACTIONS(3261), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 3, + ACTIONS(3101), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3105), 20, + ACTIONS(3099), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107283,58 +108867,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42525] = 21, - ACTIONS(270), 1, - anon_sym_RBRACE, - ACTIONS(3049), 1, + [41956] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3291), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107345,58 +108928,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42608] = 21, - ACTIONS(3049), 1, + [42037] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_SEMI, - ACTIONS(3299), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3293), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107407,58 +108989,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42691] = 21, - ACTIONS(586), 1, + [42118] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - STATE(215), 1, + STATE(1144), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107469,116 +109051,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42774] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [42201] = 21, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3233), 1, - anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3085), 1, anon_sym_CARET, - STATE(113), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3229), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3235), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3231), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3251), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3255), 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, - [42857] = 17, - ACTIONS(3049), 1, - anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3123), 1, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, - anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - ACTIONS(3261), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, + ACTIONS(3279), 1, + anon_sym_SEMI, + ACTIONS(3295), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3121), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107589,58 +109113,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42932] = 21, + [42284] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - STATE(785), 1, + STATE(1109), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107651,54 +109175,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43015] = 17, - ACTIONS(3049), 1, + [42367] = 21, + ACTIONS(278), 1, + anon_sym_RBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3119), 1, - anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3261), 1, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, anon_sym_DOT_DOT, + ACTIONS(3279), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3117), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107709,58 +109237,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43090] = 21, - ACTIONS(276), 1, - anon_sym_RBRACE, - ACTIONS(3049), 1, + [42450] = 21, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3251), 1, + anon_sym_AMP, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_SEMI, + ACTIONS(3257), 1, + anon_sym_AMP_AMP, + ACTIONS(3259), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3261), 1, + anon_sym_PIPE, + ACTIONS(3263), 1, + anon_sym_CARET, + ACTIONS(3297), 1, + anon_sym_LBRACE, + STATE(134), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3267), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107771,58 +109299,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43173] = 21, - ACTIONS(3049), 1, + [42533] = 21, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_SEMI, + ACTIONS(3299), 1, + anon_sym_RPAREN, ACTIONS(3301), 1, - anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107833,58 +109361,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43256] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [42616] = 21, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3233), 1, - anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3085), 1, anon_sym_CARET, - STATE(1124), 1, - sym_block, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, + anon_sym_DOT_DOT, + ACTIONS(3279), 1, + anon_sym_SEMI, + ACTIONS(3303), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3199), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107895,58 +109423,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43339] = 21, - ACTIONS(3049), 1, + [42699] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - ACTIONS(3303), 1, - anon_sym_LBRACE, - STATE(154), 1, - sym_match_block, + STATE(794), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107957,58 +109485,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43422] = 21, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [42782] = 21, + ACTIONS(274), 1, + anon_sym_RBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3233), 1, - anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3085), 1, anon_sym_CARET, - STATE(220), 1, - sym_block, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, + anon_sym_DOT_DOT, + ACTIONS(3279), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3199), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108019,39 +109547,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43505] = 12, - ACTIONS(3049), 1, + [42865] = 12, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - ACTIONS(3261), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 4, + ACTIONS(3101), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(3105), 20, + ACTIONS(3099), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -108072,38 +109600,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43570] = 11, - ACTIONS(3049), 1, + [42930] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3305), 1, + sym_identifier, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_RBRACE, + ACTIONS(3311), 1, + anon_sym_STAR, + ACTIONS(3315), 1, + anon_sym_COMMA, + ACTIONS(3317), 1, + anon_sym_COLON_COLON, + ACTIONS(3321), 1, + sym_metavariable, + STATE(1774), 1, + sym_scoped_identifier, + STATE(2388), 1, + sym_generic_type_with_turbofish, + STATE(2492), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3319), 3, + sym_self, + sym_super, + sym_crate, + STATE(2001), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3313), 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, + [43001] = 11, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3261), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 5, + ACTIONS(3101), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3105), 20, + ACTIONS(3099), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -108124,45 +109708,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43633] = 8, - ACTIONS(3049), 1, + [43064] = 21, + ACTIONS(594), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3261), 1, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3247), 1, + anon_sym_EQ, + ACTIONS(3251), 1, + anon_sym_AMP, + ACTIONS(3255), 1, anon_sym_DOT_DOT, + ACTIONS(3257), 1, + anon_sym_AMP_AMP, + ACTIONS(3259), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3261), 1, + anon_sym_PIPE, + ACTIONS(3263), 1, + anon_sym_CARET, + STATE(231), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3249), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3267), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 10, - anon_sym_PLUS, + ACTIONS(3265), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3269), 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, + [43147] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3247), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3251), 1, anon_sym_AMP, - anon_sym_DASH, + ACTIONS(3255), 1, + anon_sym_DOT_DOT, + ACTIONS(3257), 1, + anon_sym_AMP_AMP, + ACTIONS(3259), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3261), 1, anon_sym_PIPE, + ACTIONS(3263), 1, anon_sym_CARET, + STATE(1126), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3249), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3253), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3105), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3245), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108173,58 +109832,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43690] = 21, - ACTIONS(3049), 1, + [43230] = 21, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_SEMI, - ACTIONS(3305), 1, + ACTIONS(3323), 1, anon_sym_RBRACE, + ACTIONS(3325), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108235,58 +109894,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43773] = 21, - ACTIONS(260), 1, - anon_sym_RBRACE, - ACTIONS(3049), 1, + [43313] = 10, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3089), 1, - anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3101), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3099), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108297,58 +109945,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43856] = 21, - ACTIONS(15), 1, + [43374] = 21, + ACTIONS(594), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - STATE(168), 1, + STATE(244), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108359,57 +110007,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43939] = 20, - ACTIONS(3049), 1, + [43457] = 21, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, + ACTIONS(3279), 1, + anon_sym_SEMI, + ACTIONS(3327), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3307), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108420,58 +110069,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44020] = 21, - ACTIONS(498), 1, - anon_sym_RPAREN, - ACTIONS(3049), 1, + [43540] = 15, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3101), 1, + anon_sym_EQ, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3263), 1, anon_sym_CARET, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3089), 1, - anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, - ACTIONS(3291), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3099), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108482,58 +110125,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44103] = 21, - ACTIONS(3049), 1, + [43611] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3309), 1, - anon_sym_RPAREN, - ACTIONS(3311), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3329), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108544,58 +110186,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44186] = 21, - ACTIONS(3049), 1, + [43692] = 17, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3069), 1, + anon_sym_EQ, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3263), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3273), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3249), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3267), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3271), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3245), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3265), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3061), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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, + [43767] = 21, + ACTIONS(594), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3251), 1, + anon_sym_AMP, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_SEMI, - ACTIONS(3313), 1, - anon_sym_RBRACE, + ACTIONS(3257), 1, + anon_sym_AMP_AMP, + ACTIONS(3259), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3261), 1, + anon_sym_PIPE, + ACTIONS(3263), 1, + anon_sym_CARET, + STATE(229), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3267), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108606,58 +110306,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44269] = 21, - ACTIONS(15), 1, + [43850] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - STATE(130), 1, + STATE(1105), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108668,58 +110368,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44352] = 21, - ACTIONS(3049), 1, + [43933] = 21, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_SEMI, - ACTIONS(3315), 1, + ACTIONS(3331), 1, anon_sym_RBRACE, + ACTIONS(3333), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108730,58 +110430,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44435] = 21, - ACTIONS(586), 1, + [44016] = 21, + ACTIONS(594), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - STATE(238), 1, + STATE(220), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108792,57 +110492,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44518] = 20, - ACTIONS(3049), 1, + [44099] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3317), 2, + ACTIONS(3335), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108853,58 +110553,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44599] = 21, - ACTIONS(3049), 1, + [44180] = 21, + ACTIONS(594), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3251), 1, + anon_sym_AMP, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3319), 1, - anon_sym_RBRACE, - ACTIONS(3321), 1, - anon_sym_COMMA, + ACTIONS(3257), 1, + anon_sym_AMP_AMP, + ACTIONS(3259), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3261), 1, + anon_sym_PIPE, + ACTIONS(3263), 1, + anon_sym_CARET, + STATE(236), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3267), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108915,58 +110615,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44682] = 21, - ACTIONS(3049), 1, + [44263] = 21, + ACTIONS(594), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3251), 1, + anon_sym_AMP, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_SEMI, - ACTIONS(3323), 1, - anon_sym_RBRACE, + ACTIONS(3257), 1, + anon_sym_AMP_AMP, + ACTIONS(3259), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3261), 1, + anon_sym_PIPE, + ACTIONS(3263), 1, + anon_sym_CARET, + STATE(240), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3267), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108977,54 +110677,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44765] = 17, - ACTIONS(3049), 1, + [44346] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3261), 1, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3337), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3079), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109035,58 +110738,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44840] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [44427] = 21, + ACTIONS(107), 1, + anon_sym_RBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3233), 1, - anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3085), 1, anon_sym_CARET, - STATE(50), 1, - sym_block, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, + anon_sym_DOT_DOT, + ACTIONS(3279), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3199), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109097,57 +110800,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44923] = 20, - ACTIONS(3049), 1, + [44510] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3251), 1, + anon_sym_AMP, + ACTIONS(3255), 1, anon_sym_DOT_DOT, + ACTIONS(3257), 1, + anon_sym_AMP_AMP, + ACTIONS(3259), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3261), 1, + anon_sym_PIPE, + ACTIONS(3263), 1, + anon_sym_CARET, + STATE(1148), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3325), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3267), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109158,57 +110862,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45004] = 20, - ACTIONS(3049), 1, + [44593] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, + ACTIONS(3339), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109219,58 +110923,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45085] = 21, + [44674] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3263), 1, anon_sym_CARET, - STATE(150), 1, + STATE(164), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109281,57 +110985,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45168] = 20, - ACTIONS(3049), 1, + [44757] = 17, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3133), 1, + anon_sym_EQ, + ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3259), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3263), 1, anon_sym_CARET, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3089), 1, - anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3273), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3329), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3131), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109342,57 +111043,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45249] = 20, - ACTIONS(3049), 1, + [44832] = 21, + ACTIONS(390), 1, + anon_sym_RPAREN, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3233), 1, - anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3261), 1, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, anon_sym_DOT_DOT, + ACTIONS(3283), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3099), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3229), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109403,57 +111105,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45330] = 20, - ACTIONS(3049), 1, + [44915] = 21, + ACTIONS(109), 1, + anon_sym_RBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, + ACTIONS(3279), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3331), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109464,58 +111167,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45411] = 21, - ACTIONS(3049), 1, + [44998] = 21, + ACTIONS(594), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3251), 1, + anon_sym_AMP, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3291), 1, - anon_sym_COMMA, - ACTIONS(3333), 1, - anon_sym_RPAREN, + ACTIONS(3257), 1, + anon_sym_AMP_AMP, + ACTIONS(3259), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3261), 1, + anon_sym_PIPE, + ACTIONS(3263), 1, + anon_sym_CARET, + STATE(216), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3267), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109526,56 +111229,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45494] = 20, - ACTIONS(3049), 1, + [45081] = 21, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3251), 1, + anon_sym_AMP, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3335), 1, - anon_sym_SEMI, + ACTIONS(3257), 1, + anon_sym_AMP_AMP, + ACTIONS(3259), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3261), 1, + anon_sym_PIPE, + ACTIONS(3263), 1, + anon_sym_CARET, + ACTIONS(3341), 1, + anon_sym_LBRACE, + STATE(249), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3267), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109586,56 +111291,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45574] = 20, - ACTIONS(3049), 1, + [45164] = 21, + ACTIONS(594), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3247), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3251), 1, + anon_sym_AMP, + ACTIONS(3255), 1, anon_sym_DOT_DOT, - ACTIONS(3337), 1, - anon_sym_COMMA, + ACTIONS(3257), 1, + anon_sym_AMP_AMP, + ACTIONS(3259), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3261), 1, + anon_sym_PIPE, + ACTIONS(3263), 1, + anon_sym_CARET, + STATE(248), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3253), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3267), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3265), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109646,56 +111353,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45654] = 20, - ACTIONS(3049), 1, + [45247] = 21, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3339), 1, + ACTIONS(3279), 1, anon_sym_SEMI, + ACTIONS(3343), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109706,56 +111415,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45734] = 20, - ACTIONS(3049), 1, + [45330] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3341), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3345), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109766,56 +111476,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45814] = 20, - ACTIONS(3049), 1, + [45411] = 21, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3343), 1, + ACTIONS(3279), 1, anon_sym_SEMI, + ACTIONS(3347), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109826,56 +111538,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45894] = 20, - ACTIONS(3049), 1, + [45494] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3345), 1, - anon_sym_COMMA, + ACTIONS(3349), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109886,110 +111598,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45974] = 14, - ACTIONS(77), 1, + [45574] = 20, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_AMP_AMP, + ACTIONS(3081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3083), 1, + anon_sym_PIPE, + ACTIONS(3085), 1, + anon_sym_CARET, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, + anon_sym_DOT_DOT, + ACTIONS(3351), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, anon_sym_LT, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(3277), 1, + anon_sym_GT, + ACTIONS(3089), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3199), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, anon_sym_STAR, - ACTIONS(3283), 1, - anon_sym_COLON_COLON, - ACTIONS(3287), 1, - sym_metavariable, - ACTIONS(3347), 1, - anon_sym_RBRACE, - STATE(1773), 1, - sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 1, - sym_bracketed_type, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3123), 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, + [45654] = 20, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_AMP_AMP, + ACTIONS(3081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3083), 1, + anon_sym_PIPE, + ACTIONS(3085), 1, + anon_sym_CARET, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, + anon_sym_DOT_DOT, + ACTIONS(3353), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3285), 3, - sym_self, - sym_super, - sym_crate, - STATE(2250), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3279), 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, - [46042] = 20, - ACTIONS(3049), 1, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3089), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3199), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3123), 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, + [45734] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3291), 1, - anon_sym_COMMA, + ACTIONS(3355), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110000,56 +111778,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46122] = 20, - ACTIONS(3049), 1, + [45814] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3349), 1, - anon_sym_RBRACK, + ACTIONS(3357), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110060,56 +111838,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46202] = 20, - ACTIONS(3049), 1, + [45894] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3351), 1, + ACTIONS(3359), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110120,56 +111898,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46282] = 20, - ACTIONS(3049), 1, + [45974] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3353), 1, - anon_sym_SEMI, + ACTIONS(3283), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110180,56 +111958,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46362] = 20, - ACTIONS(3049), 1, + [46054] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3355), 1, - anon_sym_RBRACK, + ACTIONS(3279), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110240,56 +112018,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46442] = 20, - ACTIONS(3049), 1, + [46134] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3357), 1, + ACTIONS(3361), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110300,56 +112078,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46522] = 20, - ACTIONS(3049), 1, + [46214] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3359), 1, + ACTIONS(3363), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110360,56 +112138,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46602] = 20, - ACTIONS(3049), 1, + [46294] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3361), 1, - anon_sym_SEMI, + ACTIONS(3365), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110420,56 +112198,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46682] = 20, - ACTIONS(3049), 1, + [46374] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, + ACTIONS(3367), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110480,56 +112258,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46762] = 20, - ACTIONS(3049), 1, + [46454] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3363), 1, - anon_sym_EQ_GT, + ACTIONS(3369), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110540,56 +112318,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46842] = 20, - ACTIONS(3049), 1, + [46534] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3365), 1, - anon_sym_RBRACK, + ACTIONS(3371), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110600,56 +112378,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46922] = 20, - ACTIONS(3049), 1, + [46614] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(3373), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110660,56 +112438,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47002] = 20, - ACTIONS(3049), 1, + [46694] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3369), 1, - anon_sym_SEMI, + ACTIONS(3375), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110720,56 +112498,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47082] = 20, - ACTIONS(3049), 1, + [46774] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3371), 1, + ACTIONS(3377), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110780,56 +112558,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47162] = 20, - ACTIONS(3049), 1, + [46854] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3373), 1, + ACTIONS(3379), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110840,56 +112618,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47242] = 20, - ACTIONS(3049), 1, + [46934] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3375), 1, - anon_sym_RBRACK, + ACTIONS(3381), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110900,56 +112678,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47322] = 20, - ACTIONS(3049), 1, + [47014] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3377), 1, + ACTIONS(3383), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110960,56 +112738,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47402] = 20, - ACTIONS(3049), 1, + [47094] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3379), 1, + ACTIONS(3385), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111020,56 +112798,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47482] = 20, - ACTIONS(3049), 1, + [47174] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3381), 1, + ACTIONS(3387), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111080,56 +112858,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47562] = 20, - ACTIONS(3049), 1, + [47254] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3383), 1, + ACTIONS(3389), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111140,56 +112918,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47642] = 20, - ACTIONS(3049), 1, + [47334] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3385), 1, + ACTIONS(3391), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111200,56 +112978,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47722] = 20, - ACTIONS(3049), 1, + [47414] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3387), 1, - anon_sym_RBRACK, + ACTIONS(3393), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111260,56 +113038,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47802] = 20, - ACTIONS(3049), 1, + [47494] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3389), 1, + ACTIONS(3395), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111320,56 +113098,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47882] = 20, - ACTIONS(3049), 1, + [47574] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3391), 1, + ACTIONS(3397), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111380,56 +113158,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47962] = 20, - ACTIONS(3049), 1, + [47654] = 20, + ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3059), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3081), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3091), 1, anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3201), 1, anon_sym_DOT_DOT, - ACTIONS(3393), 1, + ACTIONS(3399), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3089), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3199), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111440,145 +113218,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48042] = 14, + [47734] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3271), 1, + ACTIONS(3305), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3307), 1, anon_sym_LBRACE, - ACTIONS(3277), 1, + ACTIONS(3311), 1, anon_sym_STAR, - ACTIONS(3283), 1, + ACTIONS(3317), 1, anon_sym_COLON_COLON, - ACTIONS(3287), 1, + ACTIONS(3321), 1, sym_metavariable, - ACTIONS(3395), 1, + ACTIONS(3401), 1, anon_sym_RBRACE, - STATE(1773), 1, - sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3285), 3, - sym_self, - sym_super, - sym_crate, - STATE(2250), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3279), 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, - [48110] = 13, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3283), 1, - anon_sym_COLON_COLON, - ACTIONS(3287), 1, - sym_metavariable, - STATE(1773), 1, - sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3285), 3, - sym_self, - sym_super, - sym_crate, - STATE(2428), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3279), 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, - [48175] = 13, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3283), 1, - anon_sym_COLON_COLON, - ACTIONS(3287), 1, - sym_metavariable, - STATE(1773), 1, + STATE(1774), 1, sym_scoped_identifier, - STATE(2357), 1, + STATE(2388), 1, sym_generic_type_with_turbofish, - STATE(2476), 1, + STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3285), 3, + ACTIONS(3319), 3, sym_self, sym_super, sym_crate, - STATE(2358), 5, + STATE(2227), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3279), 19, + ACTIONS(3313), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111598,208 +113272,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48240] = 13, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3283), 1, - anon_sym_COLON_COLON, - ACTIONS(3287), 1, - sym_metavariable, - STATE(1773), 1, - sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 1, - sym_bracketed_type, + [47802] = 20, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_AMP_AMP, + ACTIONS(3081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3083), 1, + anon_sym_PIPE, + ACTIONS(3085), 1, + anon_sym_CARET, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, + anon_sym_DOT_DOT, + ACTIONS(3403), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3285), 3, - sym_self, - sym_super, - sym_crate, - STATE(2250), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3279), 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, - [48305] = 13, - ACTIONS(77), 1, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, anon_sym_LT, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(3277), 1, + anon_sym_GT, + ACTIONS(3089), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3199), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, anon_sym_STAR, - ACTIONS(3283), 1, - anon_sym_COLON_COLON, - ACTIONS(3287), 1, - sym_metavariable, - STATE(1773), 1, - sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 1, - sym_bracketed_type, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3123), 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, + [47882] = 20, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_AMP_AMP, + ACTIONS(3081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3083), 1, + anon_sym_PIPE, + ACTIONS(3085), 1, + anon_sym_CARET, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, + anon_sym_DOT_DOT, + ACTIONS(3405), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3285), 3, - sym_self, - sym_super, - sym_crate, - STATE(2521), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3279), 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, - [48370] = 13, - ACTIONS(77), 1, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, anon_sym_LT, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(3277), 1, + anon_sym_GT, + ACTIONS(3089), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3199), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, anon_sym_STAR, - ACTIONS(3283), 1, - anon_sym_COLON_COLON, - ACTIONS(3287), 1, - sym_metavariable, - STATE(1773), 1, - sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3285), 3, - sym_self, - sym_super, - sym_crate, - STATE(2474), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3279), 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, - [48435] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3399), 3, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(3397), 28, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_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_union, - anon_sym_unsafe, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [48475] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3403), 3, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3123), 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, + [47962] = 14, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(3305), 1, + sym_identifier, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3311), 1, + anon_sym_STAR, + ACTIONS(3317), 1, anon_sym_COLON_COLON, + ACTIONS(3321), 1, sym_metavariable, - ACTIONS(3401), 28, + ACTIONS(3407), 1, + anon_sym_RBRACE, + STATE(1774), 1, + sym_scoped_identifier, + STATE(2388), 1, + sym_generic_type_with_turbofish, + STATE(2492), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3319), 3, + sym_self, + sym_super, + sym_crate, + STATE(2227), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3313), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111817,26 +113444,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [48515] = 3, + [48030] = 20, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_AMP_AMP, + ACTIONS(3081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3083), 1, + anon_sym_PIPE, + ACTIONS(3085), 1, + anon_sym_CARET, + ACTIONS(3091), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3201), 1, + anon_sym_DOT_DOT, + ACTIONS(3409), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3407), 3, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3089), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3199), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3123), 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, + [48110] = 13, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(3305), 1, + sym_identifier, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3311), 1, + anon_sym_STAR, + ACTIONS(3317), 1, anon_sym_COLON_COLON, + ACTIONS(3321), 1, sym_metavariable, - ACTIONS(3405), 28, + STATE(1774), 1, + sym_scoped_identifier, + STATE(2388), 1, + sym_generic_type_with_turbofish, + STATE(2492), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3319), 3, + sym_self, + sym_super, + sym_crate, + STATE(2366), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3313), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111854,42 +113556,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [48555] = 11, + [48175] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, - anon_sym_COLON_COLON, - ACTIONS(3141), 1, + ACTIONS(3305), 1, sym_identifier, - ACTIONS(3151), 1, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3311), 1, + anon_sym_STAR, + ACTIONS(3317), 1, + anon_sym_COLON_COLON, + ACTIONS(3321), 1, sym_metavariable, - STATE(1597), 1, + STATE(1774), 1, sym_scoped_identifier, - STATE(2357), 1, + STATE(2388), 1, sym_generic_type_with_turbofish, - STATE(2382), 1, - sym_meta_item, - STATE(2476), 1, + STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3149), 3, + ACTIONS(3319), 3, sym_self, sym_super, sym_crate, - ACTIONS(3145), 19, + STATE(2483), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3313), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111909,31 +113610,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48610] = 11, + [48240] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, - anon_sym_COLON_COLON, - ACTIONS(3141), 1, + ACTIONS(3305), 1, sym_identifier, - ACTIONS(3151), 1, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3311), 1, + anon_sym_STAR, + ACTIONS(3317), 1, + anon_sym_COLON_COLON, + ACTIONS(3321), 1, sym_metavariable, - STATE(1597), 1, + STATE(1774), 1, sym_scoped_identifier, - STATE(2336), 1, - sym_meta_item, - STATE(2357), 1, + STATE(2388), 1, sym_generic_type_with_turbofish, - STATE(2476), 1, + STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3149), 3, + ACTIONS(3319), 3, sym_self, sym_super, sym_crate, - ACTIONS(3145), 19, + STATE(2510), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3313), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111953,31 +113662,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48665] = 11, + [48305] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, - anon_sym_COLON_COLON, - ACTIONS(3141), 1, + ACTIONS(3305), 1, sym_identifier, - ACTIONS(3151), 1, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3311), 1, + anon_sym_STAR, + ACTIONS(3317), 1, + anon_sym_COLON_COLON, + ACTIONS(3321), 1, sym_metavariable, - STATE(1597), 1, + STATE(1774), 1, sym_scoped_identifier, - STATE(2357), 1, + STATE(2388), 1, sym_generic_type_with_turbofish, - STATE(2476), 1, + STATE(2492), 1, sym_bracketed_type, - STATE(2564), 1, - sym_meta_item, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3149), 3, + ACTIONS(3319), 3, sym_self, sym_super, sym_crate, - ACTIONS(3145), 19, + STATE(2389), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3313), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111997,31 +113714,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48720] = 11, + [48370] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, - anon_sym_COLON_COLON, - ACTIONS(3141), 1, + ACTIONS(3305), 1, sym_identifier, - ACTIONS(3151), 1, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3311), 1, + anon_sym_STAR, + ACTIONS(3317), 1, + anon_sym_COLON_COLON, + ACTIONS(3321), 1, sym_metavariable, - STATE(1597), 1, + STATE(1774), 1, sym_scoped_identifier, - STATE(2357), 1, + STATE(2388), 1, sym_generic_type_with_turbofish, - STATE(2427), 1, - sym_meta_item, - STATE(2476), 1, + STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3149), 3, + ACTIONS(3319), 3, sym_self, sym_super, sym_crate, - ACTIONS(3145), 19, + STATE(2227), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3313), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112041,31 +113766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48775] = 11, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(966), 1, - anon_sym_COLON_COLON, - ACTIONS(3141), 1, - sym_identifier, - ACTIONS(3151), 1, - sym_metavariable, - STATE(1597), 1, - sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2402), 1, - sym_meta_item, - STATE(2476), 1, - sym_bracketed_type, + [48435] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3149), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3145), 19, + ACTIONS(3413), 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(3411), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112083,33 +113792,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_union, - [48830] = 11, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(966), 1, - anon_sym_COLON_COLON, - ACTIONS(3141), 1, + anon_sym_unsafe, + anon_sym_extern, sym_identifier, - ACTIONS(3151), 1, - sym_metavariable, - STATE(1597), 1, - sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 1, - sym_bracketed_type, - STATE(2520), 1, - sym_meta_item, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3145), 19, + [48475] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3417), 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(3415), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112127,33 +113829,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_union, - [48885] = 11, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(966), 1, - anon_sym_COLON_COLON, - ACTIONS(3141), 1, + anon_sym_unsafe, + anon_sym_extern, sym_identifier, - ACTIONS(3151), 1, - sym_metavariable, - STATE(1597), 1, - sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2454), 1, - sym_meta_item, - STATE(2476), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3145), 19, + [48515] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3421), 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(3419), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112171,31 +113866,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_union, - [48940] = 10, + anon_sym_unsafe, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [48555] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3409), 1, + ACTIONS(3423), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(3429), 1, sym_metavariable, - STATE(2322), 1, + STATE(2216), 1, sym_scoped_identifier, - STATE(2357), 1, + STATE(2388), 1, sym_generic_type_with_turbofish, - STATE(2476), 1, + STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3413), 3, + ACTIONS(3427), 3, sym_self, sym_super, sym_crate, - ACTIONS(3411), 19, + ACTIONS(3425), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112215,29 +113919,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48992] = 10, + [48607] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3417), 1, + ACTIONS(3431), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(3437), 1, sym_metavariable, - STATE(2173), 1, + STATE(2244), 1, sym_scoped_identifier, - STATE(2357), 1, + STATE(2388), 1, sym_generic_type_with_turbofish, - STATE(2476), 1, + STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3421), 3, + ACTIONS(3435), 3, sym_self, sym_super, sym_crate, - ACTIONS(3419), 19, + ACTIONS(3433), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112257,13 +113961,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49044] = 3, - ACTIONS(2347), 1, + [48659] = 3, + ACTIONS(2441), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2349), 20, + ACTIONS(2443), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112284,13 +113988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49074] = 3, - ACTIONS(2419), 1, + [48689] = 3, + ACTIONS(2433), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2421), 20, + ACTIONS(2435), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112311,25 +114015,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49104] = 9, - ACTIONS(2568), 1, + [48719] = 9, + ACTIONS(2582), 1, anon_sym_COLON, - ACTIONS(3425), 1, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3427), 1, + ACTIONS(3441), 1, anon_sym_BANG, - ACTIONS(3429), 1, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3431), 1, + ACTIONS(3445), 1, anon_sym_LT2, - STATE(1364), 1, + STATE(1366), 1, sym_type_arguments, - STATE(1382), 1, + STATE(1388), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 12, + ACTIONS(2578), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112342,39 +114046,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49144] = 10, - ACTIONS(3431), 1, + [48759] = 10, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3435), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, + ACTIONS(3451), 1, anon_sym_LBRACE, - ACTIONS(3441), 1, + ACTIONS(3455), 1, anon_sym_COLON_COLON, - ACTIONS(3445), 1, + ACTIONS(3459), 1, anon_sym_AT, - STATE(1364), 1, + STATE(1366), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3439), 2, + ACTIONS(3453), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3443), 2, + ACTIONS(3457), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3433), 9, + ACTIONS(3447), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [48801] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2610), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2614), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2616), 14, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49186] = 4, + [48830] = 4, ACTIONS(2632), 1, anon_sym_COLON, ACTIONS(3), 2, @@ -112399,16 +114128,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49215] = 4, - ACTIONS(2600), 1, + [48859] = 4, + ACTIONS(2604), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 2, + ACTIONS(2608), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2598), 15, + ACTIONS(2602), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112424,52 +114153,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49244] = 8, - ACTIONS(2578), 1, + [48888] = 4, + ACTIONS(2612), 1, anon_sym_COLON, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_COLON_COLON, - ACTIONS(3431), 1, - anon_sym_LT2, - STATE(1364), 1, - sym_type_arguments, - STATE(1382), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2576), 12, + ACTIONS(2616), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2610), 15, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [49281] = 8, - ACTIONS(2582), 1, + [48917] = 8, + ACTIONS(2596), 1, anon_sym_COLON, - ACTIONS(3425), 1, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3429), 1, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3431), 1, + ACTIONS(3445), 1, anon_sym_LT2, - STATE(1364), 1, + STATE(1366), 1, sym_type_arguments, - STATE(1382), 1, + STATE(1388), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 12, + ACTIONS(2594), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112482,32 +114207,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49318] = 4, + [48954] = 4, + ACTIONS(2650), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2622), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2624), 14, + ACTIONS(2654), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2648), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [49347] = 4, + [48983] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -112532,17 +114257,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49376] = 4, + [49012] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 2, + ACTIONS(2648), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2614), 2, + ACTIONS(2652), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2616), 14, + ACTIONS(2654), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112557,42 +114282,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49405] = 4, - ACTIONS(2620), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2624), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2618), 15, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [49434] = 4, + [49041] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 2, + ACTIONS(2602), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2602), 2, + ACTIONS(2606), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2604), 14, + ACTIONS(2608), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112607,50 +114307,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49463] = 4, - ACTIONS(2612), 1, + [49070] = 8, + ACTIONS(2592), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2616), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2610), 15, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [49492] = 6, - ACTIONS(3425), 1, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3445), 1, anon_sym_LT2, - STATE(1358), 1, + STATE(1366), 1, sym_type_arguments, - STATE(1383), 1, + STATE(1388), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 13, + ACTIONS(2590), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -112658,19 +114336,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49524] = 6, - ACTIONS(3425), 1, + [49107] = 6, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3445), 1, anon_sym_LT2, - STATE(1358), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1383), 1, + STATE(1387), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 13, + ACTIONS(2622), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112684,113 +114362,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49556] = 17, - ACTIONS(3449), 1, + [49139] = 17, + ACTIONS(3463), 1, anon_sym_const, - ACTIONS(3451), 1, + ACTIONS(3465), 1, anon_sym_enum, - ACTIONS(3453), 1, + ACTIONS(3467), 1, anon_sym_fn, - ACTIONS(3455), 1, + ACTIONS(3469), 1, anon_sym_mod, - ACTIONS(3457), 1, + ACTIONS(3471), 1, anon_sym_static, - ACTIONS(3459), 1, + ACTIONS(3473), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(3475), 1, anon_sym_trait, - ACTIONS(3463), 1, + ACTIONS(3477), 1, anon_sym_type, - ACTIONS(3465), 1, + ACTIONS(3479), 1, anon_sym_union, - ACTIONS(3467), 1, + ACTIONS(3481), 1, anon_sym_unsafe, - ACTIONS(3469), 1, + ACTIONS(3483), 1, anon_sym_use, - ACTIONS(3471), 1, + ACTIONS(3485), 1, anon_sym_extern, - STATE(1528), 1, + STATE(1532), 1, sym_extern_modifier, - STATE(1575), 1, + STATE(1563), 1, aux_sym_function_modifiers_repeat1, - STATE(2397), 1, + STATE(2463), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3461), 2, anon_sym_async, anon_sym_default, - [49610] = 17, - ACTIONS(3473), 1, + [49193] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2652), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2654), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + [49219] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2634), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2636), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + [49245] = 17, + ACTIONS(3487), 1, anon_sym_const, - ACTIONS(3475), 1, + ACTIONS(3489), 1, anon_sym_enum, - ACTIONS(3477), 1, + ACTIONS(3491), 1, anon_sym_fn, - ACTIONS(3479), 1, + ACTIONS(3493), 1, anon_sym_mod, - ACTIONS(3481), 1, + ACTIONS(3495), 1, anon_sym_static, - ACTIONS(3483), 1, + ACTIONS(3497), 1, anon_sym_struct, - ACTIONS(3485), 1, + ACTIONS(3499), 1, anon_sym_trait, - ACTIONS(3487), 1, + ACTIONS(3501), 1, anon_sym_type, - ACTIONS(3489), 1, + ACTIONS(3503), 1, anon_sym_union, - ACTIONS(3491), 1, + ACTIONS(3505), 1, anon_sym_unsafe, - ACTIONS(3493), 1, + ACTIONS(3507), 1, anon_sym_use, - ACTIONS(3495), 1, + ACTIONS(3509), 1, anon_sym_extern, - STATE(1513), 1, + STATE(1512), 1, sym_extern_modifier, - STATE(1575), 1, + STATE(1563), 1, aux_sym_function_modifiers_repeat1, - STATE(2556), 1, + STATE(2572), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3447), 2, - anon_sym_async, - anon_sym_default, - [49664] = 6, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_LT2, - STATE(1358), 1, - sym_type_arguments, - STATE(1383), 1, - sym_parameters, + sym_line_comment, + ACTIONS(3461), 2, + anon_sym_async, + anon_sym_default, + [49299] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 13, + ACTIONS(2614), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2616), 15, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [49696] = 2, + [49325] = 6, + ACTIONS(3439), 1, + anon_sym_LPAREN, + ACTIONS(3445), 1, + anon_sym_LT2, + STATE(1364), 1, + sym_type_arguments, + STATE(1387), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 16, + ACTIONS(2618), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112798,40 +114526,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, anon_sym_PIPE, - [49719] = 3, - ACTIONS(3497), 1, + [49357] = 6, + ACTIONS(3439), 1, anon_sym_LPAREN, + ACTIONS(3445), 1, + anon_sym_LT2, + STATE(1364), 1, + sym_type_arguments, + STATE(1387), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3183), 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, - [49744] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2972), 15, + ACTIONS(2598), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112844,14 +114556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - sym_mutable_specifier, anon_sym_PIPE, - sym_self, - [49766] = 2, + [49389] = 3, + ACTIONS(3511), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3191), 15, + ACTIONS(3209), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112867,18 +114579,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49788] = 3, - ACTIONS(2680), 1, - anon_sym_COLON, + [49414] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2678), 14, + ACTIONS(2602), 16, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_for, @@ -112886,78 +114598,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_COLON_COLON, + anon_sym_LT2, + anon_sym_PIPE, + [49437] = 14, + ACTIONS(2578), 1, + anon_sym_PLUS, + ACTIONS(3441), 1, + anon_sym_BANG, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3447), 1, anon_sym_PIPE, - [49812] = 3, - ACTIONS(2666), 1, + ACTIONS(3451), 1, + anon_sym_LBRACE, + ACTIONS(3453), 1, anon_sym_COLON, + ACTIONS(3459), 1, + anon_sym_AT, + ACTIONS(3513), 1, + anon_sym_LPAREN, + ACTIONS(3518), 1, + anon_sym_COLON_COLON, + STATE(1366), 1, + sym_type_arguments, + STATE(1388), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2664), 14, - anon_sym_SEMI, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3515), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [49483] = 13, + ACTIONS(3441), 1, + anon_sym_BANG, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3451), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3459), 1, + anon_sym_AT, + ACTIONS(3515), 1, anon_sym_RBRACK, + ACTIONS(3520), 1, + anon_sym_LPAREN, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, + STATE(1366), 1, + sym_type_arguments, + STATE(1388), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 2, + anon_sym_SEMI, anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3447), 2, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, anon_sym_PIPE, - [49836] = 3, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [49527] = 6, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3524), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 2, + ACTIONS(3453), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2636), 13, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3447), 9, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_as, anon_sym_if, - anon_sym_BANG, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49860] = 3, + [49557] = 13, + ACTIONS(3441), 1, + anon_sym_BANG, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3447), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_LBRACE, + ACTIONS(3453), 1, + anon_sym_COLON, + ACTIONS(3459), 1, + anon_sym_AT, + ACTIONS(3526), 1, + anon_sym_LPAREN, + ACTIONS(3528), 1, + anon_sym_COLON_COLON, + STATE(1366), 1, + sym_type_arguments, + STATE(1388), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 2, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2578), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [49601] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2974), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, anon_sym_EQ, - ACTIONS(2604), 13, + anon_sym_COMMA, + anon_sym_GT, + sym_mutable_specifier, + anon_sym_PIPE, + sym_self, + [49623] = 3, + ACTIONS(2744), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2742), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_PLUS, anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_COLON_COLON, - anon_sym_in, anon_sym_PIPE, - [49884] = 3, - ACTIONS(3499), 1, + [49647] = 3, + ACTIONS(3530), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3187), 14, + ACTIONS(3211), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112972,13 +114780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [49908] = 3, - ACTIONS(2738), 1, + [49671] = 3, + ACTIONS(2734), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2736), 14, + ACTIONS(2732), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112993,44 +114801,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [49932] = 13, - ACTIONS(3427), 1, - anon_sym_BANG, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3437), 1, - anon_sym_LBRACE, - ACTIONS(3445), 1, - anon_sym_AT, - ACTIONS(3501), 1, - anon_sym_LPAREN, - ACTIONS(3503), 1, - anon_sym_RBRACK, - ACTIONS(3506), 1, + [49695] = 3, + ACTIONS(2788), 1, anon_sym_COLON_COLON, - STATE(1364), 1, - sym_type_arguments, - STATE(1382), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3433), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49976] = 3, - ACTIONS(2662), 1, + ACTIONS(3211), 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, + [49719] = 3, + ACTIONS(2776), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2660), 14, + ACTIONS(2774), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113045,34 +114843,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [50000] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2622), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2624), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [50024] = 3, - ACTIONS(2774), 1, - anon_sym_COLON_COLON, + [49743] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3187), 14, + ACTIONS(3215), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -113087,43 +114862,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [50048] = 14, - ACTIONS(2564), 1, - anon_sym_PLUS, - ACTIONS(3427), 1, - anon_sym_BANG, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3433), 1, - anon_sym_PIPE, - ACTIONS(3437), 1, - anon_sym_LBRACE, - ACTIONS(3439), 1, - anon_sym_COLON, - ACTIONS(3445), 1, - anon_sym_AT, - ACTIONS(3508), 1, - anon_sym_LPAREN, - ACTIONS(3510), 1, - anon_sym_COLON_COLON, - STATE(1364), 1, - sym_type_arguments, - STATE(1382), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3503), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [50094] = 2, + sym_identifier, + [49765] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3179), 15, + ACTIONS(3191), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -113139,35 +114883,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [50116] = 6, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3512), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3439), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3433), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50146] = 2, + [49787] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3209), 15, + ACTIONS(3203), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -113183,44 +114903,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [50168] = 13, - ACTIONS(3427), 1, - anon_sym_BANG, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3433), 1, - anon_sym_PIPE, - ACTIONS(3437), 1, - anon_sym_LBRACE, - ACTIONS(3439), 1, + [49809] = 3, + ACTIONS(2718), 1, anon_sym_COLON, - ACTIONS(3445), 1, - anon_sym_AT, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3516), 1, - anon_sym_COLON_COLON, - STATE(1364), 1, - sym_type_arguments, - STATE(1382), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2564), 3, + ACTIONS(2716), 14, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [50212] = 3, - ACTIONS(2710), 1, + anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [49833] = 3, + ACTIONS(2722), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 14, + ACTIONS(2720), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113235,19 +114945,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [50236] = 5, - ACTIONS(3522), 1, + [49857] = 3, + ACTIONS(3532), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2752), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [49880] = 3, + ACTIONS(3534), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2758), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [49903] = 5, + ACTIONS(3540), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3520), 2, + ACTIONS(3538), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3524), 2, + ACTIONS(3542), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3518), 9, + ACTIONS(3536), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113257,11 +115007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50263] = 2, + [49930] = 3, + ACTIONS(3544), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 14, + ACTIONS(2746), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113273,23 +115025,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50284] = 4, - ACTIONS(2608), 1, - anon_sym_COLON, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, + [49953] = 3, + ACTIONS(3546), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 12, + ACTIONS(2694), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -113297,42 +115047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50309] = 14, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3427), 1, - anon_sym_BANG, - ACTIONS(3429), 1, - anon_sym_COLON_COLON, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3528), 1, - anon_sym_COLON, - ACTIONS(3530), 1, - anon_sym_EQ, - ACTIONS(3532), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, - anon_sym_GT, - STATE(1364), 1, - sym_type_arguments, - STATE(1382), 1, - sym_parameters, - STATE(2038), 1, - sym_trait_bounds, - STATE(2044), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2564), 2, - anon_sym_PLUS, - anon_sym_as, - [50354] = 2, + [49976] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2758), 14, + ACTIONS(2724), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113347,13 +115066,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50375] = 3, - ACTIONS(3536), 1, + [49997] = 3, + ACTIONS(3548), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2690), 13, + ACTIONS(2736), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113367,36 +115086,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50398] = 4, - ACTIONS(2608), 1, - anon_sym_COLON, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, + [50020] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 12, + ACTIONS(2706), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50423] = 4, - ACTIONS(2628), 1, + [50041] = 4, + ACTIONS(2600), 1, anon_sym_COLON, - ACTIONS(3526), 1, + ACTIONS(3550), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 12, + ACTIONS(2598), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113409,60 +115126,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50448] = 4, - ACTIONS(2586), 1, - anon_sym_COLON, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, + [50066] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 12, + ACTIONS(2764), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50473] = 3, - ACTIONS(3540), 1, - anon_sym_DASH_GT, + [50087] = 3, + ACTIONS(2361), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2696), 13, + ACTIONS(2363), 13, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50496] = 3, - ACTIONS(3542), 1, - anon_sym_DASH_GT, + [50110] = 4, + ACTIONS(2600), 1, + anon_sym_COLON, + ACTIONS(3552), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 13, + ACTIONS(2598), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -113470,19 +115186,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50519] = 3, - ACTIONS(3544), 1, - anon_sym_DASH_GT, + [50135] = 4, + ACTIONS(2600), 1, + anon_sym_COLON, + ACTIONS(3213), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 13, + ACTIONS(2598), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -113490,11 +115207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50542] = 2, + [50160] = 3, + ACTIONS(3554), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 14, + ACTIONS(2778), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113506,16 +115225,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50563] = 3, - ACTIONS(3546), 1, + [50183] = 3, + ACTIONS(3556), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2668), 13, + ACTIONS(2768), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113529,54 +115247,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50586] = 3, - ACTIONS(2403), 1, - anon_sym_EQ, + [50206] = 4, + ACTIONS(2624), 1, + anon_sym_COLON, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 13, + ACTIONS(2622), 12, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50609] = 2, + [50231] = 14, + ACTIONS(3439), 1, + anon_sym_LPAREN, + ACTIONS(3441), 1, + anon_sym_BANG, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3558), 1, + anon_sym_COLON, + ACTIONS(3560), 1, + anon_sym_EQ, + ACTIONS(3562), 1, + anon_sym_COMMA, + ACTIONS(3564), 1, + anon_sym_GT, + STATE(1366), 1, + sym_type_arguments, + STATE(1388), 1, + sym_parameters, + STATE(1963), 1, + aux_sym_type_parameters_repeat1, + STATE(1965), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 2, + anon_sym_PLUS, + anon_sym_as, + [50276] = 4, + ACTIONS(2620), 1, + anon_sym_COLON, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 14, + ACTIONS(2618), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50630] = 4, - ACTIONS(3550), 1, + [50301] = 4, + ACTIONS(3568), 1, anon_sym_pat, - STATE(567), 1, + STATE(573), 1, sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3548), 12, + ACTIONS(3566), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -113589,13 +115341,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [50655] = 3, - ACTIONS(3552), 1, - anon_sym_DASH_GT, + [50326] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2740), 13, + ACTIONS(2784), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113607,13 +115357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50678] = 2, + [50347] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2674), 14, + ACTIONS(2728), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113628,13 +115379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50699] = 3, - ACTIONS(3554), 1, - anon_sym_DASH_GT, + [50368] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2752), 13, + ACTIONS(2966), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113648,32 +115397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50722] = 4, - ACTIONS(2608), 1, - anon_sym_COLON, - ACTIONS(3195), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2606), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50747] = 2, + [50388] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2800), 13, + ACTIONS(3041), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113687,11 +115415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50767] = 2, + [50408] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2910), 13, + ACTIONS(2622), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113705,11 +115433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50787] = 2, + [50428] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 13, + ACTIONS(2948), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113723,11 +115451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50807] = 2, + [50448] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2936), 13, + ACTIONS(2978), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113741,47 +115469,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50827] = 2, + [50468] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(620), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2606), 2, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50847] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2584), 13, + ACTIONS(2608), 11, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [50867] = 2, + [50490] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2890), 13, + ACTIONS(2978), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113795,11 +115506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50887] = 2, + [50510] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2906), 13, + ACTIONS(2982), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113813,11 +115524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50907] = 2, + [50530] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2980), 13, + ACTIONS(668), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113831,30 +115542,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50927] = 3, + [50550] = 3, + ACTIONS(3572), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2616), 11, + ACTIONS(3570), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, - anon_sym_BANG, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50949] = 2, + [50572] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(574), 13, + ACTIONS(2618), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113868,11 +115579,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50969] = 2, + [50592] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2940), 13, + ACTIONS(2894), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113886,11 +115597,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50989] = 2, + [50612] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2788), 13, + ACTIONS(2994), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113904,11 +115615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51009] = 2, + [50632] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2868), 13, + ACTIONS(2962), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113922,11 +115633,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51029] = 2, + [50652] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2792), 13, + ACTIONS(2952), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113940,11 +115651,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51049] = 2, + [50672] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2804), 13, + ACTIONS(2818), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113958,11 +115669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51069] = 2, + [50692] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 13, + ACTIONS(3045), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113976,30 +115687,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51089] = 3, - ACTIONS(3558), 1, - anon_sym_EQ, + [50712] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3556), 12, + ACTIONS(2944), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [51111] = 2, + [50732] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2796), 13, + ACTIONS(2998), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114013,11 +115723,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51131] = 2, + [50752] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(676), 13, + ACTIONS(3053), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114031,11 +115741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51151] = 2, + [50772] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(652), 13, + ACTIONS(3057), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114049,11 +115759,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51171] = 2, + [50792] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2808), 13, + ACTIONS(3049), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114067,11 +115777,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51191] = 2, + [50812] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2956), 13, + ACTIONS(3018), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114085,11 +115795,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51211] = 2, + [50832] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2948), 13, + ACTIONS(3025), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114103,11 +115813,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51231] = 2, + [50852] = 3, + ACTIONS(3576), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2808), 13, + ACTIONS(3574), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50874] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2956), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114121,11 +115850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51251] = 2, + [50894] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2914), 13, + ACTIONS(2598), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114139,11 +115868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51271] = 2, + [50914] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2932), 13, + ACTIONS(656), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114157,13 +115886,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51291] = 3, - ACTIONS(3562), 1, + [50934] = 4, + ACTIONS(3453), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3560), 12, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3447), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114172,15 +115904,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51313] = 2, + [50958] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2840), 13, + ACTIONS(590), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114194,31 +115924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51333] = 4, - ACTIONS(3439), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3433), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51357] = 2, + [50978] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2922), 13, + ACTIONS(628), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114232,311 +115942,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51377] = 5, - ACTIONS(2622), 1, - anon_sym_COLON, - ACTIONS(3564), 1, - anon_sym_LPAREN, + [50998] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 5, - anon_sym_RPAREN, + ACTIONS(3578), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2610), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2624), 5, + ACTIONS(2616), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51402] = 3, - ACTIONS(526), 1, - anon_sym_EQ, + [51021] = 4, + ACTIONS(3585), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(524), 11, + ACTIONS(3583), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3581), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51423] = 5, - ACTIONS(2634), 1, - anon_sym_COLON, - ACTIONS(3567), 1, - anon_sym_LPAREN, + [51044] = 4, + ACTIONS(3591), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 5, + ACTIONS(3589), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3587), 9, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2636), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_in, anon_sym_PIPE, - [51448] = 10, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_LBRACE, - ACTIONS(3441), 1, + [51067] = 4, + ACTIONS(3530), 1, anon_sym_COLON_COLON, - ACTIONS(3445), 1, - anon_sym_AT, - ACTIONS(3570), 1, - anon_sym_BANG, - STATE(1364), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3433), 3, + ACTIONS(3583), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3581), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_if, + anon_sym_COMMA, + anon_sym_in, anon_sym_PIPE, - [51483] = 5, - ACTIONS(2614), 1, + [51090] = 5, + ACTIONS(2634), 1, anon_sym_COLON, - ACTIONS(3572), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 5, - anon_sym_RPAREN, + ACTIONS(2630), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2616), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51508] = 5, - ACTIONS(2602), 1, - anon_sym_COLON, - ACTIONS(3575), 1, + ACTIONS(3593), 3, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2598), 5, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2604), 5, + ACTIONS(2636), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51533] = 4, + [51115] = 5, + ACTIONS(2614), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3575), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2598), 4, - anon_sym_SEMI, + ACTIONS(2610), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2604), 6, - anon_sym_BANG, + ACTIONS(3578), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2616), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51556] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3572), 2, + [51140] = 10, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2610), 4, - anon_sym_SEMI, + ACTIONS(3451), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2616), 6, - anon_sym_BANG, - anon_sym_COMMA, + ACTIONS(3455), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51579] = 4, + ACTIONS(3459), 1, + anon_sym_AT, + ACTIONS(3596), 1, + anon_sym_BANG, + STATE(1366), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3567), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2630), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2636), 6, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(3457), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3447), 3, + anon_sym_EQ_GT, + anon_sym_if, anon_sym_PIPE, - [51602] = 4, + [51175] = 5, + ACTIONS(2652), 1, + anon_sym_COLON, + ACTIONS(3598), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3564), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2618), 4, - anon_sym_SEMI, + ACTIONS(2648), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2624), 6, + ACTIONS(2654), 5, anon_sym_BANG, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51625] = 5, - ACTIONS(2602), 1, + [51200] = 5, + ACTIONS(2606), 1, anon_sym_COLON, + ACTIONS(3601), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 3, + ACTIONS(2602), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3575), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2604), 5, + anon_sym_LT2, + ACTIONS(2608), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51650] = 3, - ACTIONS(546), 1, - anon_sym_EQ, + [51225] = 5, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(3593), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(544), 11, - anon_sym_SEMI, + ACTIONS(2630), 5, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(2636), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51671] = 3, - ACTIONS(552), 1, - anon_sym_EQ, + [51250] = 4, + ACTIONS(3604), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(550), 11, + ACTIONS(3583), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3581), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51692] = 5, - ACTIONS(2614), 1, + [51273] = 5, + ACTIONS(2606), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 3, + ACTIONS(2602), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3572), 3, + ACTIONS(3601), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2616), 5, + ACTIONS(2608), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51717] = 5, - ACTIONS(2634), 1, + [51298] = 5, + ACTIONS(2652), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 3, + ACTIONS(2648), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3567), 3, + ACTIONS(3598), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2636), 5, + ACTIONS(2654), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51323] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3593), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2630), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2636), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51742] = 4, - ACTIONS(3582), 1, + [51346] = 3, + ACTIONS(552), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(550), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_in, + anon_sym_PIPE, + [51367] = 4, + ACTIONS(3604), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3580), 2, + ACTIONS(3608), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3578), 9, + ACTIONS(3606), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114546,55 +116258,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51765] = 5, - ACTIONS(2622), 1, - anon_sym_COLON, + [51390] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 3, + ACTIONS(3601), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2602), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3564), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2624), 5, + ACTIONS(2608), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51790] = 4, - ACTIONS(3588), 1, - anon_sym_COLON_COLON, + [51413] = 3, + ACTIONS(538), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3586), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3584), 9, + ACTIONS(536), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51813] = 4, - ACTIONS(3499), 1, + [51434] = 4, + ACTIONS(3530), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3586), 2, + ACTIONS(3608), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3584), 9, + ACTIONS(3606), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114604,35 +116314,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51836] = 4, - ACTIONS(3590), 1, - anon_sym_COLON_COLON, + [51457] = 3, + ACTIONS(556), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3586), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3584), 9, + ACTIONS(554), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51859] = 4, - ACTIONS(3588), 1, + [51478] = 4, + ACTIONS(3585), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3594), 2, + ACTIONS(3608), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3592), 9, + ACTIONS(3606), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114642,16 +116351,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51882] = 4, - ACTIONS(3582), 1, + [51501] = 5, + ACTIONS(2614), 1, + anon_sym_COLON, + ACTIONS(3578), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2610), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2616), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51526] = 4, + ACTIONS(3591), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3598), 2, + ACTIONS(3612), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3596), 9, + ACTIONS(3610), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114661,74 +116390,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51905] = 4, - ACTIONS(3499), 1, - anon_sym_COLON_COLON, + [51549] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3594), 2, - anon_sym_COLON, + ACTIONS(3598), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2648), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2654), 6, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51572] = 3, + ACTIONS(3616), 1, anon_sym_EQ, - ACTIONS(3592), 9, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3614), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51928] = 4, - ACTIONS(3590), 1, - anon_sym_COLON_COLON, + [51592] = 3, + ACTIONS(3620), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3594), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3592), 9, + ACTIONS(3618), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51951] = 9, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3427), 1, - anon_sym_BANG, - ACTIONS(3429), 1, - anon_sym_COLON_COLON, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3600), 1, - anon_sym_for, - STATE(1364), 1, - sym_type_arguments, - STATE(1382), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2564), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [51983] = 3, - ACTIONS(3604), 1, + [51612] = 3, + ACTIONS(3624), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3602), 10, + ACTIONS(3622), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114739,13 +116460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52003] = 3, - ACTIONS(3586), 1, + [51632] = 3, + ACTIONS(3628), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3584), 10, + ACTIONS(3626), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114756,36 +116477,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52023] = 9, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3427), 1, - anon_sym_BANG, - ACTIONS(3429), 1, - anon_sym_COLON_COLON, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3606), 1, - anon_sym_for, - STATE(1364), 1, - sym_type_arguments, - STATE(1382), 1, - sym_parameters, + [51652] = 3, + ACTIONS(3608), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 4, + ACTIONS(3606), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52055] = 3, - ACTIONS(3610), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [51672] = 3, + ACTIONS(3453), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3608), 10, + ACTIONS(3447), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114796,59 +116511,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52075] = 9, - ACTIONS(3425), 1, + [51692] = 9, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3427), 1, + ACTIONS(3441), 1, anon_sym_BANG, - ACTIONS(3429), 1, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3431), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3612), 1, + ACTIONS(3630), 1, anon_sym_for, - STATE(1364), 1, + STATE(1366), 1, sym_type_arguments, - STATE(1382), 1, + STATE(1388), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 4, + ACTIONS(2578), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52107] = 9, - ACTIONS(3425), 1, + [51724] = 9, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3427), 1, + ACTIONS(3441), 1, anon_sym_BANG, - ACTIONS(3429), 1, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3431), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3614), 1, + ACTIONS(3632), 1, anon_sym_for, - STATE(1364), 1, + STATE(1366), 1, sym_type_arguments, - STATE(1382), 1, + STATE(1388), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 4, + ACTIONS(2578), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52139] = 3, - ACTIONS(3618), 1, + [51756] = 3, + ACTIONS(3636), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 10, + ACTIONS(3634), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114859,13 +116574,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52159] = 3, - ACTIONS(3622), 1, + [51776] = 3, + ACTIONS(3640), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3620), 10, + ACTIONS(3638), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114876,13 +116591,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52179] = 3, - ACTIONS(3626), 1, + [51796] = 3, + ACTIONS(3644), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3624), 10, + ACTIONS(3642), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114893,13 +116608,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52199] = 3, - ACTIONS(3630), 1, + [51816] = 3, + ACTIONS(3648), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3628), 10, + ACTIONS(3646), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114910,13 +116625,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52219] = 3, - ACTIONS(3634), 1, + [51836] = 3, + ACTIONS(3652), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3632), 10, + ACTIONS(3650), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114927,36 +116642,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52239] = 9, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3427), 1, - anon_sym_BANG, - ACTIONS(3429), 1, - anon_sym_COLON_COLON, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3636), 1, - anon_sym_for, - STATE(1364), 1, - sym_type_arguments, - STATE(1382), 1, - sym_parameters, + [51856] = 3, + ACTIONS(3656), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 4, + ACTIONS(3654), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52271] = 3, - ACTIONS(3594), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [51876] = 3, + ACTIONS(3660), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3592), 10, + ACTIONS(3658), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114967,13 +116676,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52291] = 3, - ACTIONS(3640), 1, + [51896] = 6, + ACTIONS(3662), 1, + anon_sym_COLON, + ACTIONS(3664), 1, + anon_sym_BANG, + ACTIONS(3666), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3542), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2642), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51922] = 3, + ACTIONS(3670), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3638), 10, + ACTIONS(3668), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114984,13 +116713,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52311] = 3, - ACTIONS(3644), 1, + [51942] = 6, + ACTIONS(3662), 1, + anon_sym_COLON, + ACTIONS(3664), 1, + anon_sym_BANG, + ACTIONS(3672), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3542), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2642), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51968] = 3, + ACTIONS(580), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3642), 10, + ACTIONS(578), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115001,36 +116750,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52331] = 9, - ACTIONS(3425), 1, + [51988] = 9, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3427), 1, + ACTIONS(3441), 1, anon_sym_BANG, - ACTIONS(3429), 1, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3431), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3646), 1, + ACTIONS(3674), 1, anon_sym_for, - STATE(1364), 1, + STATE(1366), 1, sym_type_arguments, - STATE(1382), 1, + STATE(1388), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 4, + ACTIONS(2578), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52363] = 3, - ACTIONS(3650), 1, + [52020] = 3, + ACTIONS(3678), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3648), 10, + ACTIONS(3676), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115041,33 +116790,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52383] = 6, - ACTIONS(3652), 1, - anon_sym_COLON, - ACTIONS(3654), 1, + [52040] = 9, + ACTIONS(3439), 1, + anon_sym_LPAREN, + ACTIONS(3441), 1, anon_sym_BANG, - ACTIONS(3656), 1, + ACTIONS(3443), 1, anon_sym_COLON_COLON, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3680), 1, + anon_sym_for, + STATE(1366), 1, + sym_type_arguments, + STATE(1388), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52409] = 3, - ACTIONS(3660), 1, + ACTIONS(2578), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52072] = 3, + ACTIONS(3684), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3658), 10, + ACTIONS(3682), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115078,13 +116830,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52429] = 3, - ACTIONS(3664), 1, + [52092] = 3, + ACTIONS(3688), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3662), 10, + ACTIONS(3686), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115095,30 +116847,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52449] = 3, - ACTIONS(3668), 1, - anon_sym_EQ, + [52112] = 9, + ACTIONS(3439), 1, + anon_sym_LPAREN, + ACTIONS(3441), 1, + anon_sym_BANG, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3690), 1, + anon_sym_for, + STATE(1366), 1, + sym_type_arguments, + STATE(1388), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3666), 10, + ACTIONS(2578), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [52469] = 3, - ACTIONS(3672), 1, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52144] = 3, + ACTIONS(3694), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3670), 10, + ACTIONS(3692), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115129,17 +116887,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52489] = 5, + [52164] = 9, + ACTIONS(3439), 1, + anon_sym_LPAREN, + ACTIONS(3441), 1, + anon_sym_BANG, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3696), 1, + anon_sym_for, + STATE(1366), 1, + sym_type_arguments, + STATE(1388), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52196] = 5, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3676), 1, + ACTIONS(3700), 1, sym_crate, - STATE(1574), 1, + STATE(1556), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3674), 8, + ACTIONS(3698), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -115148,13 +116929,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52513] = 3, - ACTIONS(3439), 1, + [52220] = 3, + ACTIONS(3704), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3433), 10, + ACTIONS(3702), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115165,13 +116946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52533] = 3, - ACTIONS(3680), 1, + [52240] = 3, + ACTIONS(3708), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3678), 10, + ACTIONS(3706), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115182,33 +116963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52553] = 6, - ACTIONS(3652), 1, - anon_sym_COLON, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3682), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52579] = 3, - ACTIONS(3686), 1, + [52260] = 3, + ACTIONS(3712), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3684), 10, + ACTIONS(3710), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115219,13 +116980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52599] = 3, - ACTIONS(3690), 1, + [52280] = 3, + ACTIONS(3716), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3688), 10, + ACTIONS(3714), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115236,34 +116997,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52619] = 3, - ACTIONS(580), 1, - anon_sym_EQ, + [52300] = 9, + ACTIONS(3439), 1, + anon_sym_LPAREN, + ACTIONS(3441), 1, + anon_sym_BANG, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3718), 1, + anon_sym_for, + STATE(1366), 1, + sym_type_arguments, + STATE(1388), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(578), 10, + ACTIONS(2578), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [52639] = 5, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52332] = 5, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3692), 1, + ACTIONS(3720), 1, sym_crate, - STATE(1574), 1, + STATE(1556), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3674), 8, + ACTIONS(3698), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -115272,13 +117039,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52663] = 3, - ACTIONS(3696), 1, + [52356] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3722), 1, + sym_crate, + STATE(1556), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3698), 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, + [52380] = 3, + ACTIONS(3726), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3694), 10, + ACTIONS(3724), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115289,13 +117075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52683] = 3, - ACTIONS(3700), 1, + [52400] = 3, + ACTIONS(3583), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3698), 10, + ACTIONS(3581), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115306,13 +117092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52703] = 3, - ACTIONS(3704), 1, + [52420] = 3, + ACTIONS(3730), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3702), 10, + ACTIONS(3728), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115323,53 +117109,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52723] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3706), 1, - sym_crate, - STATE(1574), 1, - sym_string_literal, + [52440] = 9, + ACTIONS(3439), 1, + anon_sym_LPAREN, + ACTIONS(3441), 1, + anon_sym_BANG, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3732), 1, + anon_sym_for, + STATE(1366), 1, + sym_type_arguments, + STATE(1388), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3674), 8, + ACTIONS(2578), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52747] = 3, - ACTIONS(3710), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3708), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [52767] = 5, + anon_sym_PLUS, + anon_sym_where, + [52472] = 5, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3712), 1, + ACTIONS(3734), 1, sym_crate, - STATE(1574), 1, + STATE(1556), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3674), 8, + ACTIONS(3698), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -115378,36 +117151,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52791] = 9, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3427), 1, - anon_sym_BANG, - ACTIONS(3429), 1, - anon_sym_COLON_COLON, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3714), 1, - anon_sym_for, - STATE(1364), 1, - sym_type_arguments, - STATE(1382), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2564), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52823] = 3, - ACTIONS(3718), 1, + [52496] = 3, + ACTIONS(3738), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 10, + ACTIONS(3736), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115418,13 +117168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52843] = 3, - ACTIONS(3722), 1, + [52516] = 3, + ACTIONS(3742), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3720), 10, + ACTIONS(3740), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115435,13 +117185,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52863] = 3, - ACTIONS(3726), 1, + [52536] = 3, + ACTIONS(3746), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3724), 10, + ACTIONS(3744), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115452,13 +117202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52883] = 3, - ACTIONS(3730), 1, + [52556] = 3, + ACTIONS(3750), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3728), 10, + ACTIONS(3748), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115469,13 +117219,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52903] = 3, - ACTIONS(3734), 1, + [52576] = 3, + ACTIONS(3754), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3732), 10, + ACTIONS(3752), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115486,261 +117236,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52923] = 3, - ACTIONS(3738), 1, - anon_sym_EQ, + [52596] = 6, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + STATE(2155), 1, + sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3736), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [52943] = 9, - ACTIONS(3425), 1, + ACTIONS(3756), 2, + anon_sym_true, + anon_sym_false, + STATE(1068), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [52621] = 5, + ACTIONS(3664), 1, + anon_sym_BANG, + ACTIONS(3758), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3542), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2642), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52644] = 7, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3427), 1, - anon_sym_BANG, - ACTIONS(3429), 1, - anon_sym_COLON_COLON, - ACTIONS(3431), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3740), 1, - anon_sym_for, + ACTIONS(3760), 1, + anon_sym_LBRACE, STATE(1364), 1, sym_type_arguments, - STATE(1382), 1, + STATE(1387), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 4, + ACTIONS(2598), 5, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_where, - [52975] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2323), 1, + anon_sym_COMMA, + [52671] = 8, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3742), 1, + ACTIONS(3762), 1, sym_identifier, - ACTIONS(3744), 1, + ACTIONS(3764), 1, anon_sym_RBRACE, - ACTIONS(3746), 1, + ACTIONS(3766), 1, anon_sym_COMMA, - ACTIONS(3748), 1, - sym_crate, - STATE(2066), 1, - sym_enum_variant, - STATE(2436), 1, - sym_visibility_modifier, + ACTIONS(3768), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1586), 2, + STATE(1885), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53008] = 5, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3750), 1, - anon_sym_COLON_COLON, + STATE(1935), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [52700] = 6, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + STATE(2526), 1, + sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53031] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3461), 1, - anon_sym_trait, - ACTIONS(3752), 1, - anon_sym_impl, - STATE(163), 1, - sym_block, + ACTIONS(3756), 2, + anon_sym_true, + anon_sym_false, + STATE(1068), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [52725] = 6, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + STATE(2558), 1, + sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53056] = 5, - ACTIONS(3654), 1, + ACTIONS(3756), 2, + anon_sym_true, + anon_sym_false, + STATE(1068), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [52750] = 5, + ACTIONS(3664), 1, anon_sym_BANG, - ACTIONS(3656), 1, + ACTIONS(3672), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, + ACTIONS(3542), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2592), 6, + ACTIONS(2642), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53079] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3748), 1, - sym_crate, - ACTIONS(3754), 1, - sym_identifier, - ACTIONS(3756), 1, - anon_sym_RBRACE, - ACTIONS(3758), 1, - anon_sym_COMMA, - STATE(2104), 1, - sym_field_declaration, - STATE(2378), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1570), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53112] = 9, - ACTIONS(3425), 1, + [52773] = 9, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3427), 1, + ACTIONS(3441), 1, anon_sym_BANG, - ACTIONS(3429), 1, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3431), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3760), 1, + ACTIONS(3770), 1, anon_sym_EQ, - STATE(1382), 1, + STATE(1388), 1, sym_parameters, - STATE(1754), 1, + STATE(1737), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 3, + ACTIONS(2578), 3, anon_sym_PLUS, anon_sym_COMMA, anon_sym_GT, - [53143] = 7, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3762), 1, - anon_sym_LBRACE, - STATE(1358), 1, - sym_type_arguments, - STATE(1383), 1, - sym_parameters, + [52804] = 6, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + STATE(2569), 1, + sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [53170] = 10, + ACTIONS(3756), 2, + anon_sym_true, + anon_sym_false, + STATE(1068), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [52829] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3742), 1, + ACTIONS(3772), 1, sym_identifier, - ACTIONS(3748), 1, - sym_crate, - ACTIONS(3764), 1, + ACTIONS(3774), 1, anon_sym_RBRACE, - ACTIONS(3766), 1, + ACTIONS(3776), 1, anon_sym_COMMA, - STATE(1910), 1, + ACTIONS(3778), 1, + sym_crate, + STATE(2082), 1, sym_enum_variant, - STATE(2436), 1, + STATE(2428), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1556), 2, + STATE(1570), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53203] = 5, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3682), 1, - anon_sym_COLON_COLON, + [52862] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3475), 1, + anon_sym_trait, + ACTIONS(3780), 1, + anon_sym_impl, + STATE(162), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2592), 6, + ACTIONS(2642), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53226] = 6, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - STATE(1916), 1, - sym__literal, + [52887] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3778), 1, + sym_crate, + ACTIONS(3782), 1, + sym_identifier, + ACTIONS(3784), 1, + anon_sym_RBRACE, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(2046), 1, + sym_field_declaration, + STATE(2422), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3768), 2, - anon_sym_true, - anon_sym_false, - STATE(1074), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [53251] = 6, + STATE(1558), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52920] = 6, ACTIONS(93), 1, aux_sym_string_literal_token1, - STATE(1915), 1, + STATE(2157), 1, sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3768), 2, + ACTIONS(3756), 2, anon_sym_true, anon_sym_false, - STATE(1074), 2, + STATE(1068), 2, sym_string_literal, sym_boolean_literal, ACTIONS(91), 4, @@ -115748,64 +117495,45 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - [53276] = 8, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3770), 1, - sym_identifier, - ACTIONS(3772), 1, - anon_sym_RBRACE, - ACTIONS(3774), 1, - anon_sym_COMMA, - ACTIONS(3776), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1857), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1925), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53305] = 10, + [52945] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3748), 1, - sym_crate, - ACTIONS(3754), 1, + ACTIONS(3772), 1, sym_identifier, ACTIONS(3778), 1, + sym_crate, + ACTIONS(3788), 1, anon_sym_RBRACE, - ACTIONS(3780), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(2081), 1, - sym_field_declaration, - STATE(2378), 1, + STATE(1951), 1, + sym_enum_variant, + STATE(2428), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1576), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53338] = 9, + [52978] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3742), 1, - sym_identifier, - ACTIONS(3748), 1, + ACTIONS(3778), 1, sym_crate, ACTIONS(3782), 1, + sym_identifier, + ACTIONS(3792), 1, anon_sym_RBRACE, - STATE(2222), 1, - sym_enum_variant, - STATE(2436), 1, + ACTIONS(3794), 1, + anon_sym_COMMA, + STATE(2120), 1, + sym_field_declaration, + STATE(2422), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, @@ -115813,1741 +117541,1775 @@ static const uint16_t ts_small_parse_table[] = { STATE(1566), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53368] = 9, + [53011] = 5, + ACTIONS(3664), 1, + anon_sym_BANG, + ACTIONS(3666), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3542), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2642), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53034] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3778), 1, sym_crate, - ACTIONS(3754), 1, + ACTIONS(3782), 1, sym_identifier, - ACTIONS(3784), 1, + ACTIONS(3796), 1, anon_sym_RBRACE, - STATE(2203), 1, + STATE(2338), 1, sym_field_declaration, - STATE(2378), 1, + STATE(2422), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1553), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53398] = 9, + [53064] = 5, + ACTIONS(3798), 1, + anon_sym_SEMI, + ACTIONS(3800), 1, + anon_sym_LBRACE, + STATE(1043), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2642), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53086] = 7, + ACTIONS(3439), 1, + anon_sym_LPAREN, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3802), 1, + anon_sym_for, + STATE(1364), 1, + sym_type_arguments, + STATE(1387), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53112] = 9, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3806), 1, + anon_sym_const, + ACTIONS(3808), 1, + anon_sym_GT, + ACTIONS(3810), 1, + sym_metavariable, + STATE(1859), 1, + sym_lifetime, + STATE(2037), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2322), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53142] = 9, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3806), 1, + anon_sym_const, + ACTIONS(3810), 1, + sym_metavariable, + ACTIONS(3812), 1, + anon_sym_GT, + STATE(1859), 1, + sym_lifetime, + STATE(2037), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2322), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53172] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3778), 1, sym_crate, - ACTIONS(3754), 1, + ACTIONS(3782), 1, sym_identifier, - ACTIONS(3786), 1, + ACTIONS(3814), 1, anon_sym_RBRACE, - STATE(2203), 1, + STATE(2338), 1, sym_field_declaration, - STATE(2378), 1, + STATE(2422), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1553), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53428] = 9, - ACTIONS(2319), 1, + [53202] = 9, + ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3788), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3790), 1, + ACTIONS(3806), 1, anon_sym_const, - ACTIONS(3792), 1, - anon_sym_GT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, sym_metavariable, - STATE(1871), 1, + ACTIONS(3816), 1, + anon_sym_GT, + STATE(1790), 1, sym_lifetime, - STATE(1919), 1, + STATE(2037), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2267), 2, + STATE(2322), 2, sym_const_parameter, sym_optional_type_parameter, - [53458] = 10, - ACTIONS(3796), 1, + [53232] = 10, + ACTIONS(3818), 1, anon_sym_SEMI, - ACTIONS(3798), 1, + ACTIONS(3820), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3822), 1, anon_sym_LBRACE, - ACTIONS(3802), 1, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3804), 1, + ACTIONS(3826), 1, anon_sym_LT, - STATE(261), 1, + STATE(373), 1, sym_field_declaration_list, - STATE(1606), 1, + STATE(1619), 1, sym_type_parameters, - STATE(2067), 1, + STATE(2031), 1, + sym_ordered_field_declaration_list, + STATE(2259), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53264] = 5, + ACTIONS(3828), 1, + anon_sym_SEMI, + ACTIONS(3830), 1, + anon_sym_LBRACE, + STATE(394), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2642), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53286] = 7, + ACTIONS(3439), 1, + anon_sym_LPAREN, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3832), 1, + anon_sym_for, + STATE(1364), 1, + sym_type_arguments, + STATE(1387), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53312] = 10, + ACTIONS(3820), 1, + anon_sym_LPAREN, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3826), 1, + anon_sym_LT, + ACTIONS(3834), 1, + anon_sym_SEMI, + ACTIONS(3836), 1, + anon_sym_LBRACE, + STATE(901), 1, + sym_field_declaration_list, + STATE(1603), 1, + sym_type_parameters, + STATE(2139), 1, sym_ordered_field_declaration_list, - STATE(2293), 1, + STATE(2170), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53490] = 9, + [53344] = 9, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3806), 1, + anon_sym_const, + ACTIONS(3810), 1, + sym_metavariable, + ACTIONS(3838), 1, + anon_sym_GT, + STATE(1859), 1, + sym_lifetime, + STATE(2037), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2322), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53374] = 9, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3806), 1, + anon_sym_const, + ACTIONS(3810), 1, + sym_metavariable, + ACTIONS(3840), 1, + anon_sym_GT, + STATE(1859), 1, + sym_lifetime, + STATE(2037), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2322), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53404] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3742), 1, + ACTIONS(3778), 1, + sym_crate, + ACTIONS(3782), 1, + sym_identifier, + ACTIONS(3842), 1, + anon_sym_RBRACE, + STATE(2338), 1, + sym_field_declaration, + STATE(2422), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1553), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53434] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3772), 1, sym_identifier, - ACTIONS(3748), 1, + ACTIONS(3778), 1, sym_crate, - ACTIONS(3806), 1, + ACTIONS(3844), 1, anon_sym_RBRACE, - STATE(2222), 1, + STATE(2223), 1, sym_enum_variant, - STATE(2436), 1, + STATE(2428), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1566), 2, + STATE(1587), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53520] = 5, - ACTIONS(3808), 1, - anon_sym_SEMI, - ACTIONS(3810), 1, + [53464] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1013), 1, - sym_declaration_list, + ACTIONS(3846), 1, + anon_sym_move, + STATE(95), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(2642), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53542] = 9, - ACTIONS(2319), 1, + [53486] = 7, + ACTIONS(3439), 1, + anon_sym_LPAREN, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3848), 1, + anon_sym_for, + STATE(1364), 1, + sym_type_arguments, + STATE(1387), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53512] = 9, + ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3788), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3790), 1, + ACTIONS(3806), 1, anon_sym_const, - ACTIONS(3794), 1, + ACTIONS(3810), 1, sym_metavariable, - ACTIONS(3812), 1, + ACTIONS(3850), 1, anon_sym_GT, - STATE(1865), 1, + STATE(1859), 1, sym_lifetime, - STATE(1919), 1, + STATE(2037), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2267), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53572] = 7, - ACTIONS(2323), 1, + STATE(2322), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53542] = 10, + ACTIONS(3820), 1, + anon_sym_LPAREN, + ACTIONS(3822), 1, + anon_sym_LBRACE, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3826), 1, + anon_sym_LT, + ACTIONS(3852), 1, + anon_sym_SEMI, + STATE(326), 1, + sym_field_declaration_list, + STATE(1600), 1, + sym_type_parameters, + STATE(1909), 1, + sym_ordered_field_declaration_list, + STATE(2243), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53574] = 7, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3770), 1, + ACTIONS(3762), 1, sym_identifier, - ACTIONS(3776), 1, + ACTIONS(3768), 1, anon_sym_DOT_DOT, - ACTIONS(3814), 1, + ACTIONS(3854), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1857), 2, + STATE(1885), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2240), 3, + STATE(2258), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [53598] = 9, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(3788), 1, - sym_identifier, - ACTIONS(3790), 1, - anon_sym_const, - ACTIONS(3794), 1, - sym_metavariable, - ACTIONS(3816), 1, - anon_sym_GT, - STATE(1865), 1, - sym_lifetime, - STATE(1919), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2267), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53628] = 7, - ACTIONS(3425), 1, + [53600] = 7, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3818), 1, + ACTIONS(3856), 1, anon_sym_for, - STATE(1358), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1383), 1, + STATE(1387), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53654] = 7, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3770), 1, - sym_identifier, - ACTIONS(3776), 1, - anon_sym_DOT_DOT, + [53626] = 5, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(3858), 1, + anon_sym_SEMI, + STATE(468), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2642), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53648] = 10, ACTIONS(3820), 1, - anon_sym_RBRACE, + anon_sym_LPAREN, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3826), 1, + anon_sym_LT, + ACTIONS(3836), 1, + anon_sym_LBRACE, + ACTIONS(3860), 1, + anon_sym_SEMI, + STATE(1034), 1, + sym_field_declaration_list, + STATE(1633), 1, + sym_type_parameters, + STATE(2045), 1, + sym_ordered_field_declaration_list, + STATE(2286), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1857), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2240), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, [53680] = 7, - ACTIONS(3427), 1, + ACTIONS(3441), 1, anon_sym_BANG, - ACTIONS(3435), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3439), 1, + ACTIONS(3453), 1, anon_sym_COLON, - ACTIONS(3822), 1, + ACTIONS(3862), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3457), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3433), 3, + ACTIONS(3447), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, [53706] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3742), 1, - sym_identifier, - ACTIONS(3748), 1, - sym_crate, - ACTIONS(3824), 1, - anon_sym_RBRACE, - STATE(2222), 1, - sym_enum_variant, - STATE(2436), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1566), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53736] = 10, - ACTIONS(3798), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3804), 1, - anon_sym_LT, - ACTIONS(3826), 1, - anon_sym_SEMI, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(889), 1, - sym_field_declaration_list, - STATE(1622), 1, - sym_type_parameters, - STATE(2029), 1, - sym_ordered_field_declaration_list, - STATE(2215), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [53768] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3778), 1, sym_crate, - ACTIONS(3754), 1, + ACTIONS(3782), 1, sym_identifier, - ACTIONS(3830), 1, + ACTIONS(3864), 1, anon_sym_RBRACE, - STATE(2203), 1, + STATE(2338), 1, sym_field_declaration, - STATE(2378), 1, + STATE(2422), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1553), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53798] = 9, - ACTIONS(2319), 1, + [53736] = 9, + ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3788), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3790), 1, + ACTIONS(3806), 1, anon_sym_const, - ACTIONS(3794), 1, + ACTIONS(3810), 1, sym_metavariable, - ACTIONS(3832), 1, + ACTIONS(3866), 1, anon_sym_GT, - STATE(1865), 1, + STATE(1859), 1, sym_lifetime, - STATE(1919), 1, + STATE(2037), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2267), 2, + STATE(2322), 2, sym_const_parameter, sym_optional_type_parameter, - [53828] = 7, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3834), 1, - anon_sym_for, - STATE(1358), 1, - sym_type_arguments, - STATE(1383), 1, - sym_parameters, + [53766] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3772), 1, + sym_identifier, + ACTIONS(3778), 1, + sym_crate, + ACTIONS(3868), 1, + anon_sym_RBRACE, + STATE(2223), 1, + sym_enum_variant, + STATE(2428), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53854] = 9, + STATE(1587), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53796] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3778), 1, sym_crate, - ACTIONS(3754), 1, + ACTIONS(3782), 1, sym_identifier, - ACTIONS(3836), 1, + ACTIONS(3870), 1, anon_sym_RBRACE, - STATE(2203), 1, + STATE(2338), 1, sym_field_declaration, - STATE(2378), 1, + STATE(2422), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1553), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53884] = 7, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3838), 1, - anon_sym_for, - STATE(1358), 1, - sym_type_arguments, - STATE(1383), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2606), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53910] = 9, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(3788), 1, - sym_identifier, - ACTIONS(3790), 1, - anon_sym_const, - ACTIONS(3794), 1, - sym_metavariable, - ACTIONS(3840), 1, - anon_sym_GT, - STATE(1865), 1, - sym_lifetime, - STATE(1919), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2267), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53940] = 5, - ACTIONS(3842), 1, - anon_sym_SEMI, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(466), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53962] = 7, - ACTIONS(3425), 1, + [53826] = 7, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3846), 1, + ACTIONS(3872), 1, anon_sym_for, - STATE(1358), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1383), 1, + STATE(1387), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53988] = 9, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(3788), 1, + [53852] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3772), 1, sym_identifier, - ACTIONS(3790), 1, - anon_sym_const, - ACTIONS(3794), 1, - sym_metavariable, - ACTIONS(3848), 1, - anon_sym_GT, - STATE(1865), 1, - sym_lifetime, - STATE(1919), 1, - sym_constrained_type_parameter, + ACTIONS(3778), 1, + sym_crate, + ACTIONS(3874), 1, + anon_sym_RBRACE, + STATE(2223), 1, + sym_enum_variant, + STATE(2428), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2267), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54018] = 9, + STATE(1587), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53882] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3742), 1, + ACTIONS(3772), 1, sym_identifier, - ACTIONS(3748), 1, + ACTIONS(3778), 1, sym_crate, - ACTIONS(3850), 1, + ACTIONS(3876), 1, anon_sym_RBRACE, - STATE(2222), 1, + STATE(2223), 1, sym_enum_variant, - STATE(2436), 1, + STATE(2428), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1566), 2, + STATE(1587), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54048] = 9, + [53912] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3778), 1, sym_crate, - ACTIONS(3754), 1, + ACTIONS(3782), 1, sym_identifier, - ACTIONS(3852), 1, + ACTIONS(3878), 1, anon_sym_RBRACE, - STATE(2203), 1, + STATE(2338), 1, sym_field_declaration, - STATE(2378), 1, + STATE(2422), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1553), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54078] = 5, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(3854), 1, - anon_sym_SEMI, - STATE(1039), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54100] = 9, - ACTIONS(2319), 1, + [53942] = 9, + ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3788), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3790), 1, + ACTIONS(3806), 1, anon_sym_const, - ACTIONS(3794), 1, + ACTIONS(3810), 1, sym_metavariable, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym_GT, - STATE(1865), 1, + STATE(1859), 1, sym_lifetime, - STATE(1919), 1, + STATE(2037), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2267), 2, + STATE(2322), 2, sym_const_parameter, sym_optional_type_parameter, - [54130] = 9, - ACTIONS(2319), 1, + [53972] = 9, + ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3788), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3790), 1, + ACTIONS(3806), 1, anon_sym_const, - ACTIONS(3794), 1, + ACTIONS(3810), 1, sym_metavariable, - ACTIONS(3858), 1, + ACTIONS(3882), 1, anon_sym_GT, - STATE(1865), 1, + STATE(1859), 1, sym_lifetime, - STATE(1919), 1, + STATE(2037), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2267), 2, + STATE(2322), 2, sym_const_parameter, sym_optional_type_parameter, - [54160] = 10, - ACTIONS(3798), 1, - anon_sym_LPAREN, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3804), 1, - anon_sym_LT, - ACTIONS(3860), 1, - anon_sym_SEMI, - STATE(373), 1, - sym_field_declaration_list, - STATE(1616), 1, - sym_type_parameters, - STATE(2015), 1, - sym_ordered_field_declaration_list, - STATE(2204), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54192] = 9, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(3788), 1, + [54002] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3772), 1, sym_identifier, - ACTIONS(3790), 1, - anon_sym_const, - ACTIONS(3794), 1, - sym_metavariable, - ACTIONS(3862), 1, - anon_sym_GT, - STATE(1865), 1, - sym_lifetime, - STATE(1919), 1, - sym_constrained_type_parameter, + ACTIONS(3778), 1, + sym_crate, + ACTIONS(3884), 1, + anon_sym_RBRACE, + STATE(2223), 1, + sym_enum_variant, + STATE(2428), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2267), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54222] = 7, - ACTIONS(3425), 1, + STATE(1587), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54032] = 7, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3864), 1, + ACTIONS(3886), 1, anon_sym_for, - STATE(1358), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1383), 1, + STATE(1387), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54248] = 7, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3866), 1, - anon_sym_for, - STATE(1358), 1, - sym_type_arguments, - STATE(1383), 1, - sym_parameters, + [54058] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3888), 1, + sym_identifier, + STATE(98), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54274] = 5, - ACTIONS(15), 1, + ACTIONS(3890), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54080] = 5, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(3868), 1, - anon_sym_move, - STATE(95), 1, - sym_block, + ACTIONS(3892), 1, + anon_sym_SEMI, + STATE(868), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(2642), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54296] = 9, + [54102] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3742), 1, + ACTIONS(3772), 1, sym_identifier, - ACTIONS(3748), 1, + ACTIONS(3778), 1, sym_crate, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_RBRACE, - STATE(2222), 1, + STATE(2223), 1, sym_enum_variant, - STATE(2436), 1, + STATE(2428), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1566), 2, + STATE(1587), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54326] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2323), 1, + [54132] = 7, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3748), 1, - sym_crate, - ACTIONS(3754), 1, + ACTIONS(3762), 1, sym_identifier, - ACTIONS(3872), 1, + ACTIONS(3768), 1, + anon_sym_DOT_DOT, + ACTIONS(3896), 1, anon_sym_RBRACE, - STATE(2203), 1, - sym_field_declaration, - STATE(2378), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1885), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54356] = 7, - ACTIONS(3425), 1, + STATE(2258), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54158] = 7, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3874), 1, + ACTIONS(3898), 1, anon_sym_for, - STATE(1358), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1383), 1, + STATE(1387), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54382] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3876), 1, - sym_identifier, - STATE(98), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3878), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54404] = 10, - ACTIONS(3798), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3804), 1, - anon_sym_LT, - ACTIONS(3828), 1, - anon_sym_LBRACE, - ACTIONS(3880), 1, - anon_sym_SEMI, - STATE(904), 1, - sym_field_declaration_list, - STATE(1617), 1, - sym_type_parameters, - STATE(2123), 1, - sym_ordered_field_declaration_list, - STATE(2156), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54436] = 7, - ACTIONS(3425), 1, + [54184] = 7, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3882), 1, + ACTIONS(3900), 1, anon_sym_for, - STATE(1358), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1383), 1, + STATE(1387), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54462] = 5, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(3884), 1, - anon_sym_SEMI, - STATE(409), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54484] = 9, + [54210] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3742), 1, - sym_identifier, - ACTIONS(3748), 1, + ACTIONS(3778), 1, sym_crate, - ACTIONS(3886), 1, - anon_sym_RBRACE, - STATE(2222), 1, - sym_enum_variant, - STATE(2436), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1566), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54514] = 6, - ACTIONS(3427), 1, - anon_sym_BANG, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3888), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3433), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [54537] = 8, - ACTIONS(3890), 1, - anon_sym_LPAREN, - ACTIONS(3895), 1, - anon_sym_LBRACE, - ACTIONS(3898), 1, - anon_sym_LBRACK, - STATE(1550), 1, - aux_sym_macro_definition_repeat1, - STATE(2408), 1, - sym_token_tree_pattern, - STATE(2503), 1, - sym_macro_rule, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3893), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [54564] = 4, - ACTIONS(888), 1, - anon_sym_LBRACE, - STATE(1478), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54583] = 6, - ACTIONS(3518), 1, + ACTIONS(3782), 1, + sym_identifier, + STATE(2221), 1, + sym_field_declaration, + STATE(2422), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1138), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54237] = 7, + ACTIONS(2598), 1, + anon_sym_PLUS, + ACTIONS(3536), 1, anon_sym_PIPE, - ACTIONS(3520), 1, + ACTIONS(3538), 1, anon_sym_COLON, - ACTIONS(3682), 1, + ACTIONS(3672), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, + ACTIONS(3542), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, + ACTIONS(3902), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [54606] = 4, + [54262] = 4, ACTIONS(736), 1, aux_sym_string_literal_token1, - STATE(1574), 1, + STATE(1556), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3674), 6, + ACTIONS(3698), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54625] = 8, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_const, - ACTIONS(3901), 1, - sym_identifier, - ACTIONS(3903), 1, - sym_metavariable, - STATE(1772), 1, - sym_lifetime, - STATE(1799), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2016), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54652] = 4, - ACTIONS(3907), 1, - anon_sym_PLUS, - STATE(1555), 1, - aux_sym_trait_bounds_repeat1, + [54281] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3905), 6, + ACTIONS(3905), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54671] = 8, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54296] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3742), 1, - sym_identifier, - ACTIONS(3748), 1, + ACTIONS(3778), 1, sym_crate, - STATE(2023), 1, - sym_enum_variant, - STATE(2436), 1, + ACTIONS(3782), 1, + sym_identifier, + STATE(2338), 1, + sym_field_declaration, + STATE(2422), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1140), 2, + STATE(1553), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54698] = 8, + [54323] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3778), 1, sym_crate, - ACTIONS(3754), 1, + ACTIONS(3782), 1, sym_identifier, - STATE(1891), 1, + STATE(2078), 1, sym_field_declaration, - STATE(2378), 1, + STATE(2422), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1140), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54725] = 8, - ACTIONS(828), 1, - anon_sym_DOT_DOT, - ACTIONS(3910), 1, - sym_identifier, - ACTIONS(3912), 1, - anon_sym_RBRACE, - ACTIONS(3914), 1, - anon_sym_COMMA, - ACTIONS(3916), 1, - anon_sym_ref, - ACTIONS(3918), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2009), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54752] = 6, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3770), 1, - sym_identifier, - ACTIONS(3776), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1857), 2, + STATE(1138), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2240), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [54775] = 4, - ACTIONS(3922), 1, + [54350] = 4, + ACTIONS(3909), 1, anon_sym_PLUS, - STATE(1583), 1, + STATE(1579), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3920), 6, + ACTIONS(3907), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54794] = 9, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(3926), 1, - anon_sym_LT, - STATE(916), 1, - sym_declaration_list, - STATE(1692), 1, - sym_type_parameters, - STATE(1864), 1, - sym_trait_bounds, - STATE(2153), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54823] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3748), 1, - sym_crate, - ACTIONS(3754), 1, - sym_identifier, - STATE(2168), 1, - sym_field_declaration, - STATE(2378), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1140), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54850] = 4, - ACTIONS(3928), 1, + [54369] = 4, + ACTIONS(3911), 1, anon_sym_PLUS, - STATE(1583), 1, + STATE(1579), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3920), 6, + ACTIONS(3907), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54869] = 4, - ACTIONS(3930), 1, + [54388] = 4, + ACTIONS(3913), 1, anon_sym_PLUS, - STATE(1583), 1, + STATE(1579), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3920), 6, + ACTIONS(3907), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54888] = 9, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(3926), 1, - anon_sym_LT, - STATE(378), 1, - sym_declaration_list, - STATE(1652), 1, - sym_type_parameters, - STATE(1791), 1, - sym_trait_bounds, - STATE(2207), 1, - sym_where_clause, + [54407] = 6, + ACTIONS(3441), 1, + anon_sym_BANG, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54917] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3742), 1, - sym_identifier, - ACTIONS(3748), 1, - sym_crate, - STATE(2154), 1, - sym_enum_variant, - STATE(2436), 1, - sym_visibility_modifier, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3447), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [54430] = 5, + ACTIONS(3919), 1, + anon_sym_fn, + ACTIONS(3921), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1140), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54944] = 9, - ACTIONS(3802), 1, + STATE(1577), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3917), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [54451] = 9, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3923), 1, anon_sym_COLON, - ACTIONS(3926), 1, + ACTIONS(3925), 1, anon_sym_LT, - STATE(821), 1, + STATE(387), 1, sym_declaration_list, - STATE(1669), 1, + STATE(1690), 1, sym_type_parameters, - STATE(1829), 1, + STATE(1842), 1, sym_trait_bounds, - STATE(2189), 1, + STATE(2174), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54973] = 4, - ACTIONS(2720), 1, - anon_sym_COLON_COLON, - ACTIONS(3932), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54992] = 8, + [54480] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3742), 1, + ACTIONS(3772), 1, sym_identifier, - ACTIONS(3748), 1, + ACTIONS(3778), 1, sym_crate, - STATE(2222), 1, + STATE(2223), 1, sym_enum_variant, - STATE(2436), 1, + STATE(2428), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1566), 2, + STATE(1587), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55019] = 8, + [54507] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3778), 1, sym_crate, - ACTIONS(3754), 1, + ACTIONS(3782), 1, sym_identifier, - STATE(2103), 1, + STATE(2130), 1, sym_field_declaration, - STATE(2378), 1, + STATE(2422), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1140), 2, + STATE(1138), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55046] = 6, - ACTIONS(3750), 1, + [54534] = 4, + ACTIONS(3552), 1, anon_sym_COLON_COLON, - ACTIONS(3934), 1, - anon_sym_RBRACK, + ACTIONS(3664), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3518), 2, + ACTIONS(2642), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54553] = 8, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(3927), 1, + sym_identifier, + ACTIONS(3929), 1, + anon_sym_RBRACE, + ACTIONS(3931), 1, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [55069] = 9, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3933), 1, + anon_sym_ref, + ACTIONS(3935), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2084), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54580] = 9, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3923), 1, anon_sym_COLON, - ACTIONS(3926), 1, + ACTIONS(3925), 1, anon_sym_LT, - STATE(316), 1, + STATE(916), 1, sym_declaration_list, - STATE(1715), 1, + STATE(1703), 1, sym_type_parameters, - STATE(1845), 1, + STATE(1841), 1, sym_trait_bounds, - STATE(2303), 1, + STATE(2183), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55098] = 9, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3810), 1, + [54609] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3772), 1, + sym_identifier, + ACTIONS(3778), 1, + sym_crate, + STATE(2151), 1, + sym_enum_variant, + STATE(2428), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1138), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54636] = 9, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3923), 1, anon_sym_COLON, - ACTIONS(3926), 1, + ACTIONS(3925), 1, anon_sym_LT, - STATE(897), 1, + STATE(1035), 1, sym_declaration_list, - STATE(1644), 1, + STATE(1647), 1, sym_type_parameters, - STATE(1795), 1, + STATE(1856), 1, sym_trait_bounds, - STATE(2214), 1, + STATE(2285), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55127] = 2, + [54665] = 4, + ACTIONS(900), 1, + anon_sym_LBRACE, + STATE(1468), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3937), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2642), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55142] = 5, - ACTIONS(3941), 1, - anon_sym_fn, - ACTIONS(3943), 1, - anon_sym_extern, + [54684] = 6, + ACTIONS(3536), 1, + anon_sym_PIPE, + ACTIONS(3538), 1, + anon_sym_COLON, + ACTIONS(3666), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1576), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3939), 4, - anon_sym_async, + ACTIONS(3542), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2598), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [54707] = 8, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3806), 1, anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [55163] = 5, - ACTIONS(3948), 1, + ACTIONS(3937), 1, + sym_identifier, + ACTIONS(3939), 1, + sym_metavariable, + STATE(1741), 1, + sym_lifetime, + STATE(1833), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2140), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54734] = 8, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3806), 1, + anon_sym_const, + ACTIONS(3810), 1, + sym_metavariable, + STATE(1859), 1, + sym_lifetime, + STATE(2037), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2322), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54761] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3772), 1, + sym_identifier, + ACTIONS(3778), 1, + sym_crate, + STATE(1955), 1, + sym_enum_variant, + STATE(2428), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1138), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54788] = 5, + ACTIONS(3944), 1, anon_sym_fn, - ACTIONS(3950), 1, + ACTIONS(3946), 1, anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1576), 2, + STATE(1577), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(3945), 4, + ACTIONS(3941), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - [55184] = 8, - ACTIONS(828), 1, + [54809] = 8, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3806), 1, + anon_sym_const, + ACTIONS(3937), 1, + sym_identifier, + ACTIONS(3939), 1, + sym_metavariable, + STATE(1681), 1, + sym_lifetime, + STATE(1833), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2140), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54836] = 4, + ACTIONS(3909), 1, + anon_sym_PLUS, + STATE(1583), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3949), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54855] = 6, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3768), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1885), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2258), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54878] = 8, + ACTIONS(820), 1, anon_sym_DOT_DOT, - ACTIONS(3910), 1, + ACTIONS(3927), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3933), 1, anon_sym_ref, - ACTIONS(3918), 1, + ACTIONS(3935), 1, sym_mutable_specifier, - ACTIONS(3953), 1, + ACTIONS(3951), 1, anon_sym_RBRACE, - ACTIONS(3955), 1, + ACTIONS(3953), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1983), 2, + STATE(1995), 2, sym_field_pattern, sym_remaining_field_pattern, - [55211] = 6, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3512), 1, + [54905] = 6, + ACTIONS(3758), 1, anon_sym_COLON_COLON, - ACTIONS(3570), 1, - anon_sym_BANG, + ACTIONS(3902), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(2598), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3536), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3542), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3433), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [55234] = 7, - ACTIONS(2606), 1, + [54928] = 4, + ACTIONS(3957), 1, anon_sym_PLUS, - ACTIONS(3518), 1, - anon_sym_PIPE, - ACTIONS(3520), 1, - anon_sym_COLON, - ACTIONS(3656), 1, + STATE(1583), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3955), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54947] = 6, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3524), 1, anon_sym_COLON_COLON, + ACTIONS(3596), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3934), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [55259] = 8, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_const, - ACTIONS(3957), 1, - sym_identifier, - ACTIONS(3959), 1, - sym_metavariable, - STATE(1645), 1, - sym_lifetime, - STATE(1862), 1, - sym_constrained_type_parameter, + ACTIONS(3447), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [54970] = 9, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3923), 1, + anon_sym_COLON, + ACTIONS(3925), 1, + anon_sym_LT, + STATE(843), 1, + sym_declaration_list, + STATE(1664), 1, + sym_type_parameters, + STATE(1830), 1, + sym_trait_bounds, + STATE(2205), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2119), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55286] = 4, - ACTIONS(3582), 1, + [54999] = 4, + ACTIONS(2690), 1, anon_sym_COLON_COLON, - ACTIONS(3961), 1, + ACTIONS(3960), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55305] = 4, - ACTIONS(3485), 1, - anon_sym_trait, - ACTIONS(3963), 1, - anon_sym_impl, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(2642), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55324] = 4, - ACTIONS(3922), 1, - anon_sym_PLUS, - STATE(1555), 1, - aux_sym_trait_bounds_repeat1, + [55018] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3772), 1, + sym_identifier, + ACTIONS(3778), 1, + sym_crate, + STATE(2280), 1, + sym_enum_variant, + STATE(2428), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3965), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55343] = 9, - ACTIONS(3802), 1, + STATE(1138), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [55045] = 9, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3923), 1, anon_sym_COLON, - ACTIONS(3926), 1, + ACTIONS(3925), 1, anon_sym_LT, - STATE(468), 1, + STATE(284), 1, sym_declaration_list, - STATE(1716), 1, + STATE(1641), 1, sym_type_parameters, - STATE(1841), 1, + STATE(1832), 1, sym_trait_bounds, - STATE(2234), 1, + STATE(2175), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55372] = 8, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(3788), 1, - sym_identifier, - ACTIONS(3790), 1, - anon_sym_const, - ACTIONS(3794), 1, - sym_metavariable, - STATE(1865), 1, - sym_lifetime, - STATE(1919), 1, - sym_constrained_type_parameter, + [55074] = 8, + ACTIONS(3962), 1, + anon_sym_LPAREN, + ACTIONS(3967), 1, + anon_sym_LBRACE, + ACTIONS(3970), 1, + anon_sym_LBRACK, + STATE(1589), 1, + aux_sym_macro_definition_repeat1, + STATE(2534), 1, + sym_macro_rule, + STATE(2542), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2267), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55399] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3742), 1, - sym_identifier, - ACTIONS(3748), 1, - sym_crate, - STATE(2140), 1, - sym_enum_variant, - STATE(2436), 1, - sym_visibility_modifier, + ACTIONS(3965), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [55101] = 4, + ACTIONS(3499), 1, + anon_sym_trait, + ACTIONS(3973), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1140), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55426] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3748), 1, - sym_crate, - ACTIONS(3754), 1, - sym_identifier, - STATE(2203), 1, - sym_field_declaration, - STATE(2378), 1, - sym_visibility_modifier, + ACTIONS(2642), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55120] = 4, + ACTIONS(3591), 1, + anon_sym_COLON_COLON, + ACTIONS(3975), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2642), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55139] = 9, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(3923), 1, + anon_sym_COLON, + ACTIONS(3925), 1, + anon_sym_LT, + STATE(378), 1, + sym_declaration_list, + STATE(1645), 1, + sym_type_parameters, + STATE(1852), 1, + sym_trait_bounds, + STATE(2264), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55453] = 8, - ACTIONS(2319), 1, + [55168] = 8, + ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3806), 1, anon_sym_const, - ACTIONS(3957), 1, + ACTIONS(3977), 1, sym_identifier, - ACTIONS(3959), 1, + ACTIONS(3979), 1, sym_metavariable, - STATE(1747), 1, + STATE(1754), 1, sym_lifetime, - STATE(1862), 1, + STATE(1861), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2119), 2, + STATE(2032), 2, sym_const_parameter, sym_optional_type_parameter, - [55480] = 4, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_BANG, + [55195] = 8, + ACTIONS(3981), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, + anon_sym_RPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACE, + ACTIONS(3987), 1, + anon_sym_LBRACK, + STATE(1589), 1, + aux_sym_macro_definition_repeat1, + STATE(2282), 1, + sym_macro_rule, + STATE(2542), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55499] = 7, - ACTIONS(828), 1, + [55221] = 7, + ACTIONS(820), 1, anon_sym_DOT_DOT, - ACTIONS(3910), 1, + ACTIONS(3927), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3933), 1, anon_sym_ref, - ACTIONS(3918), 1, + ACTIONS(3935), 1, sym_mutable_specifier, - ACTIONS(3967), 1, + ACTIONS(3989), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2211), 2, + STATE(2207), 2, sym_field_pattern, sym_remaining_field_pattern, - [55523] = 8, - ACTIONS(3969), 1, + [55245] = 8, + ACTIONS(3981), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACE, - ACTIONS(3973), 1, - anon_sym_RBRACE, - ACTIONS(3975), 1, + ACTIONS(3987), 1, anon_sym_LBRACK, - STATE(1550), 1, + ACTIONS(3991), 1, + anon_sym_RPAREN, + STATE(1623), 1, aux_sym_macro_definition_repeat1, - STATE(2160), 1, + STATE(2312), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2542), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55549] = 8, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(3975), 1, - anon_sym_LBRACK, - ACTIONS(3977), 1, - anon_sym_RBRACE, - STATE(1591), 1, - aux_sym_macro_definition_repeat1, - STATE(2202), 1, - sym_macro_rule, - STATE(2408), 1, - sym_token_tree_pattern, + [55271] = 3, + ACTIONS(3993), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55575] = 8, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(3975), 1, - anon_sym_LBRACK, - ACTIONS(3979), 1, - anon_sym_RBRACE, - STATE(1611), 1, - aux_sym_macro_definition_repeat1, - STATE(2305), 1, - sym_macro_rule, - STATE(2408), 1, - sym_token_tree_pattern, + ACTIONS(2642), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55287] = 3, + ACTIONS(3995), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55601] = 8, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(3975), 1, - anon_sym_LBRACK, - ACTIONS(3981), 1, - anon_sym_RPAREN, - STATE(1607), 1, - aux_sym_macro_definition_repeat1, - STATE(2304), 1, - sym_macro_rule, - STATE(2408), 1, - sym_token_tree_pattern, + ACTIONS(3890), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55303] = 3, + ACTIONS(2690), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55627] = 8, - ACTIONS(3969), 1, + ACTIONS(2642), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55319] = 8, + ACTIONS(3820), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3822), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, - anon_sym_LBRACK, - ACTIONS(3983), 1, - anon_sym_RBRACE, - STATE(1605), 1, - aux_sym_macro_definition_repeat1, - STATE(2299), 1, - sym_macro_rule, - STATE(2408), 1, - sym_token_tree_pattern, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3997), 1, + anon_sym_SEMI, + STATE(281), 1, + sym_field_declaration_list, + STATE(2144), 1, + sym_ordered_field_declaration_list, + STATE(2171), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55653] = 6, - ACTIONS(3798), 1, - anon_sym_LPAREN, - ACTIONS(3828), 1, - anon_sym_LBRACE, - ACTIONS(3987), 1, - anon_sym_EQ, + [55345] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3985), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1998), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [55675] = 6, - ACTIONS(3989), 1, - anon_sym_LPAREN, - ACTIONS(3993), 1, + ACTIONS(3955), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, anon_sym_EQ, - ACTIONS(3995), 1, - anon_sym_COLON_COLON, - STATE(2124), 1, - sym_meta_arguments, + anon_sym_COMMA, + anon_sym_GT, + [55359] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3991), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3955), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [55697] = 8, - ACTIONS(3969), 1, + anon_sym_GT, + [55373] = 8, + ACTIONS(3820), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3836), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, - anon_sym_LBRACK, - ACTIONS(3997), 1, - anon_sym_RPAREN, - STATE(1604), 1, - aux_sym_macro_definition_repeat1, - STATE(2292), 1, - sym_macro_rule, - STATE(2408), 1, - sym_token_tree_pattern, + ACTIONS(3999), 1, + anon_sym_SEMI, + STATE(840), 1, + sym_field_declaration_list, + STATE(2123), 1, + sym_ordered_field_declaration_list, + STATE(2202), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55723] = 8, - ACTIONS(3969), 1, + [55399] = 8, + ACTIONS(3981), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(3987), 1, anon_sym_LBRACK, - ACTIONS(3999), 1, + ACTIONS(4001), 1, anon_sym_RPAREN, - STATE(1550), 1, + STATE(1589), 1, aux_sym_macro_definition_repeat1, - STATE(2264), 1, + STATE(2291), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2542), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55749] = 8, - ACTIONS(3969), 1, + [55425] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4001), 1, - anon_sym_RPAREN, - STATE(1550), 1, - aux_sym_macro_definition_repeat1, - STATE(2266), 1, - sym_macro_rule, - STATE(2408), 1, - sym_token_tree_pattern, + ACTIONS(4009), 1, + anon_sym_RBRACK, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4013), 1, + anon_sym_COLON_COLON, + STATE(2494), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55775] = 2, + [55451] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4003), 7, + ACTIONS(3955), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -117555,377 +119317,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55789] = 3, - ACTIONS(4005), 1, - sym_identifier, + [55465] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3878), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55805] = 7, - ACTIONS(828), 1, - anon_sym_DOT_DOT, - ACTIONS(3910), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_ref, - ACTIONS(3918), 1, - sym_mutable_specifier, - ACTIONS(4007), 1, - anon_sym_RBRACE, + ACTIONS(3955), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55479] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2211), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55829] = 8, - ACTIONS(3969), 1, + ACTIONS(3955), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55493] = 8, + ACTIONS(3981), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(3987), 1, anon_sym_LBRACK, - ACTIONS(4009), 1, - anon_sym_RPAREN, - STATE(1550), 1, + ACTIONS(4015), 1, + anon_sym_RBRACE, + STATE(1589), 1, aux_sym_macro_definition_repeat1, - STATE(2283), 1, + STATE(2320), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2542), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55855] = 8, - ACTIONS(3969), 1, + [55519] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, + ACTIONS(4009), 1, + anon_sym_RBRACK, ACTIONS(4011), 1, - anon_sym_RBRACE, - STATE(1550), 1, - aux_sym_macro_definition_repeat1, - STATE(2281), 1, - sym_macro_rule, - STATE(2408), 1, - sym_token_tree_pattern, + anon_sym_EQ, + ACTIONS(4017), 1, + anon_sym_COLON_COLON, + STATE(2494), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55881] = 8, - ACTIONS(3798), 1, + [55545] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4013), 1, - anon_sym_SEMI, - STATE(456), 1, - sym_field_declaration_list, - STATE(1932), 1, - sym_ordered_field_declaration_list, - STATE(2237), 1, - sym_where_clause, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4009), 1, + anon_sym_RBRACK, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4019), 1, + anon_sym_COLON_COLON, + STATE(2494), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55907] = 8, - ACTIONS(3969), 1, + [55571] = 8, + ACTIONS(3981), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(3987), 1, anon_sym_LBRACK, - ACTIONS(4015), 1, + ACTIONS(4021), 1, anon_sym_RPAREN, - STATE(1550), 1, + STATE(1589), 1, aux_sym_macro_definition_repeat1, - STATE(2277), 1, + STATE(2300), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2542), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55933] = 8, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(3975), 1, - anon_sym_LBRACK, - ACTIONS(4017), 1, - anon_sym_RPAREN, - STATE(1600), 1, - aux_sym_macro_definition_repeat1, - STATE(2291), 1, - sym_macro_rule, - STATE(2408), 1, - sym_token_tree_pattern, + [55597] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55959] = 3, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, + ACTIONS(4023), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55611] = 3, + ACTIONS(4025), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(3890), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55975] = 8, - ACTIONS(3969), 1, + [55627] = 8, + ACTIONS(3981), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(3987), 1, anon_sym_LBRACK, - ACTIONS(4019), 1, + ACTIONS(4027), 1, anon_sym_RBRACE, - STATE(1550), 1, + STATE(1589), 1, aux_sym_macro_definition_repeat1, - STATE(2162), 1, + STATE(2328), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2542), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56001] = 8, - ACTIONS(3969), 1, + [55653] = 8, + ACTIONS(3981), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(3987), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, + ACTIONS(4029), 1, anon_sym_RBRACE, - STATE(1550), 1, + STATE(1589), 1, aux_sym_macro_definition_repeat1, - STATE(2274), 1, + STATE(2156), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2542), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56027] = 7, - ACTIONS(3427), 1, - anon_sym_BANG, - ACTIONS(3433), 1, - anon_sym_PIPE, - ACTIONS(3435), 1, + [55679] = 8, + ACTIONS(3981), 1, anon_sym_LPAREN, - ACTIONS(3439), 1, - anon_sym_COLON, - ACTIONS(4023), 1, + ACTIONS(3985), 1, + anon_sym_LBRACE, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(4031), 1, + anon_sym_RPAREN, + STATE(1594), 1, + aux_sym_macro_definition_repeat1, + STATE(2309), 1, + sym_macro_rule, + STATE(2542), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55705] = 8, + ACTIONS(3591), 1, anon_sym_COLON_COLON, + ACTIONS(4003), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, + anon_sym_LBRACE, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4033), 1, + anon_sym_RBRACK, + ACTIONS(4035), 1, + anon_sym_EQ, + STATE(2440), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [56051] = 3, - ACTIONS(4025), 1, - sym_identifier, + [55731] = 8, + ACTIONS(3820), 1, + anon_sym_LPAREN, + ACTIONS(3822), 1, + anon_sym_LBRACE, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4037), 1, + anon_sym_SEMI, + STATE(443), 1, + sym_field_declaration_list, + STATE(2053), 1, + sym_ordered_field_declaration_list, + STATE(2279), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3878), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56067] = 8, - ACTIONS(3969), 1, + [55757] = 8, + ACTIONS(3981), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(3987), 1, anon_sym_LBRACK, - ACTIONS(4027), 1, + ACTIONS(4039), 1, anon_sym_RBRACE, - STATE(1610), 1, + STATE(1589), 1, aux_sym_macro_definition_repeat1, - STATE(2200), 1, + STATE(2301), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2542), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56093] = 6, - ACTIONS(3798), 1, + [55783] = 6, + ACTIONS(3820), 1, anon_sym_LPAREN, - ACTIONS(3828), 1, + ACTIONS(3836), 1, anon_sym_LBRACE, - ACTIONS(4031), 1, + ACTIONS(4043), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4029), 2, + ACTIONS(4041), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2036), 2, + STATE(2098), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [56115] = 8, - ACTIONS(3798), 1, + [55805] = 6, + ACTIONS(3820), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3836), 1, anon_sym_LBRACE, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4033), 1, - anon_sym_SEMI, - STATE(352), 1, - sym_field_declaration_list, - STATE(2082), 1, - sym_ordered_field_declaration_list, - STATE(2317), 1, - sym_where_clause, + ACTIONS(4047), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56141] = 8, - ACTIONS(3798), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3828), 1, - anon_sym_LBRACE, - ACTIONS(4035), 1, - anon_sym_SEMI, - STATE(795), 1, + ACTIONS(4045), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1950), 2, sym_field_declaration_list, - STATE(2071), 1, sym_ordered_field_declaration_list, - STATE(2186), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56167] = 8, - ACTIONS(3969), 1, + [55827] = 8, + ACTIONS(3981), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(3987), 1, anon_sym_LBRACK, - ACTIONS(4037), 1, + ACTIONS(4049), 1, anon_sym_RPAREN, - STATE(1599), 1, + STATE(1589), 1, aux_sym_macro_definition_repeat1, - STATE(2289), 1, + STATE(2283), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2542), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56193] = 6, - ACTIONS(3989), 1, - anon_sym_LPAREN, - ACTIONS(3993), 1, - anon_sym_EQ, - ACTIONS(4039), 1, - anon_sym_COLON_COLON, - STATE(2124), 1, - sym_meta_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3991), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [56215] = 7, - ACTIONS(828), 1, + [55853] = 7, + ACTIONS(820), 1, anon_sym_DOT_DOT, - ACTIONS(3910), 1, + ACTIONS(3927), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3933), 1, anon_sym_ref, - ACTIONS(3918), 1, + ACTIONS(3935), 1, sym_mutable_specifier, - ACTIONS(4041), 1, + ACTIONS(4051), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2211), 2, + STATE(2207), 2, sym_field_pattern, sym_remaining_field_pattern, - [56239] = 6, - ACTIONS(3989), 1, - anon_sym_LPAREN, - ACTIONS(3993), 1, - anon_sym_EQ, - ACTIONS(4043), 1, - anon_sym_COLON_COLON, - STATE(2124), 1, - sym_meta_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3991), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [56261] = 8, - ACTIONS(3798), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3828), 1, - anon_sym_LBRACE, - ACTIONS(4045), 1, - anon_sym_SEMI, - STATE(937), 1, - sym_field_declaration_list, - STATE(2106), 1, - sym_ordered_field_declaration_list, - STATE(2167), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56287] = 2, + [55877] = 3, + ACTIONS(4053), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3905), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56301] = 2, + ACTIONS(3890), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55893] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3905), 7, + ACTIONS(4055), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -117933,8751 +119638,8933 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [56315] = 3, - ACTIONS(4047), 1, + [55907] = 3, + ACTIONS(4057), 1, anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(2642), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56331] = 2, + [55923] = 8, + ACTIONS(3981), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACE, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(4059), 1, + anon_sym_RBRACE, + STATE(1620), 1, + aux_sym_macro_definition_repeat1, + STATE(2164), 1, + sym_macro_rule, + STATE(2542), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3905), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56345] = 2, + [55949] = 7, + ACTIONS(3441), 1, + anon_sym_BANG, + ACTIONS(3447), 1, + anon_sym_PIPE, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3453), 1, + anon_sym_COLON, + ACTIONS(4061), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4049), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56359] = 3, - ACTIONS(2720), 1, - anon_sym_COLON_COLON, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55973] = 3, + ACTIONS(4063), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(3890), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56375] = 2, + [55989] = 8, + ACTIONS(3981), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACE, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(4065), 1, + anon_sym_RBRACE, + STATE(1615), 1, + aux_sym_macro_definition_repeat1, + STATE(2255), 1, + sym_macro_rule, + STATE(2542), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3905), 7, - anon_sym_SEMI, + [56015] = 8, + ACTIONS(3981), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(4067), 1, + anon_sym_RPAREN, + STATE(1612), 1, + aux_sym_macro_definition_repeat1, + STATE(2167), 1, + sym_macro_rule, + STATE(2542), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56041] = 8, + ACTIONS(3820), 1, + anon_sym_LPAREN, + ACTIONS(3824), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56389] = 3, - ACTIONS(4051), 1, - anon_sym_trait, + ACTIONS(3836), 1, + anon_sym_LBRACE, + ACTIONS(4069), 1, + anon_sym_SEMI, + STATE(930), 1, + sym_field_declaration_list, + STATE(2122), 1, + sym_ordered_field_declaration_list, + STATE(2201), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56405] = 7, - ACTIONS(828), 1, + [56067] = 7, + ACTIONS(820), 1, anon_sym_DOT_DOT, - ACTIONS(3910), 1, + ACTIONS(3927), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3933), 1, anon_sym_ref, - ACTIONS(3918), 1, + ACTIONS(3935), 1, sym_mutable_specifier, - ACTIONS(4053), 1, + ACTIONS(4071), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2211), 2, + STATE(2207), 2, sym_field_pattern, sym_remaining_field_pattern, - [56429] = 3, - ACTIONS(4055), 1, - sym_identifier, + [56091] = 8, + ACTIONS(3981), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACE, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(4073), 1, + anon_sym_RBRACE, + STATE(1616), 1, + aux_sym_macro_definition_repeat1, + STATE(2257), 1, + sym_macro_rule, + STATE(2542), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3878), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56445] = 3, - ACTIONS(4057), 1, - sym_identifier, + [56117] = 8, + ACTIONS(3981), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + anon_sym_LBRACE, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(4075), 1, + anon_sym_RBRACE, + STATE(1609), 1, + aux_sym_macro_definition_repeat1, + STATE(2195), 1, + sym_macro_rule, + STATE(2542), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56143] = 3, + ACTIONS(3552), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3878), 6, + ACTIONS(2642), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56461] = 6, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3989), 1, + [56159] = 8, + ACTIONS(3981), 1, anon_sym_LPAREN, - ACTIONS(4061), 1, - anon_sym_EQ, - STATE(2117), 1, - sym_meta_arguments, + ACTIONS(3985), 1, + anon_sym_LBRACE, + ACTIONS(3987), 1, + anon_sym_LBRACK, + ACTIONS(4077), 1, + anon_sym_RPAREN, + STATE(1604), 1, + aux_sym_macro_definition_repeat1, + STATE(2211), 1, + sym_macro_rule, + STATE(2542), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4059), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [56483] = 2, + [56185] = 7, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(3927), 1, + sym_identifier, + ACTIONS(3933), 1, + anon_sym_ref, + ACTIONS(3935), 1, + sym_mutable_specifier, + ACTIONS(4079), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3905), 7, + STATE(2207), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56209] = 7, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4081), 1, anon_sym_SEMI, + ACTIONS(4083), 1, anon_sym_LBRACE, + ACTIONS(4085), 1, anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56497] = 5, - ACTIONS(4065), 1, - anon_sym_COLON, - ACTIONS(4067), 1, - anon_sym_COLON_COLON, + STATE(343), 1, + sym_block, + STATE(2065), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4063), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56516] = 7, - ACTIONS(3802), 1, + [56232] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4069), 1, - anon_sym_SEMI, - ACTIONS(4071), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - STATE(836), 1, - sym_block, - STATE(2050), 1, + ACTIONS(3923), 1, + anon_sym_COLON, + STATE(306), 1, + sym_declaration_list, + STATE(1800), 1, + sym_trait_bounds, + STATE(2302), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56539] = 7, - ACTIONS(3802), 1, + [56255] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3804), 1, + ACTIONS(3826), 1, anon_sym_LT, - ACTIONS(4075), 1, + ACTIONS(3836), 1, anon_sym_LBRACE, - STATE(803), 1, - sym_enum_variant_list, - STATE(1778), 1, + STATE(900), 1, + sym_field_declaration_list, + STATE(1839), 1, sym_type_parameters, - STATE(2230), 1, + STATE(2168), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56562] = 4, - ACTIONS(4067), 1, - anon_sym_COLON_COLON, + [56278] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, - anon_sym_RPAREN, + ACTIONS(2724), 2, anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3748), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4087), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [56579] = 7, - ACTIONS(3802), 1, + [56295] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3826), 1, + anon_sym_LT, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4077), 1, - anon_sym_SEMI, - STATE(309), 1, - sym_declaration_list, - STATE(2125), 1, + STATE(909), 1, + sym_enum_variant_list, + STATE(1840), 1, + sym_type_parameters, + STATE(2177), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56602] = 4, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, - ACTIONS(3838), 1, - anon_sym_for, + [56318] = 7, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(3923), 1, + anon_sym_COLON, + STATE(427), 1, + sym_declaration_list, + STATE(1834), 1, + sym_trait_bounds, + STATE(2250), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, - anon_sym_SEMI, + [56341] = 7, + ACTIONS(3800), 1, anon_sym_LBRACE, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4085), 1, anon_sym_PLUS, + ACTIONS(4092), 1, + anon_sym_SEMI, + STATE(918), 1, + sym_declaration_list, + STATE(2131), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56364] = 7, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3824), 1, anon_sym_where, - [56619] = 7, - ACTIONS(3530), 1, - anon_sym_EQ, - ACTIONS(3532), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, - anon_sym_GT, - ACTIONS(3924), 1, + ACTIONS(3923), 1, anon_sym_COLON, - STATE(2038), 1, + STATE(925), 1, + sym_declaration_list, + STATE(1843), 1, sym_trait_bounds, - STATE(2044), 1, - aux_sym_type_parameters_repeat1, + STATE(2197), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56642] = 7, - ACTIONS(3802), 1, + [56387] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4079), 1, - anon_sym_SEMI, - ACTIONS(4081), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4083), 1, - anon_sym_DASH_GT, - STATE(335), 1, - sym_block, - STATE(1971), 1, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4094), 1, + anon_sym_SEMI, + STATE(416), 1, + sym_declaration_list, + STATE(2019), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56665] = 7, - ACTIONS(3802), 1, + [56410] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - anon_sym_COLON, - STATE(926), 1, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4096), 1, + anon_sym_SEMI, + STATE(398), 1, sym_declaration_list, - STATE(1853), 1, - sym_trait_bounds, - STATE(2251), 1, + STATE(2020), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56688] = 7, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(4085), 1, - anon_sym_COMMA, - ACTIONS(4087), 1, - anon_sym_GT, - STATE(1930), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2045), 1, - aux_sym_type_parameters_repeat1, - STATE(2049), 1, - sym_trait_bounds, + [56433] = 4, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, + ACTIONS(3886), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56711] = 7, - ACTIONS(3802), 1, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3810), 1, + [56450] = 7, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4089), 1, + ACTIONS(4098), 1, anon_sym_SEMI, - STATE(981), 1, - sym_declaration_list, - STATE(1973), 1, + STATE(388), 1, + sym_block, + STATE(1924), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56734] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3810), 1, + [56473] = 7, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4100), 1, anon_sym_SEMI, - STATE(972), 1, + STATE(971), 1, sym_declaration_list, - STATE(2091), 1, + STATE(2107), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56757] = 7, - ACTIONS(3802), 1, + [56496] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(4102), 1, + anon_sym_SEMI, + ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4106), 1, + anon_sym_DASH_GT, + STATE(1007), 1, + sym_block, + STATE(2093), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56519] = 7, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4093), 1, + ACTIONS(4108), 1, anon_sym_SEMI, - STATE(917), 1, + STATE(455), 1, sym_declaration_list, - STATE(2115), 1, + STATE(2055), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56780] = 7, - ACTIONS(3802), 1, + [56542] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4095), 1, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4110), 1, anon_sym_SEMI, - STATE(289), 1, - sym_block, - STATE(2145), 1, + STATE(400), 1, + sym_declaration_list, + STATE(2143), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56803] = 4, - ACTIONS(3526), 1, + [56565] = 4, + ACTIONS(3550), 1, anon_sym_COLON_COLON, - ACTIONS(3874), 1, + ACTIONS(3856), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56820] = 7, - ACTIONS(3802), 1, + [56582] = 4, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, + ACTIONS(3872), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3844), 1, + [56599] = 7, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4097), 1, + ACTIONS(4112), 1, anon_sym_SEMI, - STATE(480), 1, - sym_declaration_list, - STATE(2057), 1, + STATE(280), 1, + sym_block, + STATE(2006), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56843] = 7, - ACTIONS(3802), 1, + [56622] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3826), 1, + anon_sym_LT, + ACTIONS(3836), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - anon_sym_COLON, - STATE(342), 1, - sym_declaration_list, - STATE(1831), 1, - sym_trait_bounds, - STATE(2312), 1, + STATE(1042), 1, + sym_field_declaration_list, + STATE(1853), 1, + sym_type_parameters, + STATE(2281), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56866] = 4, - ACTIONS(3526), 1, + [56645] = 4, + ACTIONS(3550), 1, anon_sym_COLON_COLON, - ACTIONS(3882), 1, + ACTIONS(3832), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56883] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3804), 1, + [56662] = 7, + ACTIONS(3923), 1, + anon_sym_COLON, + ACTIONS(3925), 1, anon_sym_LT, - ACTIONS(4075), 1, - anon_sym_LBRACE, - STATE(911), 1, - sym_enum_variant_list, - STATE(1870), 1, + ACTIONS(4114), 1, + anon_sym_SEMI, + ACTIONS(4116), 1, + anon_sym_EQ, + STATE(1855), 1, sym_type_parameters, - STATE(2155), 1, - sym_where_clause, + STATE(2462), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56906] = 7, - ACTIONS(3802), 1, + [56685] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, + ACTIONS(4118), 1, anon_sym_SEMI, - ACTIONS(4101), 1, + ACTIONS(4120), 1, anon_sym_DASH_GT, - STATE(277), 1, + STATE(981), 1, sym_block, - STATE(2142), 1, + STATE(2083), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56929] = 7, - ACTIONS(3802), 1, + [56708] = 7, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3804), 1, - anon_sym_LT, - ACTIONS(3828), 1, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4122), 1, + anon_sym_SEMI, + STATE(1004), 1, + sym_declaration_list, + STATE(2038), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56731] = 7, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(902), 1, - sym_field_declaration_list, - STATE(1872), 1, - sym_type_parameters, - STATE(2157), 1, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3923), 1, + anon_sym_COLON, + STATE(977), 1, + sym_declaration_list, + STATE(1828), 1, + sym_trait_bounds, + STATE(2241), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56952] = 7, + [56754] = 4, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4073), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4081), 1, + anon_sym_where, + [56771] = 7, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4124), 1, + sym_identifier, + ACTIONS(4126), 1, + anon_sym_STAR, + STATE(2049), 1, + sym_use_list, + STATE(2507), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56794] = 7, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4124), 1, + sym_identifier, + ACTIONS(4126), 1, + anon_sym_STAR, + STATE(2049), 1, + sym_use_list, + STATE(2416), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56817] = 7, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, + ACTIONS(4128), 1, anon_sym_SEMI, - STATE(424), 1, + ACTIONS(4130), 1, + anon_sym_DASH_GT, + STATE(952), 1, sym_block, - STATE(1890), 1, + STATE(2086), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56975] = 7, - ACTIONS(3802), 1, + [56840] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4105), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE, + ACTIONS(4132), 1, anon_sym_SEMI, - STATE(951), 1, + STATE(996), 1, sym_block, - STATE(1989), 1, + STATE(2079), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56998] = 7, - ACTIONS(3802), 1, + [56863] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3826), 1, + anon_sym_LT, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + STATE(924), 1, + sym_enum_variant_list, + STATE(1863), 1, + sym_type_parameters, + STATE(2325), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56886] = 7, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4107), 1, + ACTIONS(4134), 1, anon_sym_SEMI, - STATE(301), 1, + STATE(942), 1, sym_declaration_list, - STATE(1999), 1, + STATE(2087), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57021] = 7, - ACTIONS(3802), 1, + [56909] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4109), 1, + ACTIONS(4136), 1, anon_sym_SEMI, - STATE(983), 1, - sym_declaration_list, - STATE(1969), 1, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + STATE(319), 1, + sym_block, + STATE(2097), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57044] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4071), 1, + [56932] = 7, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4111), 1, + ACTIONS(4140), 1, anon_sym_SEMI, - STATE(991), 1, - sym_block, - STATE(1967), 1, + STATE(937), 1, + sym_declaration_list, + STATE(2092), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57067] = 7, - ACTIONS(3802), 1, + [56955] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4113), 1, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4142), 1, anon_sym_SEMI, - ACTIONS(4115), 1, - anon_sym_DASH_GT, - STATE(1006), 1, + STATE(399), 1, sym_block, - STATE(1963), 1, + STATE(1926), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57090] = 7, - ACTIONS(3802), 1, + [56978] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4117), 1, + ACTIONS(4144), 1, anon_sym_SEMI, - ACTIONS(4119), 1, + ACTIONS(4146), 1, anon_sym_DASH_GT, - STATE(1008), 1, + STATE(290), 1, sym_block, - STATE(2077), 1, + STATE(1949), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57113] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4121), 1, - anon_sym_SEMI, - STATE(320), 1, - sym_declaration_list, - STATE(2095), 1, - sym_where_clause, + [57001] = 4, + ACTIONS(4148), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57136] = 3, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2598), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [57018] = 6, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(3927), 1, + sym_identifier, + ACTIONS(3933), 1, + anon_sym_ref, + ACTIONS(3935), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3642), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2712), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [57151] = 5, - ACTIONS(4125), 1, + STATE(2207), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [57039] = 5, + ACTIONS(4152), 1, anon_sym_COLON, - ACTIONS(4127), 1, + ACTIONS(4154), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3457), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4123), 2, + ACTIONS(4150), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57170] = 7, - ACTIONS(3802), 1, + [57058] = 7, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4156), 1, + anon_sym_SEMI, + STATE(894), 1, + sym_declaration_list, + STATE(2108), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57081] = 7, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4129), 1, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4158), 1, anon_sym_SEMI, - ACTIONS(4131), 1, - anon_sym_DASH_GT, - STATE(942), 1, - sym_block, - STATE(2003), 1, + STATE(368), 1, + sym_declaration_list, + STATE(2091), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57193] = 7, - ACTIONS(3530), 1, - anon_sym_EQ, - ACTIONS(3924), 1, + [57104] = 7, + ACTIONS(3923), 1, anon_sym_COLON, - ACTIONS(4133), 1, + ACTIONS(4160), 1, anon_sym_COMMA, - ACTIONS(4135), 1, + ACTIONS(4162), 1, anon_sym_GT, - STATE(2038), 1, + STATE(1948), 1, sym_trait_bounds, - STATE(2086), 1, + STATE(1952), 1, aux_sym_type_parameters_repeat1, + STATE(2016), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57216] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(3924), 1, - anon_sym_COLON, - STATE(940), 1, - sym_declaration_list, - STATE(1801), 1, - sym_trait_bounds, - STATE(2225), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57239] = 4, - ACTIONS(3526), 1, + [57127] = 4, + ACTIONS(3550), 1, anon_sym_COLON_COLON, - ACTIONS(3834), 1, + ACTIONS(3898), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57256] = 7, - ACTIONS(3802), 1, + [57144] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(3826), 1, + anon_sym_LT, + ACTIONS(4164), 1, anon_sym_LBRACE, - ACTIONS(4137), 1, - anon_sym_SEMI, - ACTIONS(4139), 1, - anon_sym_DASH_GT, - STATE(879), 1, - sym_block, - STATE(2109), 1, + STATE(276), 1, + sym_enum_variant_list, + STATE(1818), 1, + sym_type_parameters, + STATE(2290), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57279] = 6, - ACTIONS(828), 1, - anon_sym_DOT_DOT, - ACTIONS(3910), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_ref, - ACTIONS(3918), 1, - sym_mutable_specifier, + [57167] = 7, + ACTIONS(3560), 1, + anon_sym_EQ, + ACTIONS(3923), 1, + anon_sym_COLON, + ACTIONS(4166), 1, + anon_sym_COMMA, + ACTIONS(4168), 1, + anon_sym_GT, + STATE(1965), 1, + sym_trait_bounds, + STATE(2102), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2211), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [57300] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4141), 1, - anon_sym_SEMI, - STATE(863), 1, - sym_declaration_list, - STATE(2129), 1, - sym_where_clause, + [57190] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57323] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(3748), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2724), 4, + anon_sym_RPAREN, anon_sym_PLUS, - ACTIONS(4081), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + [57205] = 7, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4143), 1, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4170), 1, anon_sym_SEMI, - STATE(464), 1, - sym_block, - STATE(2060), 1, + STATE(419), 1, + sym_declaration_list, + STATE(1973), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57346] = 7, - ACTIONS(3802), 1, + [57228] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4145), 1, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4172), 1, anon_sym_SEMI, - STATE(334), 1, + STATE(323), 1, sym_block, - STATE(2114), 1, + STATE(1953), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57369] = 7, - ACTIONS(3802), 1, + [57251] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4147), 1, + ACTIONS(4174), 1, anon_sym_SEMI, - STATE(845), 1, + STATE(408), 1, sym_declaration_list, - STATE(2136), 1, + STATE(1972), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57392] = 7, - ACTIONS(3802), 1, + [57274] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(4149), 1, + ACTIONS(4176), 1, anon_sym_SEMI, - ACTIONS(4151), 1, + ACTIONS(4178), 1, anon_sym_DASH_GT, - STATE(910), 1, + STATE(877), 1, sym_block, - STATE(2011), 1, + STATE(2145), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57415] = 7, - ACTIONS(3802), 1, + [57297] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4153), 1, - anon_sym_SEMI, - STATE(892), 1, + ACTIONS(3923), 1, + anon_sym_COLON, + STATE(264), 1, sym_declaration_list, - STATE(2018), 1, + STATE(1845), 1, + sym_trait_bounds, + STATE(2229), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57438] = 7, - ACTIONS(3802), 1, + [57320] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4155), 1, + ACTIONS(4180), 1, anon_sym_SEMI, - STATE(883), 1, + STATE(309), 1, sym_declaration_list, - STATE(2027), 1, + STATE(2048), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57461] = 7, - ACTIONS(3802), 1, + [57343] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4157), 1, + ACTIONS(4182), 1, anon_sym_SEMI, - STATE(314), 1, + STATE(301), 1, sym_declaration_list, - STATE(2031), 1, + STATE(1938), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57484] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3844), 1, + [57366] = 7, + ACTIONS(3822), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4159), 1, - anon_sym_SEMI, - STATE(317), 1, - sym_declaration_list, - STATE(2126), 1, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3826), 1, + anon_sym_LT, + STATE(386), 1, + sym_field_declaration_list, + STATE(1883), 1, + sym_type_parameters, + STATE(2304), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57507] = 7, - ACTIONS(2453), 1, - anon_sym_PLUS, - ACTIONS(3924), 1, + [57389] = 7, + ACTIONS(3923), 1, anon_sym_COLON, - ACTIONS(4161), 1, - anon_sym_COMMA, - ACTIONS(4163), 1, - anon_sym_GT, - STATE(2045), 1, - aux_sym_type_parameters_repeat1, - STATE(2049), 1, + ACTIONS(3925), 1, + anon_sym_LT, + ACTIONS(4184), 1, + anon_sym_SEMI, + ACTIONS(4186), 1, + anon_sym_EQ, + STATE(1860), 1, + sym_type_parameters, + STATE(2460), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57530] = 7, - ACTIONS(3802), 1, + [57412] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4165), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE, + ACTIONS(4188), 1, anon_sym_SEMI, - STATE(276), 1, - sym_declaration_list, - STATE(2032), 1, + STATE(876), 1, + sym_block, + STATE(2058), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57553] = 4, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [57570] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3844), 1, + [57435] = 7, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4169), 1, + ACTIONS(4190), 1, anon_sym_SEMI, - STATE(371), 1, + STATE(858), 1, sym_declaration_list, - STATE(1899), 1, + STATE(2138), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57593] = 5, - ACTIONS(4065), 1, - anon_sym_COLON, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, + [57458] = 7, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4192), 1, + anon_sym_SEMI, + STATE(846), 1, + sym_declaration_list, + STATE(2137), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4063), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57612] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3804), 1, - anon_sym_LT, - ACTIONS(4171), 1, + [57481] = 7, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(273), 1, - sym_enum_variant_list, - STATE(1866), 1, - sym_type_parameters, - STATE(2148), 1, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4194), 1, + anon_sym_SEMI, + STATE(887), 1, + sym_declaration_list, + STATE(2111), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57635] = 4, + [57504] = 4, + ACTIONS(4196), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3642), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4173), 2, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2598), 3, anon_sym_RPAREN, - anon_sym_COMMA, - [57652] = 4, - ACTIONS(4176), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3620), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2758), 3, - anon_sym_SEMI, anon_sym_PLUS, - anon_sym_DASH_GT, - [57669] = 4, - ACTIONS(4173), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3642), 2, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2712), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [57686] = 7, - ACTIONS(3802), 1, + [57521] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4179), 1, + ACTIONS(4198), 1, anon_sym_SEMI, - STATE(796), 1, - sym_declaration_list, - STATE(2100), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57709] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(3924), 1, - anon_sym_COLON, - STATE(966), 1, - sym_declaration_list, - STATE(1852), 1, - sym_trait_bounds, - STATE(2176), 1, + ACTIONS(4200), 1, + anon_sym_DASH_GT, + STATE(383), 1, + sym_block, + STATE(1981), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57732] = 7, + [57544] = 7, ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(3802), 1, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3804), 1, - anon_sym_LT, - STATE(260), 1, - sym_field_declaration_list, - STATE(1787), 1, - sym_type_parameters, - STATE(2287), 1, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4202), 1, + anon_sym_SEMI, + STATE(837), 1, + sym_declaration_list, + STATE(2128), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57755] = 4, - ACTIONS(3526), 1, + [57567] = 6, + ACTIONS(3591), 1, anon_sym_COLON_COLON, - ACTIONS(3846), 1, - anon_sym_for, + ACTIONS(4204), 1, + anon_sym_LPAREN, + ACTIONS(4208), 1, + anon_sym_EQ, + STATE(2336), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, - anon_sym_SEMI, + ACTIONS(4206), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57588] = 7, + ACTIONS(3800), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57772] = 7, - ACTIONS(3802), 1, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4181), 1, - anon_sym_SEMI, - STATE(384), 1, + ACTIONS(3923), 1, + anon_sym_COLON, + STATE(815), 1, sym_declaration_list, - STATE(1897), 1, + STATE(1831), 1, + sym_trait_bounds, + STATE(2192), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57795] = 7, - ACTIONS(3802), 1, + [57611] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3804), 1, + ACTIONS(3826), 1, anon_sym_LT, - ACTIONS(4171), 1, + ACTIONS(4164), 1, anon_sym_LBRACE, - STATE(265), 1, + STATE(340), 1, sym_enum_variant_list, - STATE(1833), 1, + STATE(1787), 1, sym_type_parameters, - STATE(2295), 1, + STATE(2176), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57818] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4183), 1, - anon_sym_SEMI, - ACTIONS(4185), 1, - anon_sym_DASH_GT, - STATE(801), 1, - sym_block, - STATE(2092), 1, - sym_where_clause, + [57634] = 6, + ACTIONS(4019), 1, + anon_sym_COLON_COLON, + ACTIONS(4204), 1, + anon_sym_LPAREN, + ACTIONS(4212), 1, + anon_sym_EQ, + STATE(2317), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57841] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4187), 1, - anon_sym_SEMI, - ACTIONS(4189), 1, - anon_sym_DASH_GT, - STATE(448), 1, - sym_block, - STATE(1950), 1, - sym_where_clause, + ACTIONS(4210), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57655] = 6, + ACTIONS(4017), 1, + anon_sym_COLON_COLON, + ACTIONS(4204), 1, + anon_sym_LPAREN, + ACTIONS(4212), 1, + anon_sym_EQ, + STATE(2317), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57864] = 6, - ACTIONS(3195), 1, - anon_sym_COLON_COLON, - ACTIONS(4161), 1, + ACTIONS(4210), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4163), 1, - anon_sym_GT, - STATE(2045), 1, - aux_sym_type_parameters_repeat1, + [57676] = 4, + ACTIONS(4087), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 2, + ACTIONS(3748), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2724), 3, + anon_sym_SEMI, anon_sym_PLUS, - anon_sym_as, - [57885] = 7, - ACTIONS(3802), 1, + anon_sym_DASH_GT, + [57693] = 7, + ACTIONS(3822), 1, + anon_sym_LBRACE, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3804), 1, + ACTIONS(3826), 1, anon_sym_LT, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(952), 1, + STATE(316), 1, sym_field_declaration_list, - STATE(1793), 1, + STATE(1888), 1, sym_type_parameters, - STATE(2182), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57908] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4191), 1, - anon_sym_SEMI, - STATE(349), 1, - sym_declaration_list, - STATE(2130), 1, + STATE(2247), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57931] = 7, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(3926), 1, - anon_sym_LT, - ACTIONS(4193), 1, - anon_sym_SEMI, - ACTIONS(4195), 1, - anon_sym_EQ, - STATE(1794), 1, - sym_type_parameters, - STATE(2518), 1, - sym_trait_bounds, + [57716] = 4, + ACTIONS(4214), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57954] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4197), 1, + ACTIONS(3706), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2784), 3, anon_sym_SEMI, - ACTIONS(4199), 1, + anon_sym_PLUS, anon_sym_DASH_GT, - STATE(311), 1, - sym_block, - STATE(2040), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57977] = 7, - ACTIONS(3802), 1, + [57733] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(4201), 1, + ACTIONS(4217), 1, anon_sym_SEMI, - ACTIONS(4203), 1, + ACTIONS(4219), 1, anon_sym_DASH_GT, - STATE(445), 1, + STATE(821), 1, sym_block, - STATE(1926), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58000] = 4, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, - ACTIONS(3864), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2606), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58017] = 7, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4205), 1, - sym_identifier, - ACTIONS(4207), 1, - anon_sym_STAR, - STATE(2116), 1, - sym_use_list, - STATE(2340), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58040] = 7, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3804), 1, - anon_sym_LT, - STATE(386), 1, - sym_field_declaration_list, - STATE(1851), 1, - sym_type_parameters, - STATE(2220), 1, + STATE(2125), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58063] = 7, - ACTIONS(3802), 1, + [57756] = 5, + ACTIONS(4196), 1, + anon_sym_COLON_COLON, + ACTIONS(4223), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4221), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57775] = 6, + ACTIONS(4013), 1, + anon_sym_COLON_COLON, + ACTIONS(4204), 1, + anon_sym_LPAREN, + ACTIONS(4212), 1, + anon_sym_EQ, + STATE(2317), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4210), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57796] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(4209), 1, + ACTIONS(4225), 1, anon_sym_SEMI, - STATE(431), 1, + STATE(896), 1, sym_block, - STATE(2069), 1, + STATE(2059), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58086] = 4, - ACTIONS(3526), 1, + [57819] = 4, + ACTIONS(3550), 1, anon_sym_COLON_COLON, - ACTIONS(3818), 1, + ACTIONS(3900), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58103] = 3, + [57836] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3620), 2, + ACTIONS(3706), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2758), 4, + ACTIONS(2784), 4, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, anon_sym_DASH_GT, - [58118] = 7, - ACTIONS(3802), 1, + [57851] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4211), 1, + ACTIONS(4227), 1, anon_sym_SEMI, - STATE(861), 1, - sym_declaration_list, - STATE(2022), 1, + ACTIONS(4229), 1, + anon_sym_DASH_GT, + STATE(271), 1, + sym_block, + STATE(2150), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58141] = 7, - ACTIONS(3802), 1, + [57874] = 4, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, + ACTIONS(3848), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3844), 1, + [57891] = 7, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4213), 1, + ACTIONS(4231), 1, anon_sym_SEMI, - STATE(393), 1, + STATE(449), 1, sym_declaration_list, - STATE(2019), 1, + STATE(1931), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58164] = 7, - ACTIONS(3802), 1, + [57914] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4215), 1, + ACTIONS(4233), 1, anon_sym_SEMI, - STATE(985), 1, + ACTIONS(4235), 1, + anon_sym_DASH_GT, + STATE(341), 1, sym_block, - STATE(1948), 1, + STATE(1960), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58187] = 4, - ACTIONS(4217), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [58204] = 7, - ACTIONS(3802), 1, + [57937] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - anon_sym_COLON, - STATE(439), 1, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4237), 1, + anon_sym_SEMI, + STATE(431), 1, sym_declaration_list, - STATE(1868), 1, - sym_trait_bounds, - STATE(2256), 1, + STATE(2050), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58227] = 7, - ACTIONS(3802), 1, + [57960] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - anon_sym_COLON, - STATE(375), 1, - sym_declaration_list, - STATE(1790), 1, - sym_trait_bounds, - STATE(2194), 1, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4239), 1, + anon_sym_SEMI, + STATE(472), 1, + sym_block, + STATE(1900), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58250] = 7, - ACTIONS(3802), 1, + [57983] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4219), 1, + ACTIONS(4241), 1, anon_sym_SEMI, - STATE(1036), 1, - sym_block, - STATE(1954), 1, + STATE(349), 1, + sym_declaration_list, + STATE(2146), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58273] = 7, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4205), 1, - sym_identifier, - ACTIONS(4207), 1, - anon_sym_STAR, - STATE(2116), 1, - sym_use_list, - STATE(2338), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58296] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2758), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3620), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4176), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58313] = 7, - ACTIONS(3802), 1, + [58006] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(4221), 1, + ACTIONS(4243), 1, anon_sym_SEMI, - ACTIONS(4223), 1, - anon_sym_DASH_GT, - STATE(303), 1, + STATE(943), 1, sym_block, - STATE(2048), 1, + STATE(2063), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58336] = 7, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(3926), 1, - anon_sym_LT, - ACTIONS(4225), 1, + [58029] = 7, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4245), 1, anon_sym_SEMI, - ACTIONS(4227), 1, - anon_sym_EQ, - STATE(1798), 1, - sym_type_parameters, - STATE(2513), 1, - sym_trait_bounds, + STATE(796), 1, + sym_declaration_list, + STATE(2074), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58359] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3810), 1, + [58052] = 7, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4229), 1, + ACTIONS(4247), 1, anon_sym_SEMI, - STATE(852), 1, + STATE(1050), 1, sym_declaration_list, - STATE(2042), 1, + STATE(2072), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58382] = 7, - ACTIONS(3802), 1, + [58075] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4231), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE, + ACTIONS(4249), 1, anon_sym_SEMI, - STATE(856), 1, - sym_declaration_list, - STATE(2041), 1, + STATE(1027), 1, + sym_block, + STATE(2070), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58405] = 4, - ACTIONS(3526), 1, + [58098] = 6, + ACTIONS(3213), 1, anon_sym_COLON_COLON, - ACTIONS(3866), 1, - anon_sym_for, + ACTIONS(4251), 1, + anon_sym_COMMA, + ACTIONS(4253), 1, + anon_sym_GT, + STATE(1952), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2598), 2, anon_sym_PLUS, + anon_sym_as, + [58119] = 7, + ACTIONS(3560), 1, + anon_sym_EQ, + ACTIONS(3562), 1, + anon_sym_COMMA, + ACTIONS(3564), 1, + anon_sym_GT, + ACTIONS(3923), 1, + anon_sym_COLON, + STATE(1963), 1, + aux_sym_type_parameters_repeat1, + STATE(1965), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58142] = 4, + ACTIONS(4255), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2598), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [58159] = 7, + ACTIONS(3824), 1, anon_sym_where, - [58422] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4233), 1, + ACTIONS(4257), 1, anon_sym_SEMI, - STATE(429), 1, - sym_declaration_list, - STATE(1898), 1, + ACTIONS(4259), 1, + anon_sym_DASH_GT, + STATE(997), 1, + sym_block, + STATE(2067), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58445] = 7, - ACTIONS(3802), 1, + [58182] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4235), 1, + ACTIONS(4261), 1, anon_sym_SEMI, - STATE(408), 1, + ACTIONS(4263), 1, + anon_sym_DASH_GT, + STATE(267), 1, sym_block, - STATE(2087), 1, + STATE(1903), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58468] = 7, - ACTIONS(3802), 1, + [58205] = 7, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4237), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE, + ACTIONS(4265), 1, anon_sym_SEMI, - STATE(1020), 1, + STATE(865), 1, sym_block, - STATE(1949), 1, + STATE(2113), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58491] = 4, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4243), 1, - anon_sym_COLON_COLON, + [58228] = 7, + ACTIONS(2508), 1, + anon_sym_PLUS, + ACTIONS(3923), 1, + anon_sym_COLON, + ACTIONS(4251), 1, + anon_sym_COMMA, + ACTIONS(4253), 1, + anon_sym_GT, + STATE(1948), 1, + sym_trait_bounds, + STATE(1952), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4239), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [58507] = 5, - ACTIONS(3652), 1, + [58251] = 5, + ACTIONS(4223), 1, anon_sym_COLON, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3656), 1, + ACTIONS(4255), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58525] = 5, - ACTIONS(798), 1, + ACTIONS(4221), 2, anon_sym_RPAREN, - ACTIONS(4245), 1, anon_sym_COMMA, - STATE(2053), 1, - aux_sym_parameters_repeat1, + [58270] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3433), 2, + ACTIONS(2784), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3706), 2, anon_sym_COLON, anon_sym_PIPE, - [58543] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4247), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(4214), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [58555] = 2, + [58287] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4249), 5, + ACTIONS(3008), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - [58567] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4251), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, + [58299] = 3, + ACTIONS(4267), 1, anon_sym_EQ, - anon_sym_COMMA, - [58579] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4253), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(2732), 4, + anon_sym_PLUS, anon_sym_COMMA, - [58591] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4255), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + anon_sym_GT, + anon_sym_COLON_COLON, + [58313] = 5, + ACTIONS(4269), 1, + anon_sym_RPAREN, + ACTIONS(4271), 1, anon_sym_COMMA, - [58603] = 4, - ACTIONS(4257), 1, - anon_sym_RBRACK, + STATE(1961), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2980), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3608), 2, - anon_sym_COMMA, + ACTIONS(3447), 2, + anon_sym_COLON, anon_sym_PIPE, - [58619] = 4, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(4260), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(233), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [58635] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2834), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + [58331] = 5, + ACTIONS(3662), 1, anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58647] = 2, + ACTIONS(3664), 1, + anon_sym_BANG, + ACTIONS(3672), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2814), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3542), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58349] = 5, + ACTIONS(3662), 1, anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58659] = 4, - ACTIONS(4167), 1, + ACTIONS(3664), 1, + anon_sym_BANG, + ACTIONS(3666), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3542), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4262), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58675] = 5, - ACTIONS(4264), 1, - anon_sym_RPAREN, - ACTIONS(4267), 1, + [58367] = 6, + ACTIONS(3923), 1, + anon_sym_COLON, + ACTIONS(4251), 1, anon_sym_COMMA, - STATE(2001), 1, - aux_sym_parameters_repeat1, + ACTIONS(4253), 1, + anon_sym_GT, + STATE(1948), 1, + sym_trait_bounds, + STATE(1952), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3433), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58693] = 6, - ACTIONS(3429), 1, + [58387] = 6, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3431), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3528), 1, + ACTIONS(3558), 1, anon_sym_COLON, - STATE(1364), 1, + STATE(1366), 1, sym_type_arguments, - STATE(2007), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58713] = 5, - ACTIONS(3530), 1, - anon_sym_EQ, - ACTIONS(3924), 1, - anon_sym_COLON, - STATE(2038), 1, + STATE(1958), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4270), 2, - anon_sym_COMMA, - anon_sym_GT, - [58731] = 2, + [58407] = 4, + ACTIONS(4273), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4272), 5, + ACTIONS(2982), 2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(3686), 2, anon_sym_COMMA, - [58743] = 2, + anon_sym_PIPE, + [58423] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 5, + ACTIONS(3039), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58755] = 2, + [58435] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3012), 5, + ACTIONS(3035), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58767] = 6, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(4161), 1, - anon_sym_COMMA, - ACTIONS(4163), 1, - anon_sym_GT, - STATE(2045), 1, - aux_sym_type_parameters_repeat1, - STATE(2049), 1, - sym_trait_bounds, + [58447] = 6, + ACTIONS(3439), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3445), 1, + anon_sym_LT2, + STATE(1366), 1, + sym_type_arguments, + STATE(1377), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58787] = 2, + [58467] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4274), 5, - anon_sym_SEMI, + ACTIONS(3965), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + anon_sym_LBRACK, + [58479] = 6, + ACTIONS(4276), 1, + anon_sym_RPAREN, + ACTIONS(4278), 1, + anon_sym_COLON, + ACTIONS(4280), 1, anon_sym_COMMA, - [58799] = 2, + ACTIONS(4282), 1, + anon_sym_PIPE, + STATE(1994), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4276), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + [58499] = 5, + ACTIONS(4284), 1, + anon_sym_RPAREN, + ACTIONS(4287), 1, anon_sym_COMMA, - [58811] = 5, - ACTIONS(3652), 1, + STATE(1961), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3447), 2, anon_sym_COLON, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3682), 1, - anon_sym_COLON_COLON, + anon_sym_PIPE, + [58517] = 5, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(4290), 1, + anon_sym_COMMA, + STATE(2066), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58829] = 2, + ACTIONS(3447), 2, + anon_sym_COLON, + anon_sym_PIPE, + [58535] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4292), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4278), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [58841] = 5, - ACTIONS(4280), 1, + STATE(1142), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [58551] = 5, + ACTIONS(4294), 1, anon_sym_RPAREN, - ACTIONS(4282), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - STATE(2001), 1, + STATE(2148), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3433), 2, + ACTIONS(3447), 2, anon_sym_COLON, anon_sym_PIPE, - [58859] = 6, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, + [58569] = 4, + ACTIONS(4196), 1, anon_sym_COLON_COLON, - ACTIONS(3431), 1, - anon_sym_LT2, - STATE(1364), 1, - sym_type_arguments, - STATE(1384), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58879] = 3, - ACTIONS(4284), 1, - anon_sym_EQ, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4150), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58585] = 6, + ACTIONS(3923), 1, + anon_sym_COLON, + ACTIONS(4298), 1, + anon_sym_COMMA, + ACTIONS(4300), 1, + anon_sym_GT, + STATE(1948), 1, + sym_trait_bounds, + STATE(2104), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2660), 4, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - [58893] = 4, - ACTIONS(2980), 1, - anon_sym_PLUS, + [58605] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3608), 2, + ACTIONS(2920), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58617] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3686), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4257), 2, + ACTIONS(2982), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [58909] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4286), 1, - anon_sym_if, + [58631] = 4, + ACTIONS(4304), 1, + anon_sym_as, + ACTIONS(4306), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1091), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [58925] = 4, - ACTIONS(4067), 1, + ACTIONS(4302), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [58647] = 4, + ACTIONS(4196), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3457), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4262), 2, + ACTIONS(4308), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58941] = 4, - ACTIONS(4167), 1, + [58663] = 4, + ACTIONS(4255), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3457), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4123), 2, + ACTIONS(4150), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58957] = 6, - ACTIONS(4288), 1, + [58679] = 5, + ACTIONS(790), 1, anon_sym_RPAREN, - ACTIONS(4290), 1, - anon_sym_COLON, - ACTIONS(4292), 1, + ACTIONS(4310), 1, anon_sym_COMMA, - ACTIONS(4294), 1, + STATE(2114), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3447), 2, + anon_sym_COLON, anon_sym_PIPE, - STATE(1970), 1, - aux_sym_tuple_pattern_repeat1, + [58697] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58977] = 2, + ACTIONS(4312), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [58709] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2862), 5, + ACTIONS(4314), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [58989] = 2, + anon_sym_COMMA, + [58721] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2858), 5, + ACTIONS(4316), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [59001] = 5, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, anon_sym_COMMA, - STATE(1972), 1, - aux_sym_parameters_repeat1, + [58733] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4318), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [58745] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3433), 2, + ACTIONS(2924), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - anon_sym_PIPE, - [59019] = 4, - ACTIONS(4067), 1, + anon_sym_where, + anon_sym_EQ, + [58757] = 4, + ACTIONS(4322), 1, + anon_sym_as, + ACTIONS(4324), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4123), 2, - anon_sym_RPAREN, + ACTIONS(4320), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [59035] = 3, + [58773] = 4, + ACTIONS(4255), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3608), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2980), 3, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4308), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [59049] = 2, + [58789] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4298), 5, + ACTIONS(4326), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59061] = 2, + [58801] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4300), 5, + ACTIONS(4328), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59073] = 4, - ACTIONS(4304), 1, - anon_sym_as, - ACTIONS(4306), 1, - anon_sym_COLON_COLON, + [58813] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4302), 3, + ACTIONS(4330), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [59089] = 5, - ACTIONS(4308), 1, - anon_sym_RPAREN, - ACTIONS(4310), 1, - anon_sym_COMMA, - STATE(2144), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3433), 2, - anon_sym_COLON, - anon_sym_PIPE, - [59107] = 2, + [58825] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3893), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(4332), 5, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - [59119] = 4, - ACTIONS(4241), 1, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [58837] = 4, + ACTIONS(4322), 1, anon_sym_as, - ACTIONS(4312), 1, + ACTIONS(4334), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4239), 3, + ACTIONS(4320), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [59135] = 6, - ACTIONS(2566), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_COLON_COLON, - ACTIONS(3431), 1, - anon_sym_LT2, - STATE(962), 1, - sym_parameters, - STATE(1364), 1, - sym_type_arguments, + [58853] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59155] = 6, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(4314), 1, + ACTIONS(4336), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(4316), 1, - anon_sym_GT, - STATE(2049), 1, - sym_trait_bounds, - STATE(2088), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59175] = 4, - ACTIONS(4241), 1, + [58865] = 4, + ACTIONS(4322), 1, anon_sym_as, - ACTIONS(4318), 1, + ACTIONS(4338), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4239), 3, + ACTIONS(4320), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [59191] = 4, + [58881] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(4320), 1, + ACTIONS(4340), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(112), 3, + STATE(167), 3, sym_if_expression, sym_if_let_expression, sym_block, - [59207] = 2, + [58897] = 4, + ACTIONS(2982), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4322), 5, + ACTIONS(3686), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4273), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58913] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4342), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59219] = 2, + [58925] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4324), 5, + ACTIONS(3016), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - [59231] = 2, + [58937] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4326), 5, + ACTIONS(4344), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59243] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4075), 1, - anon_sym_LBRACE, - STATE(1014), 1, - sym_enum_variant_list, - STATE(2192), 1, - sym_where_clause, + [58949] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59260] = 3, + ACTIONS(4346), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [58961] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3433), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4328), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59273] = 5, - ACTIONS(798), 1, - anon_sym_RPAREN, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4245), 1, + ACTIONS(4348), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(2053), 1, - aux_sym_parameters_repeat1, + [58973] = 5, + ACTIONS(3560), 1, + anon_sym_EQ, + ACTIONS(3923), 1, + anon_sym_COLON, + STATE(1965), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59290] = 4, - ACTIONS(4332), 1, + ACTIONS(4350), 2, anon_sym_COMMA, - STATE(1781), 1, - aux_sym_tuple_pattern_repeat1, + anon_sym_GT, + [58991] = 6, + ACTIONS(2580), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3445), 1, + anon_sym_LT2, + STATE(960), 1, + sym_parameters, + STATE(1366), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4330), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [59305] = 3, + [59011] = 4, + ACTIONS(594), 1, + anon_sym_LBRACE, + ACTIONS(4352), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3433), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4335), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59318] = 4, - ACTIONS(3522), 1, - anon_sym_COLON_COLON, - ACTIONS(3932), 1, - anon_sym_BANG, + STATE(239), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [59027] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59333] = 5, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4337), 1, - anon_sym_RPAREN, - ACTIONS(4339), 1, + ACTIONS(4354), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(1920), 1, - aux_sym_tuple_type_repeat1, + [59039] = 4, + ACTIONS(4356), 1, + anon_sym_DQUOTE, + STATE(1889), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59350] = 5, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_LT, - STATE(1697), 1, - sym_parameters, - STATE(2269), 1, - sym_type_parameters, + ACTIONS(4358), 2, + sym__string_content, + sym_escape_sequence, + [59054] = 5, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4164), 1, + anon_sym_LBRACE, + STATE(275), 1, + sym_enum_variant_list, + STATE(2161), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59367] = 4, + [59071] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1000), 1, + ACTIONS(1099), 1, sym_line_comment, - ACTIONS(4341), 1, + ACTIONS(4360), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4343), 3, + ACTIONS(4362), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59382] = 5, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(3802), 1, - anon_sym_where, - STATE(461), 1, - sym_field_declaration_list, - STATE(2235), 1, - sym_where_clause, + [59086] = 4, + ACTIONS(3664), 1, + anon_sym_BANG, + ACTIONS(3666), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59399] = 5, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_LT, - STATE(1720), 1, - sym_parameters, - STATE(2232), 1, - sym_type_parameters, + ACTIONS(3542), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59101] = 4, + ACTIONS(3923), 1, + anon_sym_COLON, + STATE(1948), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4364), 2, + anon_sym_COMMA, + anon_sym_GT, + [59116] = 4, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + ACTIONS(3960), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59416] = 4, + ACTIONS(3542), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59131] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1000), 1, + ACTIONS(1099), 1, sym_line_comment, - ACTIONS(4345), 1, + ACTIONS(4367), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4347), 3, + ACTIONS(4369), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59431] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(283), 1, - sym_declaration_list, - STATE(2151), 1, - sym_where_clause, + [59146] = 4, + ACTIONS(4371), 1, + anon_sym_DQUOTE, + STATE(1812), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59448] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(346), 1, - sym_declaration_list, - STATE(2313), 1, - sym_where_clause, + ACTIONS(4373), 2, + sym__string_content, + sym_escape_sequence, + [59161] = 4, + ACTIONS(3664), 1, + anon_sym_BANG, + ACTIONS(3758), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59465] = 5, - ACTIONS(4349), 1, + ACTIONS(3542), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59176] = 5, + ACTIONS(4375), 1, anon_sym_LPAREN, - ACTIONS(4351), 1, + ACTIONS(4377), 1, anon_sym_LBRACE, - ACTIONS(4353), 1, + ACTIONS(4379), 1, anon_sym_LBRACK, - STATE(1945), 1, - sym_token_tree, + STATE(178), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59482] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(920), 1, - sym_field_declaration_list, - STATE(2152), 1, - sym_where_clause, + [59193] = 5, + ACTIONS(3439), 1, + anon_sym_LPAREN, + ACTIONS(3826), 1, + anon_sym_LT, + STATE(1672), 1, + sym_parameters, + STATE(2288), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59499] = 5, - ACTIONS(3924), 1, + ACTIONS(3447), 2, anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_SEMI, - ACTIONS(4357), 1, - anon_sym_EQ, - STATE(2565), 1, - sym_trait_bounds, + anon_sym_PIPE, + ACTIONS(4381), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59223] = 5, + ACTIONS(3439), 1, + anon_sym_LPAREN, + ACTIONS(3826), 1, + anon_sym_LT, + STATE(1662), 1, + sym_parameters, + STATE(2269), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59516] = 5, - ACTIONS(3802), 1, + [59240] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1099), 1, + sym_line_comment, + ACTIONS(4383), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4385), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59255] = 5, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(928), 1, + STATE(310), 1, sym_declaration_list, - STATE(2166), 1, + STATE(2208), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59533] = 5, - ACTIONS(3724), 1, + [59272] = 5, + ACTIONS(3439), 1, + anon_sym_LPAREN, + ACTIONS(3826), 1, + anon_sym_LT, + STATE(1710), 1, + sym_parameters, + STATE(2289), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59289] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1099), 1, + sym_line_comment, + ACTIONS(4387), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4389), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59304] = 5, + ACTIONS(4282), 1, anon_sym_PIPE, - ACTIONS(4359), 1, + ACTIONS(4391), 1, anon_sym_SEMI, - ACTIONS(4361), 1, + ACTIONS(4393), 1, anon_sym_COLON, - ACTIONS(4363), 1, + ACTIONS(4395), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59550] = 5, - ACTIONS(2566), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_LT2, - STATE(960), 1, - sym_parameters, - STATE(1358), 1, - sym_type_arguments, + [59321] = 3, + ACTIONS(4397), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59567] = 5, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(4365), 1, - anon_sym_SEMI, - ACTIONS(4367), 1, - anon_sym_EQ, - STATE(2393), 1, - sym_trait_bounds, + ACTIONS(4399), 3, + sym_self, + sym_super, + sym_crate, + [59334] = 3, + ACTIONS(4401), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59584] = 5, - ACTIONS(4314), 1, - anon_sym_COMMA, - ACTIONS(4316), 1, - anon_sym_GT, - ACTIONS(4369), 1, - anon_sym_EQ, - STATE(2088), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4403), 3, + sym_self, + sym_super, + sym_crate, + [59347] = 5, + ACTIONS(3439), 1, + anon_sym_LPAREN, + ACTIONS(3826), 1, + anon_sym_LT, + STATE(1653), 1, + sym_parameters, + STATE(2319), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59601] = 5, - ACTIONS(4073), 1, + [59364] = 5, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4371), 1, + ACTIONS(4405), 1, anon_sym_RPAREN, - ACTIONS(4373), 1, + ACTIONS(4407), 1, anon_sym_COMMA, - STATE(2084), 1, - aux_sym_tuple_type_repeat1, + STATE(1910), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59618] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3810), 1, - anon_sym_LBRACE, - STATE(998), 1, - sym_declaration_list, - STATE(2246), 1, - sym_where_clause, + [59381] = 4, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + ACTIONS(3662), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59635] = 4, - ACTIONS(3522), 1, + ACTIONS(3542), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59396] = 4, + ACTIONS(4154), 1, anon_sym_COLON_COLON, - ACTIONS(3652), 1, + ACTIONS(4223), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, + ACTIONS(3457), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59650] = 4, - ACTIONS(4065), 1, + [59411] = 5, + ACTIONS(4278), 1, anon_sym_COLON, - ACTIONS(4127), 1, - anon_sym_COLON_COLON, + ACTIONS(4409), 1, + anon_sym_COMMA, + ACTIONS(4411), 1, + anon_sym_PIPE, + STATE(1944), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59665] = 5, - ACTIONS(4073), 1, + [59428] = 5, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4375), 1, + ACTIONS(4413), 1, anon_sym_RPAREN, - ACTIONS(4377), 1, + ACTIONS(4415), 1, anon_sym_COMMA, - STATE(2002), 1, + STATE(2007), 1, aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59682] = 4, - ACTIONS(3), 1, + [59445] = 4, + ACTIONS(4417), 1, + anon_sym_DQUOTE, + STATE(1889), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1000), 1, sym_line_comment, + ACTIONS(4358), 2, + sym__string_content, + sym_escape_sequence, + [59460] = 5, + ACTIONS(4375), 1, + anon_sym_LPAREN, + ACTIONS(4377), 1, + anon_sym_LBRACE, ACTIONS(4379), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4381), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59697] = 5, - ACTIONS(2453), 1, + anon_sym_LBRACK, + STATE(169), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59477] = 5, + ACTIONS(4419), 1, + anon_sym_LPAREN, + ACTIONS(4421), 1, + anon_sym_LBRACE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + STATE(832), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59494] = 4, + ACTIONS(4425), 1, + anon_sym_DQUOTE, + STATE(1889), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4358), 2, + sym__string_content, + sym_escape_sequence, + [59509] = 5, + ACTIONS(4419), 1, + anon_sym_LPAREN, + ACTIONS(4421), 1, + anon_sym_LBRACE, + ACTIONS(4423), 1, + anon_sym_LBRACK, + STATE(835), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59526] = 4, + ACTIONS(4427), 1, + anon_sym_DQUOTE, + STATE(1815), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4429), 2, + sym__string_content, + sym_escape_sequence, + [59541] = 5, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4164), 1, + anon_sym_LBRACE, + STATE(353), 1, + sym_enum_variant_list, + STATE(2339), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59558] = 5, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_LBRACK, + STATE(1422), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59575] = 5, + ACTIONS(2508), 1, anon_sym_PLUS, - ACTIONS(4383), 1, + ACTIONS(4437), 1, anon_sym_COMMA, - ACTIONS(4385), 1, + ACTIONS(4439), 1, anon_sym_GT, - STATE(1946), 1, + STATE(1942), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59714] = 5, - ACTIONS(4073), 1, + [59592] = 5, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4383), 1, + ACTIONS(4437), 1, anon_sym_COMMA, - ACTIONS(4385), 1, + ACTIONS(4439), 1, anon_sym_GT, - STATE(1946), 1, + STATE(1942), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59731] = 5, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4308), 1, + [59609] = 5, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(4441), 1, anon_sym_RPAREN, - ACTIONS(4310), 1, + ACTIONS(4443), 1, anon_sym_COMMA, - STATE(2144), 1, - aux_sym_parameters_repeat1, + STATE(2101), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59748] = 5, - ACTIONS(4387), 1, + [59626] = 5, + ACTIONS(4431), 1, anon_sym_LPAREN, - ACTIONS(4389), 1, + ACTIONS(4433), 1, anon_sym_LBRACE, - ACTIONS(4391), 1, + ACTIONS(4435), 1, anon_sym_LBRACK, - STATE(1061), 1, + STATE(1403), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59765] = 5, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_LT, - STATE(1663), 1, - sym_parameters, - STATE(2308), 1, - sym_type_parameters, + [59643] = 4, + ACTIONS(4445), 1, + anon_sym_DQUOTE, + STATE(1786), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59782] = 5, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4393), 1, - anon_sym_RPAREN, - ACTIONS(4395), 1, + ACTIONS(4447), 2, + sym__string_content, + sym_escape_sequence, + [59658] = 5, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(4449), 1, + anon_sym_RBRACK, + ACTIONS(4451), 1, anon_sym_COMMA, - STATE(1885), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2126), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59799] = 4, - ACTIONS(4397), 1, - anon_sym_DQUOTE, - STATE(1849), 1, - aux_sym_string_literal_repeat1, + [59675] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4399), 2, - sym__string_content, - sym_escape_sequence, - [59814] = 5, - ACTIONS(792), 1, + ACTIONS(3447), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4453), 2, anon_sym_RPAREN, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4296), 1, anon_sym_COMMA, - STATE(1972), 1, - aux_sym_parameters_repeat1, + [59688] = 4, + ACTIONS(4457), 1, + anon_sym_COMMA, + STATE(1827), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59831] = 5, - ACTIONS(3273), 1, + ACTIONS(4455), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4401), 1, - sym_identifier, - ACTIONS(4403), 1, - anon_sym_STAR, - STATE(2107), 1, - sym_use_list, + [59703] = 5, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3824), 1, + anon_sym_where, + STATE(1010), 1, + sym_declaration_list, + STATE(2262), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59848] = 5, - ACTIONS(4073), 1, + [59720] = 5, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4405), 1, + ACTIONS(4460), 1, anon_sym_RPAREN, - ACTIONS(4407), 1, + ACTIONS(4462), 1, anon_sym_COMMA, - STATE(2112), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1989), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59865] = 5, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(4409), 1, - anon_sym_SEMI, - ACTIONS(4411), 1, - anon_sym_COLON, - ACTIONS(4413), 1, - anon_sym_EQ, + [59737] = 5, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3824), 1, + anon_sym_where, + STATE(976), 1, + sym_declaration_list, + STATE(2240), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59882] = 5, - ACTIONS(4290), 1, - anon_sym_COLON, - ACTIONS(4415), 1, - anon_sym_COMMA, - ACTIONS(4417), 1, - anon_sym_PIPE, - STATE(1931), 1, - aux_sym_closure_parameters_repeat1, + [59754] = 5, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3824), 1, + anon_sym_where, + STATE(947), 1, + sym_declaration_list, + STATE(2235), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59899] = 4, - ACTIONS(4419), 1, - anon_sym_DQUOTE, - STATE(1849), 1, - aux_sym_string_literal_repeat1, + [59771] = 5, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3830), 1, + anon_sym_LBRACE, + STATE(307), 1, + sym_declaration_list, + STATE(2305), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4399), 2, - sym__string_content, - sym_escape_sequence, - [59914] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1000), 1, - sym_line_comment, - ACTIONS(4421), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4423), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59929] = 5, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4425), 1, + [59788] = 5, + ACTIONS(4251), 1, anon_sym_COMMA, - ACTIONS(4427), 1, + ACTIONS(4253), 1, anon_sym_GT, - STATE(2113), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4464), 1, + anon_sym_EQ, + STATE(1952), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59805] = 5, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3830), 1, + anon_sym_LBRACE, + STATE(391), 1, + sym_declaration_list, + STATE(2242), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59946] = 5, - ACTIONS(4288), 1, + [59822] = 5, + ACTIONS(4276), 1, anon_sym_RPAREN, - ACTIONS(4292), 1, + ACTIONS(4280), 1, anon_sym_COMMA, - ACTIONS(4294), 1, + ACTIONS(4282), 1, anon_sym_PIPE, - STATE(1970), 1, + STATE(1994), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59963] = 5, - ACTIONS(4429), 1, - anon_sym_LPAREN, - ACTIONS(4431), 1, - anon_sym_LBRACE, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(176), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59980] = 5, - ACTIONS(2453), 1, + [59839] = 5, + ACTIONS(790), 1, + anon_sym_RPAREN, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4425), 1, + ACTIONS(4310), 1, anon_sym_COMMA, - ACTIONS(4427), 1, - anon_sym_GT, - STATE(2113), 1, - aux_sym_type_arguments_repeat1, + STATE(2114), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59997] = 5, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(4205), 1, - sym_identifier, - ACTIONS(4207), 1, - anon_sym_STAR, - STATE(2116), 1, - sym_use_list, + [59856] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60014] = 3, - ACTIONS(4294), 1, + ACTIONS(4466), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, + [59869] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4330), 3, + ACTIONS(4468), 3, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [60027] = 5, - ACTIONS(3724), 1, anon_sym_PIPE, - ACTIONS(4435), 1, - anon_sym_SEMI, - ACTIONS(4437), 1, - anon_sym_COLON, - ACTIONS(4439), 1, - anon_sym_EQ, + [59882] = 5, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3836), 1, + anon_sym_LBRACE, + STATE(842), 1, + sym_field_declaration_list, + STATE(2204), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60044] = 3, - ACTIONS(4441), 1, - anon_sym_in, + [59899] = 5, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4090), 1, + anon_sym_LBRACE, + STATE(817), 1, + sym_enum_variant_list, + STATE(2199), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4443), 3, - sym_self, - sym_super, - sym_crate, - [60057] = 5, - ACTIONS(4387), 1, - anon_sym_LPAREN, - ACTIONS(4389), 1, + [59916] = 5, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(1134), 1, - sym_delim_token_tree, + ACTIONS(3824), 1, + anon_sym_where, + STATE(818), 1, + sym_declaration_list, + STATE(2191), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60074] = 5, - ACTIONS(3802), 1, + [59933] = 5, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(936), 1, + STATE(263), 1, sym_declaration_list, - STATE(2224), 1, + STATE(2231), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60091] = 4, - ACTIONS(4447), 1, - anon_sym_COMMA, - STATE(1830), 1, - aux_sym_where_clause_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4445), 2, - anon_sym_SEMI, + [59950] = 5, + ACTIONS(3800), 1, anon_sym_LBRACE, - [60106] = 5, - ACTIONS(3802), 1, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(422), 1, + STATE(802), 1, sym_declaration_list, - STATE(2263), 1, + STATE(2186), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60123] = 4, - ACTIONS(4450), 1, - anon_sym_DQUOTE, - STATE(1812), 1, - aux_sym_string_literal_repeat1, + [59967] = 4, + ACTIONS(3664), 1, + anon_sym_BANG, + ACTIONS(3672), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4452), 2, - sym__string_content, - sym_escape_sequence, - [60138] = 5, - ACTIONS(3802), 1, + ACTIONS(3542), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59982] = 5, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4171), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(449), 1, - sym_enum_variant_list, - STATE(2238), 1, + STATE(401), 1, + sym_declaration_list, + STATE(2154), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60155] = 5, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(4454), 1, - anon_sym_RBRACK, - ACTIONS(4456), 1, - anon_sym_COMMA, - STATE(1960), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60172] = 5, - ACTIONS(3425), 1, + [59999] = 5, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, + ACTIONS(3445), 1, anon_sym_LT2, - STATE(1358), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1390), 1, + STATE(1380), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60189] = 4, - ACTIONS(4458), 1, - anon_sym_DQUOTE, - STATE(1860), 1, - aux_sym_string_literal_repeat1, + [60016] = 5, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(4470), 1, + anon_sym_SEMI, + ACTIONS(4472), 1, + anon_sym_COLON, + ACTIONS(4474), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4460), 2, - sym__string_content, - sym_escape_sequence, - [60204] = 4, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3682), 1, - anon_sym_COLON_COLON, + [60033] = 5, + ACTIONS(2508), 1, + anon_sym_PLUS, + ACTIONS(4476), 1, + anon_sym_COMMA, + ACTIONS(4478), 1, + anon_sym_GT, + STATE(2142), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60219] = 4, - ACTIONS(4462), 1, - anon_sym_DQUOTE, - STATE(1818), 1, - aux_sym_string_literal_repeat1, + [60050] = 5, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4476), 1, + anon_sym_COMMA, + ACTIONS(4478), 1, + anon_sym_GT, + STATE(2142), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4464), 2, - sym__string_content, - sym_escape_sequence, - [60234] = 5, - ACTIONS(4466), 1, - anon_sym_LPAREN, - ACTIONS(4468), 1, - anon_sym_LBRACE, - ACTIONS(4470), 1, - anon_sym_LBRACK, - STATE(1404), 1, - sym_delim_token_tree, + [60067] = 5, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4294), 1, + anon_sym_RPAREN, + ACTIONS(4296), 1, + anon_sym_COMMA, + STATE(2148), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60251] = 5, - ACTIONS(4073), 1, + [60084] = 5, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4280), 1, + ACTIONS(4480), 1, anon_sym_RPAREN, - ACTIONS(4282), 1, + ACTIONS(4482), 1, anon_sym_COMMA, - STATE(2001), 1, - aux_sym_parameters_repeat1, + STATE(2003), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60268] = 5, - ACTIONS(3802), 1, + [60101] = 5, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(459), 1, + STATE(429), 1, sym_declaration_list, - STATE(2195), 1, + STATE(2272), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60285] = 4, - ACTIONS(4472), 1, - anon_sym_COMMA, - STATE(1830), 1, - aux_sym_where_clause_repeat1, + [60118] = 5, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(3836), 1, + anon_sym_LBRACE, + STATE(920), 1, + sym_field_declaration_list, + STATE(2188), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2930), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60300] = 5, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(4474), 1, + [60135] = 5, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4269), 1, anon_sym_RPAREN, - ACTIONS(4476), 1, + ACTIONS(4271), 1, anon_sym_COMMA, - STATE(1959), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1961), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60317] = 4, - ACTIONS(3522), 1, - anon_sym_COLON_COLON, - ACTIONS(4478), 1, + [60152] = 5, + ACTIONS(3923), 1, anon_sym_COLON, + ACTIONS(4484), 1, + anon_sym_SEMI, + ACTIONS(4486), 1, + anon_sym_EQ, + STATE(2554), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60332] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3844), 1, + [60169] = 5, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(437), 1, + ACTIONS(3824), 1, + anon_sym_where, + STATE(926), 1, sym_declaration_list, - STATE(2260), 1, + STATE(2198), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60349] = 4, - ACTIONS(4125), 1, + [60186] = 5, + ACTIONS(3646), 1, + anon_sym_PIPE, + ACTIONS(4488), 1, + anon_sym_SEMI, + ACTIONS(4490), 1, anon_sym_COLON, - ACTIONS(4127), 1, - anon_sym_COLON_COLON, + ACTIONS(4492), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60364] = 4, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3656), 1, - anon_sym_COLON_COLON, + [60203] = 5, + ACTIONS(2580), 1, + anon_sym_LPAREN, + ACTIONS(3445), 1, + anon_sym_LT2, + STATE(955), 1, + sym_parameters, + STATE(1364), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60379] = 3, - ACTIONS(4480), 1, + [60220] = 4, + ACTIONS(3923), 1, anon_sym_COLON, + STATE(1948), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3724), 3, - anon_sym_RPAREN, + ACTIONS(4494), 2, anon_sym_COMMA, - anon_sym_PIPE, - [60392] = 4, - ACTIONS(4482), 1, - anon_sym_DQUOTE, - STATE(1849), 1, - aux_sym_string_literal_repeat1, + anon_sym_GT, + [60235] = 5, + ACTIONS(3923), 1, + anon_sym_COLON, + ACTIONS(4496), 1, + anon_sym_SEMI, + ACTIONS(4498), 1, + anon_sym_EQ, + STATE(2580), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4484), 2, - sym__string_content, - sym_escape_sequence, - [60407] = 4, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3750), 1, - anon_sym_COLON_COLON, + [60252] = 5, + ACTIONS(4298), 1, + anon_sym_COMMA, + ACTIONS(4300), 1, + anon_sym_GT, + ACTIONS(4464), 1, + anon_sym_EQ, + STATE(2104), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60422] = 5, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(3802), 1, - anon_sym_where, - STATE(332), 1, - sym_field_declaration_list, - STATE(2309), 1, - sym_where_clause, + [60269] = 5, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4500), 1, + anon_sym_RPAREN, + ACTIONS(4502), 1, + anon_sym_COMMA, + STATE(2100), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60439] = 5, - ACTIONS(3802), 1, + [60286] = 5, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(898), 1, - sym_declaration_list, - STATE(2219), 1, + STATE(1014), 1, + sym_enum_variant_list, + STATE(2237), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60456] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3810), 1, + [60303] = 5, + ACTIONS(4003), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, anon_sym_LBRACE, - STATE(809), 1, - sym_declaration_list, - STATE(2170), 1, - sym_where_clause, + ACTIONS(4007), 1, + anon_sym_LBRACK, + STATE(1055), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60473] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [60320] = 4, + ACTIONS(4504), 1, + anon_sym_DQUOTE, + STATE(1889), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4487), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [60486] = 5, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3924), 1, - anon_sym_COLON, - STATE(1358), 1, - sym_type_arguments, - STATE(2017), 1, - sym_trait_bounds, + ACTIONS(4358), 2, + sym__string_content, + sym_escape_sequence, + [60335] = 5, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(4506), 1, + sym_identifier, + ACTIONS(4508), 1, + anon_sym_STAR, + STATE(2090), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60503] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [60352] = 5, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(4510), 1, + anon_sym_SEMI, + ACTIONS(4512), 1, + anon_sym_COLON, + ACTIONS(4514), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4489), 3, - anon_sym_RPAREN, + [60369] = 4, + ACTIONS(4518), 1, anon_sym_COMMA, - anon_sym_PIPE, - [60516] = 4, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(4491), 1, - sym_identifier, + STATE(1868), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1140), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [60531] = 5, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_LT, - STATE(1704), 1, - sym_parameters, - STATE(2296), 1, - sym_type_parameters, + ACTIONS(4516), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [60384] = 5, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3923), 1, + anon_sym_COLON, + STATE(1364), 1, + sym_type_arguments, + STATE(1957), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60548] = 4, - ACTIONS(4495), 1, - anon_sym_COMMA, - STATE(1842), 1, - aux_sym_where_clause_repeat1, + [60401] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4493), 2, - anon_sym_SEMI, + ACTIONS(4516), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [60414] = 5, + ACTIONS(3307), 1, anon_sym_LBRACE, - [60563] = 4, - ACTIONS(4497), 1, - anon_sym_DQUOTE, - STATE(1849), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4399), 2, - sym__string_content, - sym_escape_sequence, - [60578] = 3, - ACTIONS(4499), 1, - anon_sym_in, + ACTIONS(4124), 1, + sym_identifier, + ACTIONS(4126), 1, + anon_sym_STAR, + STATE(2049), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4501), 3, - sym_self, - sym_super, - sym_crate, - [60591] = 5, - ACTIONS(4161), 1, + [60431] = 4, + ACTIONS(4523), 1, anon_sym_COMMA, - ACTIONS(4163), 1, - anon_sym_GT, - ACTIONS(4369), 1, - anon_sym_EQ, - STATE(2045), 1, - aux_sym_type_parameters_repeat1, + STATE(1876), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60608] = 5, - ACTIONS(4466), 1, + ACTIONS(4521), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [60446] = 5, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(4468), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(4470), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - STATE(1413), 1, + STATE(1131), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60625] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3810), 1, - anon_sym_LBRACE, - STATE(790), 1, - sym_declaration_list, - STATE(2175), 1, - sym_where_clause, + [60463] = 5, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4290), 1, + anon_sym_COMMA, + STATE(2066), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60642] = 4, - ACTIONS(3924), 1, - anon_sym_COLON, - STATE(2049), 1, - sym_trait_bounds, + [60480] = 4, + ACTIONS(4525), 1, + anon_sym_DQUOTE, + STATE(1865), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4503), 2, + ACTIONS(4527), 2, + sym__string_content, + sym_escape_sequence, + [60495] = 4, + ACTIONS(4529), 1, anon_sym_COMMA, - anon_sym_GT, - [60657] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4171), 1, - anon_sym_LBRACE, - STATE(472), 1, - sym_enum_variant_list, - STATE(2326), 1, - sym_where_clause, + STATE(1827), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60674] = 5, - ACTIONS(4429), 1, - anon_sym_LPAREN, - ACTIONS(4431), 1, + ACTIONS(2960), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(97), 1, - sym_delim_token_tree, + [60510] = 5, + ACTIONS(4204), 1, + anon_sym_LPAREN, + ACTIONS(4531), 1, + anon_sym_RBRACK, + ACTIONS(4533), 1, + anon_sym_EQ, + STATE(2346), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60691] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(258), 1, - sym_declaration_list, - STATE(2201), 1, - sym_where_clause, + [60527] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60708] = 5, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_LT, - STATE(1698), 1, - sym_parameters, - STATE(2272), 1, - sym_type_parameters, + ACTIONS(4535), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60540] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60725] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4075), 1, - anon_sym_LBRACE, - STATE(789), 1, - sym_enum_variant_list, - STATE(2183), 1, - sym_where_clause, + ACTIONS(4537), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60553] = 4, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + ACTIONS(4539), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3542), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60568] = 4, + ACTIONS(4152), 1, + anon_sym_COLON, + ACTIONS(4154), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60742] = 4, - ACTIONS(3924), 1, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60583] = 3, + ACTIONS(4541), 1, anon_sym_COLON, - STATE(2049), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4505), 2, + ACTIONS(3646), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [60757] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3828), 1, + anon_sym_PIPE, + [60596] = 5, + ACTIONS(3822), 1, anon_sym_LBRACE, - STATE(820), 1, + ACTIONS(3824), 1, + anon_sym_where, + STATE(420), 1, sym_field_declaration_list, - STATE(2188), 1, + STATE(2160), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60774] = 5, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(4508), 1, - anon_sym_SEMI, - ACTIONS(4510), 1, - anon_sym_COLON, - ACTIONS(4512), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60791] = 5, - ACTIONS(4514), 1, + [60613] = 5, + ACTIONS(4543), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4545), 1, anon_sym_LBRACE, - ACTIONS(4518), 1, + ACTIONS(4547), 1, anon_sym_LBRACK, - STATE(844), 1, - sym_delim_token_tree, + STATE(2121), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60808] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [60630] = 4, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(4549), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4520), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [60821] = 5, - ACTIONS(4514), 1, + STATE(1138), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [60645] = 5, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACE, - ACTIONS(4518), 1, - anon_sym_LBRACK, - STATE(849), 1, - sym_delim_token_tree, + ACTIONS(3826), 1, + anon_sym_LT, + STATE(1716), 1, + sym_parameters, + STATE(2166), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60838] = 5, - ACTIONS(3425), 1, + [60662] = 5, + ACTIONS(3439), 1, anon_sym_LPAREN, - ACTIONS(3804), 1, + ACTIONS(3826), 1, anon_sym_LT, - STATE(1667), 1, + STATE(1675), 1, sym_parameters, - STATE(2254), 1, + STATE(2182), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60855] = 4, - ACTIONS(4522), 1, + [60679] = 5, + ACTIONS(3822), 1, + anon_sym_LBRACE, + ACTIONS(3824), 1, + anon_sym_where, + STATE(283), 1, + sym_field_declaration_list, + STATE(2173), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60696] = 4, + ACTIONS(4551), 1, anon_sym_DQUOTE, - STATE(1880), 1, + STATE(1889), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4524), 2, + ACTIONS(4553), 2, sym__string_content, sym_escape_sequence, - [60870] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [60711] = 4, + ACTIONS(4556), 1, + anon_sym_RBRACE, + ACTIONS(4558), 1, + anon_sym_COMMA, + STATE(1890), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60725] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4526), 3, + ACTIONS(4561), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_PIPE, - [60883] = 4, - ACTIONS(4528), 1, - anon_sym_DQUOTE, - STATE(1849), 1, - aux_sym_string_literal_repeat1, + [60735] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4085), 1, + anon_sym_PLUS, + STATE(1078), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4399), 2, - sym__string_content, - sym_escape_sequence, - [60898] = 4, - ACTIONS(4041), 1, - anon_sym_RBRACE, - ACTIONS(4530), 1, - anon_sym_COMMA, - STATE(1980), 1, - aux_sym_struct_pattern_repeat1, + [60749] = 4, + ACTIONS(4563), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_ref, + ACTIONS(4567), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60912] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4532), 1, - anon_sym_SEMI, - ACTIONS(4534), 1, - anon_sym_RBRACK, + [60763] = 4, + ACTIONS(3854), 1, + anon_sym_RBRACE, + ACTIONS(4569), 1, + anon_sym_COMMA, + STATE(2153), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60926] = 3, - ACTIONS(4538), 1, + [60777] = 3, + ACTIONS(4573), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4536), 2, + ACTIONS(4571), 2, anon_sym_RBRACE, anon_sym_COMMA, - [60938] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4540), 1, - anon_sym_SEMI, - ACTIONS(4542), 1, - anon_sym_EQ, + [60789] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60952] = 4, - ACTIONS(4544), 1, + ACTIONS(4575), 3, anon_sym_RPAREN, - ACTIONS(4546), 1, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(2010), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [60799] = 4, + ACTIONS(4577), 1, + sym_identifier, + ACTIONS(4579), 1, + anon_sym_ref, + ACTIONS(4581), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60966] = 4, - ACTIONS(4548), 1, + [60813] = 4, + ACTIONS(4583), 1, sym_identifier, - ACTIONS(4550), 1, - anon_sym_await, - ACTIONS(4552), 1, - sym_integer_literal, + ACTIONS(4585), 1, + anon_sym_ref, + ACTIONS(4587), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60980] = 4, - ACTIONS(2574), 1, - anon_sym_LT2, - ACTIONS(4554), 1, - sym_identifier, - STATE(919), 1, - sym_type_arguments, + [60827] = 4, + ACTIONS(4589), 1, + anon_sym_RPAREN, + ACTIONS(4591), 1, + anon_sym_COMMA, + STATE(1899), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60994] = 4, - ACTIONS(4556), 1, - anon_sym_for, - ACTIONS(4558), 1, - anon_sym_loop, - ACTIONS(4560), 1, - anon_sym_while, + [60841] = 4, + ACTIONS(4083), 1, + anon_sym_LBRACE, + ACTIONS(4594), 1, + anon_sym_SEMI, + STATE(328), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61008] = 4, - ACTIONS(3836), 1, - anon_sym_RBRACE, - ACTIONS(4562), 1, - anon_sym_COMMA, - STATE(2026), 1, - aux_sym_field_declaration_list_repeat1, + [60855] = 4, + ACTIONS(3826), 1, + anon_sym_LT, + ACTIONS(4596), 1, + anon_sym_EQ, + STATE(2551), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61022] = 4, - ACTIONS(4081), 1, + [60869] = 4, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4598), 1, + anon_sym_SEMI, + ACTIONS(4600), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60883] = 4, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4564), 1, + ACTIONS(4602), 1, anon_sym_SEMI, - STATE(416), 1, + STATE(288), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61036] = 4, - ACTIONS(3836), 1, - anon_sym_RBRACE, - ACTIONS(4562), 1, - anon_sym_COMMA, - STATE(2028), 1, - aux_sym_field_declaration_list_repeat1, + [60897] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61050] = 3, - ACTIONS(3522), 1, - anon_sym_COLON_COLON, + ACTIONS(4604), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60907] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61062] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4566), 1, - sym_identifier, - STATE(2340), 1, - sym_type_arguments, + ACTIONS(2371), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [60917] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61076] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4568), 1, - anon_sym_SEMI, - ACTIONS(4570), 1, - anon_sym_EQ, + ACTIONS(4606), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60929] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61090] = 4, + ACTIONS(4608), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60941] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4085), 1, anon_sym_PLUS, - STATE(1133), 1, + STATE(1130), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61104] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4572), 1, + [60955] = 4, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4610), 1, anon_sym_SEMI, - ACTIONS(4574), 1, - anon_sym_EQ, + STATE(2570), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61118] = 4, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(4576), 1, - anon_sym_SEMI, - STATE(400), 1, - sym_declaration_list, + [60969] = 4, + ACTIONS(4612), 1, + anon_sym_RPAREN, + ACTIONS(4614), 1, + anon_sym_COMMA, + STATE(1984), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61132] = 4, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(4578), 1, - anon_sym_SEMI, - STATE(282), 1, - sym_declaration_list, + [60983] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61146] = 4, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(4580), 1, - anon_sym_SEMI, - STATE(331), 1, - sym_declaration_list, + ACTIONS(4616), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60995] = 3, + ACTIONS(4618), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61160] = 3, - ACTIONS(4073), 1, + ACTIONS(4620), 2, + anon_sym_default, + anon_sym_union, + [61007] = 3, + ACTIONS(4085), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4582), 2, + ACTIONS(4622), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [61172] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4584), 1, - sym_identifier, - STATE(2340), 1, - sym_type_arguments, + [61019] = 3, + ACTIONS(4148), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61186] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4584), 1, - sym_identifier, - STATE(2338), 1, - sym_type_arguments, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61031] = 4, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4624), 1, + anon_sym_SEMI, + ACTIONS(4626), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61200] = 2, + [61045] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4586), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4628), 2, anon_sym_COMMA, - [61210] = 4, - ACTIONS(4503), 1, anon_sym_GT, - ACTIONS(4588), 1, - anon_sym_COMMA, - STATE(1904), 1, - aux_sym_type_parameters_repeat1, + [61057] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61224] = 4, - ACTIONS(3804), 1, + ACTIONS(4630), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [61067] = 4, + ACTIONS(3826), 1, anon_sym_LT, - ACTIONS(4591), 1, + ACTIONS(4632), 1, anon_sym_EQ, - STATE(2417), 1, + STATE(2501), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61238] = 4, - ACTIONS(4593), 1, - anon_sym_RBRACE, - ACTIONS(4595), 1, - anon_sym_COMMA, - STATE(1906), 1, - aux_sym_use_list_repeat1, + [61081] = 4, + ACTIONS(4634), 1, + anon_sym_for, + ACTIONS(4636), 1, + anon_sym_loop, + ACTIONS(4638), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61252] = 2, + [61095] = 3, + ACTIONS(4196), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4598), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61107] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4640), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [61262] = 4, - ACTIONS(3844), 1, + [61119] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4600), 1, + ACTIONS(4642), 1, anon_sym_SEMI, - STATE(263), 1, + STATE(333), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61276] = 2, + [61133] = 4, + ACTIONS(2626), 1, + anon_sym_LBRACE, + ACTIONS(4644), 1, + anon_sym_COLON_COLON, + STATE(1077), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4602), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61286] = 4, - ACTIONS(4604), 1, - anon_sym_RBRACE, - ACTIONS(4606), 1, - anon_sym_COMMA, - STATE(2024), 1, - aux_sym_enum_variant_list_repeat2, + [61147] = 4, + ACTIONS(4083), 1, + anon_sym_LBRACE, + ACTIONS(4646), 1, + anon_sym_SEMI, + STATE(305), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61300] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4608), 1, - sym_identifier, - STATE(2338), 1, - sym_type_arguments, + [61161] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4648), 1, + anon_sym_move, + STATE(1100), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61314] = 4, - ACTIONS(3528), 1, - anon_sym_COLON, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, - STATE(2017), 1, - sym_trait_bounds, + [61175] = 4, + ACTIONS(4083), 1, + anon_sym_LBRACE, + ACTIONS(4650), 1, + anon_sym_SEMI, + STATE(389), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61328] = 4, - ACTIONS(4610), 1, - anon_sym_RPAREN, - ACTIONS(4612), 1, + [61189] = 4, + ACTIONS(542), 1, + anon_sym_RBRACK, + ACTIONS(4652), 1, anon_sym_COMMA, - STATE(2039), 1, - aux_sym_meta_arguments_repeat1, + STATE(2023), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61342] = 4, - ACTIONS(3582), 1, + [61203] = 4, + ACTIONS(3591), 1, anon_sym_COLON_COLON, - ACTIONS(3961), 1, + ACTIONS(3975), 1, anon_sym_BANG, - ACTIONS(4614), 1, + ACTIONS(4654), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61356] = 2, + [61217] = 4, + ACTIONS(384), 1, + anon_sym_RPAREN, + ACTIONS(3239), 1, + anon_sym_COMMA, + STATE(2129), 1, + aux_sym_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61231] = 3, + ACTIONS(3213), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4616), 3, + ACTIONS(4656), 2, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [61366] = 2, + [61243] = 4, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(4658), 1, + anon_sym_SEMI, + STATE(436), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61257] = 4, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4660), 1, + anon_sym_SEMI, + ACTIONS(4662), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61271] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4618), 3, + ACTIONS(4381), 2, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [61376] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4566), 1, - sym_identifier, - STATE(2338), 1, - sym_type_arguments, + [61283] = 4, + ACTIONS(4664), 1, + anon_sym_COMMA, + ACTIONS(4667), 1, + anon_sym_PIPE, + STATE(1934), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61390] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4608), 1, - sym_identifier, - STATE(2340), 1, - sym_type_arguments, + [61297] = 4, + ACTIONS(4669), 1, + anon_sym_RBRACE, + ACTIONS(4671), 1, + anon_sym_COMMA, + STATE(1894), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61404] = 3, - ACTIONS(4369), 1, - anon_sym_EQ, + [61311] = 3, + ACTIONS(4675), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4503), 2, - anon_sym_COMMA, - anon_sym_GT, - [61416] = 4, - ACTIONS(2524), 1, - anon_sym_RPAREN, - ACTIONS(4620), 1, + ACTIONS(4673), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1936), 1, - aux_sym_tuple_type_repeat1, + [61323] = 3, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61430] = 4, - ACTIONS(284), 1, + ACTIONS(3542), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61335] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4622), 1, - anon_sym_move, - STATE(1106), 1, - sym_block, + ACTIONS(4677), 1, + anon_sym_SEMI, + STATE(434), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61444] = 3, - ACTIONS(4127), 1, + [61349] = 3, + ACTIONS(4154), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61456] = 4, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, - ACTIONS(3528), 1, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61361] = 3, + ACTIONS(4679), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4681), 2, + anon_sym_default, + anon_sym_union, + [61373] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3760), 1, + anon_sym_LBRACE, + STATE(1364), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61387] = 4, + ACTIONS(930), 1, + anon_sym_GT, + ACTIONS(4683), 1, + anon_sym_COMMA, + STATE(2034), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61401] = 3, + ACTIONS(4278), 1, anon_sym_COLON, - STATE(2017), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61470] = 4, - ACTIONS(4624), 1, - anon_sym_RBRACE, - ACTIONS(4626), 1, + ACTIONS(4667), 2, anon_sym_COMMA, - STATE(1924), 1, - aux_sym_field_initializer_list_repeat1, + anon_sym_PIPE, + [61413] = 4, + ACTIONS(4409), 1, + anon_sym_COMMA, + ACTIONS(4685), 1, + anon_sym_PIPE, + STATE(1934), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61484] = 4, - ACTIONS(4629), 1, - anon_sym_RBRACE, - ACTIONS(4631), 1, - anon_sym_COMMA, - STATE(2146), 1, - aux_sym_field_initializer_list_repeat1, + [61427] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61498] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4633), 1, + ACTIONS(2359), 3, anon_sym_SEMI, - STATE(369), 1, - sym_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + [61437] = 4, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(4687), 1, + anon_sym_GT, + STATE(2306), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61512] = 4, - ACTIONS(4635), 1, - sym_identifier, - ACTIONS(4637), 1, - anon_sym_ref, - ACTIONS(4639), 1, - sym_mutable_specifier, + [61451] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61526] = 3, - ACTIONS(4073), 1, + ACTIONS(4689), 3, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61461] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4641), 2, + ACTIONS(4691), 3, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [61538] = 4, - ACTIONS(2638), 1, + [61471] = 4, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4643), 1, - anon_sym_COLON_COLON, - STATE(1131), 1, - sym_field_initializer_list, + ACTIONS(4693), 1, + anon_sym_SEMI, + STATE(476), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61552] = 4, - ACTIONS(4645), 1, - anon_sym_COMMA, - ACTIONS(4647), 1, - anon_sym_GT, - STATE(1996), 1, - aux_sym_for_lifetimes_repeat1, + [61485] = 3, + ACTIONS(4697), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61566] = 4, - ACTIONS(4415), 1, + ACTIONS(4695), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4649), 1, - anon_sym_PIPE, - STATE(2133), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61580] = 4, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4651), 1, - anon_sym_SEMI, - STATE(2526), 1, - sym_where_clause, + [61497] = 4, + ACTIONS(4699), 1, + anon_sym_RBRACE, + ACTIONS(4701), 1, + anon_sym_COMMA, + STATE(1954), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61594] = 3, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, + [61511] = 4, + ACTIONS(3838), 1, + anon_sym_GT, + ACTIONS(4703), 1, + anon_sym_COMMA, + STATE(2044), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61606] = 4, - ACTIONS(4653), 1, - anon_sym_for, - ACTIONS(4655), 1, - anon_sym_loop, - ACTIONS(4657), 1, - anon_sym_while, + [61525] = 4, + ACTIONS(4083), 1, + anon_sym_LBRACE, + ACTIONS(4705), 1, + anon_sym_SEMI, + STATE(396), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61620] = 4, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(4647), 1, - anon_sym_GT, - STATE(2205), 1, - sym_lifetime, + [61539] = 4, + ACTIONS(3844), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_COMMA, + STATE(2105), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61634] = 4, - ACTIONS(4659), 1, - anon_sym_RPAREN, - ACTIONS(4661), 1, + [61553] = 4, + ACTIONS(3844), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, anon_sym_COMMA, - STATE(1936), 1, - aux_sym_tuple_type_repeat1, + STATE(2088), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61648] = 4, - ACTIONS(2574), 1, - anon_sym_LT2, - ACTIONS(4554), 1, - sym_identifier, - STATE(848), 1, - sym_type_arguments, + [61567] = 4, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(4709), 1, + anon_sym_EQ_GT, + ACTIONS(4711), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61662] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4664), 1, - sym_identifier, - STATE(2338), 1, - sym_type_arguments, + [61581] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61676] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + ACTIONS(4713), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [61591] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4659), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61688] = 4, - ACTIONS(4280), 1, - anon_sym_RPAREN, - ACTIONS(4282), 1, + ACTIONS(4715), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(2001), 1, - aux_sym_parameters_repeat1, + [61601] = 4, + ACTIONS(3552), 1, + anon_sym_COLON_COLON, + ACTIONS(3558), 1, + anon_sym_COLON, + STATE(1957), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61702] = 4, - ACTIONS(2453), 1, - anon_sym_PLUS, - ACTIONS(4666), 1, - sym_mutable_specifier, - ACTIONS(4668), 1, - sym_self, + [61615] = 4, + ACTIONS(4083), 1, + anon_sym_LBRACE, + ACTIONS(4717), 1, + anon_sym_SEMI, + STATE(483), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61716] = 4, - ACTIONS(3325), 1, + [61629] = 4, + ACTIONS(792), 1, anon_sym_RPAREN, - ACTIONS(4670), 1, + ACTIONS(4290), 1, anon_sym_COMMA, - STATE(1942), 1, - aux_sym_arguments_repeat1, + STATE(2075), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61730] = 4, - ACTIONS(388), 1, - anon_sym_RPAREN, - ACTIONS(4673), 1, - anon_sym_COMMA, - STATE(1942), 1, - aux_sym_arguments_repeat1, + [61643] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61744] = 4, - ACTIONS(4053), 1, - anon_sym_RBRACE, - ACTIONS(4675), 1, + ACTIONS(4719), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61653] = 4, + ACTIONS(3866), 1, + anon_sym_GT, + ACTIONS(4721), 1, anon_sym_COMMA, - STATE(1980), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61758] = 2, + STATE(2044), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4677), 3, - anon_sym_SEMI, + [61667] = 4, + ACTIONS(3187), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [61768] = 4, - ACTIONS(922), 1, - anon_sym_GT, - ACTIONS(4679), 1, + ACTIONS(4723), 1, anon_sym_COMMA, - STATE(1991), 1, - aux_sym_type_arguments_repeat1, + STATE(1899), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61782] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4664), 1, - sym_identifier, - STATE(2340), 1, - sym_type_arguments, + [61681] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61796] = 4, - ACTIONS(4071), 1, + ACTIONS(4725), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [61691] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4681), 1, + ACTIONS(4727), 1, anon_sym_SEMI, - STATE(959), 1, - sym_block, + STATE(364), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61810] = 4, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4683), 1, - anon_sym_SEMI, - STATE(969), 1, - sym_block, + [61705] = 4, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(4290), 1, + anon_sym_COMMA, + STATE(2066), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61824] = 4, - ACTIONS(4081), 1, + [61719] = 4, + ACTIONS(594), 1, anon_sym_LBRACE, - ACTIONS(4685), 1, - anon_sym_SEMI, - STATE(340), 1, + ACTIONS(4729), 1, + anon_sym_move, + STATE(241), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61838] = 3, - ACTIONS(4217), 1, - anon_sym_COLON_COLON, + [61733] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61850] = 4, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(4687), 1, - anon_sym_move, - STATE(225), 1, - sym_block, + ACTIONS(4731), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61743] = 4, + ACTIONS(4733), 1, + anon_sym_for, + ACTIONS(4735), 1, + anon_sym_loop, + ACTIONS(4737), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61864] = 3, - ACTIONS(4689), 1, - sym_identifier, + [61757] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4691), 2, - anon_sym_default, - anon_sym_union, - [61876] = 4, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4693), 1, + ACTIONS(4739), 3, anon_sym_SEMI, - STATE(999), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61890] = 4, - ACTIONS(4695), 1, anon_sym_RBRACE, - ACTIONS(4697), 1, anon_sym_COMMA, - STATE(1955), 1, - aux_sym_enum_variant_list_repeat2, + [61767] = 4, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(4741), 1, + anon_sym_SEMI, + STATE(292), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61904] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4700), 1, + [61781] = 4, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(4743), 1, anon_sym_SEMI, - ACTIONS(4702), 1, - anon_sym_EQ, + STATE(345), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61918] = 4, - ACTIONS(3850), 1, + [61795] = 4, + ACTIONS(3842), 1, anon_sym_RBRACE, - ACTIONS(4704), 1, + ACTIONS(4745), 1, anon_sym_COMMA, - STATE(1955), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1890), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61932] = 2, + [61809] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4445), 3, + ACTIONS(4747), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [61942] = 4, - ACTIONS(2443), 1, - anon_sym_RPAREN, - ACTIONS(4706), 1, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1781), 1, - aux_sym_tuple_pattern_repeat1, + [61819] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61956] = 4, - ACTIONS(2445), 1, + ACTIONS(4749), 3, + anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(4708), 1, + anon_sym_EQ, + [61829] = 3, + ACTIONS(4255), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3457), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61841] = 4, + ACTIONS(4751), 1, anon_sym_COMMA, - STATE(1781), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4753), 1, + anon_sym_GT, + STATE(2016), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61970] = 3, - ACTIONS(4712), 1, - anon_sym_COLON, + [61855] = 4, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(4755), 1, + sym_identifier, + STATE(1993), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4710), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61982] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [61869] = 4, + ACTIONS(2626), 1, + anon_sym_LBRACE, + ACTIONS(4757), 1, + anon_sym_COLON_COLON, + STATE(1077), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4328), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61994] = 4, - ACTIONS(4071), 1, + [61883] = 4, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4714), 1, + ACTIONS(4759), 1, anon_sym_SEMI, - STATE(1041), 1, + STATE(332), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62008] = 4, - ACTIONS(4073), 1, + [61897] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4761), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61909] = 4, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4716), 1, + ACTIONS(4763), 1, anon_sym_SEMI, - ACTIONS(4718), 1, + ACTIONS(4765), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62022] = 4, - ACTIONS(4328), 1, + [61923] = 4, + ACTIONS(4767), 1, anon_sym_RPAREN, - ACTIONS(4720), 1, + ACTIONS(4769), 1, anon_sym_COMMA, - STATE(1965), 1, - aux_sym_parameters_repeat1, + STATE(1984), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62036] = 3, - ACTIONS(4723), 1, + [61937] = 4, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4772), 1, + anon_sym_as, + ACTIONS(4774), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61951] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4776), 1, sym_identifier, + STATE(2416), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4725), 2, - anon_sym_default, - anon_sym_union, - [62048] = 4, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4727), 1, - anon_sym_SEMI, - STATE(1038), 1, - sym_block, + [61965] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4776), 1, + sym_identifier, + STATE(2507), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62062] = 3, - ACTIONS(3195), 1, + [61979] = 4, + ACTIONS(3550), 1, anon_sym_COLON_COLON, + ACTIONS(3558), 1, + anon_sym_COLON, + STATE(1957), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4262), 2, + [61993] = 4, + ACTIONS(2552), 1, anon_sym_RPAREN, + ACTIONS(4778), 1, anon_sym_COMMA, - [62074] = 4, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(4729), 1, - anon_sym_SEMI, - STATE(1034), 1, - sym_declaration_list, + STATE(2014), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62088] = 4, - ACTIONS(2449), 1, - anon_sym_RPAREN, - ACTIONS(4731), 1, + [62007] = 4, + ACTIONS(4409), 1, anon_sym_COMMA, - STATE(1781), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4780), 1, + anon_sym_PIPE, + STATE(1944), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62102] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4733), 1, - anon_sym_SEMI, - STATE(432), 1, - sym_block, + [62021] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62116] = 4, - ACTIONS(796), 1, + ACTIONS(4782), 2, anon_sym_RPAREN, - ACTIONS(4735), 1, anon_sym_COMMA, - STATE(1965), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62130] = 4, - ACTIONS(3810), 1, + [62033] = 4, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(4737), 1, + ACTIONS(4784), 1, anon_sym_SEMI, - STATE(1031), 1, + STATE(1028), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62144] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3762), 1, - anon_sym_LBRACE, - STATE(1358), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62158] = 3, - ACTIONS(4741), 1, - anon_sym_COLON, + [62047] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4739), 2, + ACTIONS(4786), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62170] = 4, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(4743), 1, - anon_sym_SEMI, - STATE(871), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62184] = 2, + [62057] = 4, + ACTIONS(2459), 1, + anon_sym_RPAREN, + ACTIONS(4788), 1, + anon_sym_COMMA, + STATE(1868), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4745), 3, - anon_sym_SEMI, + [62071] = 4, + ACTIONS(4790), 1, anon_sym_RBRACE, + ACTIONS(4792), 1, anon_sym_COMMA, - [62194] = 3, - ACTIONS(4749), 1, - anon_sym_COLON, + STATE(2012), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4747), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62206] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, + [62085] = 3, + ACTIONS(4796), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4751), 2, + ACTIONS(4794), 2, anon_sym_RBRACE, anon_sym_COMMA, - [62218] = 4, - ACTIONS(4753), 1, + [62097] = 4, + ACTIONS(4079), 1, anon_sym_RBRACE, - ACTIONS(4755), 1, + ACTIONS(4798), 1, anon_sym_COMMA, - STATE(1980), 1, + STATE(2043), 1, aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62232] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4758), 2, - anon_sym_COMMA, - anon_sym_GT, - [62244] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [62111] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4800), 1, + sym_identifier, + STATE(2416), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4760), 2, - anon_sym_COMMA, - anon_sym_GT, - [62256] = 4, - ACTIONS(4762), 1, - anon_sym_RBRACE, - ACTIONS(4764), 1, - anon_sym_COMMA, - STATE(1881), 1, - aux_sym_struct_pattern_repeat1, + [62125] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4800), 1, + sym_identifier, + STATE(2507), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62270] = 3, - ACTIONS(2453), 1, - anon_sym_PLUS, + [62139] = 4, + ACTIONS(2588), 1, + anon_sym_LT2, + ACTIONS(4802), 1, + sym_identifier, + STATE(838), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4760), 2, - anon_sym_COMMA, - anon_sym_GT, - [62282] = 4, - ACTIONS(4766), 1, + [62153] = 4, + ACTIONS(4804), 1, anon_sym_RBRACE, - ACTIONS(4768), 1, + ACTIONS(4806), 1, anon_sym_COMMA, - STATE(2097), 1, + STATE(2112), 1, aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62296] = 4, - ACTIONS(4415), 1, - anon_sym_COMMA, - ACTIONS(4770), 1, - anon_sym_PIPE, - STATE(1931), 1, - aux_sym_closure_parameters_repeat1, + [62167] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4124), 1, + sym_identifier, + STATE(2416), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62310] = 4, - ACTIONS(792), 1, + [62181] = 4, + ACTIONS(4808), 1, anon_sym_RPAREN, - ACTIONS(4296), 1, + ACTIONS(4810), 1, anon_sym_COMMA, - STATE(1972), 1, - aux_sym_parameters_repeat1, + STATE(1984), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62324] = 4, - ACTIONS(2574), 1, + [62195] = 4, + ACTIONS(2588), 1, anon_sym_LT2, - ACTIONS(4772), 1, + ACTIONS(4812), 1, sym_identifier, - STATE(1205), 1, + STATE(1209), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62338] = 4, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4774), 1, - anon_sym_SEMI, - STATE(1026), 1, - sym_block, + [62209] = 4, + ACTIONS(4814), 1, + sym_identifier, + ACTIONS(4816), 1, + anon_sym_ref, + ACTIONS(4818), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62352] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4776), 1, - sym_identifier, - STATE(2338), 1, - sym_type_arguments, + [62223] = 4, + ACTIONS(4083), 1, + anon_sym_LBRACE, + ACTIONS(4820), 1, + anon_sym_SEMI, + STATE(346), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62366] = 4, - ACTIONS(4760), 1, - anon_sym_GT, - ACTIONS(4778), 1, + [62237] = 4, + ACTIONS(4822), 1, + anon_sym_RPAREN, + ACTIONS(4824), 1, anon_sym_COMMA, - STATE(1991), 1, - aux_sym_type_arguments_repeat1, + STATE(1984), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62380] = 4, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(4781), 1, - anon_sym_GT, - STATE(2205), 1, - sym_lifetime, + [62251] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4826), 1, + sym_identifier, + STATE(2416), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62394] = 4, - ACTIONS(3431), 1, + [62265] = 4, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(4776), 1, + ACTIONS(4826), 1, sym_identifier, - STATE(2340), 1, + STATE(2507), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62408] = 4, - ACTIONS(2574), 1, + [62279] = 4, + ACTIONS(2588), 1, anon_sym_LT2, - ACTIONS(4772), 1, + ACTIONS(4812), 1, sym_identifier, - STATE(1202), 1, + STATE(1210), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62422] = 2, + [62293] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4783), 3, + ACTIONS(4828), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62432] = 4, - ACTIONS(4785), 1, + [62303] = 4, + ACTIONS(4051), 1, + anon_sym_RBRACE, + ACTIONS(4830), 1, anon_sym_COMMA, - ACTIONS(4788), 1, - anon_sym_GT, - STATE(1996), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2043), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62446] = 3, - ACTIONS(4073), 1, + [62317] = 3, + ACTIONS(4085), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4790), 2, - anon_sym_COMMA, + ACTIONS(4832), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62329] = 4, + ACTIONS(4832), 1, + anon_sym_RPAREN, + ACTIONS(4834), 1, + anon_sym_COMMA, + STATE(2014), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62343] = 4, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(4837), 1, anon_sym_GT, - [62458] = 3, - ACTIONS(4794), 1, - anon_sym_EQ, + STATE(2306), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4792), 2, - anon_sym_RBRACE, + [62357] = 4, + ACTIONS(4837), 1, + anon_sym_GT, + ACTIONS(4839), 1, anon_sym_COMMA, - [62470] = 4, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(4796), 1, - anon_sym_SEMI, - STATE(395), 1, - sym_declaration_list, + STATE(2029), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62484] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4798), 1, - anon_sym_SEMI, - ACTIONS(4800), 1, - anon_sym_EQ, + [62371] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4841), 1, + sym_identifier, + STATE(2416), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62498] = 4, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, - anon_sym_COMMA, - STATE(1965), 1, - aux_sym_parameters_repeat1, + [62385] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62512] = 4, - ACTIONS(4802), 1, - anon_sym_RPAREN, - ACTIONS(4804), 1, + ACTIONS(4843), 2, anon_sym_COMMA, - STATE(2010), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62526] = 4, - ACTIONS(4071), 1, + anon_sym_GT, + [62397] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4806), 1, + ACTIONS(4845), 1, anon_sym_SEMI, - STATE(1011), 1, - sym_block, + STATE(457), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62540] = 4, - ACTIONS(4383), 1, - anon_sym_COMMA, - ACTIONS(4385), 1, - anon_sym_GT, - STATE(1946), 1, - aux_sym_type_arguments_repeat1, + [62411] = 4, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(4847), 1, + anon_sym_SEMI, + STATE(448), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62554] = 3, - ACTIONS(4810), 1, - anon_sym_COLON, + [62425] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4841), 1, + sym_identifier, + STATE(2507), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4808), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62566] = 3, - ACTIONS(4073), 1, + [62439] = 3, + ACTIONS(4085), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4812), 2, - anon_sym_RPAREN, + ACTIONS(4849), 2, + anon_sym_COMMA, + anon_sym_GT, + [62451] = 4, + ACTIONS(3329), 1, + anon_sym_RBRACK, + ACTIONS(4851), 1, anon_sym_COMMA, - [62578] = 2, + STATE(2023), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4814), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [62588] = 4, - ACTIONS(3431), 1, + [62465] = 4, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(4816), 1, + ACTIONS(4854), 1, sym_identifier, - STATE(2338), 1, + STATE(2507), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62602] = 4, - ACTIONS(4818), 1, - anon_sym_RBRACE, - ACTIONS(4820), 1, - anon_sym_COMMA, - STATE(1944), 1, - aux_sym_struct_pattern_repeat1, + [62479] = 4, + ACTIONS(4856), 1, + sym_identifier, + ACTIONS(4858), 1, + anon_sym_await, + ACTIONS(4860), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62616] = 4, - ACTIONS(4822), 1, - anon_sym_RPAREN, - ACTIONS(4824), 1, - anon_sym_COMMA, - STATE(2010), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [62493] = 4, + ACTIONS(2588), 1, + anon_sym_LT2, + ACTIONS(4802), 1, + sym_identifier, + STATE(860), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62630] = 4, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4827), 1, - anon_sym_SEMI, - STATE(989), 1, - sym_block, + [62507] = 4, + ACTIONS(4862), 1, + anon_sym_for, + ACTIONS(4864), 1, + anon_sym_loop, + ACTIONS(4866), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62644] = 4, - ACTIONS(3431), 1, + [62521] = 4, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(4816), 1, + ACTIONS(4854), 1, sym_identifier, - STATE(2340), 1, + STATE(2416), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62658] = 4, - ACTIONS(3263), 1, - anon_sym_RBRACK, - ACTIONS(4829), 1, + [62535] = 4, + ACTIONS(4868), 1, anon_sym_COMMA, - STATE(2013), 1, - aux_sym_array_expression_repeat1, + ACTIONS(4871), 1, + anon_sym_GT, + STATE(2029), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62672] = 4, - ACTIONS(518), 1, + [62549] = 4, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4873), 1, + anon_sym_SEMI, + ACTIONS(4875), 1, anon_sym_RBRACK, - ACTIONS(4832), 1, - anon_sym_COMMA, - STATE(2013), 1, - aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62686] = 4, - ACTIONS(3802), 1, + [62563] = 4, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4834), 1, + ACTIONS(4877), 1, anon_sym_SEMI, - STATE(2380), 1, + STATE(2574), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62700] = 4, - ACTIONS(4314), 1, + [62577] = 4, + ACTIONS(4298), 1, anon_sym_COMMA, - ACTIONS(4316), 1, + ACTIONS(4300), 1, anon_sym_GT, - STATE(2088), 1, + STATE(2104), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62714] = 2, + [62591] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4124), 1, + sym_identifier, + STATE(2507), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4836), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + [62605] = 4, + ACTIONS(4879), 1, anon_sym_COMMA, - [62724] = 4, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(4838), 1, - anon_sym_SEMI, - STATE(986), 1, - sym_declaration_list, + ACTIONS(4882), 1, + anon_sym_GT, + STATE(2034), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62738] = 4, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(4840), 1, - anon_sym_SEMI, - STATE(255), 1, - sym_declaration_list, + [62619] = 3, + ACTIONS(2508), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62752] = 4, - ACTIONS(4842), 1, - anon_sym_RPAREN, - ACTIONS(4844), 1, + ACTIONS(4882), 2, anon_sym_COMMA, - STATE(2020), 1, - aux_sym_meta_arguments_repeat1, + anon_sym_GT, + [62631] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62766] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + ACTIONS(4882), 2, + anon_sym_COMMA, + anon_sym_GT, + [62643] = 3, + ACTIONS(4464), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4847), 2, - anon_sym_RBRACE, + ACTIONS(4494), 2, anon_sym_COMMA, - [62778] = 4, - ACTIONS(3810), 1, + anon_sym_GT, + [62655] = 4, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(4849), 1, + ACTIONS(4884), 1, anon_sym_SEMI, - STATE(788), 1, + STATE(963), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62792] = 4, - ACTIONS(3782), 1, - anon_sym_RBRACE, - ACTIONS(4851), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_enum_variant_list_repeat2, + [62669] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62806] = 4, - ACTIONS(3782), 1, - anon_sym_RBRACE, - ACTIONS(4851), 1, + ACTIONS(4886), 2, anon_sym_COMMA, - STATE(1955), 1, - aux_sym_enum_variant_list_repeat2, + anon_sym_GT, + [62681] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4888), 1, + sym_identifier, + STATE(2416), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62820] = 4, - ACTIONS(4853), 1, - anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_GT, - STATE(1930), 1, - aux_sym_for_lifetimes_repeat1, + [62695] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4888), 1, + sym_identifier, + STATE(2507), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62834] = 4, - ACTIONS(4857), 1, - anon_sym_RBRACE, - ACTIONS(4859), 1, + [62709] = 4, + ACTIONS(4437), 1, anon_sym_COMMA, - STATE(2026), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(4439), 1, + anon_sym_GT, + STATE(1942), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62848] = 4, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(4862), 1, - anon_sym_SEMI, - STATE(979), 1, - sym_declaration_list, + [62723] = 4, + ACTIONS(4890), 1, + anon_sym_RBRACE, + ACTIONS(4892), 1, + anon_sym_COMMA, + STATE(2043), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62862] = 4, - ACTIONS(3852), 1, - anon_sym_RBRACE, - ACTIONS(4864), 1, + [62737] = 4, + ACTIONS(4494), 1, + anon_sym_GT, + ACTIONS(4895), 1, anon_sym_COMMA, - STATE(2026), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2044), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62876] = 4, - ACTIONS(3802), 1, + [62751] = 4, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(4866), 1, + ACTIONS(4898), 1, anon_sym_SEMI, - STATE(2554), 1, + STATE(2543), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62890] = 4, - ACTIONS(3872), 1, + [62765] = 4, + ACTIONS(4900), 1, anon_sym_RBRACE, - ACTIONS(4868), 1, + ACTIONS(4902), 1, anon_sym_COMMA, - STATE(2026), 1, + STATE(2073), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62904] = 4, - ACTIONS(3844), 1, + [62779] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4904), 2, + anon_sym_COMMA, + anon_sym_GT, + [62791] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4870), 1, + ACTIONS(4906), 1, anon_sym_SEMI, - STATE(322), 1, + STATE(438), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62918] = 4, - ACTIONS(3844), 1, + [62805] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4908), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [62815] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4872), 1, + ACTIONS(4910), 1, anon_sym_SEMI, - STATE(306), 1, + STATE(392), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62932] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4874), 1, - sym_identifier, - STATE(2338), 1, - sym_type_arguments, + [62829] = 4, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4912), 1, + anon_sym_SEMI, + ACTIONS(4914), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62946] = 2, + [62843] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4876), 3, + ACTIONS(4916), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62956] = 2, + [62853] = 4, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(4918), 1, + anon_sym_SEMI, + STATE(2506), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4878), 3, + [62867] = 4, + ACTIONS(4269), 1, anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4271), 1, anon_sym_COMMA, - [62966] = 3, - ACTIONS(4882), 1, - anon_sym_EQ, + STATE(1961), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4880), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62978] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4884), 1, + [62881] = 4, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(4920), 1, anon_sym_SEMI, - ACTIONS(4886), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62992] = 2, + STATE(485), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4888), 3, + [62895] = 4, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4922), 1, + anon_sym_SEMI, + ACTIONS(4924), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [63002] = 4, - ACTIONS(3175), 1, - anon_sym_RPAREN, - ACTIONS(4890), 1, - anon_sym_COMMA, - STATE(2020), 1, - aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63016] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4892), 1, - anon_sym_SEMI, - STATE(293), 1, - sym_block, + [62909] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63030] = 4, - ACTIONS(3810), 1, + ACTIONS(4926), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62921] = 4, + ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(4894), 1, + ACTIONS(4928), 1, anon_sym_SEMI, - STATE(970), 1, - sym_declaration_list, + STATE(866), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63044] = 4, - ACTIONS(3810), 1, + [62935] = 4, + ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(4896), 1, + ACTIONS(4930), 1, anon_sym_SEMI, - STATE(964), 1, - sym_declaration_list, + STATE(870), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63058] = 4, - ACTIONS(3804), 1, - anon_sym_LT, - ACTIONS(4898), 1, - anon_sym_EQ, - STATE(2535), 1, - sym_type_parameters, + [62949] = 4, + ACTIONS(2508), 1, + anon_sym_PLUS, + ACTIONS(4932), 1, + sym_mutable_specifier, + ACTIONS(4934), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63072] = 4, - ACTIONS(3840), 1, - anon_sym_GT, - ACTIONS(4900), 1, - anon_sym_COMMA, - STATE(1904), 1, - aux_sym_type_parameters_repeat1, + [62963] = 3, + ACTIONS(4938), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63086] = 4, - ACTIONS(3832), 1, - anon_sym_GT, - ACTIONS(4902), 1, + ACTIONS(4936), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1904), 1, - aux_sym_type_parameters_repeat1, + [62975] = 4, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(4940), 1, + anon_sym_SEMI, + STATE(906), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63100] = 4, - ACTIONS(3810), 1, + [62989] = 4, + ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(4904), 1, + ACTIONS(4942), 1, anon_sym_SEMI, - STATE(907), 1, - sym_declaration_list, + STATE(882), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63114] = 2, + [63003] = 4, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4944), 1, + anon_sym_SEMI, + ACTIONS(4946), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4906), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [63124] = 4, - ACTIONS(4081), 1, + [63017] = 4, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4908), 1, + ACTIONS(4948), 1, anon_sym_SEMI, - STATE(270), 1, + STATE(417), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63138] = 2, + [63031] = 4, + ACTIONS(798), 1, + anon_sym_RPAREN, + ACTIONS(4950), 1, + anon_sym_COMMA, + STATE(2075), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4910), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [63148] = 4, - ACTIONS(4071), 1, + [63045] = 4, + ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(4912), 1, + ACTIONS(4952), 1, anon_sym_SEMI, - STATE(956), 1, + STATE(898), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63162] = 2, + [63059] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2373), 3, + ACTIONS(4954), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_RBRACE, - [63172] = 4, - ACTIONS(386), 1, - anon_sym_RPAREN, - ACTIONS(3213), 1, anon_sym_COMMA, - STATE(1942), 1, - aux_sym_arguments_repeat1, + [63069] = 4, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(4956), 1, + anon_sym_SEMI, + ACTIONS(4958), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63186] = 4, - ACTIONS(794), 1, - anon_sym_RPAREN, - ACTIONS(4914), 1, - anon_sym_COMMA, - STATE(1965), 1, - aux_sym_parameters_repeat1, + [63083] = 4, + ACTIONS(4104), 1, + anon_sym_LBRACE, + ACTIONS(4960), 1, + anon_sym_SEMI, + STATE(917), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63200] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4874), 1, - sym_identifier, - STATE(2340), 1, - sym_type_arguments, + [63097] = 3, + ACTIONS(3213), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63214] = 2, + ACTIONS(4308), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63109] = 4, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_SEMI, + STATE(950), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4916), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [63224] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4918), 1, - anon_sym_SEMI, - ACTIONS(4920), 1, - anon_sym_RBRACK, + [63123] = 4, + ACTIONS(3796), 1, + anon_sym_RBRACE, + ACTIONS(4964), 1, + anon_sym_COMMA, + STATE(1890), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63238] = 4, - ACTIONS(3844), 1, + [63137] = 4, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4966), 1, anon_sym_SEMI, - STATE(397), 1, + STATE(959), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63252] = 4, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4924), 1, + [63151] = 4, + ACTIONS(4453), 1, + anon_sym_RPAREN, + ACTIONS(4968), 1, anon_sym_COMMA, - STATE(1955), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2075), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63266] = 4, - ACTIONS(4073), 1, + [63165] = 3, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4926), 1, - anon_sym_SEMI, - ACTIONS(4928), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63280] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_SEMI, - STATE(345), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63294] = 4, - ACTIONS(4073), 1, + ACTIONS(4453), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63177] = 4, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4932), 1, + ACTIONS(4971), 1, anon_sym_SEMI, - ACTIONS(4934), 1, + ACTIONS(4973), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63308] = 4, - ACTIONS(4936), 1, - sym_identifier, - ACTIONS(4938), 1, - anon_sym_ref, - ACTIONS(4940), 1, - sym_mutable_specifier, + [63191] = 4, + ACTIONS(3796), 1, + anon_sym_RBRACE, + ACTIONS(4964), 1, + anon_sym_COMMA, + STATE(1974), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63322] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [63205] = 4, + ACTIONS(4104), 1, + anon_sym_LBRACE, + ACTIONS(4975), 1, + anon_sym_SEMI, + STATE(983), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4335), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63334] = 4, - ACTIONS(554), 1, - anon_sym_RBRACK, - ACTIONS(3207), 1, - anon_sym_COMMA, - STATE(2013), 1, - aux_sym_array_expression_repeat1, + [63219] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4977), 1, + sym_identifier, + STATE(2507), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63348] = 3, - ACTIONS(3195), 1, - anon_sym_COLON_COLON, + [63233] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4977), 1, + sym_identifier, + STATE(2416), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4942), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63360] = 4, - ACTIONS(4944), 1, + [63247] = 4, + ACTIONS(4979), 1, anon_sym_RBRACE, - ACTIONS(4946), 1, + ACTIONS(4981), 1, anon_sym_COMMA, - STATE(2139), 1, + STATE(2152), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63374] = 4, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4948), 1, + [63261] = 4, + ACTIONS(4104), 1, + anon_sym_LBRACE, + ACTIONS(4983), 1, anon_sym_SEMI, - STATE(2478), 1, - sym_where_clause, + STATE(990), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63388] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4950), 1, - anon_sym_as, - ACTIONS(4952), 1, - anon_sym_GT, + [63275] = 4, + ACTIONS(4985), 1, + anon_sym_RBRACE, + ACTIONS(4987), 1, + anon_sym_COMMA, + STATE(1997), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63402] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4954), 1, - anon_sym_SEMI, - STATE(288), 1, - sym_block, + [63289] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63416] = 4, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(4956), 1, - anon_sym_EQ_GT, - ACTIONS(4958), 1, - anon_sym_if, + ACTIONS(4455), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [63299] = 4, + ACTIONS(4104), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_SEMI, + STATE(1030), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63430] = 4, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4960), 1, + [63313] = 4, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(4991), 1, anon_sym_SEMI, - STATE(2511), 1, - sym_where_clause, + STATE(1039), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63444] = 4, - ACTIONS(2638), 1, - anon_sym_LBRACE, - ACTIONS(4962), 1, - anon_sym_COLON_COLON, - STATE(1131), 1, - sym_field_initializer_list, + [63327] = 4, + ACTIONS(3874), 1, + anon_sym_RBRACE, + ACTIONS(4993), 1, + anon_sym_COMMA, + STATE(2105), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63458] = 4, - ACTIONS(4308), 1, + [63341] = 4, + ACTIONS(4294), 1, anon_sym_RPAREN, - ACTIONS(4310), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - STATE(2144), 1, + STATE(2148), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63472] = 4, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(4964), 1, - sym_identifier, - STATE(1977), 1, - sym_use_list, + [63355] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63486] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4966), 1, + ACTIONS(4995), 3, anon_sym_SEMI, - ACTIONS(4968), 1, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + [63365] = 4, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(4997), 1, + anon_sym_SEMI, + STATE(412), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63500] = 2, + [63379] = 4, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(4999), 1, + anon_sym_SEMI, + STATE(1046), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4970), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [63510] = 4, - ACTIONS(4071), 1, + [63393] = 4, + ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(4972), 1, + ACTIONS(5001), 1, anon_sym_SEMI, - STATE(876), 1, + STATE(872), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63524] = 3, - ACTIONS(4067), 1, - anon_sym_COLON_COLON, + [63407] = 4, + ACTIONS(3870), 1, + anon_sym_RBRACE, + ACTIONS(5003), 1, + anon_sym_COMMA, + STATE(1890), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [63536] = 2, + [63421] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4974), 3, + ACTIONS(5005), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63546] = 4, - ACTIONS(4425), 1, + [63431] = 4, + ACTIONS(4476), 1, anon_sym_COMMA, - ACTIONS(4427), 1, + ACTIONS(4478), 1, anon_sym_GT, - STATE(2113), 1, + STATE(2142), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63560] = 4, - ACTIONS(4976), 1, - anon_sym_RBRACE, - ACTIONS(4978), 1, - anon_sym_COMMA, - STATE(1889), 1, - aux_sym_field_declaration_list_repeat1, + [63445] = 4, + ACTIONS(4083), 1, + anon_sym_LBRACE, + ACTIONS(5007), 1, + anon_sym_SEMI, + STATE(385), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63574] = 4, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4980), 1, - anon_sym_SEMI, - STATE(2453), 1, - sym_where_clause, + [63459] = 3, + ACTIONS(5011), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63588] = 4, - ACTIONS(4982), 1, - anon_sym_for, - ACTIONS(4984), 1, - anon_sym_loop, - ACTIONS(4986), 1, - anon_sym_while, + ACTIONS(5009), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63471] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63602] = 4, - ACTIONS(2540), 1, + ACTIONS(5013), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [63481] = 4, + ACTIONS(2542), 1, anon_sym_RPAREN, - ACTIONS(4988), 1, + ACTIONS(5015), 1, anon_sym_COMMA, - STATE(1936), 1, + STATE(2014), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63616] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, + [63495] = 4, + ACTIONS(2457), 1, + anon_sym_RPAREN, + ACTIONS(5017), 1, + anon_sym_COMMA, + STATE(1868), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4990), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63628] = 4, - ACTIONS(3856), 1, + [63509] = 4, + ACTIONS(3850), 1, anon_sym_GT, - ACTIONS(4992), 1, + ACTIONS(5019), 1, anon_sym_COMMA, - STATE(1904), 1, + STATE(2044), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63642] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4994), 1, - anon_sym_SEMI, - STATE(475), 1, - sym_block, + [63523] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63656] = 4, - ACTIONS(3848), 1, + ACTIONS(5021), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [63533] = 4, + ACTIONS(3840), 1, anon_sym_GT, - ACTIONS(4996), 1, + ACTIONS(5023), 1, anon_sym_COMMA, - STATE(1904), 1, + STATE(2044), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63670] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4998), 1, - anon_sym_SEMI, - ACTIONS(5000), 1, - anon_sym_EQ, + [63547] = 4, + ACTIONS(5025), 1, + anon_sym_RBRACE, + ACTIONS(5027), 1, + anon_sym_COMMA, + STATE(2105), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63684] = 3, - ACTIONS(4073), 1, + [63561] = 4, + ACTIONS(4085), 1, anon_sym_PLUS, + ACTIONS(5030), 1, + anon_sym_SEMI, + ACTIONS(5032), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5002), 2, - anon_sym_COMMA, - anon_sym_GT, - [63696] = 4, - ACTIONS(3810), 1, + [63575] = 4, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(5004), 1, + ACTIONS(5034), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(851), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63710] = 4, - ACTIONS(4071), 1, + [63589] = 4, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(5006), 1, + ACTIONS(5036), 1, anon_sym_SEMI, - STATE(921), 1, - sym_block, + STATE(1033), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63724] = 4, - ACTIONS(5008), 1, - sym_identifier, - ACTIONS(5010), 1, - anon_sym_ref, - ACTIONS(5012), 1, - sym_mutable_specifier, + [63603] = 4, + ACTIONS(5038), 1, + anon_sym_RBRACE, + ACTIONS(5040), 1, + anon_sym_COMMA, + STATE(2109), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63738] = 4, - ACTIONS(4073), 1, + [63617] = 4, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(5014), 1, + ACTIONS(5043), 1, anon_sym_SEMI, - ACTIONS(5016), 1, + ACTIONS(5045), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63752] = 4, - ACTIONS(3844), 1, + [63631] = 4, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(5018), 1, + ACTIONS(5047), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(992), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63766] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5020), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63776] = 4, - ACTIONS(3347), 1, + [63645] = 4, + ACTIONS(3407), 1, anon_sym_RBRACE, - ACTIONS(5022), 1, + ACTIONS(5049), 1, anon_sym_COMMA, - STATE(1906), 1, + STATE(2109), 1, aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63790] = 2, + [63659] = 4, + ACTIONS(4104), 1, + anon_sym_LBRACE, + ACTIONS(5051), 1, + anon_sym_SEMI, + STATE(999), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5024), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [63673] = 4, + ACTIONS(794), 1, + anon_sym_RPAREN, + ACTIONS(5053), 1, anon_sym_COMMA, - [63800] = 2, + STATE(2075), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5026), 3, - anon_sym_SEMI, + [63687] = 3, + ACTIONS(5057), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5055), 2, anon_sym_RBRACE, anon_sym_COMMA, - [63810] = 4, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(5028), 1, + [63699] = 4, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_SEMI, - STATE(811), 1, - sym_declaration_list, + ACTIONS(5061), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63824] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [63713] = 4, + ACTIONS(3876), 1, + anon_sym_RBRACE, + ACTIONS(5063), 1, + anon_sym_COMMA, + STATE(2105), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5030), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63836] = 4, - ACTIONS(4073), 1, + [63727] = 4, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(5032), 1, + ACTIONS(5065), 1, anon_sym_SEMI, - ACTIONS(5034), 1, + ACTIONS(5067), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63850] = 4, - ACTIONS(3784), 1, - anon_sym_RBRACE, - ACTIONS(5036), 1, + [63741] = 4, + ACTIONS(548), 1, + anon_sym_RBRACK, + ACTIONS(3223), 1, anon_sym_COMMA, - STATE(2030), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2023), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63864] = 4, - ACTIONS(5038), 1, + [63755] = 4, + ACTIONS(5069), 1, anon_sym_RBRACE, - ACTIONS(5040), 1, + ACTIONS(5071), 1, anon_sym_COMMA, - STATE(2105), 1, + STATE(2132), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63878] = 4, - ACTIONS(3784), 1, - anon_sym_RBRACE, - ACTIONS(5036), 1, - anon_sym_COMMA, - STATE(2026), 1, - aux_sym_field_declaration_list_repeat1, + [63769] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63892] = 4, - ACTIONS(3802), 1, + ACTIONS(5073), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [63779] = 4, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(5042), 1, + ACTIONS(5075), 1, anon_sym_SEMI, - STATE(2553), 1, + STATE(2557), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63906] = 2, + [63793] = 4, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(5077), 1, + anon_sym_SEMI, + STATE(2519), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5044), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63916] = 4, - ACTIONS(4073), 1, + [63807] = 4, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(5046), 1, + ACTIONS(5079), 1, anon_sym_SEMI, - ACTIONS(5048), 1, + ACTIONS(5081), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63930] = 4, - ACTIONS(4071), 1, + [63821] = 4, + ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(5050), 1, + ACTIONS(5083), 1, anon_sym_SEMI, - STATE(834), 1, + STATE(956), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63944] = 2, + [63835] = 4, + ACTIONS(2455), 1, + anon_sym_RBRACK, + ACTIONS(5085), 1, + anon_sym_COMMA, + STATE(1868), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5052), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [63849] = 4, + ACTIONS(386), 1, + anon_sym_RPAREN, + ACTIONS(5087), 1, anon_sym_COMMA, - [63954] = 2, + STATE(2129), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5054), 3, + [63863] = 4, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(5089), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63964] = 4, - ACTIONS(5056), 1, - anon_sym_RPAREN, - ACTIONS(5058), 1, - anon_sym_COMMA, - STATE(2010), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(940), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63978] = 4, - ACTIONS(910), 1, - anon_sym_GT, - ACTIONS(5060), 1, + [63877] = 4, + ACTIONS(3275), 1, + anon_sym_RPAREN, + ACTIONS(5091), 1, anon_sym_COMMA, - STATE(1991), 1, - aux_sym_type_arguments_repeat1, + STATE(2129), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63992] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(5062), 1, - anon_sym_SEMI, - STATE(462), 1, - sym_block, + [63891] = 4, + ACTIONS(3878), 1, + anon_sym_RBRACE, + ACTIONS(5094), 1, + anon_sym_COMMA, + STATE(2094), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64006] = 4, - ACTIONS(3810), 1, + [63905] = 4, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(5064), 1, + ACTIONS(5096), 1, anon_sym_SEMI, - STATE(793), 1, + STATE(831), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64020] = 2, + [63919] = 4, + ACTIONS(3878), 1, + anon_sym_RBRACE, + ACTIONS(5094), 1, + anon_sym_COMMA, + STATE(1890), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5066), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [64030] = 2, + [63933] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5068), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(5098), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [64040] = 2, + [63943] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5070), 3, + ACTIONS(5100), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [64050] = 4, - ACTIONS(4161), 1, - anon_sym_COMMA, - ACTIONS(4163), 1, - anon_sym_GT, - STATE(2045), 1, - aux_sym_type_parameters_repeat1, + [63953] = 4, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(5102), 1, + anon_sym_SEMI, + ACTIONS(5104), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64064] = 3, - ACTIONS(4073), 1, + [63967] = 4, + ACTIONS(4085), 1, anon_sym_PLUS, + ACTIONS(5106), 1, + anon_sym_SEMI, + ACTIONS(5108), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5072), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64076] = 4, - ACTIONS(5074), 1, - sym_identifier, - ACTIONS(5076), 1, - anon_sym_ref, - ACTIONS(5078), 1, - sym_mutable_specifier, + [63981] = 4, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(5110), 1, + anon_sym_SEMI, + STATE(905), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64090] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4205), 1, - sym_identifier, - STATE(2338), 1, - sym_type_arguments, + [63995] = 4, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(5112), 1, + anon_sym_SEMI, + STATE(881), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64104] = 4, - ACTIONS(3802), 1, + [64009] = 4, + ACTIONS(3824), 1, anon_sym_where, - ACTIONS(5080), 1, + ACTIONS(5114), 1, anon_sym_SEMI, - STATE(2543), 1, + STATE(2548), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64118] = 2, + [64023] = 4, + ACTIONS(4251), 1, + anon_sym_COMMA, + ACTIONS(4253), 1, + anon_sym_GT, + STATE(1952), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5082), 3, + [64037] = 4, + ACTIONS(5116), 1, anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(5118), 1, anon_sym_COMMA, - [64128] = 4, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(5084), 1, - anon_sym_SEMI, - STATE(327), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64142] = 4, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(5086), 1, - anon_sym_SEMI, - STATE(325), 1, - sym_declaration_list, + STATE(1964), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64156] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4205), 1, - sym_identifier, - STATE(2340), 1, - sym_type_arguments, + [64051] = 4, + ACTIONS(922), 1, + anon_sym_GT, + ACTIONS(5120), 1, + anon_sym_COMMA, + STATE(2034), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64170] = 4, - ACTIONS(3844), 1, + [64065] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(5088), 1, + ACTIONS(5122), 1, anon_sym_SEMI, - STATE(364), 1, + STATE(366), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64184] = 4, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(5090), 1, + [64079] = 4, + ACTIONS(3824), 1, + anon_sym_where, + ACTIONS(5124), 1, anon_sym_SEMI, - STATE(847), 1, - sym_declaration_list, + STATE(2431), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64198] = 4, - ACTIONS(3844), 1, + [64093] = 4, + ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(5092), 1, + ACTIONS(5126), 1, anon_sym_SEMI, - STATE(391), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64212] = 3, - ACTIONS(4290), 1, - anon_sym_COLON, + STATE(861), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5094), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [64224] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [64107] = 4, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(5128), 1, + anon_sym_SEMI, + STATE(470), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5096), 2, + [64121] = 4, + ACTIONS(790), 1, anon_sym_RPAREN, + ACTIONS(4310), 1, anon_sym_COMMA, - [64236] = 4, - ACTIONS(5094), 1, - anon_sym_PIPE, - ACTIONS(5098), 1, - anon_sym_COMMA, - STATE(2133), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64250] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5101), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64262] = 2, + STATE(2114), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2401), 3, - anon_sym_SEMI, + [64135] = 4, + ACTIONS(790), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [64272] = 4, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(5103), 1, - anon_sym_SEMI, - STATE(862), 1, - sym_declaration_list, + ACTIONS(4310), 1, + anon_sym_COMMA, + STATE(2075), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64286] = 4, - ACTIONS(4073), 1, + [64149] = 4, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(5105), 1, + ACTIONS(5130), 1, anon_sym_SEMI, - ACTIONS(5107), 1, + ACTIONS(5132), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64300] = 4, - ACTIONS(284), 1, + [64163] = 4, + ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - STATE(1050), 1, + ACTIONS(5134), 1, + anon_sym_SEMI, + STATE(336), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64314] = 4, - ACTIONS(3870), 1, + [64177] = 4, + ACTIONS(3894), 1, anon_sym_RBRACE, - ACTIONS(5109), 1, + ACTIONS(5136), 1, anon_sym_COMMA, - STATE(1955), 1, + STATE(2117), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64328] = 4, - ACTIONS(3870), 1, + [64191] = 4, + ACTIONS(3894), 1, anon_sym_RBRACE, - ACTIONS(5109), 1, + ACTIONS(5136), 1, anon_sym_COMMA, - STATE(2058), 1, + STATE(2105), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64342] = 2, + [64205] = 4, + ACTIONS(5138), 1, + anon_sym_RBRACE, + ACTIONS(5140), 1, + anon_sym_COMMA, + STATE(2153), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5111), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [64352] = 4, - ACTIONS(4081), 1, + [64219] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(5113), 1, - anon_sym_SEMI, - STATE(404), 1, - sym_block, + STATE(291), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64366] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(5115), 1, - anon_sym_SEMI, - ACTIONS(5117), 1, - anon_sym_EQ, + [64230] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64380] = 4, - ACTIONS(798), 1, + ACTIONS(5143), 2, anon_sym_RPAREN, - ACTIONS(4245), 1, anon_sym_COMMA, - STATE(1965), 1, - aux_sym_parameters_repeat1, + [64239] = 3, + ACTIONS(5145), 1, + anon_sym_SEMI, + ACTIONS(5147), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64394] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, - anon_sym_SEMI, - STATE(341), 1, - sym_block, + [64250] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64408] = 4, - ACTIONS(3820), 1, - anon_sym_RBRACE, - ACTIONS(5121), 1, + ACTIONS(5149), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1924), 1, - aux_sym_field_initializer_list_repeat1, + [64259] = 3, + ACTIONS(3439), 1, + anon_sym_LPAREN, + STATE(1375), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64422] = 4, - ACTIONS(798), 1, - anon_sym_RPAREN, - ACTIONS(4245), 1, - anon_sym_COMMA, - STATE(2053), 1, - aux_sym_parameters_repeat1, + [64270] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5151), 2, + sym_identifier, + sym_metavariable, + [64279] = 3, + ACTIONS(3822), 1, + anon_sym_LBRACE, + STATE(375), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64436] = 3, - ACTIONS(4171), 1, + [64290] = 3, + ACTIONS(4164), 1, anon_sym_LBRACE, - STATE(478), 1, + STATE(327), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64447] = 3, + [64301] = 3, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(91), 1, + STATE(149), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64458] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(5123), 1, + [64312] = 3, + ACTIONS(5153), 1, + sym_identifier, + ACTIONS(5155), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64323] = 3, + ACTIONS(4039), 1, + anon_sym_RBRACE, + ACTIONS(5145), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64469] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(399), 1, - sym_declaration_list, + [64334] = 3, + ACTIONS(5157), 1, + anon_sym_SEMI, + ACTIONS(5159), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64480] = 3, - ACTIONS(3828), 1, + [64345] = 3, + ACTIONS(3439), 1, + anon_sym_LPAREN, + STATE(1719), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64356] = 3, + ACTIONS(4021), 1, + anon_sym_RPAREN, + ACTIONS(5145), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64367] = 3, + ACTIONS(3836), 1, anon_sym_LBRACE, - STATE(800), 1, + STATE(841), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64491] = 3, - ACTIONS(3810), 1, + [64378] = 3, + ACTIONS(4563), 1, + sym_identifier, + ACTIONS(4567), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64389] = 3, + ACTIONS(3836), 1, anon_sym_LBRACE, - STATE(792), 1, - sym_declaration_list, + STATE(944), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64502] = 2, + [64400] = 3, + ACTIONS(3822), 1, + anon_sym_LBRACE, + STATE(322), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5125), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64511] = 3, - ACTIONS(4075), 1, - anon_sym_LBRACE, - STATE(791), 1, - sym_enum_variant_list, + [64411] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(5161), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64522] = 3, - ACTIONS(3828), 1, + [64422] = 3, + ACTIONS(3822), 1, anon_sym_LBRACE, - STATE(805), 1, + STATE(315), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64533] = 3, - ACTIONS(3828), 1, + [64433] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(812), 1, - sym_field_declaration_list, + STATE(465), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64544] = 3, - ACTIONS(5127), 1, - anon_sym_SEMI, - ACTIONS(5129), 1, - anon_sym_as, + [64444] = 3, + ACTIONS(3830), 1, + anon_sym_LBRACE, + STATE(308), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64555] = 2, + [64455] = 3, + ACTIONS(4164), 1, + anon_sym_LBRACE, + STATE(272), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5131), 2, - sym_identifier, - sym_metavariable, - [64564] = 3, - ACTIONS(5133), 1, - anon_sym_SEMI, - ACTIONS(5135), 1, - anon_sym_RBRACE, + [64466] = 3, + ACTIONS(4090), 1, + anon_sym_LBRACE, + STATE(819), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64575] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(149), 1, - sym_block, + [64477] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(5163), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64586] = 3, - ACTIONS(5133), 1, - anon_sym_SEMI, - ACTIONS(5137), 1, - anon_sym_RBRACE, + [64488] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(5165), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64597] = 3, - ACTIONS(3425), 1, - anon_sym_LPAREN, - STATE(1392), 1, - sym_parameters, + [64499] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(5167), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64608] = 3, - ACTIONS(5139), 1, - sym_identifier, - ACTIONS(5141), 1, - sym_mutable_specifier, + [64510] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(5169), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64619] = 3, - ACTIONS(2566), 1, + [64521] = 3, + ACTIONS(3439), 1, anon_sym_LPAREN, - STATE(850), 1, + STATE(1731), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64630] = 3, - ACTIONS(3810), 1, + [64532] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(816), 1, + STATE(826), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64641] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(817), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64652] = 2, + [64543] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(5171), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5143), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64661] = 3, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(2205), 1, - sym_lifetime, + [64554] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(5173), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64672] = 3, - ACTIONS(3810), 1, + [64565] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(877), 1, + STATE(932), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64683] = 3, - ACTIONS(4073), 1, + [64576] = 3, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(5145), 1, + ACTIONS(5175), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64694] = 2, + [64587] = 3, + ACTIONS(3836), 1, + anon_sym_LBRACE, + STATE(798), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4335), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64703] = 3, - ACTIONS(3995), 1, - anon_sym_COLON_COLON, - ACTIONS(5147), 1, - anon_sym_RPAREN, + [64598] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(5177), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64714] = 3, - ACTIONS(4039), 1, - anon_sym_COLON_COLON, - ACTIONS(5147), 1, - anon_sym_RPAREN, + [64609] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(5179), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64725] = 3, - ACTIONS(3810), 1, + [64620] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(893), 1, + STATE(795), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64736] = 3, - ACTIONS(3810), 1, + [64631] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(896), 1, + STATE(946), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64747] = 3, - ACTIONS(4043), 1, - anon_sym_COLON_COLON, - ACTIONS(5147), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64758] = 3, - ACTIONS(5074), 1, + [64642] = 3, + ACTIONS(5181), 1, sym_identifier, - ACTIONS(5078), 1, + ACTIONS(5183), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64769] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5149), 1, - anon_sym_EQ, + [64653] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64780] = 3, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(5151), 1, + ACTIONS(4589), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [64662] = 3, + ACTIONS(4015), 1, + anon_sym_RBRACE, + ACTIONS(5145), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64791] = 3, - ACTIONS(4294), 1, + [64673] = 3, + ACTIONS(4282), 1, anon_sym_PIPE, - ACTIONS(5153), 1, - anon_sym_in, + ACTIONS(5185), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64802] = 3, - ACTIONS(3828), 1, + [64684] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(787), 1, - sym_field_declaration_list, + STATE(805), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64813] = 3, - ACTIONS(4075), 1, + [64695] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(924), 1, + STATE(809), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64706] = 3, + ACTIONS(4090), 1, + anon_sym_LBRACE, + STATE(962), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64824] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5155), 1, - anon_sym_EQ, + [64717] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64835] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5157), 1, - anon_sym_EQ, + ACTIONS(5187), 2, + sym_identifier, + sym_metavariable, + [64726] = 3, + ACTIONS(3836), 1, + anon_sym_LBRACE, + STATE(813), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64846] = 3, - ACTIONS(3828), 1, + [64737] = 3, + ACTIONS(3836), 1, anon_sym_LBRACE, - STATE(930), 1, + STATE(969), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64857] = 3, - ACTIONS(4073), 1, + [64748] = 3, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(5159), 1, + ACTIONS(5189), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64868] = 3, - ACTIONS(3828), 1, + [64759] = 3, + ACTIONS(3836), 1, anon_sym_LBRACE, - STATE(934), 1, + STATE(974), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64879] = 3, - ACTIONS(3810), 1, + [64770] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(935), 1, + STATE(975), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64890] = 3, - ACTIONS(4294), 1, + [64781] = 3, + ACTIONS(4282), 1, anon_sym_PIPE, - ACTIONS(5161), 1, - anon_sym_in, + ACTIONS(5191), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64901] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5163), 1, - anon_sym_EQ, + [64792] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64912] = 3, - ACTIONS(4075), 1, + ACTIONS(4890), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64801] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(886), 1, - sym_enum_variant_list, + STATE(300), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64923] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5165), 1, - anon_sym_in, + [64812] = 3, + ACTIONS(2962), 1, + anon_sym_COLON, + ACTIONS(4085), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64934] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(284), 1, - sym_declaration_list, + [64823] = 3, + ACTIONS(2966), 1, + anon_sym_COLON, + ACTIONS(4085), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64945] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(285), 1, - sym_declaration_list, + [64834] = 3, + ACTIONS(4001), 1, + anon_sym_RPAREN, + ACTIONS(5145), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64956] = 2, + [64845] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(5193), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5167), 2, - sym_identifier, - sym_metavariable, - [64965] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(5169), 1, - anon_sym_SEMI, + [64856] = 3, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(2306), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64976] = 3, - ACTIONS(2319), 1, + [64867] = 3, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(2025), 1, + STATE(1978), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64987] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5171), 1, - anon_sym_EQ, + [64878] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64998] = 3, - ACTIONS(4019), 1, - anon_sym_RBRACE, - ACTIONS(5133), 1, - anon_sym_SEMI, + ACTIONS(5195), 2, + sym_identifier, + sym_metavariable, + [64887] = 3, + ACTIONS(4013), 1, + anon_sym_COLON_COLON, + ACTIONS(5197), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65009] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(305), 1, - sym_declaration_list, + [64898] = 3, + ACTIONS(4017), 1, + anon_sym_COLON_COLON, + ACTIONS(5197), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65020] = 3, - ACTIONS(3973), 1, - anon_sym_RBRACE, - ACTIONS(5133), 1, - anon_sym_SEMI, + [64909] = 3, + ACTIONS(4019), 1, + anon_sym_COLON_COLON, + ACTIONS(5197), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65031] = 2, + [64920] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(130), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4857), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65040] = 3, - ACTIONS(3800), 1, - anon_sym_LBRACE, - STATE(355), 1, - sym_field_declaration_list, + [64931] = 3, + ACTIONS(3591), 1, + anon_sym_COLON_COLON, + ACTIONS(5199), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65051] = 2, + [64942] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4788), 2, + ACTIONS(5201), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [65060] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1086), 1, - sym_block, + [64951] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(5203), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65071] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(348), 1, - sym_declaration_list, + [64962] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65082] = 2, + ACTIONS(5025), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64971] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4760), 2, - anon_sym_COMMA, - anon_sym_GT, - [65091] = 3, - ACTIONS(5173), 1, - anon_sym_SEMI, - ACTIONS(5175), 1, - anon_sym_as, + ACTIONS(5205), 2, + sym_identifier, + sym_metavariable, + [64980] = 3, + ACTIONS(2580), 1, + anon_sym_LPAREN, + STATE(849), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65102] = 3, - ACTIONS(4294), 1, + [64991] = 3, + ACTIONS(4282), 1, anon_sym_PIPE, - ACTIONS(5177), 1, + ACTIONS(5207), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65113] = 2, + [65002] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4753), 2, + ACTIONS(5038), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65122] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5179), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65133] = 2, + [65011] = 3, + ACTIONS(5209), 1, + anon_sym_LBRACK, + ACTIONS(5211), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4842), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65142] = 3, - ACTIONS(3810), 1, + [65022] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(931), 1, + STATE(402), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65153] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(939), 1, - sym_field_declaration_list, + [65033] = 3, + ACTIONS(4278), 1, + anon_sym_COLON, + ACTIONS(4282), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65164] = 2, + [65044] = 3, + ACTIONS(3830), 1, + anon_sym_LBRACE, + STATE(404), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5181), 2, - sym_identifier, - sym_metavariable, - [65173] = 2, + [65055] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(5213), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4328), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65182] = 3, - ACTIONS(2566), 1, - anon_sym_LPAREN, - STATE(975), 1, - sym_parameters, + [65066] = 3, + ACTIONS(4055), 1, + anon_sym_COLON, + ACTIONS(4085), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65193] = 3, - ACTIONS(3810), 1, - anon_sym_LBRACE, - STATE(987), 1, - sym_declaration_list, + [65077] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65204] = 3, + ACTIONS(5215), 2, + sym_identifier, + sym_metavariable, + [65086] = 3, ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(333), 1, - sym_field_declaration_list, + STATE(1037), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65215] = 3, - ACTIONS(4049), 1, + [65097] = 3, + ACTIONS(2998), 1, anon_sym_COLON, - ACTIONS(4073), 1, + ACTIONS(4085), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65226] = 2, + [65108] = 3, + ACTIONS(4090), 1, + anon_sym_LBRACE, + STATE(886), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4695), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65235] = 3, - ACTIONS(4073), 1, + [65119] = 3, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5219), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65130] = 3, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(5183), 1, + ACTIONS(5221), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65246] = 3, - ACTIONS(3810), 1, + [65141] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(995), 1, + STATE(1024), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65257] = 3, - ACTIONS(3810), 1, + [65152] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(997), 1, + STATE(1017), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65268] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5185), 1, - anon_sym_in, + [65163] = 3, + ACTIONS(3830), 1, + anon_sym_LBRACE, + STATE(433), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65279] = 3, - ACTIONS(5187), 1, - anon_sym_LBRACK, - ACTIONS(5189), 1, - anon_sym_BANG, + [65174] = 3, + ACTIONS(3822), 1, + anon_sym_LBRACE, + STATE(278), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65290] = 2, + [65185] = 3, + ACTIONS(4013), 1, + anon_sym_COLON_COLON, + ACTIONS(5223), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5191), 2, - sym_identifier, - sym_metavariable, - [65299] = 3, - ACTIONS(4294), 1, + [65196] = 3, + ACTIONS(85), 1, anon_sym_PIPE, - ACTIONS(5193), 1, - anon_sym_EQ, + STATE(55), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65310] = 3, - ACTIONS(4075), 1, - anon_sym_LBRACE, - STATE(1015), 1, - sym_enum_variant_list, + [65207] = 3, + ACTIONS(3439), 1, + anon_sym_LPAREN, + STATE(1378), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65321] = 3, - ACTIONS(5195), 1, - anon_sym_LBRACK, - ACTIONS(5197), 1, - anon_sym_BANG, + [65218] = 3, + ACTIONS(3822), 1, + anon_sym_LBRACE, + STATE(282), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65332] = 3, - ACTIONS(3425), 1, - anon_sym_LPAREN, - STATE(1655), 1, - sym_parameters, + [65229] = 3, + ACTIONS(5225), 1, + sym_identifier, + ACTIONS(5227), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65343] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(71), 1, - sym_closure_parameters, + [65240] = 3, + ACTIONS(5229), 1, + anon_sym_SEMI, + ACTIONS(5231), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65354] = 3, - ACTIONS(3844), 1, + [65251] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(443), 1, + STATE(452), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65365] = 3, - ACTIONS(3800), 1, + [65262] = 3, + ACTIONS(2626), 1, anon_sym_LBRACE, - STATE(430), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65376] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(5199), 1, - anon_sym_SEMI, + STATE(1077), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65387] = 3, - ACTIONS(3800), 1, - anon_sym_LBRACE, - STATE(417), 1, - sym_field_declaration_list, + [65273] = 3, + ACTIONS(4017), 1, + anon_sym_COLON_COLON, + ACTIONS(5223), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65398] = 3, - ACTIONS(4171), 1, - anon_sym_LBRACE, - STATE(390), 1, - sym_enum_variant_list, + [65284] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65409] = 3, - ACTIONS(2638), 1, + ACTIONS(4453), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65293] = 3, + ACTIONS(5233), 1, + anon_sym_LPAREN, + ACTIONS(5235), 1, anon_sym_LBRACE, - STATE(1131), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65420] = 2, + [65304] = 3, + ACTIONS(4027), 1, + anon_sym_RBRACE, + ACTIONS(5145), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4624), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65429] = 3, - ACTIONS(5201), 1, + [65315] = 3, + ACTIONS(5237), 1, anon_sym_LPAREN, - ACTIONS(5203), 1, + ACTIONS(5239), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65440] = 3, - ACTIONS(5205), 1, - anon_sym_LPAREN, - ACTIONS(5207), 1, - anon_sym_LBRACE, + [65326] = 3, + ACTIONS(4029), 1, + anon_sym_RBRACE, + ACTIONS(5145), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65451] = 3, - ACTIONS(2566), 1, - anon_sym_LPAREN, - STATE(830), 1, - sym_parameters, + [65337] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65462] = 3, - ACTIONS(284), 1, + ACTIONS(5138), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65346] = 3, + ACTIONS(3822), 1, anon_sym_LBRACE, - STATE(1084), 1, - sym_block, + STATE(447), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65473] = 2, + [65357] = 3, + ACTIONS(3604), 1, + anon_sym_COLON_COLON, + ACTIONS(5241), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5209), 2, - anon_sym_const, - sym_mutable_specifier, - [65482] = 3, - ACTIONS(3810), 1, + [65368] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1043), 1, - sym_declaration_list, + STATE(1107), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65493] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5211), 1, - anon_sym_EQ, + [65379] = 3, + ACTIONS(3800), 1, + anon_sym_LBRACE, + STATE(910), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65504] = 3, + [65390] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1052), 1, + STATE(1149), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65515] = 3, - ACTIONS(284), 1, + [65401] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(1137), 1, - sym_block, + STATE(430), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65526] = 2, + [65412] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4593), 2, - anon_sym_RBRACE, + ACTIONS(4308), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [65535] = 3, - ACTIONS(3810), 1, + [65421] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(815), 1, - sym_declaration_list, + STATE(1123), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65432] = 3, + ACTIONS(3585), 1, + anon_sym_COLON_COLON, + ACTIONS(5241), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65546] = 3, - ACTIONS(586), 1, + [65443] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(229), 1, + STATE(133), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65557] = 3, - ACTIONS(888), 1, - anon_sym_LBRACE, - STATE(1478), 1, - sym_block, + [65454] = 3, + ACTIONS(3439), 1, + anon_sym_LPAREN, + STATE(1730), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65568] = 3, - ACTIONS(3425), 1, - anon_sym_LPAREN, - STATE(1662), 1, - sym_parameters, + [65465] = 3, + ACTIONS(4019), 1, + anon_sym_COLON_COLON, + ACTIONS(5223), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65579] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(61), 1, - sym_closure_parameters, + [65476] = 3, + ACTIONS(5243), 1, + anon_sym_SEMI, + ACTIONS(5245), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65590] = 3, - ACTIONS(3844), 1, + [65487] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(257), 1, + STATE(456), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65601] = 3, - ACTIONS(586), 1, + [65498] = 3, + ACTIONS(594), 1, anon_sym_LBRACE, - STATE(237), 1, + STATE(243), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65612] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1053), 1, - sym_block, + [65509] = 3, + ACTIONS(5247), 1, + anon_sym_LT, + STATE(728), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65623] = 3, - ACTIONS(586), 1, + [65520] = 3, + ACTIONS(594), 1, anon_sym_LBRACE, - STATE(242), 1, + STATE(227), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65634] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(256), 1, - sym_declaration_list, + [65531] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(5249), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65645] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(5213), 1, - anon_sym_SEMI, + [65542] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65656] = 3, - ACTIONS(586), 1, + ACTIONS(4381), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65551] = 3, + ACTIONS(594), 1, anon_sym_LBRACE, - STATE(221), 1, + STATE(251), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65667] = 3, - ACTIONS(3844), 1, + [65562] = 3, + ACTIONS(3822), 1, anon_sym_LBRACE, - STATE(360), 1, - sym_declaration_list, + STATE(477), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65678] = 3, - ACTIONS(5133), 1, - anon_sym_SEMI, - ACTIONS(5215), 1, - anon_sym_RPAREN, + [65573] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65689] = 3, - ACTIONS(5217), 1, - anon_sym_SEMI, - ACTIONS(5219), 1, - anon_sym_as, + ACTIONS(5251), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65582] = 3, + ACTIONS(3836), 1, + anon_sym_LBRACE, + STATE(921), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65700] = 3, - ACTIONS(5133), 1, + [65593] = 3, + ACTIONS(5145), 1, anon_sym_SEMI, - ACTIONS(5221), 1, + ACTIONS(5253), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65711] = 2, + [65604] = 3, + ACTIONS(5145), 1, + anon_sym_SEMI, + ACTIONS(5255), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4503), 2, - anon_sym_COMMA, - anon_sym_GT, - [65720] = 2, + [65615] = 3, + ACTIONS(3591), 1, + anon_sym_COLON_COLON, + ACTIONS(5257), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5223), 2, - sym_float_literal, - sym_integer_literal, - [65729] = 3, - ACTIONS(3425), 1, - anon_sym_LPAREN, - STATE(1677), 1, - sym_parameters, + [65626] = 3, + ACTIONS(3800), 1, + anon_sym_LBRACE, + STATE(927), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65740] = 2, + [65637] = 3, + ACTIONS(3836), 1, + anon_sym_LBRACE, + STATE(933), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4262), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65749] = 3, - ACTIONS(3590), 1, - anon_sym_COLON_COLON, - ACTIONS(5225), 1, - anon_sym_BANG, + [65648] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65760] = 3, - ACTIONS(3425), 1, + ACTIONS(5259), 2, + sym_float_literal, + sym_integer_literal, + [65657] = 3, + ACTIONS(3439), 1, anon_sym_LPAREN, - STATE(1643), 1, + STATE(1700), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65771] = 3, - ACTIONS(3588), 1, - anon_sym_COLON_COLON, - ACTIONS(5225), 1, - anon_sym_BANG, + [65668] = 3, + ACTIONS(3439), 1, + anon_sym_LPAREN, + STATE(1668), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65782] = 3, - ACTIONS(5133), 1, - anon_sym_SEMI, - ACTIONS(5227), 1, - anon_sym_RBRACE, + [65679] = 3, + ACTIONS(4164), 1, + anon_sym_LBRACE, + STATE(356), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65793] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5229), 1, - anon_sym_in, + [65690] = 3, + ACTIONS(5145), 1, + anon_sym_SEMI, + ACTIONS(5261), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65804] = 3, - ACTIONS(5231), 1, - sym_identifier, - ACTIONS(5233), 1, - sym_mutable_specifier, + [65701] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65815] = 3, - ACTIONS(5133), 1, - anon_sym_SEMI, - ACTIONS(5235), 1, + ACTIONS(5263), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [65710] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(5265), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65826] = 2, + [65721] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5237), 2, + ACTIONS(5267), 2, anon_sym_const, sym_mutable_specifier, - [65835] = 3, - ACTIONS(3425), 1, + [65730] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4667), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [65739] = 3, + ACTIONS(3439), 1, anon_sym_LPAREN, - STATE(1386), 1, + STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65846] = 3, - ACTIONS(3538), 1, + [65750] = 3, + ACTIONS(3552), 1, anon_sym_COLON_COLON, - ACTIONS(3654), 1, + ACTIONS(3664), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65857] = 3, - ACTIONS(5133), 1, - anon_sym_SEMI, - ACTIONS(5239), 1, - anon_sym_RBRACE, + [65761] = 3, + ACTIONS(594), 1, + anon_sym_LBRACE, + STATE(228), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65868] = 3, - ACTIONS(586), 1, - anon_sym_LBRACE, - STATE(226), 1, - sym_block, + [65772] = 3, + ACTIONS(2580), 1, + anon_sym_LPAREN, + STATE(973), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65879] = 3, - ACTIONS(5133), 1, + [65783] = 3, + ACTIONS(5145), 1, anon_sym_SEMI, - ACTIONS(5241), 1, + ACTIONS(5269), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65890] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5243), 1, - anon_sym_in, + [65794] = 3, + ACTIONS(5145), 1, + anon_sym_SEMI, + ACTIONS(5271), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65901] = 3, - ACTIONS(5245), 1, - anon_sym_SEMI, - ACTIONS(5247), 1, - anon_sym_as, + [65805] = 3, + ACTIONS(3830), 1, + anon_sym_LBRACE, + STATE(369), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65912] = 2, + [65816] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5249), 2, - sym_identifier, - sym_metavariable, - [65921] = 3, - ACTIONS(3800), 1, + ACTIONS(4882), 2, + anon_sym_COMMA, + anon_sym_GT, + [65825] = 3, + ACTIONS(3822), 1, anon_sym_LBRACE, - STATE(457), 1, + STATE(421), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65932] = 3, - ACTIONS(2906), 1, - anon_sym_COLON, - ACTIONS(4073), 1, - anon_sym_PLUS, + [65836] = 3, + ACTIONS(3830), 1, + anon_sym_LBRACE, + STATE(406), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65943] = 3, - ACTIONS(3999), 1, - anon_sym_RPAREN, - ACTIONS(5133), 1, - anon_sym_SEMI, + [65847] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65954] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(129), 1, - sym_block, + ACTIONS(4871), 2, + anon_sym_COMMA, + anon_sym_GT, + [65856] = 3, + ACTIONS(5273), 1, + anon_sym_SEMI, + ACTIONS(5275), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65965] = 3, - ACTIONS(4001), 1, - anon_sym_RPAREN, - ACTIONS(5133), 1, + [65867] = 3, + ACTIONS(4085), 1, + anon_sym_PLUS, + ACTIONS(5277), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65976] = 3, - ACTIONS(4009), 1, + [65878] = 3, + ACTIONS(3983), 1, anon_sym_RPAREN, - ACTIONS(5133), 1, + ACTIONS(5145), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65987] = 3, - ACTIONS(3800), 1, - anon_sym_LBRACE, - STATE(454), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65998] = 3, - ACTIONS(2574), 1, + [65889] = 3, + ACTIONS(2588), 1, anon_sym_LT2, - STATE(1081), 1, + STATE(1129), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66009] = 3, - ACTIONS(4171), 1, - anon_sym_LBRACE, - STATE(447), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66020] = 3, - ACTIONS(3425), 1, - anon_sym_LPAREN, - STATE(1703), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66031] = 3, - ACTIONS(2800), 1, - anon_sym_COLON, - ACTIONS(4073), 1, + [65900] = 3, + ACTIONS(4085), 1, anon_sym_PLUS, + ACTIONS(5279), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66042] = 3, - ACTIONS(2796), 1, - anon_sym_COLON, - ACTIONS(4073), 1, - anon_sym_PLUS, + [65911] = 3, + ACTIONS(4049), 1, + anon_sym_RPAREN, + ACTIONS(5145), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66053] = 3, - ACTIONS(4011), 1, - anon_sym_RBRACE, - ACTIONS(5133), 1, - anon_sym_SEMI, + [65922] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1122), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66064] = 2, + [65933] = 3, + ACTIONS(3441), 1, + anon_sym_BANG, + ACTIONS(5281), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5094), 2, - anon_sym_COMMA, + [65944] = 3, + ACTIONS(85), 1, anon_sym_PIPE, - [66073] = 3, - ACTIONS(3427), 1, - anon_sym_BANG, - ACTIONS(5251), 1, - anon_sym_COLON_COLON, + STATE(62), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66084] = 3, - ACTIONS(4073), 1, + [65955] = 3, + ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(5253), 1, + ACTIONS(5283), 1, anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66095] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(436), 1, - sym_declaration_list, + [65966] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66106] = 3, - ACTIONS(4015), 1, + ACTIONS(5285), 2, anon_sym_RPAREN, - ACTIONS(5133), 1, - anon_sym_SEMI, + anon_sym_COMMA, + [65975] = 3, + ACTIONS(4814), 1, + sym_identifier, + ACTIONS(4818), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66117] = 3, - ACTIONS(4021), 1, - anon_sym_RBRACE, - ACTIONS(5133), 1, + [65986] = 3, + ACTIONS(3439), 1, + anon_sym_LPAREN, + STATE(1689), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65997] = 3, + ACTIONS(5145), 1, anon_sym_SEMI, + ACTIONS(5287), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66128] = 3, - ACTIONS(2936), 1, + [66008] = 3, + ACTIONS(2948), 1, anon_sym_COLON, - ACTIONS(4073), 1, + ACTIONS(4085), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66139] = 3, - ACTIONS(4635), 1, - sym_identifier, - ACTIONS(4639), 1, - sym_mutable_specifier, + [66019] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66150] = 3, - ACTIONS(3425), 1, + ACTIONS(4494), 2, + anon_sym_COMMA, + anon_sym_GT, + [66028] = 3, + ACTIONS(5289), 1, anon_sym_LPAREN, - STATE(1671), 1, - sym_parameters, + ACTIONS(5291), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66161] = 3, - ACTIONS(3800), 1, - anon_sym_LBRACE, - STATE(426), 1, - sym_field_declaration_list, + [66039] = 3, + ACTIONS(2580), 1, + anon_sym_LPAREN, + STATE(967), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66172] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(5255), 1, - anon_sym_SEMI, + [66050] = 3, + ACTIONS(4090), 1, + anon_sym_LBRACE, + STATE(1015), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66183] = 3, - ACTIONS(3425), 1, + [66061] = 3, + ACTIONS(5293), 1, anon_sym_LPAREN, - STATE(1378), 1, - sym_parameters, + ACTIONS(5295), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66194] = 3, - ACTIONS(3844), 1, + [66072] = 3, + ACTIONS(900), 1, anon_sym_LBRACE, - STATE(421), 1, - sym_declaration_list, + STATE(1468), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66205] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(418), 1, - sym_declaration_list, + [66083] = 3, + ACTIONS(5145), 1, + anon_sym_SEMI, + ACTIONS(5297), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66216] = 3, - ACTIONS(3804), 1, - anon_sym_LT, - STATE(737), 1, - sym_type_parameters, + [66094] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66227] = 3, - ACTIONS(5257), 1, + ACTIONS(4150), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66103] = 3, + ACTIONS(3826), 1, anon_sym_LT, - STATE(710), 1, + STATE(755), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66238] = 3, - ACTIONS(3924), 1, - anon_sym_COLON, - STATE(2017), 1, - sym_trait_bounds, + [66114] = 3, + ACTIONS(3596), 1, + anon_sym_BANG, + ACTIONS(5299), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66249] = 3, - ACTIONS(3800), 1, + [66125] = 3, + ACTIONS(594), 1, anon_sym_LBRACE, - STATE(413), 1, - sym_field_declaration_list, + STATE(247), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66260] = 3, - ACTIONS(3570), 1, - anon_sym_BANG, - ACTIONS(5259), 1, - anon_sym_COLON_COLON, + [66136] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1135), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66271] = 2, + [66147] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2393), 2, - anon_sym_COMMA, - anon_sym_GT, - [66280] = 3, - ACTIONS(2720), 1, - anon_sym_COLON_COLON, - ACTIONS(3932), 1, - anon_sym_BANG, + ACTIONS(5301), 2, + anon_sym_const, + sym_mutable_specifier, + [66156] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66291] = 2, + ACTIONS(5303), 2, + anon_sym_const, + sym_mutable_specifier, + [66165] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5261), 2, - anon_sym_const, - sym_mutable_specifier, - [66300] = 3, - ACTIONS(3995), 1, - anon_sym_COLON_COLON, - ACTIONS(5263), 1, + ACTIONS(5305), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [66174] = 3, + ACTIONS(3923), 1, + anon_sym_COLON, + STATE(1957), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66311] = 3, - ACTIONS(5265), 1, - anon_sym_LPAREN, - ACTIONS(5267), 1, + [66185] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4556), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66194] = 3, + ACTIONS(4164), 1, anon_sym_LBRACE, + STATE(359), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66322] = 2, + [66205] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5269), 2, + ACTIONS(5307), 2, sym_identifier, sym_metavariable, - [66331] = 3, - ACTIONS(5271), 1, - anon_sym_LPAREN, - ACTIONS(5273), 1, - anon_sym_LBRACE, + [66214] = 3, + ACTIONS(2690), 1, + anon_sym_COLON_COLON, + ACTIONS(3960), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66342] = 3, - ACTIONS(4171), 1, - anon_sym_LBRACE, - STATE(310), 1, - sym_enum_variant_list, + [66225] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66353] = 3, - ACTIONS(4039), 1, - anon_sym_COLON_COLON, - ACTIONS(5263), 1, - anon_sym_RPAREN, + ACTIONS(2439), 2, + anon_sym_COMMA, + anon_sym_GT, + [66234] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(5309), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66364] = 3, - ACTIONS(4043), 1, - anon_sym_COLON_COLON, - ACTIONS(5263), 1, - anon_sym_RPAREN, + [66245] = 2, + ACTIONS(5311), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66375] = 3, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(5275), 1, - anon_sym_RPAREN, + [66253] = 2, + ACTIONS(5297), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66386] = 2, + [66261] = 2, + ACTIONS(5313), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4123), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66395] = 2, + [66269] = 2, + ACTIONS(5315), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5277), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66404] = 3, - ACTIONS(5279), 1, + [66277] = 2, + ACTIONS(5317), 1, sym_identifier, - ACTIONS(5281), 1, - sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66415] = 3, - ACTIONS(4290), 1, - anon_sym_COLON, - ACTIONS(4294), 1, - anon_sym_PIPE, + [66285] = 2, + ACTIONS(4826), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66426] = 2, - ACTIONS(4288), 1, - anon_sym_RPAREN, + [66293] = 2, + ACTIONS(5319), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66434] = 2, - ACTIONS(4762), 1, - anon_sym_RBRACE, + [66301] = 2, + ACTIONS(4841), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66442] = 2, - ACTIONS(5283), 1, + [66309] = 2, + ACTIONS(5321), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66450] = 2, - ACTIONS(5285), 1, - sym_identifier, + [66317] = 2, + ACTIONS(4804), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66458] = 2, - ACTIONS(2686), 1, - anon_sym_COLON_COLON, + [66325] = 2, + ACTIONS(5323), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66466] = 2, - ACTIONS(5287), 1, + [66333] = 2, + ACTIONS(5325), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66474] = 2, - ACTIONS(2726), 1, - anon_sym_COLON_COLON, + [66341] = 2, + ACTIONS(4812), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66482] = 2, - ACTIONS(5289), 1, + [66349] = 2, + ACTIONS(5327), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66490] = 2, - ACTIONS(4818), 1, - anon_sym_RBRACE, + [66357] = 2, + ACTIONS(5329), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66498] = 2, - ACTIONS(4874), 1, + [66365] = 2, + ACTIONS(5331), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66506] = 2, - ACTIONS(5291), 1, + [66373] = 2, + ACTIONS(4802), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66514] = 2, - ACTIONS(5293), 1, - anon_sym_COLON, + [66381] = 2, + ACTIONS(5333), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66522] = 2, - ACTIONS(4952), 1, - anon_sym_GT, + [66389] = 2, + ACTIONS(5335), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66530] = 2, - ACTIONS(5295), 1, - sym_identifier, + [66397] = 2, + ACTIONS(5337), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66538] = 2, - ACTIONS(5297), 1, + [66405] = 2, + ACTIONS(4800), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66546] = 2, - ACTIONS(5299), 1, - anon_sym_EQ_GT, + [66413] = 2, + ACTIONS(5339), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66554] = 2, - ACTIONS(5301), 1, - sym_identifier, + [66421] = 2, + ACTIONS(5341), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66562] = 2, - ACTIONS(5303), 1, - anon_sym_LBRACK, + [66429] = 2, + ACTIONS(5343), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66570] = 2, - ACTIONS(5305), 1, + [66437] = 2, + ACTIONS(5345), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66578] = 2, - ACTIONS(5307), 1, + [66445] = 2, + ACTIONS(5347), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66586] = 2, - ACTIONS(5309), 1, - sym_identifier, + [66453] = 2, + ACTIONS(5349), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66594] = 2, - ACTIONS(5311), 1, - sym_identifier, + [66461] = 2, + ACTIONS(4900), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66602] = 2, - ACTIONS(5313), 1, - anon_sym_RBRACE, + [66469] = 2, + ACTIONS(5351), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66610] = 2, - ACTIONS(5315), 1, - anon_sym_COLON_COLON, + [66477] = 2, + ACTIONS(2471), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66618] = 2, - ACTIONS(5317), 1, - anon_sym_SEMI, + [66485] = 2, + ACTIONS(5353), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66626] = 2, - ACTIONS(5319), 1, - anon_sym_EQ_GT, + [66493] = 2, + ACTIONS(5355), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66634] = 2, - ACTIONS(3223), 1, - anon_sym_COLON_COLON, + [66501] = 2, + ACTIONS(5357), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66642] = 2, - ACTIONS(4664), 1, + [66509] = 2, + ACTIONS(4776), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66650] = 2, - ACTIONS(3499), 1, - anon_sym_COLON_COLON, + [66517] = 2, + ACTIONS(5359), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66658] = 2, - ACTIONS(4280), 1, - anon_sym_RPAREN, + [66525] = 2, + ACTIONS(4774), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66666] = 2, - ACTIONS(5321), 1, + [66533] = 2, + ACTIONS(5361), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66674] = 2, - ACTIONS(4554), 1, + [66541] = 2, + ACTIONS(5363), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66682] = 2, - ACTIONS(5323), 1, + [66549] = 2, + ACTIONS(5365), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66690] = 2, - ACTIONS(5325), 1, - sym_identifier, + [66557] = 2, + ACTIONS(5367), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66698] = 2, - ACTIONS(5327), 1, - anon_sym_COLON, + [66565] = 2, + ACTIONS(5369), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66706] = 2, - ACTIONS(5329), 1, - anon_sym_RPAREN, + [66573] = 2, + ACTIONS(5371), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66714] = 2, - ACTIONS(3195), 1, - anon_sym_COLON_COLON, + [66581] = 2, + ACTIONS(5373), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66722] = 2, - ACTIONS(5331), 1, - anon_sym_COLON_COLON, + [66589] = 2, + ACTIONS(5375), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66730] = 2, - ACTIONS(4976), 1, - anon_sym_RBRACE, + [66597] = 2, + ACTIONS(5377), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66738] = 2, - ACTIONS(5333), 1, - sym_identifier, + [66605] = 2, + ACTIONS(5379), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66746] = 2, - ACTIONS(5335), 1, - anon_sym_COLON, + [66613] = 2, + ACTIONS(3241), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66754] = 2, - ACTIONS(5337), 1, - sym_identifier, + [66621] = 2, + ACTIONS(3530), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66762] = 2, - ACTIONS(5339), 1, - anon_sym_fn, + [66629] = 2, + ACTIONS(5381), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66770] = 2, - ACTIONS(5341), 1, - sym_identifier, + [66637] = 2, + ACTIONS(5383), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66778] = 2, - ACTIONS(5343), 1, + [66645] = 2, + ACTIONS(5385), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66786] = 2, - ACTIONS(5345), 1, - sym_identifier, + [66653] = 2, + ACTIONS(3213), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66794] = 2, - ACTIONS(5347), 1, - anon_sym_SEMI, + [66661] = 2, + ACTIONS(5387), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66802] = 2, - ACTIONS(5349), 1, + [66669] = 2, + ACTIONS(5389), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66810] = 2, - ACTIONS(5351), 1, - anon_sym_RBRACK, + [66677] = 2, + ACTIONS(5391), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66818] = 2, - ACTIONS(5353), 1, + [66685] = 2, + ACTIONS(5393), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66826] = 2, - ACTIONS(5355), 1, - sym_identifier, + [66693] = 2, + ACTIONS(5395), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66834] = 2, - ACTIONS(5357), 1, + [66701] = 2, + ACTIONS(4755), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66842] = 2, - ACTIONS(5359), 1, - sym_identifier, + [66709] = 2, + ACTIONS(5397), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66850] = 2, - ACTIONS(5361), 1, + [66717] = 2, + ACTIONS(5399), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66858] = 2, - ACTIONS(5363), 1, + [66725] = 2, + ACTIONS(5401), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66866] = 2, - ACTIONS(5365), 1, + [66733] = 2, + ACTIONS(5403), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66874] = 2, - ACTIONS(5367), 1, - anon_sym_COLON, + [66741] = 2, + ACTIONS(5405), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66882] = 2, - ACTIONS(4566), 1, + [66749] = 2, + ACTIONS(5407), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66890] = 2, - ACTIONS(5369), 1, + [66757] = 2, + ACTIONS(5409), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66898] = 2, - ACTIONS(5371), 1, - anon_sym_SEMI, + [66765] = 2, + ACTIONS(5411), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66906] = 2, - ACTIONS(5373), 1, + [66773] = 2, + ACTIONS(5413), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66914] = 2, - ACTIONS(3187), 1, + [66781] = 2, + ACTIONS(4888), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66922] = 2, - ACTIONS(4604), 1, - anon_sym_RBRACE, + [66789] = 2, + ACTIONS(5415), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66930] = 2, - ACTIONS(5375), 1, - anon_sym_fn, + [66797] = 2, + ACTIONS(5417), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66938] = 2, - ACTIONS(5377), 1, - sym_identifier, + [66805] = 2, + ACTIONS(5419), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66946] = 2, - ACTIONS(2720), 1, + [66813] = 2, + ACTIONS(2690), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66954] = 2, - ACTIONS(4401), 1, - sym_identifier, + [66821] = 2, + ACTIONS(2714), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66962] = 2, - ACTIONS(5259), 1, + [66829] = 2, + ACTIONS(5299), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66970] = 2, - ACTIONS(5379), 1, - anon_sym_RBRACK, + [66837] = 2, + ACTIONS(4124), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66978] = 2, - ACTIONS(5381), 1, + [66845] = 2, + ACTIONS(5421), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66986] = 2, - ACTIONS(5383), 1, + [66853] = 2, + ACTIONS(5423), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66994] = 2, - ACTIONS(4021), 1, - anon_sym_SEMI, + [66861] = 2, + ACTIONS(5425), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67002] = 2, - ACTIONS(4205), 1, + [66869] = 2, + ACTIONS(5427), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67010] = 2, - ACTIONS(5385), 1, + [66877] = 2, + ACTIONS(4854), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67018] = 2, - ACTIONS(5387), 1, - anon_sym_EQ_GT, + [66885] = 2, + ACTIONS(5429), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67026] = 2, - ACTIONS(2453), 1, + [66893] = 2, + ACTIONS(2508), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67034] = 2, - ACTIONS(5389), 1, - anon_sym_RPAREN, + [66901] = 2, + ACTIONS(5431), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67042] = 2, - ACTIONS(5391), 1, + [66909] = 2, + ACTIONS(5433), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67050] = 2, - ACTIONS(5393), 1, + [66917] = 2, + ACTIONS(5435), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67058] = 2, - ACTIONS(5395), 1, + [66925] = 2, + ACTIONS(5437), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67066] = 2, - ACTIONS(5397), 1, + [66933] = 2, + ACTIONS(5439), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67074] = 2, - ACTIONS(5399), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67082] = 2, - ACTIONS(4011), 1, + [66941] = 2, + ACTIONS(5441), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67090] = 2, - ACTIONS(5401), 1, - anon_sym_EQ, + [66949] = 2, + ACTIONS(5443), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67098] = 2, - ACTIONS(5403), 1, - anon_sym_RBRACE, + [66957] = 2, + ACTIONS(5445), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67106] = 2, - ACTIONS(3219), 1, + [66965] = 2, + ACTIONS(5447), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67114] = 2, - ACTIONS(5405), 1, - sym_identifier, + [66973] = 2, + ACTIONS(5449), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67122] = 2, - ACTIONS(554), 1, - anon_sym_RBRACK, + [66981] = 2, + ACTIONS(2401), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67130] = 2, - ACTIONS(2397), 1, - anon_sym_EQ_GT, + [66989] = 2, + ACTIONS(5451), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67138] = 2, - ACTIONS(5407), 1, - anon_sym_LPAREN, + [66997] = 2, + ACTIONS(5453), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67146] = 2, - ACTIONS(5239), 1, + [67005] = 2, + ACTIONS(5455), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67154] = 2, - ACTIONS(3526), 1, + [67013] = 2, + ACTIONS(5457), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67021] = 2, + ACTIONS(3550), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67162] = 2, - ACTIONS(5409), 1, + [67029] = 2, + ACTIONS(5459), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67170] = 2, - ACTIONS(5411), 1, - anon_sym_RBRACK, + [67037] = 2, + ACTIONS(3211), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67178] = 2, - ACTIONS(5413), 1, - anon_sym_SEMI, + [67045] = 2, + ACTIONS(548), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67186] = 2, - ACTIONS(5415), 1, + [67053] = 2, + ACTIONS(5461), 1, anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67194] = 2, - ACTIONS(5417), 1, - sym_identifier, + [67061] = 2, + ACTIONS(5463), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67202] = 2, - ACTIONS(5227), 1, - anon_sym_SEMI, + [67069] = 2, + ACTIONS(4269), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67210] = 2, - ACTIONS(5419), 1, + [67077] = 2, + ACTIONS(5465), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67218] = 2, - ACTIONS(5421), 1, + [67085] = 2, + ACTIONS(4506), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67226] = 2, - ACTIONS(4584), 1, - sym_identifier, + [67093] = 2, + ACTIONS(5271), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67234] = 2, - ACTIONS(5423), 1, + [67101] = 2, + ACTIONS(5467), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67242] = 2, - ACTIONS(5425), 1, - sym_identifier, + [67109] = 2, + ACTIONS(5469), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67250] = 2, - ACTIONS(5427), 1, - sym_self, + [67117] = 2, + ACTIONS(4669), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67258] = 2, - ACTIONS(5429), 1, + [67125] = 2, + ACTIONS(5471), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67266] = 2, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, + [67133] = 2, + ACTIONS(4441), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67274] = 2, - ACTIONS(4127), 1, + [67141] = 2, + ACTIONS(4154), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67282] = 2, - ACTIONS(5431), 1, + [67149] = 2, + ACTIONS(5473), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67290] = 2, - ACTIONS(4629), 1, - anon_sym_RBRACE, + [67157] = 2, + ACTIONS(5475), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67298] = 2, - ACTIONS(5433), 1, - sym_identifier, + [67165] = 2, + ACTIONS(4699), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67306] = 2, - ACTIONS(5435), 1, - anon_sym_COLON_COLON, + [67173] = 2, + ACTIONS(5477), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67314] = 2, - ACTIONS(4474), 1, + [67181] = 2, + ACTIONS(5479), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67322] = 2, - ACTIONS(5437), 1, - sym_identifier, + [67189] = 2, + ACTIONS(5481), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67330] = 2, - ACTIONS(5439), 1, - sym_identifier, + [67197] = 2, + ACTIONS(5483), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67338] = 2, - ACTIONS(5441), 1, - anon_sym_EQ_GT, + [67205] = 2, + ACTIONS(5287), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67346] = 2, - ACTIONS(5443), 1, - anon_sym_EQ_GT, + [67213] = 2, + ACTIONS(5485), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67354] = 2, - ACTIONS(5445), 1, + [67221] = 2, + ACTIONS(4790), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67362] = 2, - ACTIONS(5447), 1, - anon_sym_COLON, + [67229] = 2, + ACTIONS(5487), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67370] = 2, - ACTIONS(5449), 1, + [67237] = 2, + ACTIONS(5489), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67378] = 2, - ACTIONS(5451), 1, - anon_sym_SEMI, + [67245] = 2, + ACTIONS(5491), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67386] = 2, - ACTIONS(5453), 1, - anon_sym_RBRACK, + [67253] = 2, + ACTIONS(2413), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67394] = 2, - ACTIONS(5455), 1, - sym_identifier, + [67261] = 2, + ACTIONS(3591), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67402] = 2, - ACTIONS(4454), 1, + [67269] = 2, + ACTIONS(5493), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67410] = 2, - ACTIONS(5457), 1, - sym_identifier, + [67277] = 2, + ACTIONS(4449), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67418] = 2, - ACTIONS(5459), 1, + [67285] = 2, + ACTIONS(5495), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67426] = 2, - ACTIONS(5461), 1, + [67293] = 2, + ACTIONS(5497), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67434] = 2, - ACTIONS(5463), 1, + [67301] = 2, + ACTIONS(5499), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67442] = 2, - ACTIONS(4964), 1, - sym_identifier, + [67309] = 2, + ACTIONS(5501), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67450] = 2, - ACTIONS(5465), 1, - sym_identifier, + [67317] = 2, + ACTIONS(5503), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67458] = 2, - ACTIONS(5467), 1, + [67325] = 2, + ACTIONS(5505), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67466] = 2, + [67333] = 2, ACTIONS(374), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67474] = 2, - ACTIONS(5469), 1, + [67341] = 2, + ACTIONS(5507), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67482] = 2, - ACTIONS(5471), 1, - sym_identifier, + [67349] = 2, + ACTIONS(5509), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67490] = 2, - ACTIONS(5473), 1, - sym_identifier, + [67357] = 2, + ACTIONS(5511), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67498] = 2, - ACTIONS(4610), 1, - anon_sym_RPAREN, + [67365] = 2, + ACTIONS(4029), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67506] = 2, - ACTIONS(5475), 1, - sym_identifier, + [67373] = 2, + ACTIONS(5513), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67514] = 2, - ACTIONS(2467), 1, - anon_sym_PLUS, + [67381] = 2, + ACTIONS(4027), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67522] = 2, - ACTIONS(5477), 1, - anon_sym_SEMI, + [67389] = 2, + ACTIONS(5515), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67530] = 2, - ACTIONS(5479), 1, + [67397] = 2, + ACTIONS(5517), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67538] = 2, - ACTIONS(5481), 1, - sym_identifier, + [67405] = 2, + ACTIONS(5519), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67546] = 2, - ACTIONS(5483), 1, - anon_sym_SEMI, + [67413] = 2, + ACTIONS(5521), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67554] = 2, - ACTIONS(5485), 1, + [67421] = 2, + ACTIONS(5523), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67562] = 2, - ACTIONS(4039), 1, + [67429] = 2, + ACTIONS(4017), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67570] = 2, - ACTIONS(5487), 1, - anon_sym_COLON, + [67437] = 2, + ACTIONS(4977), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67578] = 2, - ACTIONS(5489), 1, - anon_sym_SEMI, + [67445] = 2, + ACTIONS(5525), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67586] = 2, - ACTIONS(2734), 1, + [67453] = 2, + ACTIONS(2692), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67594] = 2, - ACTIONS(5491), 1, + [67461] = 2, + ACTIONS(5527), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67602] = 2, - ACTIONS(3453), 1, + [67469] = 2, + ACTIONS(3467), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67610] = 2, - ACTIONS(4772), 1, + [67477] = 2, + ACTIONS(5529), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67618] = 2, - ACTIONS(5493), 1, + [67485] = 2, + ACTIONS(5531), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67626] = 2, - ACTIONS(2774), 1, + [67493] = 2, + ACTIONS(2788), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67634] = 2, - ACTIONS(4766), 1, - anon_sym_RBRACE, + [67501] = 2, + ACTIONS(5533), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67642] = 2, - ACTIONS(4608), 1, + [67509] = 2, + ACTIONS(5535), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67650] = 2, - ACTIONS(5495), 1, + [67517] = 2, + ACTIONS(5537), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67658] = 2, - ACTIONS(4776), 1, - sym_identifier, + [67525] = 2, + ACTIONS(4979), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67666] = 2, - ACTIONS(5497), 1, + [67533] = 2, + ACTIONS(5539), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67674] = 2, - ACTIONS(5499), 1, - sym_identifier, + [67541] = 2, + ACTIONS(5541), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67682] = 2, - ACTIONS(5501), 1, - sym_identifier, + [67549] = 2, + ACTIONS(2686), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67690] = 2, - ACTIONS(5503), 1, - sym_identifier, + [67557] = 2, + ACTIONS(5543), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67698] = 2, - ACTIONS(5505), 1, - sym_identifier, + [67565] = 2, + ACTIONS(5545), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67706] = 2, - ACTIONS(2413), 1, - anon_sym_EQ_GT, + [67573] = 2, + ACTIONS(5547), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67714] = 2, - ACTIONS(4067), 1, + [67581] = 2, + ACTIONS(4255), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67722] = 2, - ACTIONS(5507), 1, + [67589] = 2, + ACTIONS(5549), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67730] = 2, - ACTIONS(5509), 1, - anon_sym_SEMI, + [67597] = 2, + ACTIONS(5551), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67738] = 2, - ACTIONS(4167), 1, + [67605] = 2, + ACTIONS(4196), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67746] = 2, - ACTIONS(5511), 1, + [67613] = 2, + ACTIONS(5553), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67754] = 2, - ACTIONS(5513), 1, + [67621] = 2, + ACTIONS(5555), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67762] = 2, - ACTIONS(4217), 1, + [67629] = 2, + ACTIONS(4148), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67770] = 2, - ACTIONS(5515), 1, + [67637] = 2, + ACTIONS(5557), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67778] = 2, - ACTIONS(5133), 1, + [67645] = 2, + ACTIONS(5559), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67786] = 2, - ACTIONS(4816), 1, - sym_identifier, + [67653] = 2, + ACTIONS(5561), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67794] = 2, - ACTIONS(5517), 1, - anon_sym_SEMI, + [67661] = 2, + ACTIONS(4294), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67802] = 2, - ACTIONS(5519), 1, - anon_sym_SEMI, + [67669] = 2, + ACTIONS(5563), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67810] = 2, - ACTIONS(5521), 1, + [67677] = 2, + ACTIONS(5565), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67818] = 2, - ACTIONS(5523), 1, + [67685] = 2, + ACTIONS(5567), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67826] = 2, - ACTIONS(5525), 1, + [67693] = 2, + ACTIONS(5569), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67834] = 2, - ACTIONS(5527), 1, - sym_identifier, + [67701] = 2, + ACTIONS(5571), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67842] = 2, - ACTIONS(5529), 1, - anon_sym_SEMI, + [67709] = 2, + ACTIONS(3227), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67850] = 2, - ACTIONS(5531), 1, - sym_identifier, + [67717] = 2, + ACTIONS(5573), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67858] = 2, - ACTIONS(5533), 1, + [67725] = 2, + ACTIONS(5575), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67866] = 2, - ACTIONS(5535), 1, + [67733] = 2, + ACTIONS(5577), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67874] = 2, - ACTIONS(5537), 1, + [67741] = 2, + ACTIONS(5579), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67882] = 2, - ACTIONS(5539), 1, + [67749] = 2, + ACTIONS(5581), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67890] = 2, - ACTIONS(5541), 1, - anon_sym_RPAREN, + [67757] = 2, + ACTIONS(4015), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67898] = 2, - ACTIONS(5543), 1, + [67765] = 2, + ACTIONS(5145), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67906] = 2, - ACTIONS(5545), 1, - anon_sym_COLON, + [67773] = 2, + ACTIONS(5583), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67914] = 2, - ACTIONS(5547), 1, - anon_sym_RBRACK, + [67781] = 2, + ACTIONS(5585), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67922] = 2, - ACTIONS(5549), 1, - anon_sym_SEMI, + [67789] = 2, + ACTIONS(5587), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67930] = 2, - ACTIONS(3973), 1, - anon_sym_SEMI, + [67797] = 2, + ACTIONS(3552), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67938] = 2, - ACTIONS(5551), 1, + [67805] = 2, + ACTIONS(5589), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67946] = 2, - ACTIONS(5553), 1, - anon_sym_RPAREN, + [67813] = 2, + ACTIONS(5591), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67954] = 2, - ACTIONS(4019), 1, - anon_sym_SEMI, + [67821] = 2, + ACTIONS(5069), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67962] = 2, - ACTIONS(5555), 1, - anon_sym_SEMI, + [67829] = 2, + ACTIONS(5593), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67970] = 2, - ACTIONS(5557), 1, - anon_sym_COLON, + [67837] = 2, + ACTIONS(5595), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67978] = 2, - ACTIONS(5559), 1, + [67845] = 2, + ACTIONS(5597), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67986] = 2, - ACTIONS(5561), 1, - anon_sym_SEMI, + [67853] = 2, + ACTIONS(5599), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67994] = 2, - ACTIONS(5563), 1, - anon_sym_SEMI, + [67861] = 2, + ACTIONS(5601), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68002] = 2, - ACTIONS(5565), 1, + [67869] = 2, + ACTIONS(5603), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68010] = 2, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, + [67877] = 2, + ACTIONS(5605), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68018] = 2, - ACTIONS(5567), 1, - sym_identifier, + [67885] = 2, + ACTIONS(4039), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68026] = 2, - ACTIONS(5569), 1, + [67893] = 2, + ACTIONS(5607), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68034] = 2, - ACTIONS(5571), 1, + [67901] = 2, + ACTIONS(5609), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68042] = 2, - ACTIONS(4944), 1, - anon_sym_RBRACE, + [67909] = 2, + ACTIONS(5281), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68050] = 2, - ACTIONS(5573), 1, + [67917] = 2, + ACTIONS(5611), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68058] = 2, - ACTIONS(5575), 1, - anon_sym_RPAREN, + [67925] = 2, + ACTIONS(5613), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68066] = 2, - ACTIONS(5577), 1, + [67933] = 2, + ACTIONS(5615), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68074] = 2, - ACTIONS(5579), 1, + [67941] = 2, + ACTIONS(5617), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68082] = 2, - ACTIONS(4308), 1, - anon_sym_RPAREN, + [67949] = 2, + ACTIONS(5619), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68090] = 2, - ACTIONS(5581), 1, - anon_sym_fn, + [67957] = 2, + ACTIONS(5621), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68098] = 2, - ACTIONS(5583), 1, - anon_sym_SEMI, + [67965] = 2, + ACTIONS(5623), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68106] = 2, - ACTIONS(5585), 1, + [67973] = 2, + ACTIONS(5625), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68114] = 2, - ACTIONS(5587), 1, - anon_sym_SEMI, + [67981] = 2, + ACTIONS(5627), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68122] = 2, - ACTIONS(5589), 1, + [67989] = 2, + ACTIONS(5629), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68130] = 2, - ACTIONS(5591), 1, - anon_sym_LPAREN, + [67997] = 2, + ACTIONS(5116), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68138] = 2, - ACTIONS(3477), 1, + [68005] = 2, + ACTIONS(3491), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68146] = 2, - ACTIONS(5593), 1, + [68013] = 2, + ACTIONS(5631), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68154] = 2, - ACTIONS(5251), 1, - anon_sym_COLON_COLON, + [68021] = 2, + ACTIONS(4985), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68162] = 2, - ACTIONS(5595), 1, + [68029] = 2, + ACTIONS(5633), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68170] = 2, - ACTIONS(5038), 1, - anon_sym_RBRACE, + [68037] = 2, + ACTIONS(4276), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68178] = 2, - ACTIONS(5597), 1, - anon_sym_SEMI, + [68045] = 2, + ACTIONS(5635), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68186] = 2, - ACTIONS(5599), 1, + [68053] = 2, + ACTIONS(5637), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68194] = 2, - ACTIONS(5601), 1, + [68061] = 2, + ACTIONS(5639), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68202] = 2, - ACTIONS(5603), 1, + [68069] = 2, + ACTIONS(5641), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68210] = 2, - ACTIONS(5605), 1, + [68077] = 2, + ACTIONS(5643), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68218] = 2, - ACTIONS(5607), 1, - anon_sym_RBRACE, + [68085] = 2, + ACTIONS(5645), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68226] = 2, - ACTIONS(5609), 1, + [68093] = 2, + ACTIONS(5647), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68234] = 2, - ACTIONS(5611), 1, + [68101] = 2, + ACTIONS(5649), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68242] = 2, - ACTIONS(5137), 1, + [68109] = 2, + ACTIONS(5651), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68250] = 2, - ACTIONS(5135), 1, - anon_sym_SEMI, + [68117] = 2, + ACTIONS(5653), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68258] = 2, - ACTIONS(5613), 1, + [68125] = 2, + ACTIONS(5655), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68266] = 2, - ACTIONS(5615), 1, - anon_sym_RBRACK, + [68133] = 2, + ACTIONS(5657), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68274] = 2, - ACTIONS(5617), 1, + [68141] = 2, + ACTIONS(5147), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68282] = 2, - ACTIONS(5619), 1, + [68149] = 2, + ACTIONS(5659), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -126685,1926 +128572,1934 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(647)] = 0, - [SMALL_STATE(648)] = 129, - [SMALL_STATE(649)] = 258, - [SMALL_STATE(650)] = 387, - [SMALL_STATE(651)] = 516, - [SMALL_STATE(652)] = 645, - [SMALL_STATE(653)] = 774, - [SMALL_STATE(654)] = 903, - [SMALL_STATE(655)] = 1032, - [SMALL_STATE(656)] = 1161, - [SMALL_STATE(657)] = 1290, - [SMALL_STATE(658)] = 1419, - [SMALL_STATE(659)] = 1548, - [SMALL_STATE(660)] = 1677, - [SMALL_STATE(661)] = 1806, - [SMALL_STATE(662)] = 1935, - [SMALL_STATE(663)] = 2064, - [SMALL_STATE(664)] = 2193, - [SMALL_STATE(665)] = 2322, - [SMALL_STATE(666)] = 2451, - [SMALL_STATE(667)] = 2580, - [SMALL_STATE(668)] = 2709, - [SMALL_STATE(669)] = 2838, - [SMALL_STATE(670)] = 2967, - [SMALL_STATE(671)] = 3096, - [SMALL_STATE(672)] = 3225, - [SMALL_STATE(673)] = 3354, - [SMALL_STATE(674)] = 3483, - [SMALL_STATE(675)] = 3612, - [SMALL_STATE(676)] = 3741, - [SMALL_STATE(677)] = 3870, - [SMALL_STATE(678)] = 3999, - [SMALL_STATE(679)] = 4128, - [SMALL_STATE(680)] = 4257, - [SMALL_STATE(681)] = 4386, - [SMALL_STATE(682)] = 4515, - [SMALL_STATE(683)] = 4586, - [SMALL_STATE(684)] = 4715, - [SMALL_STATE(685)] = 4844, - [SMALL_STATE(686)] = 4973, - [SMALL_STATE(687)] = 5102, - [SMALL_STATE(688)] = 5231, - [SMALL_STATE(689)] = 5360, - [SMALL_STATE(690)] = 5489, - [SMALL_STATE(691)] = 5618, - [SMALL_STATE(692)] = 5747, - [SMALL_STATE(693)] = 5876, - [SMALL_STATE(694)] = 6005, - [SMALL_STATE(695)] = 6134, - [SMALL_STATE(696)] = 6263, - [SMALL_STATE(697)] = 6392, - [SMALL_STATE(698)] = 6521, - [SMALL_STATE(699)] = 6650, - [SMALL_STATE(700)] = 6779, - [SMALL_STATE(701)] = 6908, - [SMALL_STATE(702)] = 7037, - [SMALL_STATE(703)] = 7166, - [SMALL_STATE(704)] = 7295, - [SMALL_STATE(705)] = 7424, - [SMALL_STATE(706)] = 7553, - [SMALL_STATE(707)] = 7682, - [SMALL_STATE(708)] = 7811, - [SMALL_STATE(709)] = 7940, - [SMALL_STATE(710)] = 8069, - [SMALL_STATE(711)] = 8198, - [SMALL_STATE(712)] = 8327, - [SMALL_STATE(713)] = 8456, - [SMALL_STATE(714)] = 8585, - [SMALL_STATE(715)] = 8714, - [SMALL_STATE(716)] = 8843, - [SMALL_STATE(717)] = 8972, - [SMALL_STATE(718)] = 9101, - [SMALL_STATE(719)] = 9230, - [SMALL_STATE(720)] = 9359, - [SMALL_STATE(721)] = 9488, - [SMALL_STATE(722)] = 9617, - [SMALL_STATE(723)] = 9746, - [SMALL_STATE(724)] = 9875, - [SMALL_STATE(725)] = 10004, - [SMALL_STATE(726)] = 10133, - [SMALL_STATE(727)] = 10262, - [SMALL_STATE(728)] = 10393, - [SMALL_STATE(729)] = 10522, - [SMALL_STATE(730)] = 10651, - [SMALL_STATE(731)] = 10780, - [SMALL_STATE(732)] = 10909, - [SMALL_STATE(733)] = 11038, - [SMALL_STATE(734)] = 11167, - [SMALL_STATE(735)] = 11296, - [SMALL_STATE(736)] = 11425, - [SMALL_STATE(737)] = 11554, - [SMALL_STATE(738)] = 11683, - [SMALL_STATE(739)] = 11812, - [SMALL_STATE(740)] = 11941, - [SMALL_STATE(741)] = 12070, - [SMALL_STATE(742)] = 12199, - [SMALL_STATE(743)] = 12328, - [SMALL_STATE(744)] = 12457, - [SMALL_STATE(745)] = 12586, - [SMALL_STATE(746)] = 12715, - [SMALL_STATE(747)] = 12844, - [SMALL_STATE(748)] = 12973, - [SMALL_STATE(749)] = 13102, - [SMALL_STATE(750)] = 13231, - [SMALL_STATE(751)] = 13360, - [SMALL_STATE(752)] = 13489, - [SMALL_STATE(753)] = 13618, - [SMALL_STATE(754)] = 13747, - [SMALL_STATE(755)] = 13876, - [SMALL_STATE(756)] = 14005, - [SMALL_STATE(757)] = 14134, - [SMALL_STATE(758)] = 14200, - [SMALL_STATE(759)] = 14266, - [SMALL_STATE(760)] = 14332, - [SMALL_STATE(761)] = 14398, - [SMALL_STATE(762)] = 14460, - [SMALL_STATE(763)] = 14530, - [SMALL_STATE(764)] = 14597, - [SMALL_STATE(765)] = 14664, - [SMALL_STATE(766)] = 14720, - [SMALL_STATE(767)] = 14784, - [SMALL_STATE(768)] = 14840, - [SMALL_STATE(769)] = 14902, - [SMALL_STATE(770)] = 14958, - [SMALL_STATE(771)] = 15018, - [SMALL_STATE(772)] = 15082, - [SMALL_STATE(773)] = 15142, - [SMALL_STATE(774)] = 15202, - [SMALL_STATE(775)] = 15258, - [SMALL_STATE(776)] = 15322, - [SMALL_STATE(777)] = 15382, - [SMALL_STATE(778)] = 15438, - [SMALL_STATE(779)] = 15502, - [SMALL_STATE(780)] = 15559, - [SMALL_STATE(781)] = 15618, - [SMALL_STATE(782)] = 15677, - [SMALL_STATE(783)] = 15734, - [SMALL_STATE(784)] = 15789, - [SMALL_STATE(785)] = 15846, - [SMALL_STATE(786)] = 15905, - [SMALL_STATE(787)] = 15962, - [SMALL_STATE(788)] = 16016, - [SMALL_STATE(789)] = 16070, - [SMALL_STATE(790)] = 16124, - [SMALL_STATE(791)] = 16178, - [SMALL_STATE(792)] = 16232, - [SMALL_STATE(793)] = 16286, - [SMALL_STATE(794)] = 16340, - [SMALL_STATE(795)] = 16394, - [SMALL_STATE(796)] = 16448, - [SMALL_STATE(797)] = 16502, - [SMALL_STATE(798)] = 16556, - [SMALL_STATE(799)] = 16614, - [SMALL_STATE(800)] = 16668, - [SMALL_STATE(801)] = 16722, - [SMALL_STATE(802)] = 16776, - [SMALL_STATE(803)] = 16830, - [SMALL_STATE(804)] = 16884, - [SMALL_STATE(805)] = 16938, - [SMALL_STATE(806)] = 16992, - [SMALL_STATE(807)] = 17046, - [SMALL_STATE(808)] = 17100, - [SMALL_STATE(809)] = 17154, - [SMALL_STATE(810)] = 17208, - [SMALL_STATE(811)] = 17262, - [SMALL_STATE(812)] = 17316, - [SMALL_STATE(813)] = 17370, - [SMALL_STATE(814)] = 17424, - [SMALL_STATE(815)] = 17478, - [SMALL_STATE(816)] = 17532, - [SMALL_STATE(817)] = 17586, - [SMALL_STATE(818)] = 17640, - [SMALL_STATE(819)] = 17694, - [SMALL_STATE(820)] = 17748, - [SMALL_STATE(821)] = 17802, - [SMALL_STATE(822)] = 17856, - [SMALL_STATE(823)] = 17910, - [SMALL_STATE(824)] = 17964, - [SMALL_STATE(825)] = 18018, - [SMALL_STATE(826)] = 18072, - [SMALL_STATE(827)] = 18126, - [SMALL_STATE(828)] = 18180, - [SMALL_STATE(829)] = 18234, - [SMALL_STATE(830)] = 18288, - [SMALL_STATE(831)] = 18344, - [SMALL_STATE(832)] = 18398, - [SMALL_STATE(833)] = 18452, - [SMALL_STATE(834)] = 18506, - [SMALL_STATE(835)] = 18560, - [SMALL_STATE(836)] = 18614, - [SMALL_STATE(837)] = 18668, - [SMALL_STATE(838)] = 18722, - [SMALL_STATE(839)] = 18776, - [SMALL_STATE(840)] = 18832, - [SMALL_STATE(841)] = 18886, - [SMALL_STATE(842)] = 18940, - [SMALL_STATE(843)] = 18994, - [SMALL_STATE(844)] = 19048, - [SMALL_STATE(845)] = 19102, - [SMALL_STATE(846)] = 19156, - [SMALL_STATE(847)] = 19210, - [SMALL_STATE(848)] = 19264, - [SMALL_STATE(849)] = 19320, - [SMALL_STATE(850)] = 19374, - [SMALL_STATE(851)] = 19430, - [SMALL_STATE(852)] = 19484, - [SMALL_STATE(853)] = 19538, - [SMALL_STATE(854)] = 19592, - [SMALL_STATE(855)] = 19648, - [SMALL_STATE(856)] = 19702, - [SMALL_STATE(857)] = 19756, - [SMALL_STATE(858)] = 19810, - [SMALL_STATE(859)] = 19866, - [SMALL_STATE(860)] = 19920, - [SMALL_STATE(861)] = 19974, - [SMALL_STATE(862)] = 20028, - [SMALL_STATE(863)] = 20082, - [SMALL_STATE(864)] = 20136, - [SMALL_STATE(865)] = 20190, - [SMALL_STATE(866)] = 20244, - [SMALL_STATE(867)] = 20300, - [SMALL_STATE(868)] = 20354, - [SMALL_STATE(869)] = 20408, - [SMALL_STATE(870)] = 20462, - [SMALL_STATE(871)] = 20516, - [SMALL_STATE(872)] = 20570, - [SMALL_STATE(873)] = 20624, - [SMALL_STATE(874)] = 20678, - [SMALL_STATE(875)] = 20732, - [SMALL_STATE(876)] = 20786, - [SMALL_STATE(877)] = 20840, - [SMALL_STATE(878)] = 20894, - [SMALL_STATE(879)] = 20948, - [SMALL_STATE(880)] = 21002, - [SMALL_STATE(881)] = 21056, - [SMALL_STATE(882)] = 21110, - [SMALL_STATE(883)] = 21164, - [SMALL_STATE(884)] = 21218, - [SMALL_STATE(885)] = 21272, - [SMALL_STATE(886)] = 21326, - [SMALL_STATE(887)] = 21380, - [SMALL_STATE(888)] = 21434, - [SMALL_STATE(889)] = 21488, - [SMALL_STATE(890)] = 21542, - [SMALL_STATE(891)] = 21596, - [SMALL_STATE(892)] = 21650, - [SMALL_STATE(893)] = 21704, - [SMALL_STATE(894)] = 21758, - [SMALL_STATE(895)] = 21812, - [SMALL_STATE(896)] = 21866, - [SMALL_STATE(897)] = 21920, - [SMALL_STATE(898)] = 21974, - [SMALL_STATE(899)] = 22028, - [SMALL_STATE(900)] = 22082, - [SMALL_STATE(901)] = 22136, - [SMALL_STATE(902)] = 22190, - [SMALL_STATE(903)] = 22244, - [SMALL_STATE(904)] = 22298, - [SMALL_STATE(905)] = 22352, - [SMALL_STATE(906)] = 22406, - [SMALL_STATE(907)] = 22460, - [SMALL_STATE(908)] = 22514, - [SMALL_STATE(909)] = 22570, - [SMALL_STATE(910)] = 22624, - [SMALL_STATE(911)] = 22678, - [SMALL_STATE(912)] = 22732, - [SMALL_STATE(913)] = 22786, - [SMALL_STATE(914)] = 22840, - [SMALL_STATE(915)] = 22894, - [SMALL_STATE(916)] = 22948, - [SMALL_STATE(917)] = 23002, - [SMALL_STATE(918)] = 23056, - [SMALL_STATE(919)] = 23110, - [SMALL_STATE(920)] = 23166, - [SMALL_STATE(921)] = 23220, - [SMALL_STATE(922)] = 23274, - [SMALL_STATE(923)] = 23328, - [SMALL_STATE(924)] = 23382, - [SMALL_STATE(925)] = 23436, - [SMALL_STATE(926)] = 23490, - [SMALL_STATE(927)] = 23544, - [SMALL_STATE(928)] = 23598, - [SMALL_STATE(929)] = 23652, - [SMALL_STATE(930)] = 23706, - [SMALL_STATE(931)] = 23760, - [SMALL_STATE(932)] = 23814, - [SMALL_STATE(933)] = 23868, - [SMALL_STATE(934)] = 23924, - [SMALL_STATE(935)] = 23978, - [SMALL_STATE(936)] = 24032, - [SMALL_STATE(937)] = 24086, - [SMALL_STATE(938)] = 24140, - [SMALL_STATE(939)] = 24194, - [SMALL_STATE(940)] = 24248, - [SMALL_STATE(941)] = 24302, - [SMALL_STATE(942)] = 24356, - [SMALL_STATE(943)] = 24410, - [SMALL_STATE(944)] = 24464, - [SMALL_STATE(945)] = 24518, - [SMALL_STATE(946)] = 24572, - [SMALL_STATE(947)] = 24626, - [SMALL_STATE(948)] = 24680, - [SMALL_STATE(949)] = 24734, - [SMALL_STATE(950)] = 24788, - [SMALL_STATE(951)] = 24844, - [SMALL_STATE(952)] = 24898, - [SMALL_STATE(953)] = 24952, - [SMALL_STATE(954)] = 25006, - [SMALL_STATE(955)] = 25060, - [SMALL_STATE(956)] = 25114, - [SMALL_STATE(957)] = 25168, - [SMALL_STATE(958)] = 25222, - [SMALL_STATE(959)] = 25276, - [SMALL_STATE(960)] = 25330, - [SMALL_STATE(961)] = 25386, - [SMALL_STATE(962)] = 25440, - [SMALL_STATE(963)] = 25496, - [SMALL_STATE(964)] = 25550, - [SMALL_STATE(965)] = 25604, - [SMALL_STATE(966)] = 25658, - [SMALL_STATE(967)] = 25712, - [SMALL_STATE(968)] = 25766, - [SMALL_STATE(969)] = 25820, - [SMALL_STATE(970)] = 25874, - [SMALL_STATE(971)] = 25928, - [SMALL_STATE(972)] = 25982, - [SMALL_STATE(973)] = 26036, - [SMALL_STATE(974)] = 26090, - [SMALL_STATE(975)] = 26144, - [SMALL_STATE(976)] = 26200, - [SMALL_STATE(977)] = 26254, - [SMALL_STATE(978)] = 26308, - [SMALL_STATE(979)] = 26362, - [SMALL_STATE(980)] = 26416, - [SMALL_STATE(981)] = 26470, - [SMALL_STATE(982)] = 26524, - [SMALL_STATE(983)] = 26578, - [SMALL_STATE(984)] = 26632, - [SMALL_STATE(985)] = 26686, - [SMALL_STATE(986)] = 26740, - [SMALL_STATE(987)] = 26794, - [SMALL_STATE(988)] = 26848, - [SMALL_STATE(989)] = 26902, - [SMALL_STATE(990)] = 26956, - [SMALL_STATE(991)] = 27010, - [SMALL_STATE(992)] = 27064, - [SMALL_STATE(993)] = 27118, - [SMALL_STATE(994)] = 27172, - [SMALL_STATE(995)] = 27226, - [SMALL_STATE(996)] = 27280, - [SMALL_STATE(997)] = 27334, - [SMALL_STATE(998)] = 27388, - [SMALL_STATE(999)] = 27442, - [SMALL_STATE(1000)] = 27496, - [SMALL_STATE(1001)] = 27550, - [SMALL_STATE(1002)] = 27604, - [SMALL_STATE(1003)] = 27658, - [SMALL_STATE(1004)] = 27712, - [SMALL_STATE(1005)] = 27766, - [SMALL_STATE(1006)] = 27820, - [SMALL_STATE(1007)] = 27874, - [SMALL_STATE(1008)] = 27930, - [SMALL_STATE(1009)] = 27984, - [SMALL_STATE(1010)] = 28038, - [SMALL_STATE(1011)] = 28092, - [SMALL_STATE(1012)] = 28146, - [SMALL_STATE(1013)] = 28200, - [SMALL_STATE(1014)] = 28254, - [SMALL_STATE(1015)] = 28308, - [SMALL_STATE(1016)] = 28362, - [SMALL_STATE(1017)] = 28416, - [SMALL_STATE(1018)] = 28470, - [SMALL_STATE(1019)] = 28528, - [SMALL_STATE(1020)] = 28586, - [SMALL_STATE(1021)] = 28640, - [SMALL_STATE(1022)] = 28694, - [SMALL_STATE(1023)] = 28748, - [SMALL_STATE(1024)] = 28802, - [SMALL_STATE(1025)] = 28856, - [SMALL_STATE(1026)] = 28910, - [SMALL_STATE(1027)] = 28964, - [SMALL_STATE(1028)] = 29018, - [SMALL_STATE(1029)] = 29072, - [SMALL_STATE(1030)] = 29126, - [SMALL_STATE(1031)] = 29180, - [SMALL_STATE(1032)] = 29234, - [SMALL_STATE(1033)] = 29288, - [SMALL_STATE(1034)] = 29342, - [SMALL_STATE(1035)] = 29396, - [SMALL_STATE(1036)] = 29450, - [SMALL_STATE(1037)] = 29504, - [SMALL_STATE(1038)] = 29558, - [SMALL_STATE(1039)] = 29612, - [SMALL_STATE(1040)] = 29666, - [SMALL_STATE(1041)] = 29720, - [SMALL_STATE(1042)] = 29774, - [SMALL_STATE(1043)] = 29828, - [SMALL_STATE(1044)] = 29882, - [SMALL_STATE(1045)] = 29936, - [SMALL_STATE(1046)] = 29991, - [SMALL_STATE(1047)] = 30044, - [SMALL_STATE(1048)] = 30097, - [SMALL_STATE(1049)] = 30150, - [SMALL_STATE(1050)] = 30203, - [SMALL_STATE(1051)] = 30256, - [SMALL_STATE(1052)] = 30309, - [SMALL_STATE(1053)] = 30362, - [SMALL_STATE(1054)] = 30415, - [SMALL_STATE(1055)] = 30468, - [SMALL_STATE(1056)] = 30521, - [SMALL_STATE(1057)] = 30574, - [SMALL_STATE(1058)] = 30627, - [SMALL_STATE(1059)] = 30680, - [SMALL_STATE(1060)] = 30733, - [SMALL_STATE(1061)] = 30786, - [SMALL_STATE(1062)] = 30839, - [SMALL_STATE(1063)] = 30892, - [SMALL_STATE(1064)] = 30945, - [SMALL_STATE(1065)] = 30998, - [SMALL_STATE(1066)] = 31051, - [SMALL_STATE(1067)] = 31104, - [SMALL_STATE(1068)] = 31157, - [SMALL_STATE(1069)] = 31210, - [SMALL_STATE(1070)] = 31263, - [SMALL_STATE(1071)] = 31316, - [SMALL_STATE(1072)] = 31369, - [SMALL_STATE(1073)] = 31422, - [SMALL_STATE(1074)] = 31475, - [SMALL_STATE(1075)] = 31528, - [SMALL_STATE(1076)] = 31581, - [SMALL_STATE(1077)] = 31634, - [SMALL_STATE(1078)] = 31687, - [SMALL_STATE(1079)] = 31740, - [SMALL_STATE(1080)] = 31793, - [SMALL_STATE(1081)] = 31846, - [SMALL_STATE(1082)] = 31899, - [SMALL_STATE(1083)] = 31952, - [SMALL_STATE(1084)] = 32005, - [SMALL_STATE(1085)] = 32058, - [SMALL_STATE(1086)] = 32111, - [SMALL_STATE(1087)] = 32164, - [SMALL_STATE(1088)] = 32217, - [SMALL_STATE(1089)] = 32270, - [SMALL_STATE(1090)] = 32323, - [SMALL_STATE(1091)] = 32376, - [SMALL_STATE(1092)] = 32429, - [SMALL_STATE(1093)] = 32482, - [SMALL_STATE(1094)] = 32535, - [SMALL_STATE(1095)] = 32624, - [SMALL_STATE(1096)] = 32677, - [SMALL_STATE(1097)] = 32730, - [SMALL_STATE(1098)] = 32783, - [SMALL_STATE(1099)] = 32836, - [SMALL_STATE(1100)] = 32889, - [SMALL_STATE(1101)] = 32942, - [SMALL_STATE(1102)] = 32995, - [SMALL_STATE(1103)] = 33048, - [SMALL_STATE(1104)] = 33101, - [SMALL_STATE(1105)] = 33154, - [SMALL_STATE(1106)] = 33207, - [SMALL_STATE(1107)] = 33260, - [SMALL_STATE(1108)] = 33313, - [SMALL_STATE(1109)] = 33402, - [SMALL_STATE(1110)] = 33455, - [SMALL_STATE(1111)] = 33508, - [SMALL_STATE(1112)] = 33561, - [SMALL_STATE(1113)] = 33614, - [SMALL_STATE(1114)] = 33667, - [SMALL_STATE(1115)] = 33720, - [SMALL_STATE(1116)] = 33773, - [SMALL_STATE(1117)] = 33826, - [SMALL_STATE(1118)] = 33879, - [SMALL_STATE(1119)] = 33932, - [SMALL_STATE(1120)] = 33985, - [SMALL_STATE(1121)] = 34038, - [SMALL_STATE(1122)] = 34091, - [SMALL_STATE(1123)] = 34144, - [SMALL_STATE(1124)] = 34197, - [SMALL_STATE(1125)] = 34250, - [SMALL_STATE(1126)] = 34303, - [SMALL_STATE(1127)] = 34356, - [SMALL_STATE(1128)] = 34411, - [SMALL_STATE(1129)] = 34464, - [SMALL_STATE(1130)] = 34517, - [SMALL_STATE(1131)] = 34572, - [SMALL_STATE(1132)] = 34625, - [SMALL_STATE(1133)] = 34678, - [SMALL_STATE(1134)] = 34731, - [SMALL_STATE(1135)] = 34784, - [SMALL_STATE(1136)] = 34837, - [SMALL_STATE(1137)] = 34890, - [SMALL_STATE(1138)] = 34943, - [SMALL_STATE(1139)] = 34996, - [SMALL_STATE(1140)] = 35049, - [SMALL_STATE(1141)] = 35106, - [SMALL_STATE(1142)] = 35159, - [SMALL_STATE(1143)] = 35214, - [SMALL_STATE(1144)] = 35267, - [SMALL_STATE(1145)] = 35320, - [SMALL_STATE(1146)] = 35400, - [SMALL_STATE(1147)] = 35480, - [SMALL_STATE(1148)] = 35566, - [SMALL_STATE(1149)] = 35618, - [SMALL_STATE(1150)] = 35670, - [SMALL_STATE(1151)] = 35730, - [SMALL_STATE(1152)] = 35790, - [SMALL_STATE(1153)] = 35876, - [SMALL_STATE(1154)] = 35956, - [SMALL_STATE(1155)] = 36020, - [SMALL_STATE(1156)] = 36080, - [SMALL_STATE(1157)] = 36140, - [SMALL_STATE(1158)] = 36220, - [SMALL_STATE(1159)] = 36288, - [SMALL_STATE(1160)] = 36350, - [SMALL_STATE(1161)] = 36410, - [SMALL_STATE(1162)] = 36490, - [SMALL_STATE(1163)] = 36562, - [SMALL_STATE(1164)] = 36628, - [SMALL_STATE(1165)] = 36708, - [SMALL_STATE(1166)] = 36778, - [SMALL_STATE(1167)] = 36854, - [SMALL_STATE(1168)] = 36932, - [SMALL_STATE(1169)] = 37017, - [SMALL_STATE(1170)] = 37104, - [SMALL_STATE(1171)] = 37189, - [SMALL_STATE(1172)] = 37246, - [SMALL_STATE(1173)] = 37333, - [SMALL_STATE(1174)] = 37384, - [SMALL_STATE(1175)] = 37471, - [SMALL_STATE(1176)] = 37522, - [SMALL_STATE(1177)] = 37601, - [SMALL_STATE(1178)] = 37688, - [SMALL_STATE(1179)] = 37764, - [SMALL_STATE(1180)] = 37840, - [SMALL_STATE(1181)] = 37896, - [SMALL_STATE(1182)] = 37972, - [SMALL_STATE(1183)] = 38026, - [SMALL_STATE(1184)] = 38102, - [SMALL_STATE(1185)] = 38151, - [SMALL_STATE(1186)] = 38200, - [SMALL_STATE(1187)] = 38273, - [SMALL_STATE(1188)] = 38326, - [SMALL_STATE(1189)] = 38375, - [SMALL_STATE(1190)] = 38426, - [SMALL_STATE(1191)] = 38479, - [SMALL_STATE(1192)] = 38528, - [SMALL_STATE(1193)] = 38579, - [SMALL_STATE(1194)] = 38628, - [SMALL_STATE(1195)] = 38677, - [SMALL_STATE(1196)] = 38766, - [SMALL_STATE(1197)] = 38815, - [SMALL_STATE(1198)] = 38904, - [SMALL_STATE(1199)] = 38953, - [SMALL_STATE(1200)] = 39002, - [SMALL_STATE(1201)] = 39088, - [SMALL_STATE(1202)] = 39166, - [SMALL_STATE(1203)] = 39216, - [SMALL_STATE(1204)] = 39266, - [SMALL_STATE(1205)] = 39352, - [SMALL_STATE(1206)] = 39402, - [SMALL_STATE(1207)] = 39452, - [SMALL_STATE(1208)] = 39530, - [SMALL_STATE(1209)] = 39613, - [SMALL_STATE(1210)] = 39696, - [SMALL_STATE(1211)] = 39779, - [SMALL_STATE(1212)] = 39834, - [SMALL_STATE(1213)] = 39915, - [SMALL_STATE(1214)] = 39998, - [SMALL_STATE(1215)] = 40081, - [SMALL_STATE(1216)] = 40164, - [SMALL_STATE(1217)] = 40247, - [SMALL_STATE(1218)] = 40330, - [SMALL_STATE(1219)] = 40385, - [SMALL_STATE(1220)] = 40456, - [SMALL_STATE(1221)] = 40537, - [SMALL_STATE(1222)] = 40620, - [SMALL_STATE(1223)] = 40703, - [SMALL_STATE(1224)] = 40786, - [SMALL_STATE(1225)] = 40861, - [SMALL_STATE(1226)] = 40916, - [SMALL_STATE(1227)] = 40999, - [SMALL_STATE(1228)] = 41082, - [SMALL_STATE(1229)] = 41165, - [SMALL_STATE(1230)] = 41240, - [SMALL_STATE(1231)] = 41323, - [SMALL_STATE(1232)] = 41404, - [SMALL_STATE(1233)] = 41487, - [SMALL_STATE(1234)] = 41568, - [SMALL_STATE(1235)] = 41651, - [SMALL_STATE(1236)] = 41732, - [SMALL_STATE(1237)] = 41805, - [SMALL_STATE(1238)] = 41888, - [SMALL_STATE(1239)] = 41947, - [SMALL_STATE(1240)] = 42030, - [SMALL_STATE(1241)] = 42113, - [SMALL_STATE(1242)] = 42188, - [SMALL_STATE(1243)] = 42259, - [SMALL_STATE(1244)] = 42320, - [SMALL_STATE(1245)] = 42375, - [SMALL_STATE(1246)] = 42458, - [SMALL_STATE(1247)] = 42525, - [SMALL_STATE(1248)] = 42608, - [SMALL_STATE(1249)] = 42691, - [SMALL_STATE(1250)] = 42774, - [SMALL_STATE(1251)] = 42857, - [SMALL_STATE(1252)] = 42932, - [SMALL_STATE(1253)] = 43015, - [SMALL_STATE(1254)] = 43090, - [SMALL_STATE(1255)] = 43173, - [SMALL_STATE(1256)] = 43256, - [SMALL_STATE(1257)] = 43339, - [SMALL_STATE(1258)] = 43422, - [SMALL_STATE(1259)] = 43505, - [SMALL_STATE(1260)] = 43570, - [SMALL_STATE(1261)] = 43633, - [SMALL_STATE(1262)] = 43690, - [SMALL_STATE(1263)] = 43773, - [SMALL_STATE(1264)] = 43856, - [SMALL_STATE(1265)] = 43939, - [SMALL_STATE(1266)] = 44020, - [SMALL_STATE(1267)] = 44103, - [SMALL_STATE(1268)] = 44186, - [SMALL_STATE(1269)] = 44269, - [SMALL_STATE(1270)] = 44352, - [SMALL_STATE(1271)] = 44435, - [SMALL_STATE(1272)] = 44518, - [SMALL_STATE(1273)] = 44599, - [SMALL_STATE(1274)] = 44682, - [SMALL_STATE(1275)] = 44765, - [SMALL_STATE(1276)] = 44840, - [SMALL_STATE(1277)] = 44923, - [SMALL_STATE(1278)] = 45004, - [SMALL_STATE(1279)] = 45085, - [SMALL_STATE(1280)] = 45168, - [SMALL_STATE(1281)] = 45249, - [SMALL_STATE(1282)] = 45330, - [SMALL_STATE(1283)] = 45411, - [SMALL_STATE(1284)] = 45494, - [SMALL_STATE(1285)] = 45574, - [SMALL_STATE(1286)] = 45654, - [SMALL_STATE(1287)] = 45734, - [SMALL_STATE(1288)] = 45814, - [SMALL_STATE(1289)] = 45894, - [SMALL_STATE(1290)] = 45974, - [SMALL_STATE(1291)] = 46042, - [SMALL_STATE(1292)] = 46122, - [SMALL_STATE(1293)] = 46202, - [SMALL_STATE(1294)] = 46282, - [SMALL_STATE(1295)] = 46362, - [SMALL_STATE(1296)] = 46442, - [SMALL_STATE(1297)] = 46522, - [SMALL_STATE(1298)] = 46602, - [SMALL_STATE(1299)] = 46682, - [SMALL_STATE(1300)] = 46762, - [SMALL_STATE(1301)] = 46842, - [SMALL_STATE(1302)] = 46922, - [SMALL_STATE(1303)] = 47002, - [SMALL_STATE(1304)] = 47082, - [SMALL_STATE(1305)] = 47162, - [SMALL_STATE(1306)] = 47242, - [SMALL_STATE(1307)] = 47322, - [SMALL_STATE(1308)] = 47402, - [SMALL_STATE(1309)] = 47482, - [SMALL_STATE(1310)] = 47562, - [SMALL_STATE(1311)] = 47642, - [SMALL_STATE(1312)] = 47722, - [SMALL_STATE(1313)] = 47802, - [SMALL_STATE(1314)] = 47882, - [SMALL_STATE(1315)] = 47962, - [SMALL_STATE(1316)] = 48042, - [SMALL_STATE(1317)] = 48110, - [SMALL_STATE(1318)] = 48175, - [SMALL_STATE(1319)] = 48240, - [SMALL_STATE(1320)] = 48305, - [SMALL_STATE(1321)] = 48370, - [SMALL_STATE(1322)] = 48435, - [SMALL_STATE(1323)] = 48475, - [SMALL_STATE(1324)] = 48515, - [SMALL_STATE(1325)] = 48555, - [SMALL_STATE(1326)] = 48610, - [SMALL_STATE(1327)] = 48665, - [SMALL_STATE(1328)] = 48720, - [SMALL_STATE(1329)] = 48775, - [SMALL_STATE(1330)] = 48830, - [SMALL_STATE(1331)] = 48885, - [SMALL_STATE(1332)] = 48940, - [SMALL_STATE(1333)] = 48992, - [SMALL_STATE(1334)] = 49044, - [SMALL_STATE(1335)] = 49074, - [SMALL_STATE(1336)] = 49104, - [SMALL_STATE(1337)] = 49144, - [SMALL_STATE(1338)] = 49186, - [SMALL_STATE(1339)] = 49215, - [SMALL_STATE(1340)] = 49244, - [SMALL_STATE(1341)] = 49281, - [SMALL_STATE(1342)] = 49318, - [SMALL_STATE(1343)] = 49347, - [SMALL_STATE(1344)] = 49376, - [SMALL_STATE(1345)] = 49405, - [SMALL_STATE(1346)] = 49434, - [SMALL_STATE(1347)] = 49463, - [SMALL_STATE(1348)] = 49492, - [SMALL_STATE(1349)] = 49524, - [SMALL_STATE(1350)] = 49556, - [SMALL_STATE(1351)] = 49610, - [SMALL_STATE(1352)] = 49664, - [SMALL_STATE(1353)] = 49696, - [SMALL_STATE(1354)] = 49719, - [SMALL_STATE(1355)] = 49744, - [SMALL_STATE(1356)] = 49766, - [SMALL_STATE(1357)] = 49788, - [SMALL_STATE(1358)] = 49812, - [SMALL_STATE(1359)] = 49836, - [SMALL_STATE(1360)] = 49860, - [SMALL_STATE(1361)] = 49884, - [SMALL_STATE(1362)] = 49908, - [SMALL_STATE(1363)] = 49932, - [SMALL_STATE(1364)] = 49976, - [SMALL_STATE(1365)] = 50000, - [SMALL_STATE(1366)] = 50024, - [SMALL_STATE(1367)] = 50048, - [SMALL_STATE(1368)] = 50094, - [SMALL_STATE(1369)] = 50116, - [SMALL_STATE(1370)] = 50146, - [SMALL_STATE(1371)] = 50168, - [SMALL_STATE(1372)] = 50212, - [SMALL_STATE(1373)] = 50236, - [SMALL_STATE(1374)] = 50263, - [SMALL_STATE(1375)] = 50284, - [SMALL_STATE(1376)] = 50309, - [SMALL_STATE(1377)] = 50354, - [SMALL_STATE(1378)] = 50375, - [SMALL_STATE(1379)] = 50398, - [SMALL_STATE(1380)] = 50423, - [SMALL_STATE(1381)] = 50448, - [SMALL_STATE(1382)] = 50473, - [SMALL_STATE(1383)] = 50496, - [SMALL_STATE(1384)] = 50519, - [SMALL_STATE(1385)] = 50542, - [SMALL_STATE(1386)] = 50563, - [SMALL_STATE(1387)] = 50586, - [SMALL_STATE(1388)] = 50609, - [SMALL_STATE(1389)] = 50630, - [SMALL_STATE(1390)] = 50655, - [SMALL_STATE(1391)] = 50678, - [SMALL_STATE(1392)] = 50699, - [SMALL_STATE(1393)] = 50722, - [SMALL_STATE(1394)] = 50747, - [SMALL_STATE(1395)] = 50767, - [SMALL_STATE(1396)] = 50787, - [SMALL_STATE(1397)] = 50807, - [SMALL_STATE(1398)] = 50827, - [SMALL_STATE(1399)] = 50847, - [SMALL_STATE(1400)] = 50867, - [SMALL_STATE(1401)] = 50887, - [SMALL_STATE(1402)] = 50907, - [SMALL_STATE(1403)] = 50927, - [SMALL_STATE(1404)] = 50949, - [SMALL_STATE(1405)] = 50969, - [SMALL_STATE(1406)] = 50989, - [SMALL_STATE(1407)] = 51009, - [SMALL_STATE(1408)] = 51029, - [SMALL_STATE(1409)] = 51049, - [SMALL_STATE(1410)] = 51069, - [SMALL_STATE(1411)] = 51089, - [SMALL_STATE(1412)] = 51111, - [SMALL_STATE(1413)] = 51131, - [SMALL_STATE(1414)] = 51151, - [SMALL_STATE(1415)] = 51171, - [SMALL_STATE(1416)] = 51191, - [SMALL_STATE(1417)] = 51211, - [SMALL_STATE(1418)] = 51231, - [SMALL_STATE(1419)] = 51251, - [SMALL_STATE(1420)] = 51271, - [SMALL_STATE(1421)] = 51291, - [SMALL_STATE(1422)] = 51313, - [SMALL_STATE(1423)] = 51333, - [SMALL_STATE(1424)] = 51357, - [SMALL_STATE(1425)] = 51377, - [SMALL_STATE(1426)] = 51402, - [SMALL_STATE(1427)] = 51423, - [SMALL_STATE(1428)] = 51448, - [SMALL_STATE(1429)] = 51483, - [SMALL_STATE(1430)] = 51508, - [SMALL_STATE(1431)] = 51533, - [SMALL_STATE(1432)] = 51556, - [SMALL_STATE(1433)] = 51579, - [SMALL_STATE(1434)] = 51602, - [SMALL_STATE(1435)] = 51625, - [SMALL_STATE(1436)] = 51650, - [SMALL_STATE(1437)] = 51671, - [SMALL_STATE(1438)] = 51692, - [SMALL_STATE(1439)] = 51717, - [SMALL_STATE(1440)] = 51742, - [SMALL_STATE(1441)] = 51765, - [SMALL_STATE(1442)] = 51790, - [SMALL_STATE(1443)] = 51813, - [SMALL_STATE(1444)] = 51836, - [SMALL_STATE(1445)] = 51859, - [SMALL_STATE(1446)] = 51882, - [SMALL_STATE(1447)] = 51905, - [SMALL_STATE(1448)] = 51928, - [SMALL_STATE(1449)] = 51951, - [SMALL_STATE(1450)] = 51983, - [SMALL_STATE(1451)] = 52003, - [SMALL_STATE(1452)] = 52023, - [SMALL_STATE(1453)] = 52055, - [SMALL_STATE(1454)] = 52075, - [SMALL_STATE(1455)] = 52107, - [SMALL_STATE(1456)] = 52139, - [SMALL_STATE(1457)] = 52159, - [SMALL_STATE(1458)] = 52179, - [SMALL_STATE(1459)] = 52199, - [SMALL_STATE(1460)] = 52219, - [SMALL_STATE(1461)] = 52239, - [SMALL_STATE(1462)] = 52271, - [SMALL_STATE(1463)] = 52291, - [SMALL_STATE(1464)] = 52311, - [SMALL_STATE(1465)] = 52331, - [SMALL_STATE(1466)] = 52363, - [SMALL_STATE(1467)] = 52383, - [SMALL_STATE(1468)] = 52409, - [SMALL_STATE(1469)] = 52429, - [SMALL_STATE(1470)] = 52449, - [SMALL_STATE(1471)] = 52469, - [SMALL_STATE(1472)] = 52489, - [SMALL_STATE(1473)] = 52513, - [SMALL_STATE(1474)] = 52533, - [SMALL_STATE(1475)] = 52553, - [SMALL_STATE(1476)] = 52579, - [SMALL_STATE(1477)] = 52599, - [SMALL_STATE(1478)] = 52619, - [SMALL_STATE(1479)] = 52639, - [SMALL_STATE(1480)] = 52663, - [SMALL_STATE(1481)] = 52683, - [SMALL_STATE(1482)] = 52703, - [SMALL_STATE(1483)] = 52723, - [SMALL_STATE(1484)] = 52747, - [SMALL_STATE(1485)] = 52767, - [SMALL_STATE(1486)] = 52791, - [SMALL_STATE(1487)] = 52823, - [SMALL_STATE(1488)] = 52843, - [SMALL_STATE(1489)] = 52863, - [SMALL_STATE(1490)] = 52883, - [SMALL_STATE(1491)] = 52903, - [SMALL_STATE(1492)] = 52923, - [SMALL_STATE(1493)] = 52943, - [SMALL_STATE(1494)] = 52975, - [SMALL_STATE(1495)] = 53008, - [SMALL_STATE(1496)] = 53031, - [SMALL_STATE(1497)] = 53056, - [SMALL_STATE(1498)] = 53079, - [SMALL_STATE(1499)] = 53112, - [SMALL_STATE(1500)] = 53143, - [SMALL_STATE(1501)] = 53170, - [SMALL_STATE(1502)] = 53203, - [SMALL_STATE(1503)] = 53226, - [SMALL_STATE(1504)] = 53251, - [SMALL_STATE(1505)] = 53276, - [SMALL_STATE(1506)] = 53305, - [SMALL_STATE(1507)] = 53338, - [SMALL_STATE(1508)] = 53368, - [SMALL_STATE(1509)] = 53398, - [SMALL_STATE(1510)] = 53428, - [SMALL_STATE(1511)] = 53458, - [SMALL_STATE(1512)] = 53490, - [SMALL_STATE(1513)] = 53520, - [SMALL_STATE(1514)] = 53542, - [SMALL_STATE(1515)] = 53572, - [SMALL_STATE(1516)] = 53598, - [SMALL_STATE(1517)] = 53628, - [SMALL_STATE(1518)] = 53654, - [SMALL_STATE(1519)] = 53680, - [SMALL_STATE(1520)] = 53706, - [SMALL_STATE(1521)] = 53736, - [SMALL_STATE(1522)] = 53768, - [SMALL_STATE(1523)] = 53798, - [SMALL_STATE(1524)] = 53828, - [SMALL_STATE(1525)] = 53854, - [SMALL_STATE(1526)] = 53884, - [SMALL_STATE(1527)] = 53910, - [SMALL_STATE(1528)] = 53940, - [SMALL_STATE(1529)] = 53962, - [SMALL_STATE(1530)] = 53988, - [SMALL_STATE(1531)] = 54018, - [SMALL_STATE(1532)] = 54048, - [SMALL_STATE(1533)] = 54078, - [SMALL_STATE(1534)] = 54100, - [SMALL_STATE(1535)] = 54130, - [SMALL_STATE(1536)] = 54160, - [SMALL_STATE(1537)] = 54192, - [SMALL_STATE(1538)] = 54222, - [SMALL_STATE(1539)] = 54248, - [SMALL_STATE(1540)] = 54274, - [SMALL_STATE(1541)] = 54296, - [SMALL_STATE(1542)] = 54326, - [SMALL_STATE(1543)] = 54356, - [SMALL_STATE(1544)] = 54382, - [SMALL_STATE(1545)] = 54404, - [SMALL_STATE(1546)] = 54436, - [SMALL_STATE(1547)] = 54462, - [SMALL_STATE(1548)] = 54484, - [SMALL_STATE(1549)] = 54514, - [SMALL_STATE(1550)] = 54537, - [SMALL_STATE(1551)] = 54564, - [SMALL_STATE(1552)] = 54583, - [SMALL_STATE(1553)] = 54606, - [SMALL_STATE(1554)] = 54625, - [SMALL_STATE(1555)] = 54652, - [SMALL_STATE(1556)] = 54671, - [SMALL_STATE(1557)] = 54698, - [SMALL_STATE(1558)] = 54725, - [SMALL_STATE(1559)] = 54752, - [SMALL_STATE(1560)] = 54775, - [SMALL_STATE(1561)] = 54794, - [SMALL_STATE(1562)] = 54823, - [SMALL_STATE(1563)] = 54850, - [SMALL_STATE(1564)] = 54869, - [SMALL_STATE(1565)] = 54888, - [SMALL_STATE(1566)] = 54917, - [SMALL_STATE(1567)] = 54944, - [SMALL_STATE(1568)] = 54973, - [SMALL_STATE(1569)] = 54992, - [SMALL_STATE(1570)] = 55019, - [SMALL_STATE(1571)] = 55046, - [SMALL_STATE(1572)] = 55069, - [SMALL_STATE(1573)] = 55098, - [SMALL_STATE(1574)] = 55127, - [SMALL_STATE(1575)] = 55142, - [SMALL_STATE(1576)] = 55163, - [SMALL_STATE(1577)] = 55184, - [SMALL_STATE(1578)] = 55211, - [SMALL_STATE(1579)] = 55234, - [SMALL_STATE(1580)] = 55259, - [SMALL_STATE(1581)] = 55286, - [SMALL_STATE(1582)] = 55305, - [SMALL_STATE(1583)] = 55324, - [SMALL_STATE(1584)] = 55343, - [SMALL_STATE(1585)] = 55372, - [SMALL_STATE(1586)] = 55399, - [SMALL_STATE(1587)] = 55426, - [SMALL_STATE(1588)] = 55453, - [SMALL_STATE(1589)] = 55480, - [SMALL_STATE(1590)] = 55499, - [SMALL_STATE(1591)] = 55523, - [SMALL_STATE(1592)] = 55549, - [SMALL_STATE(1593)] = 55575, - [SMALL_STATE(1594)] = 55601, - [SMALL_STATE(1595)] = 55627, - [SMALL_STATE(1596)] = 55653, - [SMALL_STATE(1597)] = 55675, - [SMALL_STATE(1598)] = 55697, - [SMALL_STATE(1599)] = 55723, - [SMALL_STATE(1600)] = 55749, - [SMALL_STATE(1601)] = 55775, - [SMALL_STATE(1602)] = 55789, - [SMALL_STATE(1603)] = 55805, - [SMALL_STATE(1604)] = 55829, - [SMALL_STATE(1605)] = 55855, - [SMALL_STATE(1606)] = 55881, - [SMALL_STATE(1607)] = 55907, - [SMALL_STATE(1608)] = 55933, - [SMALL_STATE(1609)] = 55959, - [SMALL_STATE(1610)] = 55975, - [SMALL_STATE(1611)] = 56001, - [SMALL_STATE(1612)] = 56027, - [SMALL_STATE(1613)] = 56051, - [SMALL_STATE(1614)] = 56067, - [SMALL_STATE(1615)] = 56093, - [SMALL_STATE(1616)] = 56115, - [SMALL_STATE(1617)] = 56141, - [SMALL_STATE(1618)] = 56167, - [SMALL_STATE(1619)] = 56193, - [SMALL_STATE(1620)] = 56215, - [SMALL_STATE(1621)] = 56239, - [SMALL_STATE(1622)] = 56261, - [SMALL_STATE(1623)] = 56287, - [SMALL_STATE(1624)] = 56301, - [SMALL_STATE(1625)] = 56315, - [SMALL_STATE(1626)] = 56331, - [SMALL_STATE(1627)] = 56345, - [SMALL_STATE(1628)] = 56359, - [SMALL_STATE(1629)] = 56375, - [SMALL_STATE(1630)] = 56389, - [SMALL_STATE(1631)] = 56405, - [SMALL_STATE(1632)] = 56429, - [SMALL_STATE(1633)] = 56445, - [SMALL_STATE(1634)] = 56461, - [SMALL_STATE(1635)] = 56483, - [SMALL_STATE(1636)] = 56497, - [SMALL_STATE(1637)] = 56516, - [SMALL_STATE(1638)] = 56539, - [SMALL_STATE(1639)] = 56562, - [SMALL_STATE(1640)] = 56579, - [SMALL_STATE(1641)] = 56602, - [SMALL_STATE(1642)] = 56619, - [SMALL_STATE(1643)] = 56642, - [SMALL_STATE(1644)] = 56665, - [SMALL_STATE(1645)] = 56688, - [SMALL_STATE(1646)] = 56711, - [SMALL_STATE(1647)] = 56734, - [SMALL_STATE(1648)] = 56757, - [SMALL_STATE(1649)] = 56780, - [SMALL_STATE(1650)] = 56803, - [SMALL_STATE(1651)] = 56820, - [SMALL_STATE(1652)] = 56843, - [SMALL_STATE(1653)] = 56866, - [SMALL_STATE(1654)] = 56883, - [SMALL_STATE(1655)] = 56906, - [SMALL_STATE(1656)] = 56929, - [SMALL_STATE(1657)] = 56952, - [SMALL_STATE(1658)] = 56975, - [SMALL_STATE(1659)] = 56998, - [SMALL_STATE(1660)] = 57021, - [SMALL_STATE(1661)] = 57044, - [SMALL_STATE(1662)] = 57067, - [SMALL_STATE(1663)] = 57090, - [SMALL_STATE(1664)] = 57113, - [SMALL_STATE(1665)] = 57136, - [SMALL_STATE(1666)] = 57151, - [SMALL_STATE(1667)] = 57170, - [SMALL_STATE(1668)] = 57193, - [SMALL_STATE(1669)] = 57216, - [SMALL_STATE(1670)] = 57239, - [SMALL_STATE(1671)] = 57256, - [SMALL_STATE(1672)] = 57279, - [SMALL_STATE(1673)] = 57300, - [SMALL_STATE(1674)] = 57323, - [SMALL_STATE(1675)] = 57346, - [SMALL_STATE(1676)] = 57369, - [SMALL_STATE(1677)] = 57392, - [SMALL_STATE(1678)] = 57415, - [SMALL_STATE(1679)] = 57438, - [SMALL_STATE(1680)] = 57461, - [SMALL_STATE(1681)] = 57484, - [SMALL_STATE(1682)] = 57507, - [SMALL_STATE(1683)] = 57530, - [SMALL_STATE(1684)] = 57553, - [SMALL_STATE(1685)] = 57570, - [SMALL_STATE(1686)] = 57593, - [SMALL_STATE(1687)] = 57612, - [SMALL_STATE(1688)] = 57635, - [SMALL_STATE(1689)] = 57652, - [SMALL_STATE(1690)] = 57669, - [SMALL_STATE(1691)] = 57686, - [SMALL_STATE(1692)] = 57709, - [SMALL_STATE(1693)] = 57732, - [SMALL_STATE(1694)] = 57755, - [SMALL_STATE(1695)] = 57772, - [SMALL_STATE(1696)] = 57795, - [SMALL_STATE(1697)] = 57818, - [SMALL_STATE(1698)] = 57841, - [SMALL_STATE(1699)] = 57864, - [SMALL_STATE(1700)] = 57885, - [SMALL_STATE(1701)] = 57908, - [SMALL_STATE(1702)] = 57931, - [SMALL_STATE(1703)] = 57954, - [SMALL_STATE(1704)] = 57977, - [SMALL_STATE(1705)] = 58000, - [SMALL_STATE(1706)] = 58017, - [SMALL_STATE(1707)] = 58040, - [SMALL_STATE(1708)] = 58063, - [SMALL_STATE(1709)] = 58086, - [SMALL_STATE(1710)] = 58103, - [SMALL_STATE(1711)] = 58118, - [SMALL_STATE(1712)] = 58141, - [SMALL_STATE(1713)] = 58164, - [SMALL_STATE(1714)] = 58187, - [SMALL_STATE(1715)] = 58204, - [SMALL_STATE(1716)] = 58227, - [SMALL_STATE(1717)] = 58250, - [SMALL_STATE(1718)] = 58273, - [SMALL_STATE(1719)] = 58296, - [SMALL_STATE(1720)] = 58313, - [SMALL_STATE(1721)] = 58336, - [SMALL_STATE(1722)] = 58359, - [SMALL_STATE(1723)] = 58382, - [SMALL_STATE(1724)] = 58405, - [SMALL_STATE(1725)] = 58422, - [SMALL_STATE(1726)] = 58445, - [SMALL_STATE(1727)] = 58468, - [SMALL_STATE(1728)] = 58491, - [SMALL_STATE(1729)] = 58507, - [SMALL_STATE(1730)] = 58525, - [SMALL_STATE(1731)] = 58543, - [SMALL_STATE(1732)] = 58555, - [SMALL_STATE(1733)] = 58567, - [SMALL_STATE(1734)] = 58579, - [SMALL_STATE(1735)] = 58591, - [SMALL_STATE(1736)] = 58603, - [SMALL_STATE(1737)] = 58619, - [SMALL_STATE(1738)] = 58635, - [SMALL_STATE(1739)] = 58647, - [SMALL_STATE(1740)] = 58659, - [SMALL_STATE(1741)] = 58675, - [SMALL_STATE(1742)] = 58693, - [SMALL_STATE(1743)] = 58713, - [SMALL_STATE(1744)] = 58731, - [SMALL_STATE(1745)] = 58743, - [SMALL_STATE(1746)] = 58755, - [SMALL_STATE(1747)] = 58767, - [SMALL_STATE(1748)] = 58787, - [SMALL_STATE(1749)] = 58799, - [SMALL_STATE(1750)] = 58811, - [SMALL_STATE(1751)] = 58829, - [SMALL_STATE(1752)] = 58841, - [SMALL_STATE(1753)] = 58859, - [SMALL_STATE(1754)] = 58879, - [SMALL_STATE(1755)] = 58893, - [SMALL_STATE(1756)] = 58909, - [SMALL_STATE(1757)] = 58925, - [SMALL_STATE(1758)] = 58941, - [SMALL_STATE(1759)] = 58957, - [SMALL_STATE(1760)] = 58977, - [SMALL_STATE(1761)] = 58989, - [SMALL_STATE(1762)] = 59001, - [SMALL_STATE(1763)] = 59019, - [SMALL_STATE(1764)] = 59035, - [SMALL_STATE(1765)] = 59049, - [SMALL_STATE(1766)] = 59061, - [SMALL_STATE(1767)] = 59073, - [SMALL_STATE(1768)] = 59089, - [SMALL_STATE(1769)] = 59107, - [SMALL_STATE(1770)] = 59119, - [SMALL_STATE(1771)] = 59135, - [SMALL_STATE(1772)] = 59155, - [SMALL_STATE(1773)] = 59175, - [SMALL_STATE(1774)] = 59191, - [SMALL_STATE(1775)] = 59207, - [SMALL_STATE(1776)] = 59219, - [SMALL_STATE(1777)] = 59231, - [SMALL_STATE(1778)] = 59243, - [SMALL_STATE(1779)] = 59260, - [SMALL_STATE(1780)] = 59273, - [SMALL_STATE(1781)] = 59290, - [SMALL_STATE(1782)] = 59305, - [SMALL_STATE(1783)] = 59318, - [SMALL_STATE(1784)] = 59333, - [SMALL_STATE(1785)] = 59350, - [SMALL_STATE(1786)] = 59367, - [SMALL_STATE(1787)] = 59382, - [SMALL_STATE(1788)] = 59399, - [SMALL_STATE(1789)] = 59416, - [SMALL_STATE(1790)] = 59431, - [SMALL_STATE(1791)] = 59448, - [SMALL_STATE(1792)] = 59465, - [SMALL_STATE(1793)] = 59482, - [SMALL_STATE(1794)] = 59499, - [SMALL_STATE(1795)] = 59516, - [SMALL_STATE(1796)] = 59533, - [SMALL_STATE(1797)] = 59550, - [SMALL_STATE(1798)] = 59567, - [SMALL_STATE(1799)] = 59584, - [SMALL_STATE(1800)] = 59601, - [SMALL_STATE(1801)] = 59618, - [SMALL_STATE(1802)] = 59635, - [SMALL_STATE(1803)] = 59650, - [SMALL_STATE(1804)] = 59665, - [SMALL_STATE(1805)] = 59682, - [SMALL_STATE(1806)] = 59697, - [SMALL_STATE(1807)] = 59714, - [SMALL_STATE(1808)] = 59731, - [SMALL_STATE(1809)] = 59748, - [SMALL_STATE(1810)] = 59765, - [SMALL_STATE(1811)] = 59782, - [SMALL_STATE(1812)] = 59799, - [SMALL_STATE(1813)] = 59814, - [SMALL_STATE(1814)] = 59831, - [SMALL_STATE(1815)] = 59848, - [SMALL_STATE(1816)] = 59865, - [SMALL_STATE(1817)] = 59882, - [SMALL_STATE(1818)] = 59899, - [SMALL_STATE(1819)] = 59914, - [SMALL_STATE(1820)] = 59929, - [SMALL_STATE(1821)] = 59946, - [SMALL_STATE(1822)] = 59963, - [SMALL_STATE(1823)] = 59980, - [SMALL_STATE(1824)] = 59997, - [SMALL_STATE(1825)] = 60014, - [SMALL_STATE(1826)] = 60027, - [SMALL_STATE(1827)] = 60044, - [SMALL_STATE(1828)] = 60057, - [SMALL_STATE(1829)] = 60074, - [SMALL_STATE(1830)] = 60091, - [SMALL_STATE(1831)] = 60106, - [SMALL_STATE(1832)] = 60123, - [SMALL_STATE(1833)] = 60138, - [SMALL_STATE(1834)] = 60155, - [SMALL_STATE(1835)] = 60172, - [SMALL_STATE(1836)] = 60189, - [SMALL_STATE(1837)] = 60204, - [SMALL_STATE(1838)] = 60219, - [SMALL_STATE(1839)] = 60234, - [SMALL_STATE(1840)] = 60251, - [SMALL_STATE(1841)] = 60268, - [SMALL_STATE(1842)] = 60285, - [SMALL_STATE(1843)] = 60300, - [SMALL_STATE(1844)] = 60317, - [SMALL_STATE(1845)] = 60332, - [SMALL_STATE(1846)] = 60349, - [SMALL_STATE(1847)] = 60364, - [SMALL_STATE(1848)] = 60379, - [SMALL_STATE(1849)] = 60392, - [SMALL_STATE(1850)] = 60407, - [SMALL_STATE(1851)] = 60422, - [SMALL_STATE(1852)] = 60439, - [SMALL_STATE(1853)] = 60456, - [SMALL_STATE(1854)] = 60473, - [SMALL_STATE(1855)] = 60486, - [SMALL_STATE(1856)] = 60503, - [SMALL_STATE(1857)] = 60516, - [SMALL_STATE(1858)] = 60531, - [SMALL_STATE(1859)] = 60548, - [SMALL_STATE(1860)] = 60563, - [SMALL_STATE(1861)] = 60578, - [SMALL_STATE(1862)] = 60591, - [SMALL_STATE(1863)] = 60608, - [SMALL_STATE(1864)] = 60625, - [SMALL_STATE(1865)] = 60642, - [SMALL_STATE(1866)] = 60657, - [SMALL_STATE(1867)] = 60674, - [SMALL_STATE(1868)] = 60691, - [SMALL_STATE(1869)] = 60708, - [SMALL_STATE(1870)] = 60725, - [SMALL_STATE(1871)] = 60742, - [SMALL_STATE(1872)] = 60757, - [SMALL_STATE(1873)] = 60774, - [SMALL_STATE(1874)] = 60791, - [SMALL_STATE(1875)] = 60808, - [SMALL_STATE(1876)] = 60821, - [SMALL_STATE(1877)] = 60838, - [SMALL_STATE(1878)] = 60855, - [SMALL_STATE(1879)] = 60870, - [SMALL_STATE(1880)] = 60883, - [SMALL_STATE(1881)] = 60898, - [SMALL_STATE(1882)] = 60912, - [SMALL_STATE(1883)] = 60926, - [SMALL_STATE(1884)] = 60938, - [SMALL_STATE(1885)] = 60952, - [SMALL_STATE(1886)] = 60966, - [SMALL_STATE(1887)] = 60980, - [SMALL_STATE(1888)] = 60994, - [SMALL_STATE(1889)] = 61008, - [SMALL_STATE(1890)] = 61022, - [SMALL_STATE(1891)] = 61036, - [SMALL_STATE(1892)] = 61050, - [SMALL_STATE(1893)] = 61062, - [SMALL_STATE(1894)] = 61076, - [SMALL_STATE(1895)] = 61090, - [SMALL_STATE(1896)] = 61104, - [SMALL_STATE(1897)] = 61118, - [SMALL_STATE(1898)] = 61132, - [SMALL_STATE(1899)] = 61146, - [SMALL_STATE(1900)] = 61160, - [SMALL_STATE(1901)] = 61172, - [SMALL_STATE(1902)] = 61186, - [SMALL_STATE(1903)] = 61200, - [SMALL_STATE(1904)] = 61210, - [SMALL_STATE(1905)] = 61224, - [SMALL_STATE(1906)] = 61238, - [SMALL_STATE(1907)] = 61252, - [SMALL_STATE(1908)] = 61262, - [SMALL_STATE(1909)] = 61276, - [SMALL_STATE(1910)] = 61286, - [SMALL_STATE(1911)] = 61300, - [SMALL_STATE(1912)] = 61314, - [SMALL_STATE(1913)] = 61328, - [SMALL_STATE(1914)] = 61342, - [SMALL_STATE(1915)] = 61356, - [SMALL_STATE(1916)] = 61366, - [SMALL_STATE(1917)] = 61376, - [SMALL_STATE(1918)] = 61390, - [SMALL_STATE(1919)] = 61404, - [SMALL_STATE(1920)] = 61416, - [SMALL_STATE(1921)] = 61430, - [SMALL_STATE(1922)] = 61444, - [SMALL_STATE(1923)] = 61456, - [SMALL_STATE(1924)] = 61470, - [SMALL_STATE(1925)] = 61484, - [SMALL_STATE(1926)] = 61498, - [SMALL_STATE(1927)] = 61512, - [SMALL_STATE(1928)] = 61526, - [SMALL_STATE(1929)] = 61538, - [SMALL_STATE(1930)] = 61552, - [SMALL_STATE(1931)] = 61566, - [SMALL_STATE(1932)] = 61580, - [SMALL_STATE(1933)] = 61594, - [SMALL_STATE(1934)] = 61606, - [SMALL_STATE(1935)] = 61620, - [SMALL_STATE(1936)] = 61634, - [SMALL_STATE(1937)] = 61648, - [SMALL_STATE(1938)] = 61662, - [SMALL_STATE(1939)] = 61676, - [SMALL_STATE(1940)] = 61688, - [SMALL_STATE(1941)] = 61702, - [SMALL_STATE(1942)] = 61716, - [SMALL_STATE(1943)] = 61730, - [SMALL_STATE(1944)] = 61744, - [SMALL_STATE(1945)] = 61758, - [SMALL_STATE(1946)] = 61768, - [SMALL_STATE(1947)] = 61782, - [SMALL_STATE(1948)] = 61796, - [SMALL_STATE(1949)] = 61810, - [SMALL_STATE(1950)] = 61824, - [SMALL_STATE(1951)] = 61838, - [SMALL_STATE(1952)] = 61850, - [SMALL_STATE(1953)] = 61864, - [SMALL_STATE(1954)] = 61876, - [SMALL_STATE(1955)] = 61890, - [SMALL_STATE(1956)] = 61904, - [SMALL_STATE(1957)] = 61918, - [SMALL_STATE(1958)] = 61932, - [SMALL_STATE(1959)] = 61942, - [SMALL_STATE(1960)] = 61956, - [SMALL_STATE(1961)] = 61970, - [SMALL_STATE(1962)] = 61982, - [SMALL_STATE(1963)] = 61994, - [SMALL_STATE(1964)] = 62008, - [SMALL_STATE(1965)] = 62022, - [SMALL_STATE(1966)] = 62036, - [SMALL_STATE(1967)] = 62048, - [SMALL_STATE(1968)] = 62062, - [SMALL_STATE(1969)] = 62074, - [SMALL_STATE(1970)] = 62088, - [SMALL_STATE(1971)] = 62102, - [SMALL_STATE(1972)] = 62116, - [SMALL_STATE(1973)] = 62130, - [SMALL_STATE(1974)] = 62144, - [SMALL_STATE(1975)] = 62158, - [SMALL_STATE(1976)] = 62170, - [SMALL_STATE(1977)] = 62184, - [SMALL_STATE(1978)] = 62194, - [SMALL_STATE(1979)] = 62206, - [SMALL_STATE(1980)] = 62218, - [SMALL_STATE(1981)] = 62232, - [SMALL_STATE(1982)] = 62244, - [SMALL_STATE(1983)] = 62256, - [SMALL_STATE(1984)] = 62270, - [SMALL_STATE(1985)] = 62282, - [SMALL_STATE(1986)] = 62296, - [SMALL_STATE(1987)] = 62310, - [SMALL_STATE(1988)] = 62324, - [SMALL_STATE(1989)] = 62338, - [SMALL_STATE(1990)] = 62352, - [SMALL_STATE(1991)] = 62366, - [SMALL_STATE(1992)] = 62380, - [SMALL_STATE(1993)] = 62394, - [SMALL_STATE(1994)] = 62408, - [SMALL_STATE(1995)] = 62422, - [SMALL_STATE(1996)] = 62432, - [SMALL_STATE(1997)] = 62446, - [SMALL_STATE(1998)] = 62458, - [SMALL_STATE(1999)] = 62470, - [SMALL_STATE(2000)] = 62484, - [SMALL_STATE(2001)] = 62498, - [SMALL_STATE(2002)] = 62512, - [SMALL_STATE(2003)] = 62526, - [SMALL_STATE(2004)] = 62540, - [SMALL_STATE(2005)] = 62554, - [SMALL_STATE(2006)] = 62566, - [SMALL_STATE(2007)] = 62578, - [SMALL_STATE(2008)] = 62588, - [SMALL_STATE(2009)] = 62602, - [SMALL_STATE(2010)] = 62616, - [SMALL_STATE(2011)] = 62630, - [SMALL_STATE(2012)] = 62644, - [SMALL_STATE(2013)] = 62658, - [SMALL_STATE(2014)] = 62672, - [SMALL_STATE(2015)] = 62686, - [SMALL_STATE(2016)] = 62700, - [SMALL_STATE(2017)] = 62714, - [SMALL_STATE(2018)] = 62724, - [SMALL_STATE(2019)] = 62738, - [SMALL_STATE(2020)] = 62752, - [SMALL_STATE(2021)] = 62766, - [SMALL_STATE(2022)] = 62778, - [SMALL_STATE(2023)] = 62792, - [SMALL_STATE(2024)] = 62806, - [SMALL_STATE(2025)] = 62820, - [SMALL_STATE(2026)] = 62834, - [SMALL_STATE(2027)] = 62848, - [SMALL_STATE(2028)] = 62862, - [SMALL_STATE(2029)] = 62876, - [SMALL_STATE(2030)] = 62890, - [SMALL_STATE(2031)] = 62904, - [SMALL_STATE(2032)] = 62918, - [SMALL_STATE(2033)] = 62932, - [SMALL_STATE(2034)] = 62946, - [SMALL_STATE(2035)] = 62956, - [SMALL_STATE(2036)] = 62966, - [SMALL_STATE(2037)] = 62978, - [SMALL_STATE(2038)] = 62992, - [SMALL_STATE(2039)] = 63002, - [SMALL_STATE(2040)] = 63016, - [SMALL_STATE(2041)] = 63030, - [SMALL_STATE(2042)] = 63044, - [SMALL_STATE(2043)] = 63058, - [SMALL_STATE(2044)] = 63072, - [SMALL_STATE(2045)] = 63086, - [SMALL_STATE(2046)] = 63100, - [SMALL_STATE(2047)] = 63114, - [SMALL_STATE(2048)] = 63124, - [SMALL_STATE(2049)] = 63138, - [SMALL_STATE(2050)] = 63148, - [SMALL_STATE(2051)] = 63162, - [SMALL_STATE(2052)] = 63172, - [SMALL_STATE(2053)] = 63186, - [SMALL_STATE(2054)] = 63200, - [SMALL_STATE(2055)] = 63214, - [SMALL_STATE(2056)] = 63224, - [SMALL_STATE(2057)] = 63238, - [SMALL_STATE(2058)] = 63252, - [SMALL_STATE(2059)] = 63266, - [SMALL_STATE(2060)] = 63280, - [SMALL_STATE(2061)] = 63294, - [SMALL_STATE(2062)] = 63308, - [SMALL_STATE(2063)] = 63322, - [SMALL_STATE(2064)] = 63334, - [SMALL_STATE(2065)] = 63348, - [SMALL_STATE(2066)] = 63360, - [SMALL_STATE(2067)] = 63374, - [SMALL_STATE(2068)] = 63388, - [SMALL_STATE(2069)] = 63402, - [SMALL_STATE(2070)] = 63416, - [SMALL_STATE(2071)] = 63430, - [SMALL_STATE(2072)] = 63444, - [SMALL_STATE(2073)] = 63458, - [SMALL_STATE(2074)] = 63472, - [SMALL_STATE(2075)] = 63486, - [SMALL_STATE(2076)] = 63500, - [SMALL_STATE(2077)] = 63510, - [SMALL_STATE(2078)] = 63524, - [SMALL_STATE(2079)] = 63536, - [SMALL_STATE(2080)] = 63546, - [SMALL_STATE(2081)] = 63560, - [SMALL_STATE(2082)] = 63574, - [SMALL_STATE(2083)] = 63588, - [SMALL_STATE(2084)] = 63602, - [SMALL_STATE(2085)] = 63616, - [SMALL_STATE(2086)] = 63628, - [SMALL_STATE(2087)] = 63642, - [SMALL_STATE(2088)] = 63656, - [SMALL_STATE(2089)] = 63670, - [SMALL_STATE(2090)] = 63684, - [SMALL_STATE(2091)] = 63696, - [SMALL_STATE(2092)] = 63710, - [SMALL_STATE(2093)] = 63724, - [SMALL_STATE(2094)] = 63738, - [SMALL_STATE(2095)] = 63752, - [SMALL_STATE(2096)] = 63766, - [SMALL_STATE(2097)] = 63776, - [SMALL_STATE(2098)] = 63790, - [SMALL_STATE(2099)] = 63800, - [SMALL_STATE(2100)] = 63810, - [SMALL_STATE(2101)] = 63824, - [SMALL_STATE(2102)] = 63836, - [SMALL_STATE(2103)] = 63850, - [SMALL_STATE(2104)] = 63864, - [SMALL_STATE(2105)] = 63878, - [SMALL_STATE(2106)] = 63892, - [SMALL_STATE(2107)] = 63906, - [SMALL_STATE(2108)] = 63916, - [SMALL_STATE(2109)] = 63930, - [SMALL_STATE(2110)] = 63944, - [SMALL_STATE(2111)] = 63954, - [SMALL_STATE(2112)] = 63964, - [SMALL_STATE(2113)] = 63978, - [SMALL_STATE(2114)] = 63992, - [SMALL_STATE(2115)] = 64006, - [SMALL_STATE(2116)] = 64020, - [SMALL_STATE(2117)] = 64030, - [SMALL_STATE(2118)] = 64040, - [SMALL_STATE(2119)] = 64050, - [SMALL_STATE(2120)] = 64064, - [SMALL_STATE(2121)] = 64076, - [SMALL_STATE(2122)] = 64090, - [SMALL_STATE(2123)] = 64104, - [SMALL_STATE(2124)] = 64118, - [SMALL_STATE(2125)] = 64128, - [SMALL_STATE(2126)] = 64142, - [SMALL_STATE(2127)] = 64156, - [SMALL_STATE(2128)] = 64170, - [SMALL_STATE(2129)] = 64184, - [SMALL_STATE(2130)] = 64198, - [SMALL_STATE(2131)] = 64212, - [SMALL_STATE(2132)] = 64224, - [SMALL_STATE(2133)] = 64236, - [SMALL_STATE(2134)] = 64250, - [SMALL_STATE(2135)] = 64262, - [SMALL_STATE(2136)] = 64272, - [SMALL_STATE(2137)] = 64286, - [SMALL_STATE(2138)] = 64300, - [SMALL_STATE(2139)] = 64314, - [SMALL_STATE(2140)] = 64328, - [SMALL_STATE(2141)] = 64342, - [SMALL_STATE(2142)] = 64352, - [SMALL_STATE(2143)] = 64366, - [SMALL_STATE(2144)] = 64380, - [SMALL_STATE(2145)] = 64394, - [SMALL_STATE(2146)] = 64408, - [SMALL_STATE(2147)] = 64422, - [SMALL_STATE(2148)] = 64436, - [SMALL_STATE(2149)] = 64447, - [SMALL_STATE(2150)] = 64458, - [SMALL_STATE(2151)] = 64469, - [SMALL_STATE(2152)] = 64480, - [SMALL_STATE(2153)] = 64491, - [SMALL_STATE(2154)] = 64502, - [SMALL_STATE(2155)] = 64511, - [SMALL_STATE(2156)] = 64522, - [SMALL_STATE(2157)] = 64533, - [SMALL_STATE(2158)] = 64544, - [SMALL_STATE(2159)] = 64555, - [SMALL_STATE(2160)] = 64564, - [SMALL_STATE(2161)] = 64575, - [SMALL_STATE(2162)] = 64586, - [SMALL_STATE(2163)] = 64597, - [SMALL_STATE(2164)] = 64608, - [SMALL_STATE(2165)] = 64619, - [SMALL_STATE(2166)] = 64630, - [SMALL_STATE(2167)] = 64641, - [SMALL_STATE(2168)] = 64652, - [SMALL_STATE(2169)] = 64661, - [SMALL_STATE(2170)] = 64672, - [SMALL_STATE(2171)] = 64683, - [SMALL_STATE(2172)] = 64694, - [SMALL_STATE(2173)] = 64703, - [SMALL_STATE(2174)] = 64714, - [SMALL_STATE(2175)] = 64725, - [SMALL_STATE(2176)] = 64736, - [SMALL_STATE(2177)] = 64747, - [SMALL_STATE(2178)] = 64758, - [SMALL_STATE(2179)] = 64769, - [SMALL_STATE(2180)] = 64780, - [SMALL_STATE(2181)] = 64791, - [SMALL_STATE(2182)] = 64802, - [SMALL_STATE(2183)] = 64813, - [SMALL_STATE(2184)] = 64824, - [SMALL_STATE(2185)] = 64835, - [SMALL_STATE(2186)] = 64846, - [SMALL_STATE(2187)] = 64857, - [SMALL_STATE(2188)] = 64868, - [SMALL_STATE(2189)] = 64879, - [SMALL_STATE(2190)] = 64890, - [SMALL_STATE(2191)] = 64901, - [SMALL_STATE(2192)] = 64912, - [SMALL_STATE(2193)] = 64923, - [SMALL_STATE(2194)] = 64934, - [SMALL_STATE(2195)] = 64945, - [SMALL_STATE(2196)] = 64956, - [SMALL_STATE(2197)] = 64965, - [SMALL_STATE(2198)] = 64976, - [SMALL_STATE(2199)] = 64987, - [SMALL_STATE(2200)] = 64998, - [SMALL_STATE(2201)] = 65009, - [SMALL_STATE(2202)] = 65020, - [SMALL_STATE(2203)] = 65031, - [SMALL_STATE(2204)] = 65040, - [SMALL_STATE(2205)] = 65051, - [SMALL_STATE(2206)] = 65060, - [SMALL_STATE(2207)] = 65071, - [SMALL_STATE(2208)] = 65082, - [SMALL_STATE(2209)] = 65091, - [SMALL_STATE(2210)] = 65102, - [SMALL_STATE(2211)] = 65113, - [SMALL_STATE(2212)] = 65122, - [SMALL_STATE(2213)] = 65133, - [SMALL_STATE(2214)] = 65142, - [SMALL_STATE(2215)] = 65153, - [SMALL_STATE(2216)] = 65164, - [SMALL_STATE(2217)] = 65173, - [SMALL_STATE(2218)] = 65182, - [SMALL_STATE(2219)] = 65193, - [SMALL_STATE(2220)] = 65204, - [SMALL_STATE(2221)] = 65215, - [SMALL_STATE(2222)] = 65226, - [SMALL_STATE(2223)] = 65235, - [SMALL_STATE(2224)] = 65246, - [SMALL_STATE(2225)] = 65257, - [SMALL_STATE(2226)] = 65268, - [SMALL_STATE(2227)] = 65279, - [SMALL_STATE(2228)] = 65290, - [SMALL_STATE(2229)] = 65299, - [SMALL_STATE(2230)] = 65310, - [SMALL_STATE(2231)] = 65321, - [SMALL_STATE(2232)] = 65332, - [SMALL_STATE(2233)] = 65343, - [SMALL_STATE(2234)] = 65354, - [SMALL_STATE(2235)] = 65365, - [SMALL_STATE(2236)] = 65376, - [SMALL_STATE(2237)] = 65387, - [SMALL_STATE(2238)] = 65398, - [SMALL_STATE(2239)] = 65409, - [SMALL_STATE(2240)] = 65420, - [SMALL_STATE(2241)] = 65429, - [SMALL_STATE(2242)] = 65440, - [SMALL_STATE(2243)] = 65451, - [SMALL_STATE(2244)] = 65462, - [SMALL_STATE(2245)] = 65473, - [SMALL_STATE(2246)] = 65482, - [SMALL_STATE(2247)] = 65493, - [SMALL_STATE(2248)] = 65504, - [SMALL_STATE(2249)] = 65515, - [SMALL_STATE(2250)] = 65526, - [SMALL_STATE(2251)] = 65535, - [SMALL_STATE(2252)] = 65546, - [SMALL_STATE(2253)] = 65557, - [SMALL_STATE(2254)] = 65568, - [SMALL_STATE(2255)] = 65579, - [SMALL_STATE(2256)] = 65590, - [SMALL_STATE(2257)] = 65601, - [SMALL_STATE(2258)] = 65612, - [SMALL_STATE(2259)] = 65623, - [SMALL_STATE(2260)] = 65634, - [SMALL_STATE(2261)] = 65645, - [SMALL_STATE(2262)] = 65656, - [SMALL_STATE(2263)] = 65667, - [SMALL_STATE(2264)] = 65678, - [SMALL_STATE(2265)] = 65689, - [SMALL_STATE(2266)] = 65700, - [SMALL_STATE(2267)] = 65711, - [SMALL_STATE(2268)] = 65720, - [SMALL_STATE(2269)] = 65729, - [SMALL_STATE(2270)] = 65740, - [SMALL_STATE(2271)] = 65749, - [SMALL_STATE(2272)] = 65760, - [SMALL_STATE(2273)] = 65771, - [SMALL_STATE(2274)] = 65782, - [SMALL_STATE(2275)] = 65793, - [SMALL_STATE(2276)] = 65804, - [SMALL_STATE(2277)] = 65815, - [SMALL_STATE(2278)] = 65826, - [SMALL_STATE(2279)] = 65835, - [SMALL_STATE(2280)] = 65846, - [SMALL_STATE(2281)] = 65857, - [SMALL_STATE(2282)] = 65868, - [SMALL_STATE(2283)] = 65879, - [SMALL_STATE(2284)] = 65890, - [SMALL_STATE(2285)] = 65901, - [SMALL_STATE(2286)] = 65912, - [SMALL_STATE(2287)] = 65921, - [SMALL_STATE(2288)] = 65932, - [SMALL_STATE(2289)] = 65943, - [SMALL_STATE(2290)] = 65954, - [SMALL_STATE(2291)] = 65965, - [SMALL_STATE(2292)] = 65976, - [SMALL_STATE(2293)] = 65987, - [SMALL_STATE(2294)] = 65998, - [SMALL_STATE(2295)] = 66009, - [SMALL_STATE(2296)] = 66020, - [SMALL_STATE(2297)] = 66031, - [SMALL_STATE(2298)] = 66042, - [SMALL_STATE(2299)] = 66053, - [SMALL_STATE(2300)] = 66064, - [SMALL_STATE(2301)] = 66073, - [SMALL_STATE(2302)] = 66084, - [SMALL_STATE(2303)] = 66095, - [SMALL_STATE(2304)] = 66106, - [SMALL_STATE(2305)] = 66117, - [SMALL_STATE(2306)] = 66128, - [SMALL_STATE(2307)] = 66139, - [SMALL_STATE(2308)] = 66150, - [SMALL_STATE(2309)] = 66161, - [SMALL_STATE(2310)] = 66172, - [SMALL_STATE(2311)] = 66183, - [SMALL_STATE(2312)] = 66194, - [SMALL_STATE(2313)] = 66205, - [SMALL_STATE(2314)] = 66216, - [SMALL_STATE(2315)] = 66227, - [SMALL_STATE(2316)] = 66238, - [SMALL_STATE(2317)] = 66249, - [SMALL_STATE(2318)] = 66260, - [SMALL_STATE(2319)] = 66271, - [SMALL_STATE(2320)] = 66280, - [SMALL_STATE(2321)] = 66291, - [SMALL_STATE(2322)] = 66300, - [SMALL_STATE(2323)] = 66311, - [SMALL_STATE(2324)] = 66322, - [SMALL_STATE(2325)] = 66331, - [SMALL_STATE(2326)] = 66342, - [SMALL_STATE(2327)] = 66353, - [SMALL_STATE(2328)] = 66364, - [SMALL_STATE(2329)] = 66375, - [SMALL_STATE(2330)] = 66386, - [SMALL_STATE(2331)] = 66395, - [SMALL_STATE(2332)] = 66404, - [SMALL_STATE(2333)] = 66415, - [SMALL_STATE(2334)] = 66426, - [SMALL_STATE(2335)] = 66434, - [SMALL_STATE(2336)] = 66442, - [SMALL_STATE(2337)] = 66450, - [SMALL_STATE(2338)] = 66458, - [SMALL_STATE(2339)] = 66466, - [SMALL_STATE(2340)] = 66474, - [SMALL_STATE(2341)] = 66482, - [SMALL_STATE(2342)] = 66490, - [SMALL_STATE(2343)] = 66498, - [SMALL_STATE(2344)] = 66506, - [SMALL_STATE(2345)] = 66514, - [SMALL_STATE(2346)] = 66522, - [SMALL_STATE(2347)] = 66530, - [SMALL_STATE(2348)] = 66538, - [SMALL_STATE(2349)] = 66546, - [SMALL_STATE(2350)] = 66554, - [SMALL_STATE(2351)] = 66562, - [SMALL_STATE(2352)] = 66570, - [SMALL_STATE(2353)] = 66578, - [SMALL_STATE(2354)] = 66586, - [SMALL_STATE(2355)] = 66594, - [SMALL_STATE(2356)] = 66602, - [SMALL_STATE(2357)] = 66610, - [SMALL_STATE(2358)] = 66618, - [SMALL_STATE(2359)] = 66626, - [SMALL_STATE(2360)] = 66634, - [SMALL_STATE(2361)] = 66642, - [SMALL_STATE(2362)] = 66650, - [SMALL_STATE(2363)] = 66658, - [SMALL_STATE(2364)] = 66666, - [SMALL_STATE(2365)] = 66674, - [SMALL_STATE(2366)] = 66682, - [SMALL_STATE(2367)] = 66690, - [SMALL_STATE(2368)] = 66698, - [SMALL_STATE(2369)] = 66706, - [SMALL_STATE(2370)] = 66714, - [SMALL_STATE(2371)] = 66722, - [SMALL_STATE(2372)] = 66730, - [SMALL_STATE(2373)] = 66738, - [SMALL_STATE(2374)] = 66746, - [SMALL_STATE(2375)] = 66754, - [SMALL_STATE(2376)] = 66762, - [SMALL_STATE(2377)] = 66770, - [SMALL_STATE(2378)] = 66778, - [SMALL_STATE(2379)] = 66786, - [SMALL_STATE(2380)] = 66794, - [SMALL_STATE(2381)] = 66802, - [SMALL_STATE(2382)] = 66810, - [SMALL_STATE(2383)] = 66818, - [SMALL_STATE(2384)] = 66826, - [SMALL_STATE(2385)] = 66834, - [SMALL_STATE(2386)] = 66842, - [SMALL_STATE(2387)] = 66850, - [SMALL_STATE(2388)] = 66858, - [SMALL_STATE(2389)] = 66866, - [SMALL_STATE(2390)] = 66874, - [SMALL_STATE(2391)] = 66882, - [SMALL_STATE(2392)] = 66890, - [SMALL_STATE(2393)] = 66898, - [SMALL_STATE(2394)] = 66906, - [SMALL_STATE(2395)] = 66914, - [SMALL_STATE(2396)] = 66922, - [SMALL_STATE(2397)] = 66930, - [SMALL_STATE(2398)] = 66938, - [SMALL_STATE(2399)] = 66946, - [SMALL_STATE(2400)] = 66954, - [SMALL_STATE(2401)] = 66962, - [SMALL_STATE(2402)] = 66970, - [SMALL_STATE(2403)] = 66978, - [SMALL_STATE(2404)] = 66986, - [SMALL_STATE(2405)] = 66994, - [SMALL_STATE(2406)] = 67002, - [SMALL_STATE(2407)] = 67010, - [SMALL_STATE(2408)] = 67018, - [SMALL_STATE(2409)] = 67026, - [SMALL_STATE(2410)] = 67034, - [SMALL_STATE(2411)] = 67042, - [SMALL_STATE(2412)] = 67050, - [SMALL_STATE(2413)] = 67058, - [SMALL_STATE(2414)] = 67066, - [SMALL_STATE(2415)] = 67074, - [SMALL_STATE(2416)] = 67082, - [SMALL_STATE(2417)] = 67090, - [SMALL_STATE(2418)] = 67098, - [SMALL_STATE(2419)] = 67106, - [SMALL_STATE(2420)] = 67114, - [SMALL_STATE(2421)] = 67122, - [SMALL_STATE(2422)] = 67130, - [SMALL_STATE(2423)] = 67138, - [SMALL_STATE(2424)] = 67146, - [SMALL_STATE(2425)] = 67154, - [SMALL_STATE(2426)] = 67162, - [SMALL_STATE(2427)] = 67170, - [SMALL_STATE(2428)] = 67178, - [SMALL_STATE(2429)] = 67186, - [SMALL_STATE(2430)] = 67194, - [SMALL_STATE(2431)] = 67202, - [SMALL_STATE(2432)] = 67210, - [SMALL_STATE(2433)] = 67218, - [SMALL_STATE(2434)] = 67226, - [SMALL_STATE(2435)] = 67234, - [SMALL_STATE(2436)] = 67242, - [SMALL_STATE(2437)] = 67250, - [SMALL_STATE(2438)] = 67258, - [SMALL_STATE(2439)] = 67266, - [SMALL_STATE(2440)] = 67274, - [SMALL_STATE(2441)] = 67282, - [SMALL_STATE(2442)] = 67290, - [SMALL_STATE(2443)] = 67298, - [SMALL_STATE(2444)] = 67306, - [SMALL_STATE(2445)] = 67314, - [SMALL_STATE(2446)] = 67322, - [SMALL_STATE(2447)] = 67330, - [SMALL_STATE(2448)] = 67338, - [SMALL_STATE(2449)] = 67346, - [SMALL_STATE(2450)] = 67354, - [SMALL_STATE(2451)] = 67362, - [SMALL_STATE(2452)] = 67370, - [SMALL_STATE(2453)] = 67378, - [SMALL_STATE(2454)] = 67386, - [SMALL_STATE(2455)] = 67394, - [SMALL_STATE(2456)] = 67402, - [SMALL_STATE(2457)] = 67410, - [SMALL_STATE(2458)] = 67418, - [SMALL_STATE(2459)] = 67426, - [SMALL_STATE(2460)] = 67434, - [SMALL_STATE(2461)] = 67442, - [SMALL_STATE(2462)] = 67450, - [SMALL_STATE(2463)] = 67458, - [SMALL_STATE(2464)] = 67466, - [SMALL_STATE(2465)] = 67474, - [SMALL_STATE(2466)] = 67482, - [SMALL_STATE(2467)] = 67490, - [SMALL_STATE(2468)] = 67498, - [SMALL_STATE(2469)] = 67506, - [SMALL_STATE(2470)] = 67514, - [SMALL_STATE(2471)] = 67522, - [SMALL_STATE(2472)] = 67530, - [SMALL_STATE(2473)] = 67538, - [SMALL_STATE(2474)] = 67546, - [SMALL_STATE(2475)] = 67554, - [SMALL_STATE(2476)] = 67562, - [SMALL_STATE(2477)] = 67570, - [SMALL_STATE(2478)] = 67578, - [SMALL_STATE(2479)] = 67586, - [SMALL_STATE(2480)] = 67594, - [SMALL_STATE(2481)] = 67602, - [SMALL_STATE(2482)] = 67610, - [SMALL_STATE(2483)] = 67618, - [SMALL_STATE(2484)] = 67626, - [SMALL_STATE(2485)] = 67634, - [SMALL_STATE(2486)] = 67642, - [SMALL_STATE(2487)] = 67650, - [SMALL_STATE(2488)] = 67658, - [SMALL_STATE(2489)] = 67666, - [SMALL_STATE(2490)] = 67674, - [SMALL_STATE(2491)] = 67682, - [SMALL_STATE(2492)] = 67690, - [SMALL_STATE(2493)] = 67698, - [SMALL_STATE(2494)] = 67706, - [SMALL_STATE(2495)] = 67714, - [SMALL_STATE(2496)] = 67722, - [SMALL_STATE(2497)] = 67730, - [SMALL_STATE(2498)] = 67738, - [SMALL_STATE(2499)] = 67746, - [SMALL_STATE(2500)] = 67754, - [SMALL_STATE(2501)] = 67762, - [SMALL_STATE(2502)] = 67770, - [SMALL_STATE(2503)] = 67778, - [SMALL_STATE(2504)] = 67786, - [SMALL_STATE(2505)] = 67794, - [SMALL_STATE(2506)] = 67802, - [SMALL_STATE(2507)] = 67810, - [SMALL_STATE(2508)] = 67818, - [SMALL_STATE(2509)] = 67826, - [SMALL_STATE(2510)] = 67834, - [SMALL_STATE(2511)] = 67842, - [SMALL_STATE(2512)] = 67850, - [SMALL_STATE(2513)] = 67858, - [SMALL_STATE(2514)] = 67866, - [SMALL_STATE(2515)] = 67874, - [SMALL_STATE(2516)] = 67882, - [SMALL_STATE(2517)] = 67890, - [SMALL_STATE(2518)] = 67898, - [SMALL_STATE(2519)] = 67906, - [SMALL_STATE(2520)] = 67914, - [SMALL_STATE(2521)] = 67922, - [SMALL_STATE(2522)] = 67930, - [SMALL_STATE(2523)] = 67938, - [SMALL_STATE(2524)] = 67946, - [SMALL_STATE(2525)] = 67954, - [SMALL_STATE(2526)] = 67962, - [SMALL_STATE(2527)] = 67970, - [SMALL_STATE(2528)] = 67978, - [SMALL_STATE(2529)] = 67986, - [SMALL_STATE(2530)] = 67994, - [SMALL_STATE(2531)] = 68002, - [SMALL_STATE(2532)] = 68010, - [SMALL_STATE(2533)] = 68018, - [SMALL_STATE(2534)] = 68026, - [SMALL_STATE(2535)] = 68034, - [SMALL_STATE(2536)] = 68042, - [SMALL_STATE(2537)] = 68050, - [SMALL_STATE(2538)] = 68058, - [SMALL_STATE(2539)] = 68066, - [SMALL_STATE(2540)] = 68074, - [SMALL_STATE(2541)] = 68082, - [SMALL_STATE(2542)] = 68090, - [SMALL_STATE(2543)] = 68098, - [SMALL_STATE(2544)] = 68106, - [SMALL_STATE(2545)] = 68114, - [SMALL_STATE(2546)] = 68122, - [SMALL_STATE(2547)] = 68130, - [SMALL_STATE(2548)] = 68138, - [SMALL_STATE(2549)] = 68146, - [SMALL_STATE(2550)] = 68154, - [SMALL_STATE(2551)] = 68162, - [SMALL_STATE(2552)] = 68170, - [SMALL_STATE(2553)] = 68178, - [SMALL_STATE(2554)] = 68186, - [SMALL_STATE(2555)] = 68194, - [SMALL_STATE(2556)] = 68202, - [SMALL_STATE(2557)] = 68210, - [SMALL_STATE(2558)] = 68218, - [SMALL_STATE(2559)] = 68226, - [SMALL_STATE(2560)] = 68234, - [SMALL_STATE(2561)] = 68242, - [SMALL_STATE(2562)] = 68250, - [SMALL_STATE(2563)] = 68258, - [SMALL_STATE(2564)] = 68266, - [SMALL_STATE(2565)] = 68274, - [SMALL_STATE(2566)] = 68282, + [SMALL_STATE(655)] = 0, + [SMALL_STATE(656)] = 129, + [SMALL_STATE(657)] = 258, + [SMALL_STATE(658)] = 387, + [SMALL_STATE(659)] = 516, + [SMALL_STATE(660)] = 645, + [SMALL_STATE(661)] = 774, + [SMALL_STATE(662)] = 903, + [SMALL_STATE(663)] = 1032, + [SMALL_STATE(664)] = 1161, + [SMALL_STATE(665)] = 1290, + [SMALL_STATE(666)] = 1419, + [SMALL_STATE(667)] = 1548, + [SMALL_STATE(668)] = 1677, + [SMALL_STATE(669)] = 1806, + [SMALL_STATE(670)] = 1935, + [SMALL_STATE(671)] = 2064, + [SMALL_STATE(672)] = 2193, + [SMALL_STATE(673)] = 2322, + [SMALL_STATE(674)] = 2451, + [SMALL_STATE(675)] = 2580, + [SMALL_STATE(676)] = 2709, + [SMALL_STATE(677)] = 2838, + [SMALL_STATE(678)] = 2967, + [SMALL_STATE(679)] = 3096, + [SMALL_STATE(680)] = 3225, + [SMALL_STATE(681)] = 3354, + [SMALL_STATE(682)] = 3483, + [SMALL_STATE(683)] = 3612, + [SMALL_STATE(684)] = 3741, + [SMALL_STATE(685)] = 3870, + [SMALL_STATE(686)] = 3999, + [SMALL_STATE(687)] = 4128, + [SMALL_STATE(688)] = 4257, + [SMALL_STATE(689)] = 4386, + [SMALL_STATE(690)] = 4515, + [SMALL_STATE(691)] = 4644, + [SMALL_STATE(692)] = 4773, + [SMALL_STATE(693)] = 4902, + [SMALL_STATE(694)] = 5031, + [SMALL_STATE(695)] = 5160, + [SMALL_STATE(696)] = 5289, + [SMALL_STATE(697)] = 5418, + [SMALL_STATE(698)] = 5547, + [SMALL_STATE(699)] = 5676, + [SMALL_STATE(700)] = 5805, + [SMALL_STATE(701)] = 5934, + [SMALL_STATE(702)] = 6063, + [SMALL_STATE(703)] = 6192, + [SMALL_STATE(704)] = 6321, + [SMALL_STATE(705)] = 6450, + [SMALL_STATE(706)] = 6579, + [SMALL_STATE(707)] = 6708, + [SMALL_STATE(708)] = 6837, + [SMALL_STATE(709)] = 6966, + [SMALL_STATE(710)] = 7095, + [SMALL_STATE(711)] = 7224, + [SMALL_STATE(712)] = 7353, + [SMALL_STATE(713)] = 7482, + [SMALL_STATE(714)] = 7611, + [SMALL_STATE(715)] = 7740, + [SMALL_STATE(716)] = 7811, + [SMALL_STATE(717)] = 7940, + [SMALL_STATE(718)] = 8069, + [SMALL_STATE(719)] = 8198, + [SMALL_STATE(720)] = 8327, + [SMALL_STATE(721)] = 8456, + [SMALL_STATE(722)] = 8585, + [SMALL_STATE(723)] = 8714, + [SMALL_STATE(724)] = 8843, + [SMALL_STATE(725)] = 8972, + [SMALL_STATE(726)] = 9101, + [SMALL_STATE(727)] = 9230, + [SMALL_STATE(728)] = 9359, + [SMALL_STATE(729)] = 9488, + [SMALL_STATE(730)] = 9617, + [SMALL_STATE(731)] = 9746, + [SMALL_STATE(732)] = 9875, + [SMALL_STATE(733)] = 10004, + [SMALL_STATE(734)] = 10135, + [SMALL_STATE(735)] = 10264, + [SMALL_STATE(736)] = 10393, + [SMALL_STATE(737)] = 10522, + [SMALL_STATE(738)] = 10651, + [SMALL_STATE(739)] = 10780, + [SMALL_STATE(740)] = 10909, + [SMALL_STATE(741)] = 11038, + [SMALL_STATE(742)] = 11167, + [SMALL_STATE(743)] = 11296, + [SMALL_STATE(744)] = 11425, + [SMALL_STATE(745)] = 11554, + [SMALL_STATE(746)] = 11683, + [SMALL_STATE(747)] = 11812, + [SMALL_STATE(748)] = 11941, + [SMALL_STATE(749)] = 12070, + [SMALL_STATE(750)] = 12199, + [SMALL_STATE(751)] = 12328, + [SMALL_STATE(752)] = 12457, + [SMALL_STATE(753)] = 12586, + [SMALL_STATE(754)] = 12715, + [SMALL_STATE(755)] = 12844, + [SMALL_STATE(756)] = 12973, + [SMALL_STATE(757)] = 13102, + [SMALL_STATE(758)] = 13231, + [SMALL_STATE(759)] = 13360, + [SMALL_STATE(760)] = 13489, + [SMALL_STATE(761)] = 13618, + [SMALL_STATE(762)] = 13747, + [SMALL_STATE(763)] = 13876, + [SMALL_STATE(764)] = 14005, + [SMALL_STATE(765)] = 14134, + [SMALL_STATE(766)] = 14200, + [SMALL_STATE(767)] = 14266, + [SMALL_STATE(768)] = 14332, + [SMALL_STATE(769)] = 14398, + [SMALL_STATE(770)] = 14460, + [SMALL_STATE(771)] = 14530, + [SMALL_STATE(772)] = 14597, + [SMALL_STATE(773)] = 14664, + [SMALL_STATE(774)] = 14728, + [SMALL_STATE(775)] = 14788, + [SMALL_STATE(776)] = 14844, + [SMALL_STATE(777)] = 14904, + [SMALL_STATE(778)] = 14968, + [SMALL_STATE(779)] = 15024, + [SMALL_STATE(780)] = 15080, + [SMALL_STATE(781)] = 15144, + [SMALL_STATE(782)] = 15208, + [SMALL_STATE(783)] = 15264, + [SMALL_STATE(784)] = 15320, + [SMALL_STATE(785)] = 15380, + [SMALL_STATE(786)] = 15442, + [SMALL_STATE(787)] = 15502, + [SMALL_STATE(788)] = 15559, + [SMALL_STATE(789)] = 15618, + [SMALL_STATE(790)] = 15675, + [SMALL_STATE(791)] = 15732, + [SMALL_STATE(792)] = 15787, + [SMALL_STATE(793)] = 15846, + [SMALL_STATE(794)] = 15903, + [SMALL_STATE(795)] = 15962, + [SMALL_STATE(796)] = 16016, + [SMALL_STATE(797)] = 16070, + [SMALL_STATE(798)] = 16124, + [SMALL_STATE(799)] = 16178, + [SMALL_STATE(800)] = 16232, + [SMALL_STATE(801)] = 16290, + [SMALL_STATE(802)] = 16344, + [SMALL_STATE(803)] = 16398, + [SMALL_STATE(804)] = 16454, + [SMALL_STATE(805)] = 16512, + [SMALL_STATE(806)] = 16566, + [SMALL_STATE(807)] = 16620, + [SMALL_STATE(808)] = 16678, + [SMALL_STATE(809)] = 16732, + [SMALL_STATE(810)] = 16786, + [SMALL_STATE(811)] = 16840, + [SMALL_STATE(812)] = 16894, + [SMALL_STATE(813)] = 16948, + [SMALL_STATE(814)] = 17002, + [SMALL_STATE(815)] = 17056, + [SMALL_STATE(816)] = 17110, + [SMALL_STATE(817)] = 17164, + [SMALL_STATE(818)] = 17218, + [SMALL_STATE(819)] = 17272, + [SMALL_STATE(820)] = 17326, + [SMALL_STATE(821)] = 17380, + [SMALL_STATE(822)] = 17434, + [SMALL_STATE(823)] = 17488, + [SMALL_STATE(824)] = 17542, + [SMALL_STATE(825)] = 17596, + [SMALL_STATE(826)] = 17650, + [SMALL_STATE(827)] = 17704, + [SMALL_STATE(828)] = 17758, + [SMALL_STATE(829)] = 17812, + [SMALL_STATE(830)] = 17866, + [SMALL_STATE(831)] = 17920, + [SMALL_STATE(832)] = 17974, + [SMALL_STATE(833)] = 18028, + [SMALL_STATE(834)] = 18082, + [SMALL_STATE(835)] = 18136, + [SMALL_STATE(836)] = 18190, + [SMALL_STATE(837)] = 18244, + [SMALL_STATE(838)] = 18298, + [SMALL_STATE(839)] = 18354, + [SMALL_STATE(840)] = 18410, + [SMALL_STATE(841)] = 18464, + [SMALL_STATE(842)] = 18518, + [SMALL_STATE(843)] = 18572, + [SMALL_STATE(844)] = 18626, + [SMALL_STATE(845)] = 18680, + [SMALL_STATE(846)] = 18736, + [SMALL_STATE(847)] = 18790, + [SMALL_STATE(848)] = 18844, + [SMALL_STATE(849)] = 18898, + [SMALL_STATE(850)] = 18954, + [SMALL_STATE(851)] = 19008, + [SMALL_STATE(852)] = 19062, + [SMALL_STATE(853)] = 19116, + [SMALL_STATE(854)] = 19170, + [SMALL_STATE(855)] = 19226, + [SMALL_STATE(856)] = 19280, + [SMALL_STATE(857)] = 19334, + [SMALL_STATE(858)] = 19388, + [SMALL_STATE(859)] = 19442, + [SMALL_STATE(860)] = 19496, + [SMALL_STATE(861)] = 19552, + [SMALL_STATE(862)] = 19606, + [SMALL_STATE(863)] = 19660, + [SMALL_STATE(864)] = 19714, + [SMALL_STATE(865)] = 19768, + [SMALL_STATE(866)] = 19822, + [SMALL_STATE(867)] = 19876, + [SMALL_STATE(868)] = 19930, + [SMALL_STATE(869)] = 19984, + [SMALL_STATE(870)] = 20038, + [SMALL_STATE(871)] = 20092, + [SMALL_STATE(872)] = 20146, + [SMALL_STATE(873)] = 20200, + [SMALL_STATE(874)] = 20254, + [SMALL_STATE(875)] = 20308, + [SMALL_STATE(876)] = 20362, + [SMALL_STATE(877)] = 20416, + [SMALL_STATE(878)] = 20470, + [SMALL_STATE(879)] = 20524, + [SMALL_STATE(880)] = 20578, + [SMALL_STATE(881)] = 20632, + [SMALL_STATE(882)] = 20686, + [SMALL_STATE(883)] = 20740, + [SMALL_STATE(884)] = 20794, + [SMALL_STATE(885)] = 20848, + [SMALL_STATE(886)] = 20902, + [SMALL_STATE(887)] = 20956, + [SMALL_STATE(888)] = 21010, + [SMALL_STATE(889)] = 21064, + [SMALL_STATE(890)] = 21118, + [SMALL_STATE(891)] = 21172, + [SMALL_STATE(892)] = 21226, + [SMALL_STATE(893)] = 21280, + [SMALL_STATE(894)] = 21334, + [SMALL_STATE(895)] = 21388, + [SMALL_STATE(896)] = 21442, + [SMALL_STATE(897)] = 21496, + [SMALL_STATE(898)] = 21550, + [SMALL_STATE(899)] = 21604, + [SMALL_STATE(900)] = 21658, + [SMALL_STATE(901)] = 21712, + [SMALL_STATE(902)] = 21766, + [SMALL_STATE(903)] = 21820, + [SMALL_STATE(904)] = 21874, + [SMALL_STATE(905)] = 21928, + [SMALL_STATE(906)] = 21982, + [SMALL_STATE(907)] = 22036, + [SMALL_STATE(908)] = 22090, + [SMALL_STATE(909)] = 22144, + [SMALL_STATE(910)] = 22198, + [SMALL_STATE(911)] = 22252, + [SMALL_STATE(912)] = 22306, + [SMALL_STATE(913)] = 22360, + [SMALL_STATE(914)] = 22414, + [SMALL_STATE(915)] = 22468, + [SMALL_STATE(916)] = 22522, + [SMALL_STATE(917)] = 22576, + [SMALL_STATE(918)] = 22630, + [SMALL_STATE(919)] = 22684, + [SMALL_STATE(920)] = 22738, + [SMALL_STATE(921)] = 22792, + [SMALL_STATE(922)] = 22846, + [SMALL_STATE(923)] = 22900, + [SMALL_STATE(924)] = 22954, + [SMALL_STATE(925)] = 23008, + [SMALL_STATE(926)] = 23062, + [SMALL_STATE(927)] = 23116, + [SMALL_STATE(928)] = 23170, + [SMALL_STATE(929)] = 23224, + [SMALL_STATE(930)] = 23278, + [SMALL_STATE(931)] = 23332, + [SMALL_STATE(932)] = 23386, + [SMALL_STATE(933)] = 23440, + [SMALL_STATE(934)] = 23494, + [SMALL_STATE(935)] = 23548, + [SMALL_STATE(936)] = 23602, + [SMALL_STATE(937)] = 23656, + [SMALL_STATE(938)] = 23710, + [SMALL_STATE(939)] = 23764, + [SMALL_STATE(940)] = 23818, + [SMALL_STATE(941)] = 23872, + [SMALL_STATE(942)] = 23926, + [SMALL_STATE(943)] = 23980, + [SMALL_STATE(944)] = 24034, + [SMALL_STATE(945)] = 24088, + [SMALL_STATE(946)] = 24142, + [SMALL_STATE(947)] = 24196, + [SMALL_STATE(948)] = 24250, + [SMALL_STATE(949)] = 24304, + [SMALL_STATE(950)] = 24358, + [SMALL_STATE(951)] = 24412, + [SMALL_STATE(952)] = 24466, + [SMALL_STATE(953)] = 24520, + [SMALL_STATE(954)] = 24574, + [SMALL_STATE(955)] = 24628, + [SMALL_STATE(956)] = 24684, + [SMALL_STATE(957)] = 24738, + [SMALL_STATE(958)] = 24792, + [SMALL_STATE(959)] = 24846, + [SMALL_STATE(960)] = 24900, + [SMALL_STATE(961)] = 24956, + [SMALL_STATE(962)] = 25010, + [SMALL_STATE(963)] = 25064, + [SMALL_STATE(964)] = 25118, + [SMALL_STATE(965)] = 25172, + [SMALL_STATE(966)] = 25226, + [SMALL_STATE(967)] = 25280, + [SMALL_STATE(968)] = 25336, + [SMALL_STATE(969)] = 25390, + [SMALL_STATE(970)] = 25444, + [SMALL_STATE(971)] = 25498, + [SMALL_STATE(972)] = 25552, + [SMALL_STATE(973)] = 25606, + [SMALL_STATE(974)] = 25662, + [SMALL_STATE(975)] = 25716, + [SMALL_STATE(976)] = 25770, + [SMALL_STATE(977)] = 25824, + [SMALL_STATE(978)] = 25878, + [SMALL_STATE(979)] = 25932, + [SMALL_STATE(980)] = 25986, + [SMALL_STATE(981)] = 26040, + [SMALL_STATE(982)] = 26094, + [SMALL_STATE(983)] = 26150, + [SMALL_STATE(984)] = 26204, + [SMALL_STATE(985)] = 26258, + [SMALL_STATE(986)] = 26312, + [SMALL_STATE(987)] = 26366, + [SMALL_STATE(988)] = 26420, + [SMALL_STATE(989)] = 26474, + [SMALL_STATE(990)] = 26528, + [SMALL_STATE(991)] = 26582, + [SMALL_STATE(992)] = 26636, + [SMALL_STATE(993)] = 26690, + [SMALL_STATE(994)] = 26746, + [SMALL_STATE(995)] = 26800, + [SMALL_STATE(996)] = 26854, + [SMALL_STATE(997)] = 26908, + [SMALL_STATE(998)] = 26962, + [SMALL_STATE(999)] = 27016, + [SMALL_STATE(1000)] = 27070, + [SMALL_STATE(1001)] = 27126, + [SMALL_STATE(1002)] = 27180, + [SMALL_STATE(1003)] = 27234, + [SMALL_STATE(1004)] = 27288, + [SMALL_STATE(1005)] = 27342, + [SMALL_STATE(1006)] = 27396, + [SMALL_STATE(1007)] = 27450, + [SMALL_STATE(1008)] = 27504, + [SMALL_STATE(1009)] = 27558, + [SMALL_STATE(1010)] = 27612, + [SMALL_STATE(1011)] = 27666, + [SMALL_STATE(1012)] = 27720, + [SMALL_STATE(1013)] = 27776, + [SMALL_STATE(1014)] = 27830, + [SMALL_STATE(1015)] = 27884, + [SMALL_STATE(1016)] = 27938, + [SMALL_STATE(1017)] = 27992, + [SMALL_STATE(1018)] = 28046, + [SMALL_STATE(1019)] = 28100, + [SMALL_STATE(1020)] = 28154, + [SMALL_STATE(1021)] = 28208, + [SMALL_STATE(1022)] = 28262, + [SMALL_STATE(1023)] = 28316, + [SMALL_STATE(1024)] = 28370, + [SMALL_STATE(1025)] = 28424, + [SMALL_STATE(1026)] = 28478, + [SMALL_STATE(1027)] = 28532, + [SMALL_STATE(1028)] = 28586, + [SMALL_STATE(1029)] = 28640, + [SMALL_STATE(1030)] = 28694, + [SMALL_STATE(1031)] = 28748, + [SMALL_STATE(1032)] = 28802, + [SMALL_STATE(1033)] = 28856, + [SMALL_STATE(1034)] = 28910, + [SMALL_STATE(1035)] = 28964, + [SMALL_STATE(1036)] = 29018, + [SMALL_STATE(1037)] = 29072, + [SMALL_STATE(1038)] = 29126, + [SMALL_STATE(1039)] = 29180, + [SMALL_STATE(1040)] = 29234, + [SMALL_STATE(1041)] = 29288, + [SMALL_STATE(1042)] = 29342, + [SMALL_STATE(1043)] = 29396, + [SMALL_STATE(1044)] = 29450, + [SMALL_STATE(1045)] = 29504, + [SMALL_STATE(1046)] = 29558, + [SMALL_STATE(1047)] = 29612, + [SMALL_STATE(1048)] = 29666, + [SMALL_STATE(1049)] = 29720, + [SMALL_STATE(1050)] = 29774, + [SMALL_STATE(1051)] = 29828, + [SMALL_STATE(1052)] = 29882, + [SMALL_STATE(1053)] = 29936, + [SMALL_STATE(1054)] = 29989, + [SMALL_STATE(1055)] = 30042, + [SMALL_STATE(1056)] = 30095, + [SMALL_STATE(1057)] = 30150, + [SMALL_STATE(1058)] = 30203, + [SMALL_STATE(1059)] = 30258, + [SMALL_STATE(1060)] = 30311, + [SMALL_STATE(1061)] = 30364, + [SMALL_STATE(1062)] = 30417, + [SMALL_STATE(1063)] = 30470, + [SMALL_STATE(1064)] = 30523, + [SMALL_STATE(1065)] = 30576, + [SMALL_STATE(1066)] = 30629, + [SMALL_STATE(1067)] = 30682, + [SMALL_STATE(1068)] = 30735, + [SMALL_STATE(1069)] = 30788, + [SMALL_STATE(1070)] = 30841, + [SMALL_STATE(1071)] = 30896, + [SMALL_STATE(1072)] = 30949, + [SMALL_STATE(1073)] = 31004, + [SMALL_STATE(1074)] = 31057, + [SMALL_STATE(1075)] = 31110, + [SMALL_STATE(1076)] = 31163, + [SMALL_STATE(1077)] = 31216, + [SMALL_STATE(1078)] = 31269, + [SMALL_STATE(1079)] = 31322, + [SMALL_STATE(1080)] = 31375, + [SMALL_STATE(1081)] = 31428, + [SMALL_STATE(1082)] = 31481, + [SMALL_STATE(1083)] = 31534, + [SMALL_STATE(1084)] = 31587, + [SMALL_STATE(1085)] = 31640, + [SMALL_STATE(1086)] = 31693, + [SMALL_STATE(1087)] = 31746, + [SMALL_STATE(1088)] = 31799, + [SMALL_STATE(1089)] = 31852, + [SMALL_STATE(1090)] = 31905, + [SMALL_STATE(1091)] = 31958, + [SMALL_STATE(1092)] = 32011, + [SMALL_STATE(1093)] = 32064, + [SMALL_STATE(1094)] = 32117, + [SMALL_STATE(1095)] = 32170, + [SMALL_STATE(1096)] = 32223, + [SMALL_STATE(1097)] = 32276, + [SMALL_STATE(1098)] = 32329, + [SMALL_STATE(1099)] = 32382, + [SMALL_STATE(1100)] = 32435, + [SMALL_STATE(1101)] = 32488, + [SMALL_STATE(1102)] = 32541, + [SMALL_STATE(1103)] = 32594, + [SMALL_STATE(1104)] = 32647, + [SMALL_STATE(1105)] = 32736, + [SMALL_STATE(1106)] = 32789, + [SMALL_STATE(1107)] = 32842, + [SMALL_STATE(1108)] = 32895, + [SMALL_STATE(1109)] = 32948, + [SMALL_STATE(1110)] = 33001, + [SMALL_STATE(1111)] = 33054, + [SMALL_STATE(1112)] = 33107, + [SMALL_STATE(1113)] = 33196, + [SMALL_STATE(1114)] = 33249, + [SMALL_STATE(1115)] = 33302, + [SMALL_STATE(1116)] = 33355, + [SMALL_STATE(1117)] = 33408, + [SMALL_STATE(1118)] = 33461, + [SMALL_STATE(1119)] = 33514, + [SMALL_STATE(1120)] = 33567, + [SMALL_STATE(1121)] = 33620, + [SMALL_STATE(1122)] = 33673, + [SMALL_STATE(1123)] = 33726, + [SMALL_STATE(1124)] = 33779, + [SMALL_STATE(1125)] = 33832, + [SMALL_STATE(1126)] = 33885, + [SMALL_STATE(1127)] = 33938, + [SMALL_STATE(1128)] = 33991, + [SMALL_STATE(1129)] = 34044, + [SMALL_STATE(1130)] = 34097, + [SMALL_STATE(1131)] = 34150, + [SMALL_STATE(1132)] = 34203, + [SMALL_STATE(1133)] = 34256, + [SMALL_STATE(1134)] = 34309, + [SMALL_STATE(1135)] = 34362, + [SMALL_STATE(1136)] = 34415, + [SMALL_STATE(1137)] = 34468, + [SMALL_STATE(1138)] = 34521, + [SMALL_STATE(1139)] = 34578, + [SMALL_STATE(1140)] = 34631, + [SMALL_STATE(1141)] = 34684, + [SMALL_STATE(1142)] = 34737, + [SMALL_STATE(1143)] = 34790, + [SMALL_STATE(1144)] = 34843, + [SMALL_STATE(1145)] = 34896, + [SMALL_STATE(1146)] = 34949, + [SMALL_STATE(1147)] = 35002, + [SMALL_STATE(1148)] = 35055, + [SMALL_STATE(1149)] = 35108, + [SMALL_STATE(1150)] = 35161, + [SMALL_STATE(1151)] = 35214, + [SMALL_STATE(1152)] = 35267, + [SMALL_STATE(1153)] = 35320, + [SMALL_STATE(1154)] = 35372, + [SMALL_STATE(1155)] = 35452, + [SMALL_STATE(1156)] = 35532, + [SMALL_STATE(1157)] = 35592, + [SMALL_STATE(1158)] = 35668, + [SMALL_STATE(1159)] = 35728, + [SMALL_STATE(1160)] = 35788, + [SMALL_STATE(1161)] = 35866, + [SMALL_STATE(1162)] = 35946, + [SMALL_STATE(1163)] = 36032, + [SMALL_STATE(1164)] = 36112, + [SMALL_STATE(1165)] = 36198, + [SMALL_STATE(1166)] = 36268, + [SMALL_STATE(1167)] = 36332, + [SMALL_STATE(1168)] = 36392, + [SMALL_STATE(1169)] = 36444, + [SMALL_STATE(1170)] = 36506, + [SMALL_STATE(1171)] = 36586, + [SMALL_STATE(1172)] = 36654, + [SMALL_STATE(1173)] = 36714, + [SMALL_STATE(1174)] = 36786, + [SMALL_STATE(1175)] = 36866, + [SMALL_STATE(1176)] = 36932, + [SMALL_STATE(1177)] = 36983, + [SMALL_STATE(1178)] = 37070, + [SMALL_STATE(1179)] = 37155, + [SMALL_STATE(1180)] = 37242, + [SMALL_STATE(1181)] = 37293, + [SMALL_STATE(1182)] = 37378, + [SMALL_STATE(1183)] = 37465, + [SMALL_STATE(1184)] = 37552, + [SMALL_STATE(1185)] = 37609, + [SMALL_STATE(1186)] = 37688, + [SMALL_STATE(1187)] = 37764, + [SMALL_STATE(1188)] = 37818, + [SMALL_STATE(1189)] = 37894, + [SMALL_STATE(1190)] = 37970, + [SMALL_STATE(1191)] = 38046, + [SMALL_STATE(1192)] = 38102, + [SMALL_STATE(1193)] = 38151, + [SMALL_STATE(1194)] = 38240, + [SMALL_STATE(1195)] = 38289, + [SMALL_STATE(1196)] = 38338, + [SMALL_STATE(1197)] = 38387, + [SMALL_STATE(1198)] = 38460, + [SMALL_STATE(1199)] = 38513, + [SMALL_STATE(1200)] = 38564, + [SMALL_STATE(1201)] = 38613, + [SMALL_STATE(1202)] = 38664, + [SMALL_STATE(1203)] = 38713, + [SMALL_STATE(1204)] = 38762, + [SMALL_STATE(1205)] = 38851, + [SMALL_STATE(1206)] = 38900, + [SMALL_STATE(1207)] = 38953, + [SMALL_STATE(1208)] = 39002, + [SMALL_STATE(1209)] = 39088, + [SMALL_STATE(1210)] = 39138, + [SMALL_STATE(1211)] = 39188, + [SMALL_STATE(1212)] = 39266, + [SMALL_STATE(1213)] = 39344, + [SMALL_STATE(1214)] = 39430, + [SMALL_STATE(1215)] = 39480, + [SMALL_STATE(1216)] = 39530, + [SMALL_STATE(1217)] = 39613, + [SMALL_STATE(1218)] = 39672, + [SMALL_STATE(1219)] = 39753, + [SMALL_STATE(1220)] = 39836, + [SMALL_STATE(1221)] = 39919, + [SMALL_STATE(1222)] = 39976, + [SMALL_STATE(1223)] = 40059, + [SMALL_STATE(1224)] = 40142, + [SMALL_STATE(1225)] = 40223, + [SMALL_STATE(1226)] = 40306, + [SMALL_STATE(1227)] = 40389, + [SMALL_STATE(1228)] = 40472, + [SMALL_STATE(1229)] = 40555, + [SMALL_STATE(1230)] = 40636, + [SMALL_STATE(1231)] = 40709, + [SMALL_STATE(1232)] = 40792, + [SMALL_STATE(1233)] = 40847, + [SMALL_STATE(1234)] = 40922, + [SMALL_STATE(1235)] = 41005, + [SMALL_STATE(1236)] = 41088, + [SMALL_STATE(1237)] = 41171, + [SMALL_STATE(1238)] = 41246, + [SMALL_STATE(1239)] = 41321, + [SMALL_STATE(1240)] = 41404, + [SMALL_STATE(1241)] = 41459, + [SMALL_STATE(1242)] = 41534, + [SMALL_STATE(1243)] = 41615, + [SMALL_STATE(1244)] = 41696, + [SMALL_STATE(1245)] = 41751, + [SMALL_STATE(1246)] = 41806, + [SMALL_STATE(1247)] = 41889, + [SMALL_STATE(1248)] = 41956, + [SMALL_STATE(1249)] = 42037, + [SMALL_STATE(1250)] = 42118, + [SMALL_STATE(1251)] = 42201, + [SMALL_STATE(1252)] = 42284, + [SMALL_STATE(1253)] = 42367, + [SMALL_STATE(1254)] = 42450, + [SMALL_STATE(1255)] = 42533, + [SMALL_STATE(1256)] = 42616, + [SMALL_STATE(1257)] = 42699, + [SMALL_STATE(1258)] = 42782, + [SMALL_STATE(1259)] = 42865, + [SMALL_STATE(1260)] = 42930, + [SMALL_STATE(1261)] = 43001, + [SMALL_STATE(1262)] = 43064, + [SMALL_STATE(1263)] = 43147, + [SMALL_STATE(1264)] = 43230, + [SMALL_STATE(1265)] = 43313, + [SMALL_STATE(1266)] = 43374, + [SMALL_STATE(1267)] = 43457, + [SMALL_STATE(1268)] = 43540, + [SMALL_STATE(1269)] = 43611, + [SMALL_STATE(1270)] = 43692, + [SMALL_STATE(1271)] = 43767, + [SMALL_STATE(1272)] = 43850, + [SMALL_STATE(1273)] = 43933, + [SMALL_STATE(1274)] = 44016, + [SMALL_STATE(1275)] = 44099, + [SMALL_STATE(1276)] = 44180, + [SMALL_STATE(1277)] = 44263, + [SMALL_STATE(1278)] = 44346, + [SMALL_STATE(1279)] = 44427, + [SMALL_STATE(1280)] = 44510, + [SMALL_STATE(1281)] = 44593, + [SMALL_STATE(1282)] = 44674, + [SMALL_STATE(1283)] = 44757, + [SMALL_STATE(1284)] = 44832, + [SMALL_STATE(1285)] = 44915, + [SMALL_STATE(1286)] = 44998, + [SMALL_STATE(1287)] = 45081, + [SMALL_STATE(1288)] = 45164, + [SMALL_STATE(1289)] = 45247, + [SMALL_STATE(1290)] = 45330, + [SMALL_STATE(1291)] = 45411, + [SMALL_STATE(1292)] = 45494, + [SMALL_STATE(1293)] = 45574, + [SMALL_STATE(1294)] = 45654, + [SMALL_STATE(1295)] = 45734, + [SMALL_STATE(1296)] = 45814, + [SMALL_STATE(1297)] = 45894, + [SMALL_STATE(1298)] = 45974, + [SMALL_STATE(1299)] = 46054, + [SMALL_STATE(1300)] = 46134, + [SMALL_STATE(1301)] = 46214, + [SMALL_STATE(1302)] = 46294, + [SMALL_STATE(1303)] = 46374, + [SMALL_STATE(1304)] = 46454, + [SMALL_STATE(1305)] = 46534, + [SMALL_STATE(1306)] = 46614, + [SMALL_STATE(1307)] = 46694, + [SMALL_STATE(1308)] = 46774, + [SMALL_STATE(1309)] = 46854, + [SMALL_STATE(1310)] = 46934, + [SMALL_STATE(1311)] = 47014, + [SMALL_STATE(1312)] = 47094, + [SMALL_STATE(1313)] = 47174, + [SMALL_STATE(1314)] = 47254, + [SMALL_STATE(1315)] = 47334, + [SMALL_STATE(1316)] = 47414, + [SMALL_STATE(1317)] = 47494, + [SMALL_STATE(1318)] = 47574, + [SMALL_STATE(1319)] = 47654, + [SMALL_STATE(1320)] = 47734, + [SMALL_STATE(1321)] = 47802, + [SMALL_STATE(1322)] = 47882, + [SMALL_STATE(1323)] = 47962, + [SMALL_STATE(1324)] = 48030, + [SMALL_STATE(1325)] = 48110, + [SMALL_STATE(1326)] = 48175, + [SMALL_STATE(1327)] = 48240, + [SMALL_STATE(1328)] = 48305, + [SMALL_STATE(1329)] = 48370, + [SMALL_STATE(1330)] = 48435, + [SMALL_STATE(1331)] = 48475, + [SMALL_STATE(1332)] = 48515, + [SMALL_STATE(1333)] = 48555, + [SMALL_STATE(1334)] = 48607, + [SMALL_STATE(1335)] = 48659, + [SMALL_STATE(1336)] = 48689, + [SMALL_STATE(1337)] = 48719, + [SMALL_STATE(1338)] = 48759, + [SMALL_STATE(1339)] = 48801, + [SMALL_STATE(1340)] = 48830, + [SMALL_STATE(1341)] = 48859, + [SMALL_STATE(1342)] = 48888, + [SMALL_STATE(1343)] = 48917, + [SMALL_STATE(1344)] = 48954, + [SMALL_STATE(1345)] = 48983, + [SMALL_STATE(1346)] = 49012, + [SMALL_STATE(1347)] = 49041, + [SMALL_STATE(1348)] = 49070, + [SMALL_STATE(1349)] = 49107, + [SMALL_STATE(1350)] = 49139, + [SMALL_STATE(1351)] = 49193, + [SMALL_STATE(1352)] = 49219, + [SMALL_STATE(1353)] = 49245, + [SMALL_STATE(1354)] = 49299, + [SMALL_STATE(1355)] = 49325, + [SMALL_STATE(1356)] = 49357, + [SMALL_STATE(1357)] = 49389, + [SMALL_STATE(1358)] = 49414, + [SMALL_STATE(1359)] = 49437, + [SMALL_STATE(1360)] = 49483, + [SMALL_STATE(1361)] = 49527, + [SMALL_STATE(1362)] = 49557, + [SMALL_STATE(1363)] = 49601, + [SMALL_STATE(1364)] = 49623, + [SMALL_STATE(1365)] = 49647, + [SMALL_STATE(1366)] = 49671, + [SMALL_STATE(1367)] = 49695, + [SMALL_STATE(1368)] = 49719, + [SMALL_STATE(1369)] = 49743, + [SMALL_STATE(1370)] = 49765, + [SMALL_STATE(1371)] = 49787, + [SMALL_STATE(1372)] = 49809, + [SMALL_STATE(1373)] = 49833, + [SMALL_STATE(1374)] = 49857, + [SMALL_STATE(1375)] = 49880, + [SMALL_STATE(1376)] = 49903, + [SMALL_STATE(1377)] = 49930, + [SMALL_STATE(1378)] = 49953, + [SMALL_STATE(1379)] = 49976, + [SMALL_STATE(1380)] = 49997, + [SMALL_STATE(1381)] = 50020, + [SMALL_STATE(1382)] = 50041, + [SMALL_STATE(1383)] = 50066, + [SMALL_STATE(1384)] = 50087, + [SMALL_STATE(1385)] = 50110, + [SMALL_STATE(1386)] = 50135, + [SMALL_STATE(1387)] = 50160, + [SMALL_STATE(1388)] = 50183, + [SMALL_STATE(1389)] = 50206, + [SMALL_STATE(1390)] = 50231, + [SMALL_STATE(1391)] = 50276, + [SMALL_STATE(1392)] = 50301, + [SMALL_STATE(1393)] = 50326, + [SMALL_STATE(1394)] = 50347, + [SMALL_STATE(1395)] = 50368, + [SMALL_STATE(1396)] = 50388, + [SMALL_STATE(1397)] = 50408, + [SMALL_STATE(1398)] = 50428, + [SMALL_STATE(1399)] = 50448, + [SMALL_STATE(1400)] = 50468, + [SMALL_STATE(1401)] = 50490, + [SMALL_STATE(1402)] = 50510, + [SMALL_STATE(1403)] = 50530, + [SMALL_STATE(1404)] = 50550, + [SMALL_STATE(1405)] = 50572, + [SMALL_STATE(1406)] = 50592, + [SMALL_STATE(1407)] = 50612, + [SMALL_STATE(1408)] = 50632, + [SMALL_STATE(1409)] = 50652, + [SMALL_STATE(1410)] = 50672, + [SMALL_STATE(1411)] = 50692, + [SMALL_STATE(1412)] = 50712, + [SMALL_STATE(1413)] = 50732, + [SMALL_STATE(1414)] = 50752, + [SMALL_STATE(1415)] = 50772, + [SMALL_STATE(1416)] = 50792, + [SMALL_STATE(1417)] = 50812, + [SMALL_STATE(1418)] = 50832, + [SMALL_STATE(1419)] = 50852, + [SMALL_STATE(1420)] = 50874, + [SMALL_STATE(1421)] = 50894, + [SMALL_STATE(1422)] = 50914, + [SMALL_STATE(1423)] = 50934, + [SMALL_STATE(1424)] = 50958, + [SMALL_STATE(1425)] = 50978, + [SMALL_STATE(1426)] = 50998, + [SMALL_STATE(1427)] = 51021, + [SMALL_STATE(1428)] = 51044, + [SMALL_STATE(1429)] = 51067, + [SMALL_STATE(1430)] = 51090, + [SMALL_STATE(1431)] = 51115, + [SMALL_STATE(1432)] = 51140, + [SMALL_STATE(1433)] = 51175, + [SMALL_STATE(1434)] = 51200, + [SMALL_STATE(1435)] = 51225, + [SMALL_STATE(1436)] = 51250, + [SMALL_STATE(1437)] = 51273, + [SMALL_STATE(1438)] = 51298, + [SMALL_STATE(1439)] = 51323, + [SMALL_STATE(1440)] = 51346, + [SMALL_STATE(1441)] = 51367, + [SMALL_STATE(1442)] = 51390, + [SMALL_STATE(1443)] = 51413, + [SMALL_STATE(1444)] = 51434, + [SMALL_STATE(1445)] = 51457, + [SMALL_STATE(1446)] = 51478, + [SMALL_STATE(1447)] = 51501, + [SMALL_STATE(1448)] = 51526, + [SMALL_STATE(1449)] = 51549, + [SMALL_STATE(1450)] = 51572, + [SMALL_STATE(1451)] = 51592, + [SMALL_STATE(1452)] = 51612, + [SMALL_STATE(1453)] = 51632, + [SMALL_STATE(1454)] = 51652, + [SMALL_STATE(1455)] = 51672, + [SMALL_STATE(1456)] = 51692, + [SMALL_STATE(1457)] = 51724, + [SMALL_STATE(1458)] = 51756, + [SMALL_STATE(1459)] = 51776, + [SMALL_STATE(1460)] = 51796, + [SMALL_STATE(1461)] = 51816, + [SMALL_STATE(1462)] = 51836, + [SMALL_STATE(1463)] = 51856, + [SMALL_STATE(1464)] = 51876, + [SMALL_STATE(1465)] = 51896, + [SMALL_STATE(1466)] = 51922, + [SMALL_STATE(1467)] = 51942, + [SMALL_STATE(1468)] = 51968, + [SMALL_STATE(1469)] = 51988, + [SMALL_STATE(1470)] = 52020, + [SMALL_STATE(1471)] = 52040, + [SMALL_STATE(1472)] = 52072, + [SMALL_STATE(1473)] = 52092, + [SMALL_STATE(1474)] = 52112, + [SMALL_STATE(1475)] = 52144, + [SMALL_STATE(1476)] = 52164, + [SMALL_STATE(1477)] = 52196, + [SMALL_STATE(1478)] = 52220, + [SMALL_STATE(1479)] = 52240, + [SMALL_STATE(1480)] = 52260, + [SMALL_STATE(1481)] = 52280, + [SMALL_STATE(1482)] = 52300, + [SMALL_STATE(1483)] = 52332, + [SMALL_STATE(1484)] = 52356, + [SMALL_STATE(1485)] = 52380, + [SMALL_STATE(1486)] = 52400, + [SMALL_STATE(1487)] = 52420, + [SMALL_STATE(1488)] = 52440, + [SMALL_STATE(1489)] = 52472, + [SMALL_STATE(1490)] = 52496, + [SMALL_STATE(1491)] = 52516, + [SMALL_STATE(1492)] = 52536, + [SMALL_STATE(1493)] = 52556, + [SMALL_STATE(1494)] = 52576, + [SMALL_STATE(1495)] = 52596, + [SMALL_STATE(1496)] = 52621, + [SMALL_STATE(1497)] = 52644, + [SMALL_STATE(1498)] = 52671, + [SMALL_STATE(1499)] = 52700, + [SMALL_STATE(1500)] = 52725, + [SMALL_STATE(1501)] = 52750, + [SMALL_STATE(1502)] = 52773, + [SMALL_STATE(1503)] = 52804, + [SMALL_STATE(1504)] = 52829, + [SMALL_STATE(1505)] = 52862, + [SMALL_STATE(1506)] = 52887, + [SMALL_STATE(1507)] = 52920, + [SMALL_STATE(1508)] = 52945, + [SMALL_STATE(1509)] = 52978, + [SMALL_STATE(1510)] = 53011, + [SMALL_STATE(1511)] = 53034, + [SMALL_STATE(1512)] = 53064, + [SMALL_STATE(1513)] = 53086, + [SMALL_STATE(1514)] = 53112, + [SMALL_STATE(1515)] = 53142, + [SMALL_STATE(1516)] = 53172, + [SMALL_STATE(1517)] = 53202, + [SMALL_STATE(1518)] = 53232, + [SMALL_STATE(1519)] = 53264, + [SMALL_STATE(1520)] = 53286, + [SMALL_STATE(1521)] = 53312, + [SMALL_STATE(1522)] = 53344, + [SMALL_STATE(1523)] = 53374, + [SMALL_STATE(1524)] = 53404, + [SMALL_STATE(1525)] = 53434, + [SMALL_STATE(1526)] = 53464, + [SMALL_STATE(1527)] = 53486, + [SMALL_STATE(1528)] = 53512, + [SMALL_STATE(1529)] = 53542, + [SMALL_STATE(1530)] = 53574, + [SMALL_STATE(1531)] = 53600, + [SMALL_STATE(1532)] = 53626, + [SMALL_STATE(1533)] = 53648, + [SMALL_STATE(1534)] = 53680, + [SMALL_STATE(1535)] = 53706, + [SMALL_STATE(1536)] = 53736, + [SMALL_STATE(1537)] = 53766, + [SMALL_STATE(1538)] = 53796, + [SMALL_STATE(1539)] = 53826, + [SMALL_STATE(1540)] = 53852, + [SMALL_STATE(1541)] = 53882, + [SMALL_STATE(1542)] = 53912, + [SMALL_STATE(1543)] = 53942, + [SMALL_STATE(1544)] = 53972, + [SMALL_STATE(1545)] = 54002, + [SMALL_STATE(1546)] = 54032, + [SMALL_STATE(1547)] = 54058, + [SMALL_STATE(1548)] = 54080, + [SMALL_STATE(1549)] = 54102, + [SMALL_STATE(1550)] = 54132, + [SMALL_STATE(1551)] = 54158, + [SMALL_STATE(1552)] = 54184, + [SMALL_STATE(1553)] = 54210, + [SMALL_STATE(1554)] = 54237, + [SMALL_STATE(1555)] = 54262, + [SMALL_STATE(1556)] = 54281, + [SMALL_STATE(1557)] = 54296, + [SMALL_STATE(1558)] = 54323, + [SMALL_STATE(1559)] = 54350, + [SMALL_STATE(1560)] = 54369, + [SMALL_STATE(1561)] = 54388, + [SMALL_STATE(1562)] = 54407, + [SMALL_STATE(1563)] = 54430, + [SMALL_STATE(1564)] = 54451, + [SMALL_STATE(1565)] = 54480, + [SMALL_STATE(1566)] = 54507, + [SMALL_STATE(1567)] = 54534, + [SMALL_STATE(1568)] = 54553, + [SMALL_STATE(1569)] = 54580, + [SMALL_STATE(1570)] = 54609, + [SMALL_STATE(1571)] = 54636, + [SMALL_STATE(1572)] = 54665, + [SMALL_STATE(1573)] = 54684, + [SMALL_STATE(1574)] = 54707, + [SMALL_STATE(1575)] = 54734, + [SMALL_STATE(1576)] = 54761, + [SMALL_STATE(1577)] = 54788, + [SMALL_STATE(1578)] = 54809, + [SMALL_STATE(1579)] = 54836, + [SMALL_STATE(1580)] = 54855, + [SMALL_STATE(1581)] = 54878, + [SMALL_STATE(1582)] = 54905, + [SMALL_STATE(1583)] = 54928, + [SMALL_STATE(1584)] = 54947, + [SMALL_STATE(1585)] = 54970, + [SMALL_STATE(1586)] = 54999, + [SMALL_STATE(1587)] = 55018, + [SMALL_STATE(1588)] = 55045, + [SMALL_STATE(1589)] = 55074, + [SMALL_STATE(1590)] = 55101, + [SMALL_STATE(1591)] = 55120, + [SMALL_STATE(1592)] = 55139, + [SMALL_STATE(1593)] = 55168, + [SMALL_STATE(1594)] = 55195, + [SMALL_STATE(1595)] = 55221, + [SMALL_STATE(1596)] = 55245, + [SMALL_STATE(1597)] = 55271, + [SMALL_STATE(1598)] = 55287, + [SMALL_STATE(1599)] = 55303, + [SMALL_STATE(1600)] = 55319, + [SMALL_STATE(1601)] = 55345, + [SMALL_STATE(1602)] = 55359, + [SMALL_STATE(1603)] = 55373, + [SMALL_STATE(1604)] = 55399, + [SMALL_STATE(1605)] = 55425, + [SMALL_STATE(1606)] = 55451, + [SMALL_STATE(1607)] = 55465, + [SMALL_STATE(1608)] = 55479, + [SMALL_STATE(1609)] = 55493, + [SMALL_STATE(1610)] = 55519, + [SMALL_STATE(1611)] = 55545, + [SMALL_STATE(1612)] = 55571, + [SMALL_STATE(1613)] = 55597, + [SMALL_STATE(1614)] = 55611, + [SMALL_STATE(1615)] = 55627, + [SMALL_STATE(1616)] = 55653, + [SMALL_STATE(1617)] = 55679, + [SMALL_STATE(1618)] = 55705, + [SMALL_STATE(1619)] = 55731, + [SMALL_STATE(1620)] = 55757, + [SMALL_STATE(1621)] = 55783, + [SMALL_STATE(1622)] = 55805, + [SMALL_STATE(1623)] = 55827, + [SMALL_STATE(1624)] = 55853, + [SMALL_STATE(1625)] = 55877, + [SMALL_STATE(1626)] = 55893, + [SMALL_STATE(1627)] = 55907, + [SMALL_STATE(1628)] = 55923, + [SMALL_STATE(1629)] = 55949, + [SMALL_STATE(1630)] = 55973, + [SMALL_STATE(1631)] = 55989, + [SMALL_STATE(1632)] = 56015, + [SMALL_STATE(1633)] = 56041, + [SMALL_STATE(1634)] = 56067, + [SMALL_STATE(1635)] = 56091, + [SMALL_STATE(1636)] = 56117, + [SMALL_STATE(1637)] = 56143, + [SMALL_STATE(1638)] = 56159, + [SMALL_STATE(1639)] = 56185, + [SMALL_STATE(1640)] = 56209, + [SMALL_STATE(1641)] = 56232, + [SMALL_STATE(1642)] = 56255, + [SMALL_STATE(1643)] = 56278, + [SMALL_STATE(1644)] = 56295, + [SMALL_STATE(1645)] = 56318, + [SMALL_STATE(1646)] = 56341, + [SMALL_STATE(1647)] = 56364, + [SMALL_STATE(1648)] = 56387, + [SMALL_STATE(1649)] = 56410, + [SMALL_STATE(1650)] = 56433, + [SMALL_STATE(1651)] = 56450, + [SMALL_STATE(1652)] = 56473, + [SMALL_STATE(1653)] = 56496, + [SMALL_STATE(1654)] = 56519, + [SMALL_STATE(1655)] = 56542, + [SMALL_STATE(1656)] = 56565, + [SMALL_STATE(1657)] = 56582, + [SMALL_STATE(1658)] = 56599, + [SMALL_STATE(1659)] = 56622, + [SMALL_STATE(1660)] = 56645, + [SMALL_STATE(1661)] = 56662, + [SMALL_STATE(1662)] = 56685, + [SMALL_STATE(1663)] = 56708, + [SMALL_STATE(1664)] = 56731, + [SMALL_STATE(1665)] = 56754, + [SMALL_STATE(1666)] = 56771, + [SMALL_STATE(1667)] = 56794, + [SMALL_STATE(1668)] = 56817, + [SMALL_STATE(1669)] = 56840, + [SMALL_STATE(1670)] = 56863, + [SMALL_STATE(1671)] = 56886, + [SMALL_STATE(1672)] = 56909, + [SMALL_STATE(1673)] = 56932, + [SMALL_STATE(1674)] = 56955, + [SMALL_STATE(1675)] = 56978, + [SMALL_STATE(1676)] = 57001, + [SMALL_STATE(1677)] = 57018, + [SMALL_STATE(1678)] = 57039, + [SMALL_STATE(1679)] = 57058, + [SMALL_STATE(1680)] = 57081, + [SMALL_STATE(1681)] = 57104, + [SMALL_STATE(1682)] = 57127, + [SMALL_STATE(1683)] = 57144, + [SMALL_STATE(1684)] = 57167, + [SMALL_STATE(1685)] = 57190, + [SMALL_STATE(1686)] = 57205, + [SMALL_STATE(1687)] = 57228, + [SMALL_STATE(1688)] = 57251, + [SMALL_STATE(1689)] = 57274, + [SMALL_STATE(1690)] = 57297, + [SMALL_STATE(1691)] = 57320, + [SMALL_STATE(1692)] = 57343, + [SMALL_STATE(1693)] = 57366, + [SMALL_STATE(1694)] = 57389, + [SMALL_STATE(1695)] = 57412, + [SMALL_STATE(1696)] = 57435, + [SMALL_STATE(1697)] = 57458, + [SMALL_STATE(1698)] = 57481, + [SMALL_STATE(1699)] = 57504, + [SMALL_STATE(1700)] = 57521, + [SMALL_STATE(1701)] = 57544, + [SMALL_STATE(1702)] = 57567, + [SMALL_STATE(1703)] = 57588, + [SMALL_STATE(1704)] = 57611, + [SMALL_STATE(1705)] = 57634, + [SMALL_STATE(1706)] = 57655, + [SMALL_STATE(1707)] = 57676, + [SMALL_STATE(1708)] = 57693, + [SMALL_STATE(1709)] = 57716, + [SMALL_STATE(1710)] = 57733, + [SMALL_STATE(1711)] = 57756, + [SMALL_STATE(1712)] = 57775, + [SMALL_STATE(1713)] = 57796, + [SMALL_STATE(1714)] = 57819, + [SMALL_STATE(1715)] = 57836, + [SMALL_STATE(1716)] = 57851, + [SMALL_STATE(1717)] = 57874, + [SMALL_STATE(1718)] = 57891, + [SMALL_STATE(1719)] = 57914, + [SMALL_STATE(1720)] = 57937, + [SMALL_STATE(1721)] = 57960, + [SMALL_STATE(1722)] = 57983, + [SMALL_STATE(1723)] = 58006, + [SMALL_STATE(1724)] = 58029, + [SMALL_STATE(1725)] = 58052, + [SMALL_STATE(1726)] = 58075, + [SMALL_STATE(1727)] = 58098, + [SMALL_STATE(1728)] = 58119, + [SMALL_STATE(1729)] = 58142, + [SMALL_STATE(1730)] = 58159, + [SMALL_STATE(1731)] = 58182, + [SMALL_STATE(1732)] = 58205, + [SMALL_STATE(1733)] = 58228, + [SMALL_STATE(1734)] = 58251, + [SMALL_STATE(1735)] = 58270, + [SMALL_STATE(1736)] = 58287, + [SMALL_STATE(1737)] = 58299, + [SMALL_STATE(1738)] = 58313, + [SMALL_STATE(1739)] = 58331, + [SMALL_STATE(1740)] = 58349, + [SMALL_STATE(1741)] = 58367, + [SMALL_STATE(1742)] = 58387, + [SMALL_STATE(1743)] = 58407, + [SMALL_STATE(1744)] = 58423, + [SMALL_STATE(1745)] = 58435, + [SMALL_STATE(1746)] = 58447, + [SMALL_STATE(1747)] = 58467, + [SMALL_STATE(1748)] = 58479, + [SMALL_STATE(1749)] = 58499, + [SMALL_STATE(1750)] = 58517, + [SMALL_STATE(1751)] = 58535, + [SMALL_STATE(1752)] = 58551, + [SMALL_STATE(1753)] = 58569, + [SMALL_STATE(1754)] = 58585, + [SMALL_STATE(1755)] = 58605, + [SMALL_STATE(1756)] = 58617, + [SMALL_STATE(1757)] = 58631, + [SMALL_STATE(1758)] = 58647, + [SMALL_STATE(1759)] = 58663, + [SMALL_STATE(1760)] = 58679, + [SMALL_STATE(1761)] = 58697, + [SMALL_STATE(1762)] = 58709, + [SMALL_STATE(1763)] = 58721, + [SMALL_STATE(1764)] = 58733, + [SMALL_STATE(1765)] = 58745, + [SMALL_STATE(1766)] = 58757, + [SMALL_STATE(1767)] = 58773, + [SMALL_STATE(1768)] = 58789, + [SMALL_STATE(1769)] = 58801, + [SMALL_STATE(1770)] = 58813, + [SMALL_STATE(1771)] = 58825, + [SMALL_STATE(1772)] = 58837, + [SMALL_STATE(1773)] = 58853, + [SMALL_STATE(1774)] = 58865, + [SMALL_STATE(1775)] = 58881, + [SMALL_STATE(1776)] = 58897, + [SMALL_STATE(1777)] = 58913, + [SMALL_STATE(1778)] = 58925, + [SMALL_STATE(1779)] = 58937, + [SMALL_STATE(1780)] = 58949, + [SMALL_STATE(1781)] = 58961, + [SMALL_STATE(1782)] = 58973, + [SMALL_STATE(1783)] = 58991, + [SMALL_STATE(1784)] = 59011, + [SMALL_STATE(1785)] = 59027, + [SMALL_STATE(1786)] = 59039, + [SMALL_STATE(1787)] = 59054, + [SMALL_STATE(1788)] = 59071, + [SMALL_STATE(1789)] = 59086, + [SMALL_STATE(1790)] = 59101, + [SMALL_STATE(1791)] = 59116, + [SMALL_STATE(1792)] = 59131, + [SMALL_STATE(1793)] = 59146, + [SMALL_STATE(1794)] = 59161, + [SMALL_STATE(1795)] = 59176, + [SMALL_STATE(1796)] = 59193, + [SMALL_STATE(1797)] = 59210, + [SMALL_STATE(1798)] = 59223, + [SMALL_STATE(1799)] = 59240, + [SMALL_STATE(1800)] = 59255, + [SMALL_STATE(1801)] = 59272, + [SMALL_STATE(1802)] = 59289, + [SMALL_STATE(1803)] = 59304, + [SMALL_STATE(1804)] = 59321, + [SMALL_STATE(1805)] = 59334, + [SMALL_STATE(1806)] = 59347, + [SMALL_STATE(1807)] = 59364, + [SMALL_STATE(1808)] = 59381, + [SMALL_STATE(1809)] = 59396, + [SMALL_STATE(1810)] = 59411, + [SMALL_STATE(1811)] = 59428, + [SMALL_STATE(1812)] = 59445, + [SMALL_STATE(1813)] = 59460, + [SMALL_STATE(1814)] = 59477, + [SMALL_STATE(1815)] = 59494, + [SMALL_STATE(1816)] = 59509, + [SMALL_STATE(1817)] = 59526, + [SMALL_STATE(1818)] = 59541, + [SMALL_STATE(1819)] = 59558, + [SMALL_STATE(1820)] = 59575, + [SMALL_STATE(1821)] = 59592, + [SMALL_STATE(1822)] = 59609, + [SMALL_STATE(1823)] = 59626, + [SMALL_STATE(1824)] = 59643, + [SMALL_STATE(1825)] = 59658, + [SMALL_STATE(1826)] = 59675, + [SMALL_STATE(1827)] = 59688, + [SMALL_STATE(1828)] = 59703, + [SMALL_STATE(1829)] = 59720, + [SMALL_STATE(1830)] = 59737, + [SMALL_STATE(1831)] = 59754, + [SMALL_STATE(1832)] = 59771, + [SMALL_STATE(1833)] = 59788, + [SMALL_STATE(1834)] = 59805, + [SMALL_STATE(1835)] = 59822, + [SMALL_STATE(1836)] = 59839, + [SMALL_STATE(1837)] = 59856, + [SMALL_STATE(1838)] = 59869, + [SMALL_STATE(1839)] = 59882, + [SMALL_STATE(1840)] = 59899, + [SMALL_STATE(1841)] = 59916, + [SMALL_STATE(1842)] = 59933, + [SMALL_STATE(1843)] = 59950, + [SMALL_STATE(1844)] = 59967, + [SMALL_STATE(1845)] = 59982, + [SMALL_STATE(1846)] = 59999, + [SMALL_STATE(1847)] = 60016, + [SMALL_STATE(1848)] = 60033, + [SMALL_STATE(1849)] = 60050, + [SMALL_STATE(1850)] = 60067, + [SMALL_STATE(1851)] = 60084, + [SMALL_STATE(1852)] = 60101, + [SMALL_STATE(1853)] = 60118, + [SMALL_STATE(1854)] = 60135, + [SMALL_STATE(1855)] = 60152, + [SMALL_STATE(1856)] = 60169, + [SMALL_STATE(1857)] = 60186, + [SMALL_STATE(1858)] = 60203, + [SMALL_STATE(1859)] = 60220, + [SMALL_STATE(1860)] = 60235, + [SMALL_STATE(1861)] = 60252, + [SMALL_STATE(1862)] = 60269, + [SMALL_STATE(1863)] = 60286, + [SMALL_STATE(1864)] = 60303, + [SMALL_STATE(1865)] = 60320, + [SMALL_STATE(1866)] = 60335, + [SMALL_STATE(1867)] = 60352, + [SMALL_STATE(1868)] = 60369, + [SMALL_STATE(1869)] = 60384, + [SMALL_STATE(1870)] = 60401, + [SMALL_STATE(1871)] = 60414, + [SMALL_STATE(1872)] = 60431, + [SMALL_STATE(1873)] = 60446, + [SMALL_STATE(1874)] = 60463, + [SMALL_STATE(1875)] = 60480, + [SMALL_STATE(1876)] = 60495, + [SMALL_STATE(1877)] = 60510, + [SMALL_STATE(1878)] = 60527, + [SMALL_STATE(1879)] = 60540, + [SMALL_STATE(1880)] = 60553, + [SMALL_STATE(1881)] = 60568, + [SMALL_STATE(1882)] = 60583, + [SMALL_STATE(1883)] = 60596, + [SMALL_STATE(1884)] = 60613, + [SMALL_STATE(1885)] = 60630, + [SMALL_STATE(1886)] = 60645, + [SMALL_STATE(1887)] = 60662, + [SMALL_STATE(1888)] = 60679, + [SMALL_STATE(1889)] = 60696, + [SMALL_STATE(1890)] = 60711, + [SMALL_STATE(1891)] = 60725, + [SMALL_STATE(1892)] = 60735, + [SMALL_STATE(1893)] = 60749, + [SMALL_STATE(1894)] = 60763, + [SMALL_STATE(1895)] = 60777, + [SMALL_STATE(1896)] = 60789, + [SMALL_STATE(1897)] = 60799, + [SMALL_STATE(1898)] = 60813, + [SMALL_STATE(1899)] = 60827, + [SMALL_STATE(1900)] = 60841, + [SMALL_STATE(1901)] = 60855, + [SMALL_STATE(1902)] = 60869, + [SMALL_STATE(1903)] = 60883, + [SMALL_STATE(1904)] = 60897, + [SMALL_STATE(1905)] = 60907, + [SMALL_STATE(1906)] = 60917, + [SMALL_STATE(1907)] = 60929, + [SMALL_STATE(1908)] = 60941, + [SMALL_STATE(1909)] = 60955, + [SMALL_STATE(1910)] = 60969, + [SMALL_STATE(1911)] = 60983, + [SMALL_STATE(1912)] = 60995, + [SMALL_STATE(1913)] = 61007, + [SMALL_STATE(1914)] = 61019, + [SMALL_STATE(1915)] = 61031, + [SMALL_STATE(1916)] = 61045, + [SMALL_STATE(1917)] = 61057, + [SMALL_STATE(1918)] = 61067, + [SMALL_STATE(1919)] = 61081, + [SMALL_STATE(1920)] = 61095, + [SMALL_STATE(1921)] = 61107, + [SMALL_STATE(1922)] = 61119, + [SMALL_STATE(1923)] = 61133, + [SMALL_STATE(1924)] = 61147, + [SMALL_STATE(1925)] = 61161, + [SMALL_STATE(1926)] = 61175, + [SMALL_STATE(1927)] = 61189, + [SMALL_STATE(1928)] = 61203, + [SMALL_STATE(1929)] = 61217, + [SMALL_STATE(1930)] = 61231, + [SMALL_STATE(1931)] = 61243, + [SMALL_STATE(1932)] = 61257, + [SMALL_STATE(1933)] = 61271, + [SMALL_STATE(1934)] = 61283, + [SMALL_STATE(1935)] = 61297, + [SMALL_STATE(1936)] = 61311, + [SMALL_STATE(1937)] = 61323, + [SMALL_STATE(1938)] = 61335, + [SMALL_STATE(1939)] = 61349, + [SMALL_STATE(1940)] = 61361, + [SMALL_STATE(1941)] = 61373, + [SMALL_STATE(1942)] = 61387, + [SMALL_STATE(1943)] = 61401, + [SMALL_STATE(1944)] = 61413, + [SMALL_STATE(1945)] = 61427, + [SMALL_STATE(1946)] = 61437, + [SMALL_STATE(1947)] = 61451, + [SMALL_STATE(1948)] = 61461, + [SMALL_STATE(1949)] = 61471, + [SMALL_STATE(1950)] = 61485, + [SMALL_STATE(1951)] = 61497, + [SMALL_STATE(1952)] = 61511, + [SMALL_STATE(1953)] = 61525, + [SMALL_STATE(1954)] = 61539, + [SMALL_STATE(1955)] = 61553, + [SMALL_STATE(1956)] = 61567, + [SMALL_STATE(1957)] = 61581, + [SMALL_STATE(1958)] = 61591, + [SMALL_STATE(1959)] = 61601, + [SMALL_STATE(1960)] = 61615, + [SMALL_STATE(1961)] = 61629, + [SMALL_STATE(1962)] = 61643, + [SMALL_STATE(1963)] = 61653, + [SMALL_STATE(1964)] = 61667, + [SMALL_STATE(1965)] = 61681, + [SMALL_STATE(1966)] = 61691, + [SMALL_STATE(1967)] = 61705, + [SMALL_STATE(1968)] = 61719, + [SMALL_STATE(1969)] = 61733, + [SMALL_STATE(1970)] = 61743, + [SMALL_STATE(1971)] = 61757, + [SMALL_STATE(1972)] = 61767, + [SMALL_STATE(1973)] = 61781, + [SMALL_STATE(1974)] = 61795, + [SMALL_STATE(1975)] = 61809, + [SMALL_STATE(1976)] = 61819, + [SMALL_STATE(1977)] = 61829, + [SMALL_STATE(1978)] = 61841, + [SMALL_STATE(1979)] = 61855, + [SMALL_STATE(1980)] = 61869, + [SMALL_STATE(1981)] = 61883, + [SMALL_STATE(1982)] = 61897, + [SMALL_STATE(1983)] = 61909, + [SMALL_STATE(1984)] = 61923, + [SMALL_STATE(1985)] = 61937, + [SMALL_STATE(1986)] = 61951, + [SMALL_STATE(1987)] = 61965, + [SMALL_STATE(1988)] = 61979, + [SMALL_STATE(1989)] = 61993, + [SMALL_STATE(1990)] = 62007, + [SMALL_STATE(1991)] = 62021, + [SMALL_STATE(1992)] = 62033, + [SMALL_STATE(1993)] = 62047, + [SMALL_STATE(1994)] = 62057, + [SMALL_STATE(1995)] = 62071, + [SMALL_STATE(1996)] = 62085, + [SMALL_STATE(1997)] = 62097, + [SMALL_STATE(1998)] = 62111, + [SMALL_STATE(1999)] = 62125, + [SMALL_STATE(2000)] = 62139, + [SMALL_STATE(2001)] = 62153, + [SMALL_STATE(2002)] = 62167, + [SMALL_STATE(2003)] = 62181, + [SMALL_STATE(2004)] = 62195, + [SMALL_STATE(2005)] = 62209, + [SMALL_STATE(2006)] = 62223, + [SMALL_STATE(2007)] = 62237, + [SMALL_STATE(2008)] = 62251, + [SMALL_STATE(2009)] = 62265, + [SMALL_STATE(2010)] = 62279, + [SMALL_STATE(2011)] = 62293, + [SMALL_STATE(2012)] = 62303, + [SMALL_STATE(2013)] = 62317, + [SMALL_STATE(2014)] = 62329, + [SMALL_STATE(2015)] = 62343, + [SMALL_STATE(2016)] = 62357, + [SMALL_STATE(2017)] = 62371, + [SMALL_STATE(2018)] = 62385, + [SMALL_STATE(2019)] = 62397, + [SMALL_STATE(2020)] = 62411, + [SMALL_STATE(2021)] = 62425, + [SMALL_STATE(2022)] = 62439, + [SMALL_STATE(2023)] = 62451, + [SMALL_STATE(2024)] = 62465, + [SMALL_STATE(2025)] = 62479, + [SMALL_STATE(2026)] = 62493, + [SMALL_STATE(2027)] = 62507, + [SMALL_STATE(2028)] = 62521, + [SMALL_STATE(2029)] = 62535, + [SMALL_STATE(2030)] = 62549, + [SMALL_STATE(2031)] = 62563, + [SMALL_STATE(2032)] = 62577, + [SMALL_STATE(2033)] = 62591, + [SMALL_STATE(2034)] = 62605, + [SMALL_STATE(2035)] = 62619, + [SMALL_STATE(2036)] = 62631, + [SMALL_STATE(2037)] = 62643, + [SMALL_STATE(2038)] = 62655, + [SMALL_STATE(2039)] = 62669, + [SMALL_STATE(2040)] = 62681, + [SMALL_STATE(2041)] = 62695, + [SMALL_STATE(2042)] = 62709, + [SMALL_STATE(2043)] = 62723, + [SMALL_STATE(2044)] = 62737, + [SMALL_STATE(2045)] = 62751, + [SMALL_STATE(2046)] = 62765, + [SMALL_STATE(2047)] = 62779, + [SMALL_STATE(2048)] = 62791, + [SMALL_STATE(2049)] = 62805, + [SMALL_STATE(2050)] = 62815, + [SMALL_STATE(2051)] = 62829, + [SMALL_STATE(2052)] = 62843, + [SMALL_STATE(2053)] = 62853, + [SMALL_STATE(2054)] = 62867, + [SMALL_STATE(2055)] = 62881, + [SMALL_STATE(2056)] = 62895, + [SMALL_STATE(2057)] = 62909, + [SMALL_STATE(2058)] = 62921, + [SMALL_STATE(2059)] = 62935, + [SMALL_STATE(2060)] = 62949, + [SMALL_STATE(2061)] = 62963, + [SMALL_STATE(2062)] = 62975, + [SMALL_STATE(2063)] = 62989, + [SMALL_STATE(2064)] = 63003, + [SMALL_STATE(2065)] = 63017, + [SMALL_STATE(2066)] = 63031, + [SMALL_STATE(2067)] = 63045, + [SMALL_STATE(2068)] = 63059, + [SMALL_STATE(2069)] = 63069, + [SMALL_STATE(2070)] = 63083, + [SMALL_STATE(2071)] = 63097, + [SMALL_STATE(2072)] = 63109, + [SMALL_STATE(2073)] = 63123, + [SMALL_STATE(2074)] = 63137, + [SMALL_STATE(2075)] = 63151, + [SMALL_STATE(2076)] = 63165, + [SMALL_STATE(2077)] = 63177, + [SMALL_STATE(2078)] = 63191, + [SMALL_STATE(2079)] = 63205, + [SMALL_STATE(2080)] = 63219, + [SMALL_STATE(2081)] = 63233, + [SMALL_STATE(2082)] = 63247, + [SMALL_STATE(2083)] = 63261, + [SMALL_STATE(2084)] = 63275, + [SMALL_STATE(2085)] = 63289, + [SMALL_STATE(2086)] = 63299, + [SMALL_STATE(2087)] = 63313, + [SMALL_STATE(2088)] = 63327, + [SMALL_STATE(2089)] = 63341, + [SMALL_STATE(2090)] = 63355, + [SMALL_STATE(2091)] = 63365, + [SMALL_STATE(2092)] = 63379, + [SMALL_STATE(2093)] = 63393, + [SMALL_STATE(2094)] = 63407, + [SMALL_STATE(2095)] = 63421, + [SMALL_STATE(2096)] = 63431, + [SMALL_STATE(2097)] = 63445, + [SMALL_STATE(2098)] = 63459, + [SMALL_STATE(2099)] = 63471, + [SMALL_STATE(2100)] = 63481, + [SMALL_STATE(2101)] = 63495, + [SMALL_STATE(2102)] = 63509, + [SMALL_STATE(2103)] = 63523, + [SMALL_STATE(2104)] = 63533, + [SMALL_STATE(2105)] = 63547, + [SMALL_STATE(2106)] = 63561, + [SMALL_STATE(2107)] = 63575, + [SMALL_STATE(2108)] = 63589, + [SMALL_STATE(2109)] = 63603, + [SMALL_STATE(2110)] = 63617, + [SMALL_STATE(2111)] = 63631, + [SMALL_STATE(2112)] = 63645, + [SMALL_STATE(2113)] = 63659, + [SMALL_STATE(2114)] = 63673, + [SMALL_STATE(2115)] = 63687, + [SMALL_STATE(2116)] = 63699, + [SMALL_STATE(2117)] = 63713, + [SMALL_STATE(2118)] = 63727, + [SMALL_STATE(2119)] = 63741, + [SMALL_STATE(2120)] = 63755, + [SMALL_STATE(2121)] = 63769, + [SMALL_STATE(2122)] = 63779, + [SMALL_STATE(2123)] = 63793, + [SMALL_STATE(2124)] = 63807, + [SMALL_STATE(2125)] = 63821, + [SMALL_STATE(2126)] = 63835, + [SMALL_STATE(2127)] = 63849, + [SMALL_STATE(2128)] = 63863, + [SMALL_STATE(2129)] = 63877, + [SMALL_STATE(2130)] = 63891, + [SMALL_STATE(2131)] = 63905, + [SMALL_STATE(2132)] = 63919, + [SMALL_STATE(2133)] = 63933, + [SMALL_STATE(2134)] = 63943, + [SMALL_STATE(2135)] = 63953, + [SMALL_STATE(2136)] = 63967, + [SMALL_STATE(2137)] = 63981, + [SMALL_STATE(2138)] = 63995, + [SMALL_STATE(2139)] = 64009, + [SMALL_STATE(2140)] = 64023, + [SMALL_STATE(2141)] = 64037, + [SMALL_STATE(2142)] = 64051, + [SMALL_STATE(2143)] = 64065, + [SMALL_STATE(2144)] = 64079, + [SMALL_STATE(2145)] = 64093, + [SMALL_STATE(2146)] = 64107, + [SMALL_STATE(2147)] = 64121, + [SMALL_STATE(2148)] = 64135, + [SMALL_STATE(2149)] = 64149, + [SMALL_STATE(2150)] = 64163, + [SMALL_STATE(2151)] = 64177, + [SMALL_STATE(2152)] = 64191, + [SMALL_STATE(2153)] = 64205, + [SMALL_STATE(2154)] = 64219, + [SMALL_STATE(2155)] = 64230, + [SMALL_STATE(2156)] = 64239, + [SMALL_STATE(2157)] = 64250, + [SMALL_STATE(2158)] = 64259, + [SMALL_STATE(2159)] = 64270, + [SMALL_STATE(2160)] = 64279, + [SMALL_STATE(2161)] = 64290, + [SMALL_STATE(2162)] = 64301, + [SMALL_STATE(2163)] = 64312, + [SMALL_STATE(2164)] = 64323, + [SMALL_STATE(2165)] = 64334, + [SMALL_STATE(2166)] = 64345, + [SMALL_STATE(2167)] = 64356, + [SMALL_STATE(2168)] = 64367, + [SMALL_STATE(2169)] = 64378, + [SMALL_STATE(2170)] = 64389, + [SMALL_STATE(2171)] = 64400, + [SMALL_STATE(2172)] = 64411, + [SMALL_STATE(2173)] = 64422, + [SMALL_STATE(2174)] = 64433, + [SMALL_STATE(2175)] = 64444, + [SMALL_STATE(2176)] = 64455, + [SMALL_STATE(2177)] = 64466, + [SMALL_STATE(2178)] = 64477, + [SMALL_STATE(2179)] = 64488, + [SMALL_STATE(2180)] = 64499, + [SMALL_STATE(2181)] = 64510, + [SMALL_STATE(2182)] = 64521, + [SMALL_STATE(2183)] = 64532, + [SMALL_STATE(2184)] = 64543, + [SMALL_STATE(2185)] = 64554, + [SMALL_STATE(2186)] = 64565, + [SMALL_STATE(2187)] = 64576, + [SMALL_STATE(2188)] = 64587, + [SMALL_STATE(2189)] = 64598, + [SMALL_STATE(2190)] = 64609, + [SMALL_STATE(2191)] = 64620, + [SMALL_STATE(2192)] = 64631, + [SMALL_STATE(2193)] = 64642, + [SMALL_STATE(2194)] = 64653, + [SMALL_STATE(2195)] = 64662, + [SMALL_STATE(2196)] = 64673, + [SMALL_STATE(2197)] = 64684, + [SMALL_STATE(2198)] = 64695, + [SMALL_STATE(2199)] = 64706, + [SMALL_STATE(2200)] = 64717, + [SMALL_STATE(2201)] = 64726, + [SMALL_STATE(2202)] = 64737, + [SMALL_STATE(2203)] = 64748, + [SMALL_STATE(2204)] = 64759, + [SMALL_STATE(2205)] = 64770, + [SMALL_STATE(2206)] = 64781, + [SMALL_STATE(2207)] = 64792, + [SMALL_STATE(2208)] = 64801, + [SMALL_STATE(2209)] = 64812, + [SMALL_STATE(2210)] = 64823, + [SMALL_STATE(2211)] = 64834, + [SMALL_STATE(2212)] = 64845, + [SMALL_STATE(2213)] = 64856, + [SMALL_STATE(2214)] = 64867, + [SMALL_STATE(2215)] = 64878, + [SMALL_STATE(2216)] = 64887, + [SMALL_STATE(2217)] = 64898, + [SMALL_STATE(2218)] = 64909, + [SMALL_STATE(2219)] = 64920, + [SMALL_STATE(2220)] = 64931, + [SMALL_STATE(2221)] = 64942, + [SMALL_STATE(2222)] = 64951, + [SMALL_STATE(2223)] = 64962, + [SMALL_STATE(2224)] = 64971, + [SMALL_STATE(2225)] = 64980, + [SMALL_STATE(2226)] = 64991, + [SMALL_STATE(2227)] = 65002, + [SMALL_STATE(2228)] = 65011, + [SMALL_STATE(2229)] = 65022, + [SMALL_STATE(2230)] = 65033, + [SMALL_STATE(2231)] = 65044, + [SMALL_STATE(2232)] = 65055, + [SMALL_STATE(2233)] = 65066, + [SMALL_STATE(2234)] = 65077, + [SMALL_STATE(2235)] = 65086, + [SMALL_STATE(2236)] = 65097, + [SMALL_STATE(2237)] = 65108, + [SMALL_STATE(2238)] = 65119, + [SMALL_STATE(2239)] = 65130, + [SMALL_STATE(2240)] = 65141, + [SMALL_STATE(2241)] = 65152, + [SMALL_STATE(2242)] = 65163, + [SMALL_STATE(2243)] = 65174, + [SMALL_STATE(2244)] = 65185, + [SMALL_STATE(2245)] = 65196, + [SMALL_STATE(2246)] = 65207, + [SMALL_STATE(2247)] = 65218, + [SMALL_STATE(2248)] = 65229, + [SMALL_STATE(2249)] = 65240, + [SMALL_STATE(2250)] = 65251, + [SMALL_STATE(2251)] = 65262, + [SMALL_STATE(2252)] = 65273, + [SMALL_STATE(2253)] = 65284, + [SMALL_STATE(2254)] = 65293, + [SMALL_STATE(2255)] = 65304, + [SMALL_STATE(2256)] = 65315, + [SMALL_STATE(2257)] = 65326, + [SMALL_STATE(2258)] = 65337, + [SMALL_STATE(2259)] = 65346, + [SMALL_STATE(2260)] = 65357, + [SMALL_STATE(2261)] = 65368, + [SMALL_STATE(2262)] = 65379, + [SMALL_STATE(2263)] = 65390, + [SMALL_STATE(2264)] = 65401, + [SMALL_STATE(2265)] = 65412, + [SMALL_STATE(2266)] = 65421, + [SMALL_STATE(2267)] = 65432, + [SMALL_STATE(2268)] = 65443, + [SMALL_STATE(2269)] = 65454, + [SMALL_STATE(2270)] = 65465, + [SMALL_STATE(2271)] = 65476, + [SMALL_STATE(2272)] = 65487, + [SMALL_STATE(2273)] = 65498, + [SMALL_STATE(2274)] = 65509, + [SMALL_STATE(2275)] = 65520, + [SMALL_STATE(2276)] = 65531, + [SMALL_STATE(2277)] = 65542, + [SMALL_STATE(2278)] = 65551, + [SMALL_STATE(2279)] = 65562, + [SMALL_STATE(2280)] = 65573, + [SMALL_STATE(2281)] = 65582, + [SMALL_STATE(2282)] = 65593, + [SMALL_STATE(2283)] = 65604, + [SMALL_STATE(2284)] = 65615, + [SMALL_STATE(2285)] = 65626, + [SMALL_STATE(2286)] = 65637, + [SMALL_STATE(2287)] = 65648, + [SMALL_STATE(2288)] = 65657, + [SMALL_STATE(2289)] = 65668, + [SMALL_STATE(2290)] = 65679, + [SMALL_STATE(2291)] = 65690, + [SMALL_STATE(2292)] = 65701, + [SMALL_STATE(2293)] = 65710, + [SMALL_STATE(2294)] = 65721, + [SMALL_STATE(2295)] = 65730, + [SMALL_STATE(2296)] = 65739, + [SMALL_STATE(2297)] = 65750, + [SMALL_STATE(2298)] = 65761, + [SMALL_STATE(2299)] = 65772, + [SMALL_STATE(2300)] = 65783, + [SMALL_STATE(2301)] = 65794, + [SMALL_STATE(2302)] = 65805, + [SMALL_STATE(2303)] = 65816, + [SMALL_STATE(2304)] = 65825, + [SMALL_STATE(2305)] = 65836, + [SMALL_STATE(2306)] = 65847, + [SMALL_STATE(2307)] = 65856, + [SMALL_STATE(2308)] = 65867, + [SMALL_STATE(2309)] = 65878, + [SMALL_STATE(2310)] = 65889, + [SMALL_STATE(2311)] = 65900, + [SMALL_STATE(2312)] = 65911, + [SMALL_STATE(2313)] = 65922, + [SMALL_STATE(2314)] = 65933, + [SMALL_STATE(2315)] = 65944, + [SMALL_STATE(2316)] = 65955, + [SMALL_STATE(2317)] = 65966, + [SMALL_STATE(2318)] = 65975, + [SMALL_STATE(2319)] = 65986, + [SMALL_STATE(2320)] = 65997, + [SMALL_STATE(2321)] = 66008, + [SMALL_STATE(2322)] = 66019, + [SMALL_STATE(2323)] = 66028, + [SMALL_STATE(2324)] = 66039, + [SMALL_STATE(2325)] = 66050, + [SMALL_STATE(2326)] = 66061, + [SMALL_STATE(2327)] = 66072, + [SMALL_STATE(2328)] = 66083, + [SMALL_STATE(2329)] = 66094, + [SMALL_STATE(2330)] = 66103, + [SMALL_STATE(2331)] = 66114, + [SMALL_STATE(2332)] = 66125, + [SMALL_STATE(2333)] = 66136, + [SMALL_STATE(2334)] = 66147, + [SMALL_STATE(2335)] = 66156, + [SMALL_STATE(2336)] = 66165, + [SMALL_STATE(2337)] = 66174, + [SMALL_STATE(2338)] = 66185, + [SMALL_STATE(2339)] = 66194, + [SMALL_STATE(2340)] = 66205, + [SMALL_STATE(2341)] = 66214, + [SMALL_STATE(2342)] = 66225, + [SMALL_STATE(2343)] = 66234, + [SMALL_STATE(2344)] = 66245, + [SMALL_STATE(2345)] = 66253, + [SMALL_STATE(2346)] = 66261, + [SMALL_STATE(2347)] = 66269, + [SMALL_STATE(2348)] = 66277, + [SMALL_STATE(2349)] = 66285, + [SMALL_STATE(2350)] = 66293, + [SMALL_STATE(2351)] = 66301, + [SMALL_STATE(2352)] = 66309, + [SMALL_STATE(2353)] = 66317, + [SMALL_STATE(2354)] = 66325, + [SMALL_STATE(2355)] = 66333, + [SMALL_STATE(2356)] = 66341, + [SMALL_STATE(2357)] = 66349, + [SMALL_STATE(2358)] = 66357, + [SMALL_STATE(2359)] = 66365, + [SMALL_STATE(2360)] = 66373, + [SMALL_STATE(2361)] = 66381, + [SMALL_STATE(2362)] = 66389, + [SMALL_STATE(2363)] = 66397, + [SMALL_STATE(2364)] = 66405, + [SMALL_STATE(2365)] = 66413, + [SMALL_STATE(2366)] = 66421, + [SMALL_STATE(2367)] = 66429, + [SMALL_STATE(2368)] = 66437, + [SMALL_STATE(2369)] = 66445, + [SMALL_STATE(2370)] = 66453, + [SMALL_STATE(2371)] = 66461, + [SMALL_STATE(2372)] = 66469, + [SMALL_STATE(2373)] = 66477, + [SMALL_STATE(2374)] = 66485, + [SMALL_STATE(2375)] = 66493, + [SMALL_STATE(2376)] = 66501, + [SMALL_STATE(2377)] = 66509, + [SMALL_STATE(2378)] = 66517, + [SMALL_STATE(2379)] = 66525, + [SMALL_STATE(2380)] = 66533, + [SMALL_STATE(2381)] = 66541, + [SMALL_STATE(2382)] = 66549, + [SMALL_STATE(2383)] = 66557, + [SMALL_STATE(2384)] = 66565, + [SMALL_STATE(2385)] = 66573, + [SMALL_STATE(2386)] = 66581, + [SMALL_STATE(2387)] = 66589, + [SMALL_STATE(2388)] = 66597, + [SMALL_STATE(2389)] = 66605, + [SMALL_STATE(2390)] = 66613, + [SMALL_STATE(2391)] = 66621, + [SMALL_STATE(2392)] = 66629, + [SMALL_STATE(2393)] = 66637, + [SMALL_STATE(2394)] = 66645, + [SMALL_STATE(2395)] = 66653, + [SMALL_STATE(2396)] = 66661, + [SMALL_STATE(2397)] = 66669, + [SMALL_STATE(2398)] = 66677, + [SMALL_STATE(2399)] = 66685, + [SMALL_STATE(2400)] = 66693, + [SMALL_STATE(2401)] = 66701, + [SMALL_STATE(2402)] = 66709, + [SMALL_STATE(2403)] = 66717, + [SMALL_STATE(2404)] = 66725, + [SMALL_STATE(2405)] = 66733, + [SMALL_STATE(2406)] = 66741, + [SMALL_STATE(2407)] = 66749, + [SMALL_STATE(2408)] = 66757, + [SMALL_STATE(2409)] = 66765, + [SMALL_STATE(2410)] = 66773, + [SMALL_STATE(2411)] = 66781, + [SMALL_STATE(2412)] = 66789, + [SMALL_STATE(2413)] = 66797, + [SMALL_STATE(2414)] = 66805, + [SMALL_STATE(2415)] = 66813, + [SMALL_STATE(2416)] = 66821, + [SMALL_STATE(2417)] = 66829, + [SMALL_STATE(2418)] = 66837, + [SMALL_STATE(2419)] = 66845, + [SMALL_STATE(2420)] = 66853, + [SMALL_STATE(2421)] = 66861, + [SMALL_STATE(2422)] = 66869, + [SMALL_STATE(2423)] = 66877, + [SMALL_STATE(2424)] = 66885, + [SMALL_STATE(2425)] = 66893, + [SMALL_STATE(2426)] = 66901, + [SMALL_STATE(2427)] = 66909, + [SMALL_STATE(2428)] = 66917, + [SMALL_STATE(2429)] = 66925, + [SMALL_STATE(2430)] = 66933, + [SMALL_STATE(2431)] = 66941, + [SMALL_STATE(2432)] = 66949, + [SMALL_STATE(2433)] = 66957, + [SMALL_STATE(2434)] = 66965, + [SMALL_STATE(2435)] = 66973, + [SMALL_STATE(2436)] = 66981, + [SMALL_STATE(2437)] = 66989, + [SMALL_STATE(2438)] = 66997, + [SMALL_STATE(2439)] = 67005, + [SMALL_STATE(2440)] = 67013, + [SMALL_STATE(2441)] = 67021, + [SMALL_STATE(2442)] = 67029, + [SMALL_STATE(2443)] = 67037, + [SMALL_STATE(2444)] = 67045, + [SMALL_STATE(2445)] = 67053, + [SMALL_STATE(2446)] = 67061, + [SMALL_STATE(2447)] = 67069, + [SMALL_STATE(2448)] = 67077, + [SMALL_STATE(2449)] = 67085, + [SMALL_STATE(2450)] = 67093, + [SMALL_STATE(2451)] = 67101, + [SMALL_STATE(2452)] = 67109, + [SMALL_STATE(2453)] = 67117, + [SMALL_STATE(2454)] = 67125, + [SMALL_STATE(2455)] = 67133, + [SMALL_STATE(2456)] = 67141, + [SMALL_STATE(2457)] = 67149, + [SMALL_STATE(2458)] = 67157, + [SMALL_STATE(2459)] = 67165, + [SMALL_STATE(2460)] = 67173, + [SMALL_STATE(2461)] = 67181, + [SMALL_STATE(2462)] = 67189, + [SMALL_STATE(2463)] = 67197, + [SMALL_STATE(2464)] = 67205, + [SMALL_STATE(2465)] = 67213, + [SMALL_STATE(2466)] = 67221, + [SMALL_STATE(2467)] = 67229, + [SMALL_STATE(2468)] = 67237, + [SMALL_STATE(2469)] = 67245, + [SMALL_STATE(2470)] = 67253, + [SMALL_STATE(2471)] = 67261, + [SMALL_STATE(2472)] = 67269, + [SMALL_STATE(2473)] = 67277, + [SMALL_STATE(2474)] = 67285, + [SMALL_STATE(2475)] = 67293, + [SMALL_STATE(2476)] = 67301, + [SMALL_STATE(2477)] = 67309, + [SMALL_STATE(2478)] = 67317, + [SMALL_STATE(2479)] = 67325, + [SMALL_STATE(2480)] = 67333, + [SMALL_STATE(2481)] = 67341, + [SMALL_STATE(2482)] = 67349, + [SMALL_STATE(2483)] = 67357, + [SMALL_STATE(2484)] = 67365, + [SMALL_STATE(2485)] = 67373, + [SMALL_STATE(2486)] = 67381, + [SMALL_STATE(2487)] = 67389, + [SMALL_STATE(2488)] = 67397, + [SMALL_STATE(2489)] = 67405, + [SMALL_STATE(2490)] = 67413, + [SMALL_STATE(2491)] = 67421, + [SMALL_STATE(2492)] = 67429, + [SMALL_STATE(2493)] = 67437, + [SMALL_STATE(2494)] = 67445, + [SMALL_STATE(2495)] = 67453, + [SMALL_STATE(2496)] = 67461, + [SMALL_STATE(2497)] = 67469, + [SMALL_STATE(2498)] = 67477, + [SMALL_STATE(2499)] = 67485, + [SMALL_STATE(2500)] = 67493, + [SMALL_STATE(2501)] = 67501, + [SMALL_STATE(2502)] = 67509, + [SMALL_STATE(2503)] = 67517, + [SMALL_STATE(2504)] = 67525, + [SMALL_STATE(2505)] = 67533, + [SMALL_STATE(2506)] = 67541, + [SMALL_STATE(2507)] = 67549, + [SMALL_STATE(2508)] = 67557, + [SMALL_STATE(2509)] = 67565, + [SMALL_STATE(2510)] = 67573, + [SMALL_STATE(2511)] = 67581, + [SMALL_STATE(2512)] = 67589, + [SMALL_STATE(2513)] = 67597, + [SMALL_STATE(2514)] = 67605, + [SMALL_STATE(2515)] = 67613, + [SMALL_STATE(2516)] = 67621, + [SMALL_STATE(2517)] = 67629, + [SMALL_STATE(2518)] = 67637, + [SMALL_STATE(2519)] = 67645, + [SMALL_STATE(2520)] = 67653, + [SMALL_STATE(2521)] = 67661, + [SMALL_STATE(2522)] = 67669, + [SMALL_STATE(2523)] = 67677, + [SMALL_STATE(2524)] = 67685, + [SMALL_STATE(2525)] = 67693, + [SMALL_STATE(2526)] = 67701, + [SMALL_STATE(2527)] = 67709, + [SMALL_STATE(2528)] = 67717, + [SMALL_STATE(2529)] = 67725, + [SMALL_STATE(2530)] = 67733, + [SMALL_STATE(2531)] = 67741, + [SMALL_STATE(2532)] = 67749, + [SMALL_STATE(2533)] = 67757, + [SMALL_STATE(2534)] = 67765, + [SMALL_STATE(2535)] = 67773, + [SMALL_STATE(2536)] = 67781, + [SMALL_STATE(2537)] = 67789, + [SMALL_STATE(2538)] = 67797, + [SMALL_STATE(2539)] = 67805, + [SMALL_STATE(2540)] = 67813, + [SMALL_STATE(2541)] = 67821, + [SMALL_STATE(2542)] = 67829, + [SMALL_STATE(2543)] = 67837, + [SMALL_STATE(2544)] = 67845, + [SMALL_STATE(2545)] = 67853, + [SMALL_STATE(2546)] = 67861, + [SMALL_STATE(2547)] = 67869, + [SMALL_STATE(2548)] = 67877, + [SMALL_STATE(2549)] = 67885, + [SMALL_STATE(2550)] = 67893, + [SMALL_STATE(2551)] = 67901, + [SMALL_STATE(2552)] = 67909, + [SMALL_STATE(2553)] = 67917, + [SMALL_STATE(2554)] = 67925, + [SMALL_STATE(2555)] = 67933, + [SMALL_STATE(2556)] = 67941, + [SMALL_STATE(2557)] = 67949, + [SMALL_STATE(2558)] = 67957, + [SMALL_STATE(2559)] = 67965, + [SMALL_STATE(2560)] = 67973, + [SMALL_STATE(2561)] = 67981, + [SMALL_STATE(2562)] = 67989, + [SMALL_STATE(2563)] = 67997, + [SMALL_STATE(2564)] = 68005, + [SMALL_STATE(2565)] = 68013, + [SMALL_STATE(2566)] = 68021, + [SMALL_STATE(2567)] = 68029, + [SMALL_STATE(2568)] = 68037, + [SMALL_STATE(2569)] = 68045, + [SMALL_STATE(2570)] = 68053, + [SMALL_STATE(2571)] = 68061, + [SMALL_STATE(2572)] = 68069, + [SMALL_STATE(2573)] = 68077, + [SMALL_STATE(2574)] = 68085, + [SMALL_STATE(2575)] = 68093, + [SMALL_STATE(2576)] = 68101, + [SMALL_STATE(2577)] = 68109, + [SMALL_STATE(2578)] = 68117, + [SMALL_STATE(2579)] = 68125, + [SMALL_STATE(2580)] = 68133, + [SMALL_STATE(2581)] = 68141, + [SMALL_STATE(2582)] = 68149, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -128612,2717 +130507,2737 @@ static const TSParseActionEntry ts_parse_actions[] = { [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(1150), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1150), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(266), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1966), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(7), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(93), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1130), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2566), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1540), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1544), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(781), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(768), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2563), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2159), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(632), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(62), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(634), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(597), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2161), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(161), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2559), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1354), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2093), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2549), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2546), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2500), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1171), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1496), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1318), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), - [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2231), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1472), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(641), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2489), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(64), - [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(578), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2233), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1074), - [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1838), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1046), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1045), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2484), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1366), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1045), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1156), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(265), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1940), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(33), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(103), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1056), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2582), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1526), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1547), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(792), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(785), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2579), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2159), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(611), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(53), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(654), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(614), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2162), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(174), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2575), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1357), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1897), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2565), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2562), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2516), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1184), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1505), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1328), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(60), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2238), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1484), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(641), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2505), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(54), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(570), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2245), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1068), + [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1793), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1057), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1058), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2500), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1367), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1058), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(778), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(781), [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(36), [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(10), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(93), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1130), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2566), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1921), + [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(9), + [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(33), + [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(103), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1056), + [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2582), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1925), [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2244), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(781), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(798), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(624), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(51), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2258), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(172), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2248), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(58), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2261), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(792), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(804), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(621), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(58), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2313), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(165), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2266), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(59), [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(641), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2489), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(64), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), - [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(578), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2233), - [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1074), - [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1838), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1046), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1045), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2484), - [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1045), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2505), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(54), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(570), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2245), + [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1068), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1793), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1057), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1058), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2500), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1058), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 143), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 143), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 59), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 59), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 134), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 134), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 218), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 236), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 236), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 91), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 91), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 219), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 219), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 193), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 193), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 99), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 99), + [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 172), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 172), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 112), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 112), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(249), - [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(484), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(485), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(486), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2423), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(569), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1878), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(572), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(556), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2271), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(996), - [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1953), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2439), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1575), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1602), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1581), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2347), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2228), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(643), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(620), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2352), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1354), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2062), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2353), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2354), - [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2355), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1914), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1582), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1321), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2227), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1485), - [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(641), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2461), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2362), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1361), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2362), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(492), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(544), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(543), - [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(541), - [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(492), - [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(596), - [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1836), - [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(594), - [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(493), - [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(542), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(537), - [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(520), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2547), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(569), - [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1878), - [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(572), - [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(493), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1428), - [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(560), - [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(577), - [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1373), - [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2253), - [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1783), - [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2465), - [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(628), - [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(641), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2452), - [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1473), - [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(616), - [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(612), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1490), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2268), - [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1421), - [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1832), - [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1387), - [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1922), - [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1922), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2465), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 113), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 113), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 156), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 156), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2267), + [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(808), + [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1912), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2471), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1563), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1598), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1591), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2380), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2234), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(644), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(635), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2344), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1357), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1898), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2384), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2385), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2386), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1928), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1590), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1325), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2228), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1489), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(641), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2401), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2391), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1365), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2391), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(260), + [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(489), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(506), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(507), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2469), + [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(585), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1817), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(567), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(565), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 129), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 129), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 130), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 130), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 122), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 122), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 234), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 234), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 124), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 124), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 76), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 76), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 122), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 122), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 131), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 131), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 235), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 235), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 124), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 124), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 122), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 122), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 124), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 124), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 132), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 132), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 185), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 185), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 133), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 133), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 233), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 233), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 183), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 183), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 207), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 207), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 206), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 206), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 182), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 182), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 167), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 167), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 237), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 237), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 232), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 232), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 228), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 228), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 216), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 216), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 238), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 238), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 181), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 181), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 214), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 214), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 231), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 231), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 89), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 89), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 224), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 224), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 170), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 170), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 76), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 76), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 239), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 239), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 178), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 178), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 53), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 53), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 95), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 95), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 170), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 170), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 124), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 124), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 76), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 76), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 76), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 76), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 170), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 170), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 230), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 230), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 88), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 88), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 158), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 158), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 209), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 209), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 137), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 137), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 87), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 87), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 188), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 188), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 83), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 83), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 177), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 177), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 138), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 138), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 129), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 129), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 76), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 76), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 139), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 139), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 241), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 241), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 93), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 93), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 164), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 164), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 83), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 83), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 51), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 51), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 175), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 175), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 94), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 94), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 104), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 104), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 175), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 175), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 173), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 173), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 121), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 121), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 61), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 61), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 94), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 94), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 118), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 118), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 95), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 95), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 182), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 182), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 242), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 242), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 97), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 97), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 76), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 76), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 221), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 221), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 117), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 117), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 239), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 239), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 243), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 243), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 75), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 75), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 171), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 171), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 61), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 61), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 223), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 223), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 168), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 168), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 138), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 138), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 211), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 211), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 188), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 188), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 119), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 119), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 150), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 150), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 190), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 190), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 51), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 51), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 72), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 72), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 163), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 163), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 74), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 74), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 51), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 51), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 73), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 73), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 66), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 66), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 162), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 162), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 227), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 227), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 204), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 204), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 202), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 202), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 51), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 51), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 51), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 51), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 72), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 72), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 94), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 94), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 149), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 149), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 195), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 195), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 197), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 197), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 198), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 198), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 215), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 215), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 185), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 185), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 113), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 113), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 68), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 68), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 124), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 124), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 210), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 210), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 71), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 71), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 209), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 209), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 218), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 218), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 94), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 94), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 93), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 93), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 51), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 51), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 224), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 224), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 158), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 158), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 208), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 208), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 153), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 153), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 155), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 155), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(490), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(552), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(549), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(545), + [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2452), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(585), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1817), + [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(567), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(490), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(503), + [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(543), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(542), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(529), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(503), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(591), + [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1824), + [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(601), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1432), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(571), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(574), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1376), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2327), + [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1791), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2481), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(633), + [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(641), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2468), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1455), + [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(619), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(616), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1458), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2287), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1419), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1875), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1384), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1939), + [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1939), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 184), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 184), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, .production_id = 48), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, .production_id = 48), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2481), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 143), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 143), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2508), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 112), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 112), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 112), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 112), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), - [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(495), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), - [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(585), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1576), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1553), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), - [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 224), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1374), - [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(191), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 108), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 108), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 70), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 70), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 65), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 65), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 196), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 196), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 113), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 113), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 113), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 156), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 156), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 156), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 127), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 127), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 135), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 135), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 111), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 111), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 92), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 92), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 62), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 62), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 60), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 60), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 61), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 61), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 61), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 61), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 103), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 103), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 90), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 90), + [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 62), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 62), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), + [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2524), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 62), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 62), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 144), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 144), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 152), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 152), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 146), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 146), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 220), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 136), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 174), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 128), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 113), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 156), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 187), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 157), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 58), + [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 58), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 54), + [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 54), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), + [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), + [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1577), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1555), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(592), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(499), + [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(500), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1, .production_id = 1), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 49), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 66), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1379), + [4287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(191), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 224), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(610), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1170), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1849), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1585), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1319), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1559), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(698), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(41), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1569), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(195), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), - [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1672), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(246), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2169), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), - [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), - [4824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(555), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(126), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1186), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1587), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 191), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), - [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), - [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), - [5098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(592), - [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [5435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5493] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 225), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 61), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 199), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 225), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 103), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 199), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 159), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 103), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 159), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 61), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 62), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [4364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1181), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 112), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 126), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(612), + [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 1), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 86), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1889), + [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1557), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1197), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 200), + [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 222), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 61), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 103), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 192), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 191), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(596), + [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 64), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 64), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__built_in_attr_path, 1, .production_id = 1), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 161), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 160), + [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 160), SHIFT_REPEAT(564), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 98), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(656), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 93), + [4851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(88), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2213), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(254), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 142), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1677), + [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1575), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 102), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 80), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 141), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 79), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(195), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 78), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 77), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [5027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1565), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [5040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1329), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 57), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [5091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(42), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [5140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1580), + [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 125), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 84), + [5285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 82), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [5305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 2, .production_id = 82), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 81), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 82), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5531] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 125), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 31), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 3, .production_id = 31), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), }; #ifdef __cplusplus From 63dfc35b985a969443cbb03de2b58b89b1c978cb Mon Sep 17 00:00:00 2001 From: ninevra Date: Sat, 14 Nov 2020 15:35:09 -0800 Subject: [PATCH 3/7] Revise tests to expect attr_item for custom attrs --- corpus/declarations.txt | 16 ++++++++-------- corpus/expressions.txt | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/corpus/declarations.txt b/corpus/declarations.txt index 7128b64e..013125cc 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -176,13 +176,13 @@ fn accumulate(self) -> Machine<{State::Accumulate}> {} name: (identifier) parameters: (parameters (attribute_item - (meta_item + (attr_item (identifier))) (parameter pattern: (identifier) type: (primitive_type)) (attribute_item - (meta_item + (attr_item (identifier))) (parameter pattern: (identifier) @@ -473,7 +473,7 @@ struct Inches(i32); (field_identifier) (primitive_type)) (attribute_item - (meta_item + (attr_item (identifier))) (field_declaration (field_identifier) @@ -632,10 +632,10 @@ pub enum Node { (field_identifier) (primitive_type)))) (attribute_item - (meta_item + (attr_item (identifier))) (attribute_item - (meta_item + (attr_item (identifier))) (enum_variant (identifier) @@ -968,7 +968,7 @@ mod macos_only {} path: (identifier) name: (identifier)))))) (attribute_item - (meta_item + (attr_item (scoped_identifier path: (identifier) name: (identifier)) @@ -1119,7 +1119,7 @@ fn foo() { pattern: (identifier) value: (array_expression (attribute_item - (meta_item + (attr_item (identifier))) (integer_literal) (integer_literal) @@ -1128,7 +1128,7 @@ fn foo() { pattern: (identifier) value: (tuple_expression (attribute_item - (meta_item + (attr_item (identifier))) (integer_literal) (integer_literal) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 527daa08..f1d4666f 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -607,7 +607,7 @@ let msg = match x { value: (integer_literal)) (match_arm (attribute_item - (meta_item + (attr_item (identifier))) pattern: (match_pattern (integer_literal)) From 24485113fb75d8bf53a5ea1597cd82a7838876bd Mon Sep 17 00:00:00 2001 From: ninevra Date: Mon, 7 Mar 2022 23:45:55 -0800 Subject: [PATCH 4/7] Cite source for derive macro helper example --- corpus/declarations.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/corpus/declarations.txt b/corpus/declarations.txt index 013125cc..64f93fad 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -1038,6 +1038,8 @@ foo(#[bar(some tokens are special in other contexts: $/';()*()+.)] x); Derive macro helper attributes ================================================================================ +// Example from https://github.com/dtolnay/thiserror/blob/21c26903e29cb92ba1a7ff11e82ae2001646b60d/README.md + use thiserror::Error; #[derive(Error, Debug)] @@ -1051,6 +1053,7 @@ pub enum Error { -------------------------------------------------------------------------------- (source_file + (line_comment) (use_declaration (scoped_identifier (identifier) (identifier))) (attribute_item From 2c4c4430b9b746cd73a1118c15be7555dffa97d2 Mon Sep 17 00:00:00 2001 From: ninevra Date: Mon, 7 Mar 2022 23:50:52 -0800 Subject: [PATCH 5/7] Test expressions in key-value attributes --- corpus/declarations.txt | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/corpus/declarations.txt b/corpus/declarations.txt index 64f93fad..7dad8b8e 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -996,6 +996,41 @@ mod macos_only { (identifier) value: (string_literal)))))))) +================================================================================ +Key-Value Attribute Expressions +================================================================================ + +#[doc = include_str!("foo-doc.md")] +fn foo() {} + +#[namespace = foo::bar] +fn baz() {} + +-------------------------------------------------------------------------------- + +(source_file + (attribute_item + (meta_item + (identifier) + (macro_invocation + (identifier) + (token_tree + (string_literal))))) + (function_item + (identifier) + (parameters) + (block)) + (attribute_item + (attr_item + (identifier) + (scoped_identifier + (identifier) + (identifier)))) + (function_item + (identifier) + (parameters) + (block))) + ================================================================================ Attribute macros ================================================================================ From ecbce1efbec95519f53dc21d471c90e641b798b1 Mon Sep 17 00:00:00 2001 From: ninevra Date: Tue, 8 Mar 2022 00:08:22 -0800 Subject: [PATCH 6/7] Accept name = expr in attributes Supports the syntax added in the extended_key_value_attributes feature. --- grammar.js | 6 +- src/grammar.json | 6 +- src/node-types.json | 4 +- src/parser.c | 96967 +++++++++++++++++++++--------------------- 4 files changed, 48841 insertions(+), 48142 deletions(-) diff --git a/grammar.js b/grammar.js index 3747a16c..f77532f6 100644 --- a/grammar.js +++ b/grammar.js @@ -278,7 +278,7 @@ module.exports = grammar({ custom_attr: $ => seq( $._path, optional(choice( - seq('=', field('value', $._literal)), + seq('=', field('value', $._expression)), field('arguments', $.delim_token_tree) )) ), @@ -286,7 +286,7 @@ module.exports = grammar({ built_in_attr: $ => seq( $._built_in_attr_path, optional(choice( - seq('=', field('value', $._literal)), + seq('=', field('value', $._expression)), field('arguments', $.meta_arguments) )) ), @@ -298,7 +298,7 @@ module.exports = grammar({ meta_item: $ => seq( $._path, optional(choice( - seq('=', field('value', $._literal)), + seq('=', field('value', $._expression)), field('arguments', $.meta_arguments) )) ), diff --git a/src/grammar.json b/src/grammar.json index 04ecd975..3a8dccf3 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -978,7 +978,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_literal" + "name": "_expression" } } ] @@ -1025,7 +1025,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_literal" + "name": "_expression" } } ] @@ -1482,7 +1482,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_literal" + "name": "_expression" } } ] diff --git a/src/node-types.json b/src/node-types.json index 6975e66e..664bbc0d 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -658,7 +658,7 @@ "required": false, "types": [ { - "type": "_literal", + "type": "_expression", "named": true } ] @@ -2822,7 +2822,7 @@ "required": false, "types": [ { - "type": "_literal", + "type": "_expression", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 1fb65a8e..c501ee34 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,7 +7,7 @@ #define LANGUAGE_VERSION 13 #define STATE_COUNT 2583 -#define LARGE_STATE_COUNT 655 +#define LARGE_STATE_COUNT 660 #define SYMBOL_COUNT 368 #define ALIAS_COUNT 3 #define TOKEN_COUNT 183 @@ -13408,11 +13408,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [42] = {.lex_state = 5, .external_lex_state = 2}, [43] = {.lex_state = 5, .external_lex_state = 2}, [44] = {.lex_state = 5, .external_lex_state = 2}, - [45] = {.lex_state = 57, .external_lex_state = 2}, + [45] = {.lex_state = 5, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, - [47] = {.lex_state = 5, .external_lex_state = 2}, - [48] = {.lex_state = 5, .external_lex_state = 2}, - [49] = {.lex_state = 57, .external_lex_state = 2}, + [47] = {.lex_state = 57, .external_lex_state = 2}, + [48] = {.lex_state = 57, .external_lex_state = 2}, + [49] = {.lex_state = 5, .external_lex_state = 2}, [50] = {.lex_state = 5, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, [52] = {.lex_state = 5, .external_lex_state = 2}, @@ -13420,58 +13420,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [54] = {.lex_state = 5, .external_lex_state = 2}, [55] = {.lex_state = 5, .external_lex_state = 2}, [56] = {.lex_state = 5, .external_lex_state = 2}, - [57] = {.lex_state = 5, .external_lex_state = 2}, + [57] = {.lex_state = 57, .external_lex_state = 2}, [58] = {.lex_state = 5, .external_lex_state = 2}, [59] = {.lex_state = 5, .external_lex_state = 2}, [60] = {.lex_state = 5, .external_lex_state = 2}, - [61] = {.lex_state = 5, .external_lex_state = 2}, + [61] = {.lex_state = 57, .external_lex_state = 2}, [62] = {.lex_state = 5, .external_lex_state = 2}, [63] = {.lex_state = 5, .external_lex_state = 2}, - [64] = {.lex_state = 57, .external_lex_state = 2}, + [64] = {.lex_state = 5, .external_lex_state = 2}, [65] = {.lex_state = 5, .external_lex_state = 2}, [66] = {.lex_state = 5, .external_lex_state = 2}, [67] = {.lex_state = 5, .external_lex_state = 2}, [68] = {.lex_state = 5, .external_lex_state = 2}, - [69] = {.lex_state = 5, .external_lex_state = 2}, - [70] = {.lex_state = 57, .external_lex_state = 2}, - [71] = {.lex_state = 57, .external_lex_state = 2}, + [69] = {.lex_state = 57, .external_lex_state = 2}, + [70] = {.lex_state = 5, .external_lex_state = 2}, + [71] = {.lex_state = 5, .external_lex_state = 2}, [72] = {.lex_state = 5, .external_lex_state = 2}, [73] = {.lex_state = 5, .external_lex_state = 2}, [74] = {.lex_state = 5, .external_lex_state = 2}, - [75] = {.lex_state = 5, .external_lex_state = 2}, - [76] = {.lex_state = 5, .external_lex_state = 2}, - [77] = {.lex_state = 57, .external_lex_state = 2}, + [75] = {.lex_state = 57, .external_lex_state = 2}, + [76] = {.lex_state = 57, .external_lex_state = 2}, + [77] = {.lex_state = 5, .external_lex_state = 2}, [78] = {.lex_state = 57, .external_lex_state = 2}, - [79] = {.lex_state = 5, .external_lex_state = 2}, + [79] = {.lex_state = 57, .external_lex_state = 2}, [80] = {.lex_state = 5, .external_lex_state = 2}, [81] = {.lex_state = 5, .external_lex_state = 2}, [82] = {.lex_state = 5, .external_lex_state = 2}, [83] = {.lex_state = 5, .external_lex_state = 2}, [84] = {.lex_state = 57, .external_lex_state = 2}, [85] = {.lex_state = 5, .external_lex_state = 2}, - [86] = {.lex_state = 5, .external_lex_state = 2}, + [86] = {.lex_state = 57, .external_lex_state = 2}, [87] = {.lex_state = 5, .external_lex_state = 2}, [88] = {.lex_state = 5, .external_lex_state = 2}, [89] = {.lex_state = 5, .external_lex_state = 2}, [90] = {.lex_state = 5, .external_lex_state = 2}, [91] = {.lex_state = 5, .external_lex_state = 2}, - [92] = {.lex_state = 5, .external_lex_state = 2}, + [92] = {.lex_state = 57, .external_lex_state = 2}, [93] = {.lex_state = 5, .external_lex_state = 2}, [94] = {.lex_state = 5, .external_lex_state = 2}, [95] = {.lex_state = 57, .external_lex_state = 2}, [96] = {.lex_state = 5, .external_lex_state = 2}, [97] = {.lex_state = 5, .external_lex_state = 2}, [98] = {.lex_state = 57, .external_lex_state = 2}, - [99] = {.lex_state = 5, .external_lex_state = 2}, + [99] = {.lex_state = 57, .external_lex_state = 2}, [100] = {.lex_state = 5, .external_lex_state = 2}, - [101] = {.lex_state = 5, .external_lex_state = 2}, + [101] = {.lex_state = 57, .external_lex_state = 2}, [102] = {.lex_state = 5, .external_lex_state = 2}, [103] = {.lex_state = 5, .external_lex_state = 2}, [104] = {.lex_state = 5, .external_lex_state = 2}, [105] = {.lex_state = 5, .external_lex_state = 2}, [106] = {.lex_state = 5, .external_lex_state = 2}, [107] = {.lex_state = 5, .external_lex_state = 2}, - [108] = {.lex_state = 57, .external_lex_state = 2}, + [108] = {.lex_state = 5, .external_lex_state = 2}, [109] = {.lex_state = 5, .external_lex_state = 2}, [110] = {.lex_state = 5, .external_lex_state = 2}, [111] = {.lex_state = 5, .external_lex_state = 2}, @@ -13480,37 +13480,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [114] = {.lex_state = 5, .external_lex_state = 2}, [115] = {.lex_state = 5, .external_lex_state = 2}, [116] = {.lex_state = 5, .external_lex_state = 2}, - [117] = {.lex_state = 57, .external_lex_state = 2}, + [117] = {.lex_state = 5, .external_lex_state = 2}, [118] = {.lex_state = 5, .external_lex_state = 2}, [119] = {.lex_state = 5, .external_lex_state = 2}, [120] = {.lex_state = 5, .external_lex_state = 2}, [121] = {.lex_state = 5, .external_lex_state = 2}, [122] = {.lex_state = 57, .external_lex_state = 2}, - [123] = {.lex_state = 5, .external_lex_state = 2}, + [123] = {.lex_state = 57, .external_lex_state = 2}, [124] = {.lex_state = 5, .external_lex_state = 2}, - [125] = {.lex_state = 5, .external_lex_state = 2}, + [125] = {.lex_state = 57, .external_lex_state = 2}, [126] = {.lex_state = 5, .external_lex_state = 2}, [127] = {.lex_state = 5, .external_lex_state = 2}, [128] = {.lex_state = 5, .external_lex_state = 2}, [129] = {.lex_state = 5, .external_lex_state = 2}, [130] = {.lex_state = 57, .external_lex_state = 2}, [131] = {.lex_state = 5, .external_lex_state = 2}, - [132] = {.lex_state = 57, .external_lex_state = 2}, - [133] = {.lex_state = 57, .external_lex_state = 2}, - [134] = {.lex_state = 57, .external_lex_state = 2}, + [132] = {.lex_state = 5, .external_lex_state = 2}, + [133] = {.lex_state = 5, .external_lex_state = 2}, + [134] = {.lex_state = 5, .external_lex_state = 2}, [135] = {.lex_state = 5, .external_lex_state = 2}, - [136] = {.lex_state = 57, .external_lex_state = 2}, - [137] = {.lex_state = 57, .external_lex_state = 2}, + [136] = {.lex_state = 5, .external_lex_state = 2}, + [137] = {.lex_state = 5, .external_lex_state = 2}, [138] = {.lex_state = 5, .external_lex_state = 2}, [139] = {.lex_state = 5, .external_lex_state = 2}, [140] = {.lex_state = 5, .external_lex_state = 2}, - [141] = {.lex_state = 5, .external_lex_state = 2}, - [142] = {.lex_state = 5, .external_lex_state = 2}, - [143] = {.lex_state = 5, .external_lex_state = 2}, + [141] = {.lex_state = 57, .external_lex_state = 2}, + [142] = {.lex_state = 57, .external_lex_state = 2}, + [143] = {.lex_state = 57, .external_lex_state = 2}, [144] = {.lex_state = 5, .external_lex_state = 2}, [145] = {.lex_state = 5, .external_lex_state = 2}, [146] = {.lex_state = 5, .external_lex_state = 2}, - [147] = {.lex_state = 57, .external_lex_state = 2}, + [147] = {.lex_state = 5, .external_lex_state = 2}, [148] = {.lex_state = 5, .external_lex_state = 2}, [149] = {.lex_state = 57, .external_lex_state = 2}, [150] = {.lex_state = 5, .external_lex_state = 2}, @@ -13523,35 +13523,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [157] = {.lex_state = 5, .external_lex_state = 2}, [158] = {.lex_state = 5, .external_lex_state = 2}, [159] = {.lex_state = 5, .external_lex_state = 2}, - [160] = {.lex_state = 5, .external_lex_state = 2}, - [161] = {.lex_state = 5, .external_lex_state = 2}, + [160] = {.lex_state = 57, .external_lex_state = 2}, + [161] = {.lex_state = 57, .external_lex_state = 2}, [162] = {.lex_state = 57, .external_lex_state = 2}, - [163] = {.lex_state = 5, .external_lex_state = 2}, - [164] = {.lex_state = 57, .external_lex_state = 2}, - [165] = {.lex_state = 5, .external_lex_state = 2}, + [163] = {.lex_state = 57, .external_lex_state = 2}, + [164] = {.lex_state = 5, .external_lex_state = 2}, + [165] = {.lex_state = 57, .external_lex_state = 2}, [166] = {.lex_state = 5, .external_lex_state = 2}, - [167] = {.lex_state = 57, .external_lex_state = 2}, + [167] = {.lex_state = 5, .external_lex_state = 2}, [168] = {.lex_state = 5, .external_lex_state = 2}, [169] = {.lex_state = 57, .external_lex_state = 2}, [170] = {.lex_state = 5, .external_lex_state = 2}, [171] = {.lex_state = 5, .external_lex_state = 2}, - [172] = {.lex_state = 57, .external_lex_state = 2}, + [172] = {.lex_state = 5, .external_lex_state = 2}, [173] = {.lex_state = 5, .external_lex_state = 2}, [174] = {.lex_state = 5, .external_lex_state = 2}, [175] = {.lex_state = 5, .external_lex_state = 2}, [176] = {.lex_state = 5, .external_lex_state = 2}, - [177] = {.lex_state = 57, .external_lex_state = 2}, - [178] = {.lex_state = 57, .external_lex_state = 2}, + [177] = {.lex_state = 5, .external_lex_state = 2}, + [178] = {.lex_state = 5, .external_lex_state = 2}, [179] = {.lex_state = 5, .external_lex_state = 2}, [180] = {.lex_state = 5, .external_lex_state = 2}, - [181] = {.lex_state = 57, .external_lex_state = 2}, - [182] = {.lex_state = 57, .external_lex_state = 2}, - [183] = {.lex_state = 57, .external_lex_state = 2}, - [184] = {.lex_state = 6, .external_lex_state = 2}, - [185] = {.lex_state = 6, .external_lex_state = 2}, - [186] = {.lex_state = 6, .external_lex_state = 2}, - [187] = {.lex_state = 6, .external_lex_state = 2}, - [188] = {.lex_state = 6, .external_lex_state = 2}, + [181] = {.lex_state = 5, .external_lex_state = 2}, + [182] = {.lex_state = 5, .external_lex_state = 2}, + [183] = {.lex_state = 5, .external_lex_state = 2}, + [184] = {.lex_state = 5, .external_lex_state = 2}, + [185] = {.lex_state = 5, .external_lex_state = 2}, + [186] = {.lex_state = 5, .external_lex_state = 2}, + [187] = {.lex_state = 5, .external_lex_state = 2}, + [188] = {.lex_state = 57, .external_lex_state = 2}, [189] = {.lex_state = 6, .external_lex_state = 2}, [190] = {.lex_state = 6, .external_lex_state = 2}, [191] = {.lex_state = 6, .external_lex_state = 2}, @@ -13562,73 +13562,73 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [196] = {.lex_state = 6, .external_lex_state = 2}, [197] = {.lex_state = 6, .external_lex_state = 2}, [198] = {.lex_state = 6, .external_lex_state = 2}, - [199] = {.lex_state = 5, .external_lex_state = 2}, - [200] = {.lex_state = 5, .external_lex_state = 2}, - [201] = {.lex_state = 5, .external_lex_state = 2}, - [202] = {.lex_state = 5, .external_lex_state = 2}, - [203] = {.lex_state = 1, .external_lex_state = 2}, + [199] = {.lex_state = 6, .external_lex_state = 2}, + [200] = {.lex_state = 6, .external_lex_state = 2}, + [201] = {.lex_state = 6, .external_lex_state = 2}, + [202] = {.lex_state = 6, .external_lex_state = 2}, + [203] = {.lex_state = 6, .external_lex_state = 2}, [204] = {.lex_state = 5, .external_lex_state = 2}, [205] = {.lex_state = 5, .external_lex_state = 2}, [206] = {.lex_state = 5, .external_lex_state = 2}, [207] = {.lex_state = 5, .external_lex_state = 2}, - [208] = {.lex_state = 5, .external_lex_state = 2}, + [208] = {.lex_state = 1, .external_lex_state = 2}, [209] = {.lex_state = 5, .external_lex_state = 2}, [210] = {.lex_state = 5, .external_lex_state = 2}, [211] = {.lex_state = 5, .external_lex_state = 2}, [212] = {.lex_state = 5, .external_lex_state = 2}, [213] = {.lex_state = 5, .external_lex_state = 2}, [214] = {.lex_state = 5, .external_lex_state = 2}, - [215] = {.lex_state = 4, .external_lex_state = 3}, - [216] = {.lex_state = 1, .external_lex_state = 2}, - [217] = {.lex_state = 4, .external_lex_state = 3}, - [218] = {.lex_state = 4, .external_lex_state = 3}, - [219] = {.lex_state = 4, .external_lex_state = 3}, - [220] = {.lex_state = 1, .external_lex_state = 2}, + [215] = {.lex_state = 5, .external_lex_state = 2}, + [216] = {.lex_state = 5, .external_lex_state = 2}, + [217] = {.lex_state = 5, .external_lex_state = 2}, + [218] = {.lex_state = 5, .external_lex_state = 2}, + [219] = {.lex_state = 5, .external_lex_state = 2}, + [220] = {.lex_state = 4, .external_lex_state = 3}, [221] = {.lex_state = 4, .external_lex_state = 3}, - [222] = {.lex_state = 4, .external_lex_state = 3}, - [223] = {.lex_state = 4, .external_lex_state = 3}, - [224] = {.lex_state = 1, .external_lex_state = 2}, - [225] = {.lex_state = 1, .external_lex_state = 2}, - [226] = {.lex_state = 1, .external_lex_state = 2}, - [227] = {.lex_state = 1, .external_lex_state = 2}, - [228] = {.lex_state = 1, .external_lex_state = 2}, + [222] = {.lex_state = 1, .external_lex_state = 2}, + [223] = {.lex_state = 1, .external_lex_state = 2}, + [224] = {.lex_state = 4, .external_lex_state = 3}, + [225] = {.lex_state = 4, .external_lex_state = 3}, + [226] = {.lex_state = 4, .external_lex_state = 3}, + [227] = {.lex_state = 4, .external_lex_state = 3}, + [228] = {.lex_state = 4, .external_lex_state = 3}, [229] = {.lex_state = 1, .external_lex_state = 2}, - [230] = {.lex_state = 5, .external_lex_state = 2}, + [230] = {.lex_state = 1, .external_lex_state = 2}, [231] = {.lex_state = 1, .external_lex_state = 2}, - [232] = {.lex_state = 5, .external_lex_state = 2}, - [233] = {.lex_state = 5, .external_lex_state = 2}, + [232] = {.lex_state = 1, .external_lex_state = 2}, + [233] = {.lex_state = 1, .external_lex_state = 2}, [234] = {.lex_state = 1, .external_lex_state = 2}, - [235] = {.lex_state = 1, .external_lex_state = 2}, - [236] = {.lex_state = 1, .external_lex_state = 2}, + [235] = {.lex_state = 5, .external_lex_state = 2}, + [236] = {.lex_state = 5, .external_lex_state = 2}, [237] = {.lex_state = 1, .external_lex_state = 2}, - [238] = {.lex_state = 5, .external_lex_state = 2}, + [238] = {.lex_state = 1, .external_lex_state = 2}, [239] = {.lex_state = 1, .external_lex_state = 2}, [240] = {.lex_state = 1, .external_lex_state = 2}, [241] = {.lex_state = 1, .external_lex_state = 2}, - [242] = {.lex_state = 1, .external_lex_state = 2}, + [242] = {.lex_state = 5, .external_lex_state = 2}, [243] = {.lex_state = 1, .external_lex_state = 2}, [244] = {.lex_state = 1, .external_lex_state = 2}, - [245] = {.lex_state = 1, .external_lex_state = 2}, + [245] = {.lex_state = 5, .external_lex_state = 2}, [246] = {.lex_state = 1, .external_lex_state = 2}, [247] = {.lex_state = 1, .external_lex_state = 2}, [248] = {.lex_state = 1, .external_lex_state = 2}, [249] = {.lex_state = 1, .external_lex_state = 2}, [250] = {.lex_state = 1, .external_lex_state = 2}, [251] = {.lex_state = 1, .external_lex_state = 2}, - [252] = {.lex_state = 5, .external_lex_state = 2}, - [253] = {.lex_state = 5, .external_lex_state = 2}, - [254] = {.lex_state = 5, .external_lex_state = 2}, - [255] = {.lex_state = 14, .external_lex_state = 3}, - [256] = {.lex_state = 14, .external_lex_state = 3}, - [257] = {.lex_state = 14, .external_lex_state = 3}, - [258] = {.lex_state = 14, .external_lex_state = 3}, - [259] = {.lex_state = 14, .external_lex_state = 3}, - [260] = {.lex_state = 11, .external_lex_state = 2}, - [261] = {.lex_state = 58, .external_lex_state = 2}, - [262] = {.lex_state = 58, .external_lex_state = 2}, - [263] = {.lex_state = 58, .external_lex_state = 2}, - [264] = {.lex_state = 58, .external_lex_state = 2}, - [265] = {.lex_state = 58, .external_lex_state = 2}, + [252] = {.lex_state = 1, .external_lex_state = 2}, + [253] = {.lex_state = 1, .external_lex_state = 2}, + [254] = {.lex_state = 1, .external_lex_state = 2}, + [255] = {.lex_state = 1, .external_lex_state = 2}, + [256] = {.lex_state = 1, .external_lex_state = 2}, + [257] = {.lex_state = 5, .external_lex_state = 2}, + [258] = {.lex_state = 5, .external_lex_state = 2}, + [259] = {.lex_state = 5, .external_lex_state = 2}, + [260] = {.lex_state = 14, .external_lex_state = 3}, + [261] = {.lex_state = 14, .external_lex_state = 3}, + [262] = {.lex_state = 14, .external_lex_state = 3}, + [263] = {.lex_state = 14, .external_lex_state = 3}, + [264] = {.lex_state = 11, .external_lex_state = 2}, + [265] = {.lex_state = 14, .external_lex_state = 3}, [266] = {.lex_state = 58, .external_lex_state = 2}, [267] = {.lex_state = 58, .external_lex_state = 2}, [268] = {.lex_state = 58, .external_lex_state = 2}, @@ -13852,93 +13852,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [486] = {.lex_state = 58, .external_lex_state = 2}, [487] = {.lex_state = 58, .external_lex_state = 2}, [488] = {.lex_state = 58, .external_lex_state = 2}, - [489] = {.lex_state = 11, .external_lex_state = 2}, - [490] = {.lex_state = 11, .external_lex_state = 2}, - [491] = {.lex_state = 5, .external_lex_state = 2}, - [492] = {.lex_state = 11, .external_lex_state = 2}, - [493] = {.lex_state = 11, .external_lex_state = 2}, + [489] = {.lex_state = 58, .external_lex_state = 2}, + [490] = {.lex_state = 58, .external_lex_state = 2}, + [491] = {.lex_state = 58, .external_lex_state = 2}, + [492] = {.lex_state = 58, .external_lex_state = 2}, + [493] = {.lex_state = 58, .external_lex_state = 2}, [494] = {.lex_state = 11, .external_lex_state = 2}, - [495] = {.lex_state = 11, .external_lex_state = 2}, + [495] = {.lex_state = 5, .external_lex_state = 2}, [496] = {.lex_state = 11, .external_lex_state = 2}, [497] = {.lex_state = 11, .external_lex_state = 2}, [498] = {.lex_state = 11, .external_lex_state = 2}, - [499] = {.lex_state = 11, .external_lex_state = 2}, + [499] = {.lex_state = 5, .external_lex_state = 2}, [500] = {.lex_state = 11, .external_lex_state = 2}, [501] = {.lex_state = 11, .external_lex_state = 2}, [502] = {.lex_state = 11, .external_lex_state = 2}, - [503] = {.lex_state = 12, .external_lex_state = 2}, - [504] = {.lex_state = 5, .external_lex_state = 2}, - [505] = {.lex_state = 5, .external_lex_state = 2}, - [506] = {.lex_state = 11, .external_lex_state = 2}, - [507] = {.lex_state = 11, .external_lex_state = 2}, - [508] = {.lex_state = 5, .external_lex_state = 2}, - [509] = {.lex_state = 12, .external_lex_state = 2}, - [510] = {.lex_state = 12, .external_lex_state = 2}, - [511] = {.lex_state = 12, .external_lex_state = 2}, + [503] = {.lex_state = 11, .external_lex_state = 2}, + [504] = {.lex_state = 11, .external_lex_state = 2}, + [505] = {.lex_state = 11, .external_lex_state = 2}, + [506] = {.lex_state = 12, .external_lex_state = 2}, + [507] = {.lex_state = 5, .external_lex_state = 2}, + [508] = {.lex_state = 11, .external_lex_state = 2}, + [509] = {.lex_state = 11, .external_lex_state = 2}, + [510] = {.lex_state = 11, .external_lex_state = 2}, + [511] = {.lex_state = 11, .external_lex_state = 2}, [512] = {.lex_state = 11, .external_lex_state = 2}, - [513] = {.lex_state = 11, .external_lex_state = 2}, - [514] = {.lex_state = 11, .external_lex_state = 2}, - [515] = {.lex_state = 11, .external_lex_state = 2}, - [516] = {.lex_state = 12, .external_lex_state = 2}, - [517] = {.lex_state = 12, .external_lex_state = 2}, - [518] = {.lex_state = 12, .external_lex_state = 2}, - [519] = {.lex_state = 12, .external_lex_state = 2}, - [520] = {.lex_state = 12, .external_lex_state = 2}, + [513] = {.lex_state = 5, .external_lex_state = 2}, + [514] = {.lex_state = 12, .external_lex_state = 2}, + [515] = {.lex_state = 12, .external_lex_state = 2}, + [516] = {.lex_state = 11, .external_lex_state = 2}, + [517] = {.lex_state = 11, .external_lex_state = 2}, + [518] = {.lex_state = 11, .external_lex_state = 2}, + [519] = {.lex_state = 11, .external_lex_state = 2}, + [520] = {.lex_state = 11, .external_lex_state = 2}, [521] = {.lex_state = 12, .external_lex_state = 2}, [522] = {.lex_state = 12, .external_lex_state = 2}, [523] = {.lex_state = 12, .external_lex_state = 2}, [524] = {.lex_state = 12, .external_lex_state = 2}, [525] = {.lex_state = 12, .external_lex_state = 2}, [526] = {.lex_state = 11, .external_lex_state = 2}, - [527] = {.lex_state = 12, .external_lex_state = 2}, - [528] = {.lex_state = 12, .external_lex_state = 2}, + [527] = {.lex_state = 11, .external_lex_state = 2}, + [528] = {.lex_state = 11, .external_lex_state = 2}, [529] = {.lex_state = 12, .external_lex_state = 2}, [530] = {.lex_state = 12, .external_lex_state = 2}, [531] = {.lex_state = 12, .external_lex_state = 2}, [532] = {.lex_state = 12, .external_lex_state = 2}, [533] = {.lex_state = 12, .external_lex_state = 2}, - [534] = {.lex_state = 11, .external_lex_state = 2}, + [534] = {.lex_state = 12, .external_lex_state = 2}, [535] = {.lex_state = 12, .external_lex_state = 2}, - [536] = {.lex_state = 11, .external_lex_state = 2}, - [537] = {.lex_state = 11, .external_lex_state = 2}, - [538] = {.lex_state = 12, .external_lex_state = 2}, + [536] = {.lex_state = 12, .external_lex_state = 2}, + [537] = {.lex_state = 12, .external_lex_state = 2}, + [538] = {.lex_state = 11, .external_lex_state = 2}, [539] = {.lex_state = 12, .external_lex_state = 2}, [540] = {.lex_state = 12, .external_lex_state = 2}, - [541] = {.lex_state = 12, .external_lex_state = 2}, + [541] = {.lex_state = 11, .external_lex_state = 2}, [542] = {.lex_state = 12, .external_lex_state = 2}, [543] = {.lex_state = 12, .external_lex_state = 2}, [544] = {.lex_state = 11, .external_lex_state = 2}, - [545] = {.lex_state = 11, .external_lex_state = 2}, + [545] = {.lex_state = 12, .external_lex_state = 2}, [546] = {.lex_state = 12, .external_lex_state = 2}, [547] = {.lex_state = 12, .external_lex_state = 2}, - [548] = {.lex_state = 11, .external_lex_state = 2}, - [549] = {.lex_state = 11, .external_lex_state = 2}, + [548] = {.lex_state = 12, .external_lex_state = 2}, + [549] = {.lex_state = 12, .external_lex_state = 2}, [550] = {.lex_state = 11, .external_lex_state = 2}, - [551] = {.lex_state = 12, .external_lex_state = 2}, + [551] = {.lex_state = 11, .external_lex_state = 2}, [552] = {.lex_state = 11, .external_lex_state = 2}, - [553] = {.lex_state = 5, .external_lex_state = 2}, - [554] = {.lex_state = 5, .external_lex_state = 2}, - [555] = {.lex_state = 4, .external_lex_state = 3}, - [556] = {.lex_state = 4, .external_lex_state = 3}, - [557] = {.lex_state = 4, .external_lex_state = 3}, - [558] = {.lex_state = 4, .external_lex_state = 3}, + [553] = {.lex_state = 12, .external_lex_state = 2}, + [554] = {.lex_state = 12, .external_lex_state = 2}, + [555] = {.lex_state = 12, .external_lex_state = 2}, + [556] = {.lex_state = 12, .external_lex_state = 2}, + [557] = {.lex_state = 12, .external_lex_state = 2}, + [558] = {.lex_state = 5, .external_lex_state = 2}, [559] = {.lex_state = 4, .external_lex_state = 3}, - [560] = {.lex_state = 4, .external_lex_state = 3}, + [560] = {.lex_state = 5, .external_lex_state = 2}, [561] = {.lex_state = 4, .external_lex_state = 3}, [562] = {.lex_state = 4, .external_lex_state = 3}, [563] = {.lex_state = 4, .external_lex_state = 3}, [564] = {.lex_state = 4, .external_lex_state = 3}, - [565] = {.lex_state = 10, .external_lex_state = 2}, - [566] = {.lex_state = 11, .external_lex_state = 2}, - [567] = {.lex_state = 11, .external_lex_state = 2}, - [568] = {.lex_state = 11, .external_lex_state = 2}, - [569] = {.lex_state = 11, .external_lex_state = 2}, - [570] = {.lex_state = 5, .external_lex_state = 2}, + [565] = {.lex_state = 4, .external_lex_state = 3}, + [566] = {.lex_state = 4, .external_lex_state = 3}, + [567] = {.lex_state = 4, .external_lex_state = 3}, + [568] = {.lex_state = 4, .external_lex_state = 3}, + [569] = {.lex_state = 10, .external_lex_state = 2}, + [570] = {.lex_state = 4, .external_lex_state = 3}, [571] = {.lex_state = 5, .external_lex_state = 2}, [572] = {.lex_state = 11, .external_lex_state = 2}, [573] = {.lex_state = 11, .external_lex_state = 2}, - [574] = {.lex_state = 5, .external_lex_state = 2}, - [575] = {.lex_state = 5, .external_lex_state = 2}, + [574] = {.lex_state = 11, .external_lex_state = 2}, + [575] = {.lex_state = 11, .external_lex_state = 2}, [576] = {.lex_state = 11, .external_lex_state = 2}, [577] = {.lex_state = 11, .external_lex_state = 2}, [578] = {.lex_state = 11, .external_lex_state = 2}, @@ -13948,42 +13948,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [582] = {.lex_state = 11, .external_lex_state = 2}, [583] = {.lex_state = 4, .external_lex_state = 3}, [584] = {.lex_state = 11, .external_lex_state = 2}, - [585] = {.lex_state = 11, .external_lex_state = 2}, - [586] = {.lex_state = 11, .external_lex_state = 2}, - [587] = {.lex_state = 12, .external_lex_state = 2}, - [588] = {.lex_state = 5, .external_lex_state = 2}, - [589] = {.lex_state = 12, .external_lex_state = 2}, - [590] = {.lex_state = 12, .external_lex_state = 2}, - [591] = {.lex_state = 12, .external_lex_state = 2}, - [592] = {.lex_state = 4, .external_lex_state = 3}, - [593] = {.lex_state = 12, .external_lex_state = 2}, - [594] = {.lex_state = 4, .external_lex_state = 3}, + [585] = {.lex_state = 5, .external_lex_state = 2}, + [586] = {.lex_state = 5, .external_lex_state = 2}, + [587] = {.lex_state = 11, .external_lex_state = 2}, + [588] = {.lex_state = 11, .external_lex_state = 2}, + [589] = {.lex_state = 11, .external_lex_state = 2}, + [590] = {.lex_state = 11, .external_lex_state = 2}, + [591] = {.lex_state = 5, .external_lex_state = 2}, + [592] = {.lex_state = 12, .external_lex_state = 2}, + [593] = {.lex_state = 5, .external_lex_state = 2}, + [594] = {.lex_state = 5, .external_lex_state = 2}, [595] = {.lex_state = 12, .external_lex_state = 2}, - [596] = {.lex_state = 5, .external_lex_state = 2}, - [597] = {.lex_state = 5, .external_lex_state = 2}, + [596] = {.lex_state = 4, .external_lex_state = 3}, + [597] = {.lex_state = 12, .external_lex_state = 2}, [598] = {.lex_state = 5, .external_lex_state = 2}, [599] = {.lex_state = 5, .external_lex_state = 2}, - [600] = {.lex_state = 5, .external_lex_state = 2}, - [601] = {.lex_state = 12, .external_lex_state = 2}, + [600] = {.lex_state = 12, .external_lex_state = 2}, + [601] = {.lex_state = 5, .external_lex_state = 2}, [602] = {.lex_state = 4, .external_lex_state = 3}, - [603] = {.lex_state = 5, .external_lex_state = 2}, - [604] = {.lex_state = 4, .external_lex_state = 3}, + [603] = {.lex_state = 12, .external_lex_state = 2}, + [604] = {.lex_state = 5, .external_lex_state = 2}, [605] = {.lex_state = 5, .external_lex_state = 2}, [606] = {.lex_state = 4, .external_lex_state = 3}, - [607] = {.lex_state = 5, .external_lex_state = 2}, - [608] = {.lex_state = 5, .external_lex_state = 2}, - [609] = {.lex_state = 5, .external_lex_state = 2}, + [607] = {.lex_state = 12, .external_lex_state = 2}, + [608] = {.lex_state = 12, .external_lex_state = 2}, + [609] = {.lex_state = 4, .external_lex_state = 3}, [610] = {.lex_state = 5, .external_lex_state = 2}, - [611] = {.lex_state = 5, .external_lex_state = 2}, + [611] = {.lex_state = 4, .external_lex_state = 3}, [612] = {.lex_state = 5, .external_lex_state = 2}, [613] = {.lex_state = 5, .external_lex_state = 2}, - [614] = {.lex_state = 5, .external_lex_state = 2}, + [614] = {.lex_state = 4, .external_lex_state = 3}, [615] = {.lex_state = 5, .external_lex_state = 2}, [616] = {.lex_state = 5, .external_lex_state = 2}, [617] = {.lex_state = 5, .external_lex_state = 2}, - [618] = {.lex_state = 4, .external_lex_state = 3}, + [618] = {.lex_state = 5, .external_lex_state = 2}, [619] = {.lex_state = 5, .external_lex_state = 2}, - [620] = {.lex_state = 4, .external_lex_state = 3}, + [620] = {.lex_state = 5, .external_lex_state = 2}, [621] = {.lex_state = 5, .external_lex_state = 2}, [622] = {.lex_state = 5, .external_lex_state = 2}, [623] = {.lex_state = 5, .external_lex_state = 2}, @@ -13992,23 +13992,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [626] = {.lex_state = 5, .external_lex_state = 2}, [627] = {.lex_state = 5, .external_lex_state = 2}, [628] = {.lex_state = 5, .external_lex_state = 2}, - [629] = {.lex_state = 4, .external_lex_state = 3}, + [629] = {.lex_state = 5, .external_lex_state = 2}, [630] = {.lex_state = 5, .external_lex_state = 2}, - [631] = {.lex_state = 5, .external_lex_state = 2}, + [631] = {.lex_state = 4, .external_lex_state = 3}, [632] = {.lex_state = 5, .external_lex_state = 2}, [633] = {.lex_state = 5, .external_lex_state = 2}, [634] = {.lex_state = 5, .external_lex_state = 2}, - [635] = {.lex_state = 5, .external_lex_state = 2}, + [635] = {.lex_state = 4, .external_lex_state = 3}, [636] = {.lex_state = 5, .external_lex_state = 2}, [637] = {.lex_state = 5, .external_lex_state = 2}, [638] = {.lex_state = 5, .external_lex_state = 2}, [639] = {.lex_state = 5, .external_lex_state = 2}, [640] = {.lex_state = 5, .external_lex_state = 2}, - [641] = {.lex_state = 4, .external_lex_state = 3}, - [642] = {.lex_state = 4, .external_lex_state = 3}, - [643] = {.lex_state = 4, .external_lex_state = 3}, - [644] = {.lex_state = 4, .external_lex_state = 3}, - [645] = {.lex_state = 4, .external_lex_state = 3}, + [641] = {.lex_state = 5, .external_lex_state = 2}, + [642] = {.lex_state = 5, .external_lex_state = 2}, + [643] = {.lex_state = 5, .external_lex_state = 2}, + [644] = {.lex_state = 5, .external_lex_state = 2}, + [645] = {.lex_state = 5, .external_lex_state = 2}, [646] = {.lex_state = 4, .external_lex_state = 3}, [647] = {.lex_state = 4, .external_lex_state = 3}, [648] = {.lex_state = 4, .external_lex_state = 3}, @@ -14078,8 +14078,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [712] = {.lex_state = 4, .external_lex_state = 3}, [713] = {.lex_state = 4, .external_lex_state = 3}, [714] = {.lex_state = 4, .external_lex_state = 3}, - [715] = {.lex_state = 5, .external_lex_state = 2}, - [716] = {.lex_state = 4, .external_lex_state = 3}, + [715] = {.lex_state = 4, .external_lex_state = 3}, + [716] = {.lex_state = 5, .external_lex_state = 2}, [717] = {.lex_state = 4, .external_lex_state = 3}, [718] = {.lex_state = 4, .external_lex_state = 3}, [719] = {.lex_state = 4, .external_lex_state = 3}, @@ -14128,51 +14128,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [762] = {.lex_state = 4, .external_lex_state = 3}, [763] = {.lex_state = 4, .external_lex_state = 3}, [764] = {.lex_state = 4, .external_lex_state = 3}, - [765] = {.lex_state = 5, .external_lex_state = 2}, - [766] = {.lex_state = 5, .external_lex_state = 2}, - [767] = {.lex_state = 5, .external_lex_state = 2}, - [768] = {.lex_state = 5, .external_lex_state = 2}, - [769] = {.lex_state = 6, .external_lex_state = 2}, - [770] = {.lex_state = 3, .external_lex_state = 3}, - [771] = {.lex_state = 3, .external_lex_state = 3}, - [772] = {.lex_state = 3, .external_lex_state = 3}, - [773] = {.lex_state = 3, .external_lex_state = 3}, - [774] = {.lex_state = 3, .external_lex_state = 3}, - [775] = {.lex_state = 14, .external_lex_state = 3}, + [765] = {.lex_state = 4, .external_lex_state = 3}, + [766] = {.lex_state = 4, .external_lex_state = 3}, + [767] = {.lex_state = 4, .external_lex_state = 3}, + [768] = {.lex_state = 4, .external_lex_state = 3}, + [769] = {.lex_state = 4, .external_lex_state = 3}, + [770] = {.lex_state = 5, .external_lex_state = 2}, + [771] = {.lex_state = 5, .external_lex_state = 2}, + [772] = {.lex_state = 5, .external_lex_state = 2}, + [773] = {.lex_state = 5, .external_lex_state = 2}, + [774] = {.lex_state = 6, .external_lex_state = 2}, + [775] = {.lex_state = 3, .external_lex_state = 3}, [776] = {.lex_state = 3, .external_lex_state = 3}, [777] = {.lex_state = 3, .external_lex_state = 3}, [778] = {.lex_state = 14, .external_lex_state = 3}, - [779] = {.lex_state = 14, .external_lex_state = 3}, + [779] = {.lex_state = 3, .external_lex_state = 3}, [780] = {.lex_state = 3, .external_lex_state = 3}, - [781] = {.lex_state = 2, .external_lex_state = 3}, - [782] = {.lex_state = 14, .external_lex_state = 3}, - [783] = {.lex_state = 14, .external_lex_state = 3}, + [781] = {.lex_state = 3, .external_lex_state = 3}, + [782] = {.lex_state = 3, .external_lex_state = 3}, + [783] = {.lex_state = 3, .external_lex_state = 3}, [784] = {.lex_state = 3, .external_lex_state = 3}, - [785] = {.lex_state = 2, .external_lex_state = 3}, - [786] = {.lex_state = 3, .external_lex_state = 3}, - [787] = {.lex_state = 2, .external_lex_state = 3}, - [788] = {.lex_state = 2, .external_lex_state = 3}, + [785] = {.lex_state = 3, .external_lex_state = 3}, + [786] = {.lex_state = 14, .external_lex_state = 3}, + [787] = {.lex_state = 14, .external_lex_state = 3}, + [788] = {.lex_state = 14, .external_lex_state = 3}, [789] = {.lex_state = 2, .external_lex_state = 3}, - [790] = {.lex_state = 2, .external_lex_state = 3}, + [790] = {.lex_state = 14, .external_lex_state = 3}, [791] = {.lex_state = 2, .external_lex_state = 3}, [792] = {.lex_state = 2, .external_lex_state = 3}, [793] = {.lex_state = 2, .external_lex_state = 3}, [794] = {.lex_state = 2, .external_lex_state = 3}, - [795] = {.lex_state = 14, .external_lex_state = 3}, - [796] = {.lex_state = 14, .external_lex_state = 3}, - [797] = {.lex_state = 14, .external_lex_state = 3}, - [798] = {.lex_state = 14, .external_lex_state = 3}, - [799] = {.lex_state = 14, .external_lex_state = 3}, - [800] = {.lex_state = 2, .external_lex_state = 3}, + [795] = {.lex_state = 2, .external_lex_state = 3}, + [796] = {.lex_state = 2, .external_lex_state = 3}, + [797] = {.lex_state = 2, .external_lex_state = 3}, + [798] = {.lex_state = 2, .external_lex_state = 3}, + [799] = {.lex_state = 2, .external_lex_state = 3}, + [800] = {.lex_state = 14, .external_lex_state = 3}, [801] = {.lex_state = 14, .external_lex_state = 3}, [802] = {.lex_state = 14, .external_lex_state = 3}, - [803] = {.lex_state = 2, .external_lex_state = 3}, + [803] = {.lex_state = 14, .external_lex_state = 3}, [804] = {.lex_state = 2, .external_lex_state = 3}, [805] = {.lex_state = 14, .external_lex_state = 3}, - [806] = {.lex_state = 9, .external_lex_state = 3}, + [806] = {.lex_state = 14, .external_lex_state = 3}, [807] = {.lex_state = 2, .external_lex_state = 3}, [808] = {.lex_state = 14, .external_lex_state = 3}, - [809] = {.lex_state = 14, .external_lex_state = 3}, + [809] = {.lex_state = 2, .external_lex_state = 3}, [810] = {.lex_state = 14, .external_lex_state = 3}, [811] = {.lex_state = 14, .external_lex_state = 3}, [812] = {.lex_state = 14, .external_lex_state = 3}, @@ -14190,68 +14190,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [824] = {.lex_state = 14, .external_lex_state = 3}, [825] = {.lex_state = 14, .external_lex_state = 3}, [826] = {.lex_state = 14, .external_lex_state = 3}, - [827] = {.lex_state = 14, .external_lex_state = 3}, - [828] = {.lex_state = 14, .external_lex_state = 3}, + [827] = {.lex_state = 2, .external_lex_state = 3}, + [828] = {.lex_state = 2, .external_lex_state = 3}, [829] = {.lex_state = 14, .external_lex_state = 3}, [830] = {.lex_state = 14, .external_lex_state = 3}, [831] = {.lex_state = 14, .external_lex_state = 3}, [832] = {.lex_state = 14, .external_lex_state = 3}, [833] = {.lex_state = 14, .external_lex_state = 3}, - [834] = {.lex_state = 14, .external_lex_state = 3}, + [834] = {.lex_state = 2, .external_lex_state = 3}, [835] = {.lex_state = 14, .external_lex_state = 3}, - [836] = {.lex_state = 2, .external_lex_state = 3}, + [836] = {.lex_state = 14, .external_lex_state = 3}, [837] = {.lex_state = 14, .external_lex_state = 3}, - [838] = {.lex_state = 2, .external_lex_state = 3}, - [839] = {.lex_state = 2, .external_lex_state = 3}, + [838] = {.lex_state = 14, .external_lex_state = 3}, + [839] = {.lex_state = 14, .external_lex_state = 3}, [840] = {.lex_state = 14, .external_lex_state = 3}, [841] = {.lex_state = 14, .external_lex_state = 3}, [842] = {.lex_state = 14, .external_lex_state = 3}, [843] = {.lex_state = 14, .external_lex_state = 3}, [844] = {.lex_state = 14, .external_lex_state = 3}, - [845] = {.lex_state = 2, .external_lex_state = 3}, + [845] = {.lex_state = 14, .external_lex_state = 3}, [846] = {.lex_state = 14, .external_lex_state = 3}, [847] = {.lex_state = 14, .external_lex_state = 3}, [848] = {.lex_state = 14, .external_lex_state = 3}, - [849] = {.lex_state = 2, .external_lex_state = 3}, + [849] = {.lex_state = 14, .external_lex_state = 3}, [850] = {.lex_state = 14, .external_lex_state = 3}, [851] = {.lex_state = 14, .external_lex_state = 3}, [852] = {.lex_state = 14, .external_lex_state = 3}, - [853] = {.lex_state = 14, .external_lex_state = 3}, - [854] = {.lex_state = 2, .external_lex_state = 3}, - [855] = {.lex_state = 2, .external_lex_state = 3}, - [856] = {.lex_state = 2, .external_lex_state = 3}, - [857] = {.lex_state = 2, .external_lex_state = 3}, + [853] = {.lex_state = 2, .external_lex_state = 3}, + [854] = {.lex_state = 14, .external_lex_state = 3}, + [855] = {.lex_state = 14, .external_lex_state = 3}, + [856] = {.lex_state = 14, .external_lex_state = 3}, + [857] = {.lex_state = 14, .external_lex_state = 3}, [858] = {.lex_state = 14, .external_lex_state = 3}, [859] = {.lex_state = 14, .external_lex_state = 3}, - [860] = {.lex_state = 2, .external_lex_state = 3}, + [860] = {.lex_state = 14, .external_lex_state = 3}, [861] = {.lex_state = 14, .external_lex_state = 3}, [862] = {.lex_state = 14, .external_lex_state = 3}, [863] = {.lex_state = 14, .external_lex_state = 3}, [864] = {.lex_state = 14, .external_lex_state = 3}, - [865] = {.lex_state = 14, .external_lex_state = 3}, + [865] = {.lex_state = 2, .external_lex_state = 3}, [866] = {.lex_state = 14, .external_lex_state = 3}, [867] = {.lex_state = 14, .external_lex_state = 3}, [868] = {.lex_state = 14, .external_lex_state = 3}, [869] = {.lex_state = 14, .external_lex_state = 3}, [870] = {.lex_state = 14, .external_lex_state = 3}, - [871] = {.lex_state = 2, .external_lex_state = 3}, + [871] = {.lex_state = 14, .external_lex_state = 3}, [872] = {.lex_state = 14, .external_lex_state = 3}, - [873] = {.lex_state = 2, .external_lex_state = 3}, + [873] = {.lex_state = 14, .external_lex_state = 3}, [874] = {.lex_state = 14, .external_lex_state = 3}, [875] = {.lex_state = 14, .external_lex_state = 3}, [876] = {.lex_state = 14, .external_lex_state = 3}, - [877] = {.lex_state = 14, .external_lex_state = 3}, + [877] = {.lex_state = 2, .external_lex_state = 3}, [878] = {.lex_state = 14, .external_lex_state = 3}, [879] = {.lex_state = 14, .external_lex_state = 3}, [880] = {.lex_state = 14, .external_lex_state = 3}, [881] = {.lex_state = 14, .external_lex_state = 3}, [882] = {.lex_state = 14, .external_lex_state = 3}, - [883] = {.lex_state = 2, .external_lex_state = 3}, - [884] = {.lex_state = 2, .external_lex_state = 3}, + [883] = {.lex_state = 14, .external_lex_state = 3}, + [884] = {.lex_state = 14, .external_lex_state = 3}, [885] = {.lex_state = 14, .external_lex_state = 3}, - [886] = {.lex_state = 14, .external_lex_state = 3}, + [886] = {.lex_state = 2, .external_lex_state = 3}, [887] = {.lex_state = 14, .external_lex_state = 3}, - [888] = {.lex_state = 14, .external_lex_state = 3}, + [888] = {.lex_state = 2, .external_lex_state = 3}, [889] = {.lex_state = 14, .external_lex_state = 3}, [890] = {.lex_state = 14, .external_lex_state = 3}, [891] = {.lex_state = 14, .external_lex_state = 3}, @@ -14267,7 +14267,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [901] = {.lex_state = 14, .external_lex_state = 3}, [902] = {.lex_state = 14, .external_lex_state = 3}, [903] = {.lex_state = 14, .external_lex_state = 3}, - [904] = {.lex_state = 14, .external_lex_state = 3}, + [904] = {.lex_state = 2, .external_lex_state = 3}, [905] = {.lex_state = 14, .external_lex_state = 3}, [906] = {.lex_state = 14, .external_lex_state = 3}, [907] = {.lex_state = 14, .external_lex_state = 3}, @@ -14276,7 +14276,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [910] = {.lex_state = 14, .external_lex_state = 3}, [911] = {.lex_state = 14, .external_lex_state = 3}, [912] = {.lex_state = 14, .external_lex_state = 3}, - [913] = {.lex_state = 2, .external_lex_state = 3}, + [913] = {.lex_state = 14, .external_lex_state = 3}, [914] = {.lex_state = 14, .external_lex_state = 3}, [915] = {.lex_state = 14, .external_lex_state = 3}, [916] = {.lex_state = 14, .external_lex_state = 3}, @@ -14308,44 +14308,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [942] = {.lex_state = 14, .external_lex_state = 3}, [943] = {.lex_state = 14, .external_lex_state = 3}, [944] = {.lex_state = 14, .external_lex_state = 3}, - [945] = {.lex_state = 2, .external_lex_state = 3}, + [945] = {.lex_state = 14, .external_lex_state = 3}, [946] = {.lex_state = 14, .external_lex_state = 3}, - [947] = {.lex_state = 14, .external_lex_state = 3}, + [947] = {.lex_state = 2, .external_lex_state = 3}, [948] = {.lex_state = 14, .external_lex_state = 3}, - [949] = {.lex_state = 14, .external_lex_state = 3}, + [949] = {.lex_state = 2, .external_lex_state = 3}, [950] = {.lex_state = 14, .external_lex_state = 3}, [951] = {.lex_state = 14, .external_lex_state = 3}, [952] = {.lex_state = 14, .external_lex_state = 3}, [953] = {.lex_state = 14, .external_lex_state = 3}, [954] = {.lex_state = 14, .external_lex_state = 3}, - [955] = {.lex_state = 2, .external_lex_state = 3}, + [955] = {.lex_state = 14, .external_lex_state = 3}, [956] = {.lex_state = 14, .external_lex_state = 3}, - [957] = {.lex_state = 14, .external_lex_state = 3}, - [958] = {.lex_state = 2, .external_lex_state = 3}, + [957] = {.lex_state = 9, .external_lex_state = 3}, + [958] = {.lex_state = 14, .external_lex_state = 3}, [959] = {.lex_state = 14, .external_lex_state = 3}, - [960] = {.lex_state = 2, .external_lex_state = 3}, + [960] = {.lex_state = 14, .external_lex_state = 3}, [961] = {.lex_state = 14, .external_lex_state = 3}, [962] = {.lex_state = 14, .external_lex_state = 3}, [963] = {.lex_state = 14, .external_lex_state = 3}, - [964] = {.lex_state = 14, .external_lex_state = 3}, - [965] = {.lex_state = 14, .external_lex_state = 3}, + [964] = {.lex_state = 2, .external_lex_state = 3}, + [965] = {.lex_state = 2, .external_lex_state = 3}, [966] = {.lex_state = 14, .external_lex_state = 3}, - [967] = {.lex_state = 2, .external_lex_state = 3}, + [967] = {.lex_state = 14, .external_lex_state = 3}, [968] = {.lex_state = 14, .external_lex_state = 3}, [969] = {.lex_state = 14, .external_lex_state = 3}, [970] = {.lex_state = 14, .external_lex_state = 3}, [971] = {.lex_state = 14, .external_lex_state = 3}, - [972] = {.lex_state = 14, .external_lex_state = 3}, + [972] = {.lex_state = 2, .external_lex_state = 3}, [973] = {.lex_state = 2, .external_lex_state = 3}, [974] = {.lex_state = 14, .external_lex_state = 3}, [975] = {.lex_state = 14, .external_lex_state = 3}, [976] = {.lex_state = 14, .external_lex_state = 3}, [977] = {.lex_state = 14, .external_lex_state = 3}, [978] = {.lex_state = 14, .external_lex_state = 3}, - [979] = {.lex_state = 14, .external_lex_state = 3}, + [979] = {.lex_state = 2, .external_lex_state = 3}, [980] = {.lex_state = 14, .external_lex_state = 3}, [981] = {.lex_state = 14, .external_lex_state = 3}, - [982] = {.lex_state = 2, .external_lex_state = 3}, + [982] = {.lex_state = 14, .external_lex_state = 3}, [983] = {.lex_state = 14, .external_lex_state = 3}, [984] = {.lex_state = 14, .external_lex_state = 3}, [985] = {.lex_state = 14, .external_lex_state = 3}, @@ -14364,19 +14364,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [998] = {.lex_state = 14, .external_lex_state = 3}, [999] = {.lex_state = 14, .external_lex_state = 3}, [1000] = {.lex_state = 2, .external_lex_state = 3}, - [1001] = {.lex_state = 3, .external_lex_state = 3}, + [1001] = {.lex_state = 2, .external_lex_state = 3}, [1002] = {.lex_state = 2, .external_lex_state = 3}, - [1003] = {.lex_state = 14, .external_lex_state = 3}, + [1003] = {.lex_state = 2, .external_lex_state = 3}, [1004] = {.lex_state = 14, .external_lex_state = 3}, [1005] = {.lex_state = 14, .external_lex_state = 3}, [1006] = {.lex_state = 14, .external_lex_state = 3}, - [1007] = {.lex_state = 14, .external_lex_state = 3}, - [1008] = {.lex_state = 14, .external_lex_state = 3}, - [1009] = {.lex_state = 14, .external_lex_state = 3}, + [1007] = {.lex_state = 3, .external_lex_state = 3}, + [1008] = {.lex_state = 2, .external_lex_state = 3}, + [1009] = {.lex_state = 2, .external_lex_state = 3}, [1010] = {.lex_state = 14, .external_lex_state = 3}, [1011] = {.lex_state = 14, .external_lex_state = 3}, - [1012] = {.lex_state = 2, .external_lex_state = 3}, - [1013] = {.lex_state = 2, .external_lex_state = 3}, + [1012] = {.lex_state = 14, .external_lex_state = 3}, + [1013] = {.lex_state = 14, .external_lex_state = 3}, [1014] = {.lex_state = 14, .external_lex_state = 3}, [1015] = {.lex_state = 14, .external_lex_state = 3}, [1016] = {.lex_state = 14, .external_lex_state = 3}, @@ -14388,9 +14388,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1022] = {.lex_state = 14, .external_lex_state = 3}, [1023] = {.lex_state = 14, .external_lex_state = 3}, [1024] = {.lex_state = 14, .external_lex_state = 3}, - [1025] = {.lex_state = 14, .external_lex_state = 3}, + [1025] = {.lex_state = 2, .external_lex_state = 3}, [1026] = {.lex_state = 14, .external_lex_state = 3}, - [1027] = {.lex_state = 14, .external_lex_state = 3}, + [1027] = {.lex_state = 2, .external_lex_state = 3}, [1028] = {.lex_state = 14, .external_lex_state = 3}, [1029] = {.lex_state = 14, .external_lex_state = 3}, [1030] = {.lex_state = 14, .external_lex_state = 3}, @@ -14400,7 +14400,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1034] = {.lex_state = 14, .external_lex_state = 3}, [1035] = {.lex_state = 14, .external_lex_state = 3}, [1036] = {.lex_state = 14, .external_lex_state = 3}, - [1037] = {.lex_state = 14, .external_lex_state = 3}, + [1037] = {.lex_state = 2, .external_lex_state = 3}, [1038] = {.lex_state = 14, .external_lex_state = 3}, [1039] = {.lex_state = 14, .external_lex_state = 3}, [1040] = {.lex_state = 14, .external_lex_state = 3}, @@ -14410,17 +14410,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1044] = {.lex_state = 14, .external_lex_state = 3}, [1045] = {.lex_state = 14, .external_lex_state = 3}, [1046] = {.lex_state = 14, .external_lex_state = 3}, - [1047] = {.lex_state = 14, .external_lex_state = 3}, - [1048] = {.lex_state = 14, .external_lex_state = 3}, + [1047] = {.lex_state = 2, .external_lex_state = 3}, + [1048] = {.lex_state = 2, .external_lex_state = 3}, [1049] = {.lex_state = 14, .external_lex_state = 3}, [1050] = {.lex_state = 14, .external_lex_state = 3}, [1051] = {.lex_state = 14, .external_lex_state = 3}, [1052] = {.lex_state = 14, .external_lex_state = 3}, - [1053] = {.lex_state = 2, .external_lex_state = 3}, - [1054] = {.lex_state = 2, .external_lex_state = 3}, - [1055] = {.lex_state = 2, .external_lex_state = 3}, - [1056] = {.lex_state = 2, .external_lex_state = 3}, - [1057] = {.lex_state = 2, .external_lex_state = 3}, + [1053] = {.lex_state = 14, .external_lex_state = 3}, + [1054] = {.lex_state = 14, .external_lex_state = 3}, + [1055] = {.lex_state = 14, .external_lex_state = 3}, + [1056] = {.lex_state = 14, .external_lex_state = 3}, + [1057] = {.lex_state = 14, .external_lex_state = 3}, [1058] = {.lex_state = 2, .external_lex_state = 3}, [1059] = {.lex_state = 2, .external_lex_state = 3}, [1060] = {.lex_state = 2, .external_lex_state = 3}, @@ -14433,9 +14433,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1067] = {.lex_state = 2, .external_lex_state = 3}, [1068] = {.lex_state = 2, .external_lex_state = 3}, [1069] = {.lex_state = 2, .external_lex_state = 3}, - [1070] = {.lex_state = 5, .external_lex_state = 2}, + [1070] = {.lex_state = 2, .external_lex_state = 3}, [1071] = {.lex_state = 2, .external_lex_state = 3}, - [1072] = {.lex_state = 5, .external_lex_state = 2}, + [1072] = {.lex_state = 2, .external_lex_state = 3}, [1073] = {.lex_state = 2, .external_lex_state = 3}, [1074] = {.lex_state = 2, .external_lex_state = 3}, [1075] = {.lex_state = 2, .external_lex_state = 3}, @@ -14448,8 +14448,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1082] = {.lex_state = 2, .external_lex_state = 3}, [1083] = {.lex_state = 2, .external_lex_state = 3}, [1084] = {.lex_state = 2, .external_lex_state = 3}, - [1085] = {.lex_state = 2, .external_lex_state = 3}, - [1086] = {.lex_state = 2, .external_lex_state = 3}, + [1085] = {.lex_state = 5, .external_lex_state = 2}, + [1086] = {.lex_state = 4, .external_lex_state = 3}, [1087] = {.lex_state = 2, .external_lex_state = 3}, [1088] = {.lex_state = 2, .external_lex_state = 3}, [1089] = {.lex_state = 2, .external_lex_state = 3}, @@ -14462,11 +14462,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1096] = {.lex_state = 2, .external_lex_state = 3}, [1097] = {.lex_state = 2, .external_lex_state = 3}, [1098] = {.lex_state = 2, .external_lex_state = 3}, - [1099] = {.lex_state = 4, .external_lex_state = 3}, + [1099] = {.lex_state = 2, .external_lex_state = 3}, [1100] = {.lex_state = 2, .external_lex_state = 3}, - [1101] = {.lex_state = 4, .external_lex_state = 3}, + [1101] = {.lex_state = 2, .external_lex_state = 3}, [1102] = {.lex_state = 2, .external_lex_state = 3}, - [1103] = {.lex_state = 2, .external_lex_state = 3}, + [1103] = {.lex_state = 4, .external_lex_state = 3}, [1104] = {.lex_state = 4, .external_lex_state = 3}, [1105] = {.lex_state = 2, .external_lex_state = 3}, [1106] = {.lex_state = 2, .external_lex_state = 3}, @@ -14475,9 +14475,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1109] = {.lex_state = 2, .external_lex_state = 3}, [1110] = {.lex_state = 2, .external_lex_state = 3}, [1111] = {.lex_state = 2, .external_lex_state = 3}, - [1112] = {.lex_state = 4, .external_lex_state = 3}, + [1112] = {.lex_state = 2, .external_lex_state = 3}, [1113] = {.lex_state = 2, .external_lex_state = 3}, - [1114] = {.lex_state = 2, .external_lex_state = 3}, + [1114] = {.lex_state = 4, .external_lex_state = 3}, [1115] = {.lex_state = 2, .external_lex_state = 3}, [1116] = {.lex_state = 2, .external_lex_state = 3}, [1117] = {.lex_state = 2, .external_lex_state = 3}, @@ -14495,30 +14495,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1129] = {.lex_state = 2, .external_lex_state = 3}, [1130] = {.lex_state = 2, .external_lex_state = 3}, [1131] = {.lex_state = 2, .external_lex_state = 3}, - [1132] = {.lex_state = 4, .external_lex_state = 3}, + [1132] = {.lex_state = 2, .external_lex_state = 3}, [1133] = {.lex_state = 2, .external_lex_state = 3}, - [1134] = {.lex_state = 4, .external_lex_state = 3}, + [1134] = {.lex_state = 2, .external_lex_state = 3}, [1135] = {.lex_state = 2, .external_lex_state = 3}, [1136] = {.lex_state = 2, .external_lex_state = 3}, [1137] = {.lex_state = 2, .external_lex_state = 3}, - [1138] = {.lex_state = 4, .external_lex_state = 3}, + [1138] = {.lex_state = 2, .external_lex_state = 3}, [1139] = {.lex_state = 2, .external_lex_state = 3}, [1140] = {.lex_state = 2, .external_lex_state = 3}, - [1141] = {.lex_state = 4, .external_lex_state = 3}, + [1141] = {.lex_state = 2, .external_lex_state = 3}, [1142] = {.lex_state = 2, .external_lex_state = 3}, - [1143] = {.lex_state = 4, .external_lex_state = 3}, + [1143] = {.lex_state = 2, .external_lex_state = 3}, [1144] = {.lex_state = 2, .external_lex_state = 3}, [1145] = {.lex_state = 2, .external_lex_state = 3}, [1146] = {.lex_state = 2, .external_lex_state = 3}, - [1147] = {.lex_state = 2, .external_lex_state = 3}, + [1147] = {.lex_state = 4, .external_lex_state = 3}, [1148] = {.lex_state = 2, .external_lex_state = 3}, - [1149] = {.lex_state = 2, .external_lex_state = 3}, + [1149] = {.lex_state = 5, .external_lex_state = 2}, [1150] = {.lex_state = 2, .external_lex_state = 3}, - [1151] = {.lex_state = 2, .external_lex_state = 3}, - [1152] = {.lex_state = 2, .external_lex_state = 3}, - [1153] = {.lex_state = 5, .external_lex_state = 2}, - [1154] = {.lex_state = 2, .external_lex_state = 3}, - [1155] = {.lex_state = 2, .external_lex_state = 3}, + [1151] = {.lex_state = 4, .external_lex_state = 3}, + [1152] = {.lex_state = 4, .external_lex_state = 3}, + [1153] = {.lex_state = 2, .external_lex_state = 3}, + [1154] = {.lex_state = 4, .external_lex_state = 3}, + [1155] = {.lex_state = 4, .external_lex_state = 3}, [1156] = {.lex_state = 2, .external_lex_state = 3}, [1157] = {.lex_state = 2, .external_lex_state = 3}, [1158] = {.lex_state = 2, .external_lex_state = 3}, @@ -14529,57 +14529,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1163] = {.lex_state = 2, .external_lex_state = 3}, [1164] = {.lex_state = 2, .external_lex_state = 3}, [1165] = {.lex_state = 2, .external_lex_state = 3}, - [1166] = {.lex_state = 2, .external_lex_state = 3}, + [1166] = {.lex_state = 5, .external_lex_state = 2}, [1167] = {.lex_state = 2, .external_lex_state = 3}, - [1168] = {.lex_state = 5, .external_lex_state = 2}, + [1168] = {.lex_state = 2, .external_lex_state = 3}, [1169] = {.lex_state = 2, .external_lex_state = 3}, [1170] = {.lex_state = 2, .external_lex_state = 3}, - [1171] = {.lex_state = 2, .external_lex_state = 3}, + [1171] = {.lex_state = 5, .external_lex_state = 2}, [1172] = {.lex_state = 2, .external_lex_state = 3}, [1173] = {.lex_state = 2, .external_lex_state = 3}, [1174] = {.lex_state = 2, .external_lex_state = 3}, [1175] = {.lex_state = 2, .external_lex_state = 3}, - [1176] = {.lex_state = 4, .external_lex_state = 3}, - [1177] = {.lex_state = 4, .external_lex_state = 3}, - [1178] = {.lex_state = 4, .external_lex_state = 3}, - [1179] = {.lex_state = 4, .external_lex_state = 3}, - [1180] = {.lex_state = 4, .external_lex_state = 3}, + [1176] = {.lex_state = 2, .external_lex_state = 3}, + [1177] = {.lex_state = 2, .external_lex_state = 3}, + [1178] = {.lex_state = 2, .external_lex_state = 3}, + [1179] = {.lex_state = 2, .external_lex_state = 3}, + [1180] = {.lex_state = 2, .external_lex_state = 3}, [1181] = {.lex_state = 4, .external_lex_state = 3}, [1182] = {.lex_state = 4, .external_lex_state = 3}, - [1183] = {.lex_state = 4, .external_lex_state = 3}, - [1184] = {.lex_state = 2, .external_lex_state = 3}, - [1185] = {.lex_state = 5, .external_lex_state = 2}, - [1186] = {.lex_state = 5, .external_lex_state = 2}, - [1187] = {.lex_state = 2, .external_lex_state = 3}, - [1188] = {.lex_state = 5, .external_lex_state = 2}, - [1189] = {.lex_state = 5, .external_lex_state = 2}, - [1190] = {.lex_state = 5, .external_lex_state = 2}, + [1183] = {.lex_state = 2, .external_lex_state = 3}, + [1184] = {.lex_state = 4, .external_lex_state = 3}, + [1185] = {.lex_state = 4, .external_lex_state = 3}, + [1186] = {.lex_state = 4, .external_lex_state = 3}, + [1187] = {.lex_state = 5, .external_lex_state = 2}, + [1188] = {.lex_state = 4, .external_lex_state = 3}, + [1189] = {.lex_state = 4, .external_lex_state = 3}, + [1190] = {.lex_state = 4, .external_lex_state = 3}, [1191] = {.lex_state = 2, .external_lex_state = 3}, - [1192] = {.lex_state = 4, .external_lex_state = 3}, - [1193] = {.lex_state = 2, .external_lex_state = 3}, - [1194] = {.lex_state = 4, .external_lex_state = 3}, - [1195] = {.lex_state = 2, .external_lex_state = 3}, - [1196] = {.lex_state = 4, .external_lex_state = 3}, - [1197] = {.lex_state = 5, .external_lex_state = 2}, - [1198] = {.lex_state = 2, .external_lex_state = 3}, - [1199] = {.lex_state = 4, .external_lex_state = 3}, - [1200] = {.lex_state = 4, .external_lex_state = 3}, + [1192] = {.lex_state = 5, .external_lex_state = 2}, + [1193] = {.lex_state = 5, .external_lex_state = 2}, + [1194] = {.lex_state = 2, .external_lex_state = 3}, + [1195] = {.lex_state = 5, .external_lex_state = 2}, + [1196] = {.lex_state = 5, .external_lex_state = 2}, + [1197] = {.lex_state = 4, .external_lex_state = 3}, + [1198] = {.lex_state = 4, .external_lex_state = 3}, + [1199] = {.lex_state = 2, .external_lex_state = 3}, + [1200] = {.lex_state = 5, .external_lex_state = 2}, [1201] = {.lex_state = 4, .external_lex_state = 3}, - [1202] = {.lex_state = 2, .external_lex_state = 3}, + [1202] = {.lex_state = 4, .external_lex_state = 3}, [1203] = {.lex_state = 2, .external_lex_state = 3}, [1204] = {.lex_state = 2, .external_lex_state = 3}, - [1205] = {.lex_state = 4, .external_lex_state = 3}, - [1206] = {.lex_state = 2, .external_lex_state = 3}, - [1207] = {.lex_state = 2, .external_lex_state = 3}, + [1205] = {.lex_state = 2, .external_lex_state = 3}, + [1206] = {.lex_state = 4, .external_lex_state = 3}, + [1207] = {.lex_state = 4, .external_lex_state = 3}, [1208] = {.lex_state = 2, .external_lex_state = 3}, [1209] = {.lex_state = 2, .external_lex_state = 3}, [1210] = {.lex_state = 2, .external_lex_state = 3}, [1211] = {.lex_state = 4, .external_lex_state = 3}, - [1212] = {.lex_state = 4, .external_lex_state = 3}, - [1213] = {.lex_state = 2, .external_lex_state = 3}, + [1212] = {.lex_state = 2, .external_lex_state = 3}, + [1213] = {.lex_state = 4, .external_lex_state = 3}, [1214] = {.lex_state = 2, .external_lex_state = 3}, [1215] = {.lex_state = 2, .external_lex_state = 3}, - [1216] = {.lex_state = 2, .external_lex_state = 3}, + [1216] = {.lex_state = 4, .external_lex_state = 3}, [1217] = {.lex_state = 2, .external_lex_state = 3}, [1218] = {.lex_state = 2, .external_lex_state = 3}, [1219] = {.lex_state = 2, .external_lex_state = 3}, @@ -14623,7 +14623,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1257] = {.lex_state = 2, .external_lex_state = 3}, [1258] = {.lex_state = 2, .external_lex_state = 3}, [1259] = {.lex_state = 2, .external_lex_state = 3}, - [1260] = {.lex_state = 4, .external_lex_state = 3}, + [1260] = {.lex_state = 2, .external_lex_state = 3}, [1261] = {.lex_state = 2, .external_lex_state = 3}, [1262] = {.lex_state = 2, .external_lex_state = 3}, [1263] = {.lex_state = 2, .external_lex_state = 3}, @@ -14645,7 +14645,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1279] = {.lex_state = 2, .external_lex_state = 3}, [1280] = {.lex_state = 2, .external_lex_state = 3}, [1281] = {.lex_state = 2, .external_lex_state = 3}, - [1282] = {.lex_state = 2, .external_lex_state = 3}, + [1282] = {.lex_state = 4, .external_lex_state = 3}, [1283] = {.lex_state = 2, .external_lex_state = 3}, [1284] = {.lex_state = 2, .external_lex_state = 3}, [1285] = {.lex_state = 2, .external_lex_state = 3}, @@ -14662,7 +14662,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1296] = {.lex_state = 2, .external_lex_state = 3}, [1297] = {.lex_state = 2, .external_lex_state = 3}, [1298] = {.lex_state = 2, .external_lex_state = 3}, - [1299] = {.lex_state = 2, .external_lex_state = 3}, + [1299] = {.lex_state = 4, .external_lex_state = 3}, [1300] = {.lex_state = 2, .external_lex_state = 3}, [1301] = {.lex_state = 2, .external_lex_state = 3}, [1302] = {.lex_state = 2, .external_lex_state = 3}, @@ -14674,7 +14674,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1308] = {.lex_state = 2, .external_lex_state = 3}, [1309] = {.lex_state = 2, .external_lex_state = 3}, [1310] = {.lex_state = 2, .external_lex_state = 3}, - [1311] = {.lex_state = 2, .external_lex_state = 3}, + [1311] = {.lex_state = 4, .external_lex_state = 3}, [1312] = {.lex_state = 2, .external_lex_state = 3}, [1313] = {.lex_state = 2, .external_lex_state = 3}, [1314] = {.lex_state = 2, .external_lex_state = 3}, @@ -14683,84 +14683,84 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1317] = {.lex_state = 2, .external_lex_state = 3}, [1318] = {.lex_state = 2, .external_lex_state = 3}, [1319] = {.lex_state = 2, .external_lex_state = 3}, - [1320] = {.lex_state = 4, .external_lex_state = 3}, + [1320] = {.lex_state = 2, .external_lex_state = 3}, [1321] = {.lex_state = 2, .external_lex_state = 3}, [1322] = {.lex_state = 2, .external_lex_state = 3}, - [1323] = {.lex_state = 4, .external_lex_state = 3}, + [1323] = {.lex_state = 2, .external_lex_state = 3}, [1324] = {.lex_state = 2, .external_lex_state = 3}, - [1325] = {.lex_state = 4, .external_lex_state = 3}, - [1326] = {.lex_state = 4, .external_lex_state = 3}, - [1327] = {.lex_state = 4, .external_lex_state = 3}, - [1328] = {.lex_state = 4, .external_lex_state = 3}, - [1329] = {.lex_state = 4, .external_lex_state = 3}, - [1330] = {.lex_state = 4, .external_lex_state = 3}, - [1331] = {.lex_state = 4, .external_lex_state = 3}, - [1332] = {.lex_state = 4, .external_lex_state = 3}, - [1333] = {.lex_state = 4, .external_lex_state = 3}, - [1334] = {.lex_state = 4, .external_lex_state = 3}, - [1335] = {.lex_state = 18, .external_lex_state = 3}, - [1336] = {.lex_state = 18, .external_lex_state = 3}, - [1337] = {.lex_state = 8, .external_lex_state = 3}, - [1338] = {.lex_state = 8, .external_lex_state = 3}, - [1339] = {.lex_state = 8, .external_lex_state = 3}, - [1340] = {.lex_state = 8, .external_lex_state = 3}, - [1341] = {.lex_state = 8, .external_lex_state = 3}, - [1342] = {.lex_state = 8, .external_lex_state = 3}, - [1343] = {.lex_state = 8, .external_lex_state = 3}, - [1344] = {.lex_state = 8, .external_lex_state = 3}, - [1345] = {.lex_state = 8, .external_lex_state = 3}, - [1346] = {.lex_state = 8, .external_lex_state = 3}, + [1325] = {.lex_state = 2, .external_lex_state = 3}, + [1326] = {.lex_state = 2, .external_lex_state = 3}, + [1327] = {.lex_state = 2, .external_lex_state = 3}, + [1328] = {.lex_state = 2, .external_lex_state = 3}, + [1329] = {.lex_state = 2, .external_lex_state = 3}, + [1330] = {.lex_state = 2, .external_lex_state = 3}, + [1331] = {.lex_state = 2, .external_lex_state = 3}, + [1332] = {.lex_state = 2, .external_lex_state = 3}, + [1333] = {.lex_state = 2, .external_lex_state = 3}, + [1334] = {.lex_state = 2, .external_lex_state = 3}, + [1335] = {.lex_state = 4, .external_lex_state = 3}, + [1336] = {.lex_state = 4, .external_lex_state = 3}, + [1337] = {.lex_state = 4, .external_lex_state = 3}, + [1338] = {.lex_state = 4, .external_lex_state = 3}, + [1339] = {.lex_state = 4, .external_lex_state = 3}, + [1340] = {.lex_state = 4, .external_lex_state = 3}, + [1341] = {.lex_state = 4, .external_lex_state = 3}, + [1342] = {.lex_state = 4, .external_lex_state = 3}, + [1343] = {.lex_state = 4, .external_lex_state = 3}, + [1344] = {.lex_state = 4, .external_lex_state = 3}, + [1345] = {.lex_state = 18, .external_lex_state = 3}, + [1346] = {.lex_state = 18, .external_lex_state = 3}, [1347] = {.lex_state = 8, .external_lex_state = 3}, [1348] = {.lex_state = 8, .external_lex_state = 3}, - [1349] = {.lex_state = 18, .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 = 18, .external_lex_state = 3}, - [1356] = {.lex_state = 18, .external_lex_state = 3}, - [1357] = {.lex_state = 4, .external_lex_state = 3}, - [1358] = {.lex_state = 18, .external_lex_state = 3}, - [1359] = {.lex_state = 8, .external_lex_state = 3}, - [1360] = {.lex_state = 8, .external_lex_state = 3}, - [1361] = {.lex_state = 4, .external_lex_state = 3}, - [1362] = {.lex_state = 8, .external_lex_state = 3}, - [1363] = {.lex_state = 18, .external_lex_state = 3}, + [1349] = {.lex_state = 8, .external_lex_state = 3}, + [1350] = {.lex_state = 8, .external_lex_state = 3}, + [1351] = {.lex_state = 8, .external_lex_state = 3}, + [1352] = {.lex_state = 8, .external_lex_state = 3}, + [1353] = {.lex_state = 8, .external_lex_state = 3}, + [1354] = {.lex_state = 8, .external_lex_state = 3}, + [1355] = {.lex_state = 8, .external_lex_state = 3}, + [1356] = {.lex_state = 8, .external_lex_state = 3}, + [1357] = {.lex_state = 8, .external_lex_state = 3}, + [1358] = {.lex_state = 8, .external_lex_state = 3}, + [1359] = {.lex_state = 18, .external_lex_state = 3}, + [1360] = {.lex_state = 4, .external_lex_state = 3}, + [1361] = {.lex_state = 18, .external_lex_state = 3}, + [1362] = {.lex_state = 4, .external_lex_state = 3}, + [1363] = {.lex_state = 4, .external_lex_state = 3}, [1364] = {.lex_state = 4, .external_lex_state = 3}, [1365] = {.lex_state = 4, .external_lex_state = 3}, - [1366] = {.lex_state = 4, .external_lex_state = 3}, + [1366] = {.lex_state = 18, .external_lex_state = 3}, [1367] = {.lex_state = 4, .external_lex_state = 3}, - [1368] = {.lex_state = 4, .external_lex_state = 3}, + [1368] = {.lex_state = 18, .external_lex_state = 3}, [1369] = {.lex_state = 4, .external_lex_state = 3}, [1370] = {.lex_state = 4, .external_lex_state = 3}, - [1371] = {.lex_state = 4, .external_lex_state = 3}, - [1372] = {.lex_state = 4, .external_lex_state = 3}, + [1371] = {.lex_state = 8, .external_lex_state = 3}, + [1372] = {.lex_state = 18, .external_lex_state = 3}, [1373] = {.lex_state = 4, .external_lex_state = 3}, - [1374] = {.lex_state = 18, .external_lex_state = 3}, - [1375] = {.lex_state = 18, .external_lex_state = 3}, + [1374] = {.lex_state = 4, .external_lex_state = 3}, + [1375] = {.lex_state = 4, .external_lex_state = 3}, [1376] = {.lex_state = 4, .external_lex_state = 3}, - [1377] = {.lex_state = 18, .external_lex_state = 3}, - [1378] = {.lex_state = 18, .external_lex_state = 3}, - [1379] = {.lex_state = 18, .external_lex_state = 3}, - [1380] = {.lex_state = 18, .external_lex_state = 3}, - [1381] = {.lex_state = 18, .external_lex_state = 3}, + [1377] = {.lex_state = 4, .external_lex_state = 3}, + [1378] = {.lex_state = 4, .external_lex_state = 3}, + [1379] = {.lex_state = 8, .external_lex_state = 3}, + [1380] = {.lex_state = 4, .external_lex_state = 3}, + [1381] = {.lex_state = 8, .external_lex_state = 3}, [1382] = {.lex_state = 4, .external_lex_state = 3}, - [1383] = {.lex_state = 18, .external_lex_state = 3}, - [1384] = {.lex_state = 18, .external_lex_state = 3}, - [1385] = {.lex_state = 4, .external_lex_state = 3}, - [1386] = {.lex_state = 4, .external_lex_state = 3}, - [1387] = {.lex_state = 18, .external_lex_state = 3}, + [1383] = {.lex_state = 4, .external_lex_state = 3}, + [1384] = {.lex_state = 8, .external_lex_state = 3}, + [1385] = {.lex_state = 18, .external_lex_state = 3}, + [1386] = {.lex_state = 18, .external_lex_state = 3}, + [1387] = {.lex_state = 4, .external_lex_state = 3}, [1388] = {.lex_state = 18, .external_lex_state = 3}, [1389] = {.lex_state = 4, .external_lex_state = 3}, - [1390] = {.lex_state = 8, .external_lex_state = 3}, + [1390] = {.lex_state = 18, .external_lex_state = 3}, [1391] = {.lex_state = 4, .external_lex_state = 3}, - [1392] = {.lex_state = 4, .external_lex_state = 3}, - [1393] = {.lex_state = 18, .external_lex_state = 3}, + [1392] = {.lex_state = 18, .external_lex_state = 3}, + [1393] = {.lex_state = 4, .external_lex_state = 3}, [1394] = {.lex_state = 18, .external_lex_state = 3}, [1395] = {.lex_state = 18, .external_lex_state = 3}, - [1396] = {.lex_state = 18, .external_lex_state = 3}, - [1397] = {.lex_state = 18, .external_lex_state = 3}, + [1396] = {.lex_state = 4, .external_lex_state = 3}, + [1397] = {.lex_state = 4, .external_lex_state = 3}, [1398] = {.lex_state = 18, .external_lex_state = 3}, [1399] = {.lex_state = 18, .external_lex_state = 3}, [1400] = {.lex_state = 4, .external_lex_state = 3}, @@ -14789,151 +14789,151 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1423] = {.lex_state = 18, .external_lex_state = 3}, [1424] = {.lex_state = 18, .external_lex_state = 3}, [1425] = {.lex_state = 18, .external_lex_state = 3}, - [1426] = {.lex_state = 8, .external_lex_state = 3}, - [1427] = {.lex_state = 4, .external_lex_state = 3}, - [1428] = {.lex_state = 4, .external_lex_state = 3}, - [1429] = {.lex_state = 4, .external_lex_state = 3}, - [1430] = {.lex_state = 8, .external_lex_state = 3}, - [1431] = {.lex_state = 8, .external_lex_state = 3}, - [1432] = {.lex_state = 8, .external_lex_state = 3}, - [1433] = {.lex_state = 8, .external_lex_state = 3}, - [1434] = {.lex_state = 8, .external_lex_state = 3}, - [1435] = {.lex_state = 8, .external_lex_state = 3}, - [1436] = {.lex_state = 4, .external_lex_state = 3}, + [1426] = {.lex_state = 18, .external_lex_state = 3}, + [1427] = {.lex_state = 18, .external_lex_state = 3}, + [1428] = {.lex_state = 18, .external_lex_state = 3}, + [1429] = {.lex_state = 18, .external_lex_state = 3}, + [1430] = {.lex_state = 18, .external_lex_state = 3}, + [1431] = {.lex_state = 18, .external_lex_state = 3}, + [1432] = {.lex_state = 18, .external_lex_state = 3}, + [1433] = {.lex_state = 18, .external_lex_state = 3}, + [1434] = {.lex_state = 18, .external_lex_state = 3}, + [1435] = {.lex_state = 4, .external_lex_state = 3}, + [1436] = {.lex_state = 8, .external_lex_state = 3}, [1437] = {.lex_state = 8, .external_lex_state = 3}, - [1438] = {.lex_state = 8, .external_lex_state = 3}, - [1439] = {.lex_state = 8, .external_lex_state = 3}, - [1440] = {.lex_state = 18, .external_lex_state = 3}, - [1441] = {.lex_state = 4, .external_lex_state = 3}, - [1442] = {.lex_state = 8, .external_lex_state = 3}, - [1443] = {.lex_state = 18, .external_lex_state = 3}, + [1438] = {.lex_state = 4, .external_lex_state = 3}, + [1439] = {.lex_state = 4, .external_lex_state = 3}, + [1440] = {.lex_state = 8, .external_lex_state = 3}, + [1441] = {.lex_state = 8, .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 = 18, .external_lex_state = 3}, - [1446] = {.lex_state = 4, .external_lex_state = 3}, + [1445] = {.lex_state = 4, .external_lex_state = 3}, + [1446] = {.lex_state = 8, .external_lex_state = 3}, [1447] = {.lex_state = 8, .external_lex_state = 3}, - [1448] = {.lex_state = 4, .external_lex_state = 3}, + [1448] = {.lex_state = 8, .external_lex_state = 3}, [1449] = {.lex_state = 8, .external_lex_state = 3}, - [1450] = {.lex_state = 18, .external_lex_state = 3}, - [1451] = {.lex_state = 18, .external_lex_state = 3}, - [1452] = {.lex_state = 18, .external_lex_state = 3}, + [1450] = {.lex_state = 4, .external_lex_state = 3}, + [1451] = {.lex_state = 4, .external_lex_state = 3}, + [1452] = {.lex_state = 8, .external_lex_state = 3}, [1453] = {.lex_state = 18, .external_lex_state = 3}, - [1454] = {.lex_state = 18, .external_lex_state = 3}, + [1454] = {.lex_state = 8, .external_lex_state = 3}, [1455] = {.lex_state = 18, .external_lex_state = 3}, - [1456] = {.lex_state = 8, .external_lex_state = 3}, + [1456] = {.lex_state = 18, .external_lex_state = 3}, [1457] = {.lex_state = 8, .external_lex_state = 3}, - [1458] = {.lex_state = 18, .external_lex_state = 3}, - [1459] = {.lex_state = 18, .external_lex_state = 3}, + [1458] = {.lex_state = 8, .external_lex_state = 3}, + [1459] = {.lex_state = 8, .external_lex_state = 3}, [1460] = {.lex_state = 18, .external_lex_state = 3}, [1461] = {.lex_state = 18, .external_lex_state = 3}, - [1462] = {.lex_state = 18, .external_lex_state = 3}, - [1463] = {.lex_state = 18, .external_lex_state = 3}, + [1462] = {.lex_state = 8, .external_lex_state = 3}, + [1463] = {.lex_state = 8, .external_lex_state = 3}, [1464] = {.lex_state = 18, .external_lex_state = 3}, - [1465] = {.lex_state = 4, .external_lex_state = 3}, - [1466] = {.lex_state = 18, .external_lex_state = 3}, - [1467] = {.lex_state = 4, .external_lex_state = 3}, + [1465] = {.lex_state = 8, .external_lex_state = 3}, + [1466] = {.lex_state = 8, .external_lex_state = 3}, + [1467] = {.lex_state = 18, .external_lex_state = 3}, [1468] = {.lex_state = 18, .external_lex_state = 3}, - [1469] = {.lex_state = 8, .external_lex_state = 3}, - [1470] = {.lex_state = 18, .external_lex_state = 3}, - [1471] = {.lex_state = 8, .external_lex_state = 3}, + [1469] = {.lex_state = 18, .external_lex_state = 3}, + [1470] = {.lex_state = 4, .external_lex_state = 3}, + [1471] = {.lex_state = 18, .external_lex_state = 3}, [1472] = {.lex_state = 18, .external_lex_state = 3}, [1473] = {.lex_state = 18, .external_lex_state = 3}, [1474] = {.lex_state = 8, .external_lex_state = 3}, [1475] = {.lex_state = 18, .external_lex_state = 3}, - [1476] = {.lex_state = 8, .external_lex_state = 3}, - [1477] = {.lex_state = 13, .external_lex_state = 3}, + [1476] = {.lex_state = 18, .external_lex_state = 3}, + [1477] = {.lex_state = 8, .external_lex_state = 3}, [1478] = {.lex_state = 18, .external_lex_state = 3}, - [1479] = {.lex_state = 18, .external_lex_state = 3}, - [1480] = {.lex_state = 18, .external_lex_state = 3}, - [1481] = {.lex_state = 18, .external_lex_state = 3}, - [1482] = {.lex_state = 8, .external_lex_state = 3}, - [1483] = {.lex_state = 13, .external_lex_state = 3}, - [1484] = {.lex_state = 13, .external_lex_state = 3}, - [1485] = {.lex_state = 18, .external_lex_state = 3}, - [1486] = {.lex_state = 18, .external_lex_state = 3}, + [1479] = {.lex_state = 13, .external_lex_state = 3}, + [1480] = {.lex_state = 13, .external_lex_state = 3}, + [1481] = {.lex_state = 13, .external_lex_state = 3}, + [1482] = {.lex_state = 18, .external_lex_state = 3}, + [1483] = {.lex_state = 18, .external_lex_state = 3}, + [1484] = {.lex_state = 18, .external_lex_state = 3}, + [1485] = {.lex_state = 13, .external_lex_state = 3}, + [1486] = {.lex_state = 8, .external_lex_state = 3}, [1487] = {.lex_state = 18, .external_lex_state = 3}, [1488] = {.lex_state = 8, .external_lex_state = 3}, - [1489] = {.lex_state = 13, .external_lex_state = 3}, + [1489] = {.lex_state = 18, .external_lex_state = 3}, [1490] = {.lex_state = 18, .external_lex_state = 3}, [1491] = {.lex_state = 18, .external_lex_state = 3}, [1492] = {.lex_state = 18, .external_lex_state = 3}, [1493] = {.lex_state = 18, .external_lex_state = 3}, [1494] = {.lex_state = 18, .external_lex_state = 3}, - [1495] = {.lex_state = 1, .external_lex_state = 2}, - [1496] = {.lex_state = 4, .external_lex_state = 3}, + [1495] = {.lex_state = 18, .external_lex_state = 3}, + [1496] = {.lex_state = 18, .external_lex_state = 3}, [1497] = {.lex_state = 18, .external_lex_state = 3}, - [1498] = {.lex_state = 15, .external_lex_state = 3}, - [1499] = {.lex_state = 1, .external_lex_state = 2}, - [1500] = {.lex_state = 1, .external_lex_state = 2}, - [1501] = {.lex_state = 4, .external_lex_state = 3}, - [1502] = {.lex_state = 8, .external_lex_state = 3}, - [1503] = {.lex_state = 1, .external_lex_state = 2}, - [1504] = {.lex_state = 4, .external_lex_state = 3}, - [1505] = {.lex_state = 4, .external_lex_state = 3}, + [1498] = {.lex_state = 18, .external_lex_state = 3}, + [1499] = {.lex_state = 18, .external_lex_state = 3}, + [1500] = {.lex_state = 18, .external_lex_state = 3}, + [1501] = {.lex_state = 18, .external_lex_state = 3}, + [1502] = {.lex_state = 18, .external_lex_state = 3}, + [1503] = {.lex_state = 4, .external_lex_state = 3}, + [1504] = {.lex_state = 18, .external_lex_state = 3}, + [1505] = {.lex_state = 18, .external_lex_state = 3}, [1506] = {.lex_state = 4, .external_lex_state = 3}, - [1507] = {.lex_state = 1, .external_lex_state = 2}, - [1508] = {.lex_state = 4, .external_lex_state = 3}, + [1507] = {.lex_state = 4, .external_lex_state = 3}, + [1508] = {.lex_state = 15, .external_lex_state = 3}, [1509] = {.lex_state = 4, .external_lex_state = 3}, - [1510] = {.lex_state = 4, .external_lex_state = 3}, + [1510] = {.lex_state = 8, .external_lex_state = 3}, [1511] = {.lex_state = 4, .external_lex_state = 3}, [1512] = {.lex_state = 4, .external_lex_state = 3}, - [1513] = {.lex_state = 18, .external_lex_state = 3}, + [1513] = {.lex_state = 4, .external_lex_state = 3}, [1514] = {.lex_state = 4, .external_lex_state = 3}, [1515] = {.lex_state = 4, .external_lex_state = 3}, [1516] = {.lex_state = 4, .external_lex_state = 3}, [1517] = {.lex_state = 4, .external_lex_state = 3}, [1518] = {.lex_state = 4, .external_lex_state = 3}, [1519] = {.lex_state = 4, .external_lex_state = 3}, - [1520] = {.lex_state = 18, .external_lex_state = 3}, + [1520] = {.lex_state = 4, .external_lex_state = 3}, [1521] = {.lex_state = 4, .external_lex_state = 3}, [1522] = {.lex_state = 4, .external_lex_state = 3}, - [1523] = {.lex_state = 4, .external_lex_state = 3}, + [1523] = {.lex_state = 18, .external_lex_state = 3}, [1524] = {.lex_state = 4, .external_lex_state = 3}, [1525] = {.lex_state = 4, .external_lex_state = 3}, [1526] = {.lex_state = 4, .external_lex_state = 3}, - [1527] = {.lex_state = 18, .external_lex_state = 3}, - [1528] = {.lex_state = 4, .external_lex_state = 3}, - [1529] = {.lex_state = 4, .external_lex_state = 3}, - [1530] = {.lex_state = 15, .external_lex_state = 3}, - [1531] = {.lex_state = 18, .external_lex_state = 3}, - [1532] = {.lex_state = 4, .external_lex_state = 3}, + [1527] = {.lex_state = 4, .external_lex_state = 3}, + [1528] = {.lex_state = 18, .external_lex_state = 3}, + [1529] = {.lex_state = 18, .external_lex_state = 3}, + [1530] = {.lex_state = 4, .external_lex_state = 3}, + [1531] = {.lex_state = 4, .external_lex_state = 3}, + [1532] = {.lex_state = 15, .external_lex_state = 3}, [1533] = {.lex_state = 4, .external_lex_state = 3}, - [1534] = {.lex_state = 4, .external_lex_state = 3}, - [1535] = {.lex_state = 4, .external_lex_state = 3}, - [1536] = {.lex_state = 4, .external_lex_state = 3}, + [1534] = {.lex_state = 18, .external_lex_state = 3}, + [1535] = {.lex_state = 15, .external_lex_state = 3}, + [1536] = {.lex_state = 18, .external_lex_state = 3}, [1537] = {.lex_state = 4, .external_lex_state = 3}, [1538] = {.lex_state = 4, .external_lex_state = 3}, - [1539] = {.lex_state = 18, .external_lex_state = 3}, + [1539] = {.lex_state = 4, .external_lex_state = 3}, [1540] = {.lex_state = 4, .external_lex_state = 3}, [1541] = {.lex_state = 4, .external_lex_state = 3}, [1542] = {.lex_state = 4, .external_lex_state = 3}, [1543] = {.lex_state = 4, .external_lex_state = 3}, - [1544] = {.lex_state = 4, .external_lex_state = 3}, + [1544] = {.lex_state = 18, .external_lex_state = 3}, [1545] = {.lex_state = 4, .external_lex_state = 3}, - [1546] = {.lex_state = 18, .external_lex_state = 3}, + [1546] = {.lex_state = 4, .external_lex_state = 3}, [1547] = {.lex_state = 4, .external_lex_state = 3}, [1548] = {.lex_state = 4, .external_lex_state = 3}, [1549] = {.lex_state = 4, .external_lex_state = 3}, - [1550] = {.lex_state = 15, .external_lex_state = 3}, + [1550] = {.lex_state = 4, .external_lex_state = 3}, [1551] = {.lex_state = 18, .external_lex_state = 3}, - [1552] = {.lex_state = 18, .external_lex_state = 3}, + [1552] = {.lex_state = 4, .external_lex_state = 3}, [1553] = {.lex_state = 4, .external_lex_state = 3}, [1554] = {.lex_state = 4, .external_lex_state = 3}, - [1555] = {.lex_state = 13, .external_lex_state = 3}, + [1555] = {.lex_state = 18, .external_lex_state = 3}, [1556] = {.lex_state = 4, .external_lex_state = 3}, [1557] = {.lex_state = 4, .external_lex_state = 3}, [1558] = {.lex_state = 4, .external_lex_state = 3}, [1559] = {.lex_state = 4, .external_lex_state = 3}, - [1560] = {.lex_state = 4, .external_lex_state = 3}, - [1561] = {.lex_state = 4, .external_lex_state = 3}, + [1560] = {.lex_state = 15, .external_lex_state = 3}, + [1561] = {.lex_state = 15, .external_lex_state = 3}, [1562] = {.lex_state = 4, .external_lex_state = 3}, - [1563] = {.lex_state = 4, .external_lex_state = 3}, - [1564] = {.lex_state = 15, .external_lex_state = 3}, - [1565] = {.lex_state = 4, .external_lex_state = 3}, + [1563] = {.lex_state = 15, .external_lex_state = 3}, + [1564] = {.lex_state = 4, .external_lex_state = 3}, + [1565] = {.lex_state = 15, .external_lex_state = 3}, [1566] = {.lex_state = 4, .external_lex_state = 3}, [1567] = {.lex_state = 4, .external_lex_state = 3}, [1568] = {.lex_state = 15, .external_lex_state = 3}, - [1569] = {.lex_state = 15, .external_lex_state = 3}, - [1570] = {.lex_state = 4, .external_lex_state = 3}, + [1569] = {.lex_state = 4, .external_lex_state = 3}, + [1570] = {.lex_state = 15, .external_lex_state = 3}, [1571] = {.lex_state = 15, .external_lex_state = 3}, [1572] = {.lex_state = 4, .external_lex_state = 3}, [1573] = {.lex_state = 4, .external_lex_state = 3}, @@ -14943,145 +14943,145 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1577] = {.lex_state = 4, .external_lex_state = 3}, [1578] = {.lex_state = 4, .external_lex_state = 3}, [1579] = {.lex_state = 4, .external_lex_state = 3}, - [1580] = {.lex_state = 15, .external_lex_state = 3}, - [1581] = {.lex_state = 15, .external_lex_state = 3}, + [1580] = {.lex_state = 4, .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 = 4, .external_lex_state = 3}, - [1585] = {.lex_state = 15, .external_lex_state = 3}, + [1584] = {.lex_state = 0, .external_lex_state = 3}, + [1585] = {.lex_state = 4, .external_lex_state = 3}, [1586] = {.lex_state = 4, .external_lex_state = 3}, [1587] = {.lex_state = 4, .external_lex_state = 3}, - [1588] = {.lex_state = 15, .external_lex_state = 3}, - [1589] = {.lex_state = 0, .external_lex_state = 3}, - [1590] = {.lex_state = 4, .external_lex_state = 3}, + [1588] = {.lex_state = 4, .external_lex_state = 3}, + [1589] = {.lex_state = 4, .external_lex_state = 3}, + [1590] = {.lex_state = 15, .external_lex_state = 3}, [1591] = {.lex_state = 4, .external_lex_state = 3}, - [1592] = {.lex_state = 15, .external_lex_state = 3}, + [1592] = {.lex_state = 4, .external_lex_state = 3}, [1593] = {.lex_state = 4, .external_lex_state = 3}, - [1594] = {.lex_state = 0, .external_lex_state = 3}, - [1595] = {.lex_state = 15, .external_lex_state = 3}, - [1596] = {.lex_state = 0, .external_lex_state = 3}, + [1594] = {.lex_state = 4, .external_lex_state = 3}, + [1595] = {.lex_state = 4, .external_lex_state = 3}, + [1596] = {.lex_state = 15, .external_lex_state = 3}, [1597] = {.lex_state = 4, .external_lex_state = 3}, - [1598] = {.lex_state = 4, .external_lex_state = 3}, + [1598] = {.lex_state = 13, .external_lex_state = 3}, [1599] = {.lex_state = 4, .external_lex_state = 3}, [1600] = {.lex_state = 4, .external_lex_state = 3}, - [1601] = {.lex_state = 4, .external_lex_state = 3}, - [1602] = {.lex_state = 4, .external_lex_state = 3}, - [1603] = {.lex_state = 4, .external_lex_state = 3}, + [1601] = {.lex_state = 0, .external_lex_state = 3}, + [1602] = {.lex_state = 0, .external_lex_state = 3}, + [1603] = {.lex_state = 0, .external_lex_state = 3}, [1604] = {.lex_state = 0, .external_lex_state = 3}, [1605] = {.lex_state = 0, .external_lex_state = 3}, [1606] = {.lex_state = 4, .external_lex_state = 3}, - [1607] = {.lex_state = 4, .external_lex_state = 3}, - [1608] = {.lex_state = 4, .external_lex_state = 3}, - [1609] = {.lex_state = 0, .external_lex_state = 3}, - [1610] = {.lex_state = 0, .external_lex_state = 3}, + [1607] = {.lex_state = 0, .external_lex_state = 3}, + [1608] = {.lex_state = 0, .external_lex_state = 3}, + [1609] = {.lex_state = 4, .external_lex_state = 3}, + [1610] = {.lex_state = 4, .external_lex_state = 3}, [1611] = {.lex_state = 0, .external_lex_state = 3}, [1612] = {.lex_state = 0, .external_lex_state = 3}, [1613] = {.lex_state = 4, .external_lex_state = 3}, [1614] = {.lex_state = 4, .external_lex_state = 3}, - [1615] = {.lex_state = 0, .external_lex_state = 3}, - [1616] = {.lex_state = 0, .external_lex_state = 3}, + [1615] = {.lex_state = 4, .external_lex_state = 3}, + [1616] = {.lex_state = 4, .external_lex_state = 3}, [1617] = {.lex_state = 0, .external_lex_state = 3}, [1618] = {.lex_state = 0, .external_lex_state = 3}, [1619] = {.lex_state = 4, .external_lex_state = 3}, - [1620] = {.lex_state = 0, .external_lex_state = 3}, + [1620] = {.lex_state = 4, .external_lex_state = 3}, [1621] = {.lex_state = 0, .external_lex_state = 3}, - [1622] = {.lex_state = 0, .external_lex_state = 3}, + [1622] = {.lex_state = 15, .external_lex_state = 3}, [1623] = {.lex_state = 0, .external_lex_state = 3}, - [1624] = {.lex_state = 15, .external_lex_state = 3}, + [1624] = {.lex_state = 4, .external_lex_state = 3}, [1625] = {.lex_state = 4, .external_lex_state = 3}, - [1626] = {.lex_state = 4, .external_lex_state = 3}, - [1627] = {.lex_state = 4, .external_lex_state = 3}, - [1628] = {.lex_state = 0, .external_lex_state = 3}, + [1626] = {.lex_state = 0, .external_lex_state = 3}, + [1627] = {.lex_state = 0, .external_lex_state = 3}, + [1628] = {.lex_state = 4, .external_lex_state = 3}, [1629] = {.lex_state = 4, .external_lex_state = 3}, - [1630] = {.lex_state = 4, .external_lex_state = 3}, - [1631] = {.lex_state = 0, .external_lex_state = 3}, + [1630] = {.lex_state = 0, .external_lex_state = 3}, + [1631] = {.lex_state = 4, .external_lex_state = 3}, [1632] = {.lex_state = 0, .external_lex_state = 3}, [1633] = {.lex_state = 4, .external_lex_state = 3}, - [1634] = {.lex_state = 15, .external_lex_state = 3}, - [1635] = {.lex_state = 0, .external_lex_state = 3}, + [1634] = {.lex_state = 4, .external_lex_state = 3}, + [1635] = {.lex_state = 15, .external_lex_state = 3}, [1636] = {.lex_state = 0, .external_lex_state = 3}, [1637] = {.lex_state = 4, .external_lex_state = 3}, [1638] = {.lex_state = 0, .external_lex_state = 3}, - [1639] = {.lex_state = 15, .external_lex_state = 3}, - [1640] = {.lex_state = 4, .external_lex_state = 3}, - [1641] = {.lex_state = 9, .external_lex_state = 3}, - [1642] = {.lex_state = 4, .external_lex_state = 3}, - [1643] = {.lex_state = 18, .external_lex_state = 3}, + [1639] = {.lex_state = 0, .external_lex_state = 3}, + [1640] = {.lex_state = 0, .external_lex_state = 3}, + [1641] = {.lex_state = 0, .external_lex_state = 3}, + [1642] = {.lex_state = 15, .external_lex_state = 3}, + [1643] = {.lex_state = 15, .external_lex_state = 3}, [1644] = {.lex_state = 4, .external_lex_state = 3}, - [1645] = {.lex_state = 9, .external_lex_state = 3}, - [1646] = {.lex_state = 4, .external_lex_state = 3}, - [1647] = {.lex_state = 9, .external_lex_state = 3}, + [1645] = {.lex_state = 0, .external_lex_state = 3}, + [1646] = {.lex_state = 58, .external_lex_state = 3}, + [1647] = {.lex_state = 4, .external_lex_state = 3}, [1648] = {.lex_state = 4, .external_lex_state = 3}, [1649] = {.lex_state = 4, .external_lex_state = 3}, [1650] = {.lex_state = 4, .external_lex_state = 3}, [1651] = {.lex_state = 4, .external_lex_state = 3}, [1652] = {.lex_state = 4, .external_lex_state = 3}, - [1653] = {.lex_state = 4, .external_lex_state = 3}, + [1653] = {.lex_state = 9, .external_lex_state = 3}, [1654] = {.lex_state = 4, .external_lex_state = 3}, - [1655] = {.lex_state = 4, .external_lex_state = 3}, + [1655] = {.lex_state = 9, .external_lex_state = 3}, [1656] = {.lex_state = 4, .external_lex_state = 3}, - [1657] = {.lex_state = 4, .external_lex_state = 3}, + [1657] = {.lex_state = 18, .external_lex_state = 3}, [1658] = {.lex_state = 4, .external_lex_state = 3}, [1659] = {.lex_state = 4, .external_lex_state = 3}, [1660] = {.lex_state = 4, .external_lex_state = 3}, - [1661] = {.lex_state = 13, .external_lex_state = 3}, + [1661] = {.lex_state = 4, .external_lex_state = 3}, [1662] = {.lex_state = 4, .external_lex_state = 3}, [1663] = {.lex_state = 4, .external_lex_state = 3}, - [1664] = {.lex_state = 9, .external_lex_state = 3}, + [1664] = {.lex_state = 4, .external_lex_state = 3}, [1665] = {.lex_state = 4, .external_lex_state = 3}, - [1666] = {.lex_state = 18, .external_lex_state = 3}, - [1667] = {.lex_state = 18, .external_lex_state = 3}, + [1666] = {.lex_state = 4, .external_lex_state = 3}, + [1667] = {.lex_state = 15, .external_lex_state = 3}, [1668] = {.lex_state = 4, .external_lex_state = 3}, - [1669] = {.lex_state = 4, .external_lex_state = 3}, + [1669] = {.lex_state = 13, .external_lex_state = 3}, [1670] = {.lex_state = 4, .external_lex_state = 3}, - [1671] = {.lex_state = 4, .external_lex_state = 3}, + [1671] = {.lex_state = 18, .external_lex_state = 3}, [1672] = {.lex_state = 4, .external_lex_state = 3}, [1673] = {.lex_state = 4, .external_lex_state = 3}, [1674] = {.lex_state = 4, .external_lex_state = 3}, - [1675] = {.lex_state = 4, .external_lex_state = 3}, + [1675] = {.lex_state = 18, .external_lex_state = 3}, [1676] = {.lex_state = 4, .external_lex_state = 3}, - [1677] = {.lex_state = 15, .external_lex_state = 3}, - [1678] = {.lex_state = 0, .external_lex_state = 3}, + [1677] = {.lex_state = 4, .external_lex_state = 3}, + [1678] = {.lex_state = 18, .external_lex_state = 3}, [1679] = {.lex_state = 4, .external_lex_state = 3}, - [1680] = {.lex_state = 4, .external_lex_state = 3}, - [1681] = {.lex_state = 18, .external_lex_state = 3}, + [1680] = {.lex_state = 0, .external_lex_state = 3}, + [1681] = {.lex_state = 0, .external_lex_state = 3}, [1682] = {.lex_state = 4, .external_lex_state = 3}, [1683] = {.lex_state = 4, .external_lex_state = 3}, - [1684] = {.lex_state = 18, .external_lex_state = 3}, - [1685] = {.lex_state = 18, .external_lex_state = 3}, + [1684] = {.lex_state = 4, .external_lex_state = 3}, + [1685] = {.lex_state = 4, .external_lex_state = 3}, [1686] = {.lex_state = 4, .external_lex_state = 3}, [1687] = {.lex_state = 4, .external_lex_state = 3}, [1688] = {.lex_state = 4, .external_lex_state = 3}, [1689] = {.lex_state = 4, .external_lex_state = 3}, [1690] = {.lex_state = 9, .external_lex_state = 3}, [1691] = {.lex_state = 4, .external_lex_state = 3}, - [1692] = {.lex_state = 4, .external_lex_state = 3}, + [1692] = {.lex_state = 0, .external_lex_state = 3}, [1693] = {.lex_state = 4, .external_lex_state = 3}, - [1694] = {.lex_state = 13, .external_lex_state = 3}, - [1695] = {.lex_state = 4, .external_lex_state = 3}, - [1696] = {.lex_state = 4, .external_lex_state = 3}, + [1694] = {.lex_state = 4, .external_lex_state = 3}, + [1695] = {.lex_state = 0, .external_lex_state = 3}, + [1696] = {.lex_state = 0, .external_lex_state = 3}, [1697] = {.lex_state = 4, .external_lex_state = 3}, [1698] = {.lex_state = 4, .external_lex_state = 3}, [1699] = {.lex_state = 4, .external_lex_state = 3}, [1700] = {.lex_state = 4, .external_lex_state = 3}, [1701] = {.lex_state = 4, .external_lex_state = 3}, - [1702] = {.lex_state = 0, .external_lex_state = 3}, - [1703] = {.lex_state = 9, .external_lex_state = 3}, + [1702] = {.lex_state = 13, .external_lex_state = 3}, + [1703] = {.lex_state = 18, .external_lex_state = 3}, [1704] = {.lex_state = 4, .external_lex_state = 3}, - [1705] = {.lex_state = 0, .external_lex_state = 3}, - [1706] = {.lex_state = 0, .external_lex_state = 3}, - [1707] = {.lex_state = 58, .external_lex_state = 3}, + [1705] = {.lex_state = 4, .external_lex_state = 3}, + [1706] = {.lex_state = 4, .external_lex_state = 3}, + [1707] = {.lex_state = 9, .external_lex_state = 3}, [1708] = {.lex_state = 4, .external_lex_state = 3}, - [1709] = {.lex_state = 58, .external_lex_state = 3}, + [1709] = {.lex_state = 4, .external_lex_state = 3}, [1710] = {.lex_state = 4, .external_lex_state = 3}, - [1711] = {.lex_state = 0, .external_lex_state = 3}, - [1712] = {.lex_state = 0, .external_lex_state = 3}, + [1711] = {.lex_state = 4, .external_lex_state = 3}, + [1712] = {.lex_state = 9, .external_lex_state = 3}, [1713] = {.lex_state = 4, .external_lex_state = 3}, [1714] = {.lex_state = 4, .external_lex_state = 3}, - [1715] = {.lex_state = 18, .external_lex_state = 3}, - [1716] = {.lex_state = 4, .external_lex_state = 3}, + [1715] = {.lex_state = 4, .external_lex_state = 3}, + [1716] = {.lex_state = 58, .external_lex_state = 3}, [1717] = {.lex_state = 4, .external_lex_state = 3}, - [1718] = {.lex_state = 4, .external_lex_state = 3}, + [1718] = {.lex_state = 18, .external_lex_state = 3}, [1719] = {.lex_state = 4, .external_lex_state = 3}, [1720] = {.lex_state = 4, .external_lex_state = 3}, [1721] = {.lex_state = 4, .external_lex_state = 3}, @@ -15091,374 +15091,374 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 18, .external_lex_state = 3}, - [1729] = {.lex_state = 4, .external_lex_state = 3}, - [1730] = {.lex_state = 4, .external_lex_state = 3}, + [1728] = {.lex_state = 4, .external_lex_state = 3}, + [1729] = {.lex_state = 18, .external_lex_state = 3}, + [1730] = {.lex_state = 18, .external_lex_state = 3}, [1731] = {.lex_state = 4, .external_lex_state = 3}, [1732] = {.lex_state = 4, .external_lex_state = 3}, - [1733] = {.lex_state = 18, .external_lex_state = 3}, - [1734] = {.lex_state = 0, .external_lex_state = 3}, + [1733] = {.lex_state = 4, .external_lex_state = 3}, + [1734] = {.lex_state = 4, .external_lex_state = 3}, [1735] = {.lex_state = 18, .external_lex_state = 3}, - [1736] = {.lex_state = 9, .external_lex_state = 3}, - [1737] = {.lex_state = 58, .external_lex_state = 3}, + [1736] = {.lex_state = 4, .external_lex_state = 3}, + [1737] = {.lex_state = 9, .external_lex_state = 3}, [1738] = {.lex_state = 18, .external_lex_state = 3}, [1739] = {.lex_state = 4, .external_lex_state = 3}, - [1740] = {.lex_state = 4, .external_lex_state = 3}, - [1741] = {.lex_state = 18, .external_lex_state = 3}, - [1742] = {.lex_state = 0, .external_lex_state = 3}, - [1743] = {.lex_state = 58, .external_lex_state = 3}, + [1740] = {.lex_state = 0, .external_lex_state = 3}, + [1741] = {.lex_state = 4, .external_lex_state = 3}, + [1742] = {.lex_state = 4, .external_lex_state = 3}, + [1743] = {.lex_state = 4, .external_lex_state = 3}, [1744] = {.lex_state = 9, .external_lex_state = 3}, [1745] = {.lex_state = 9, .external_lex_state = 3}, - [1746] = {.lex_state = 0, .external_lex_state = 3}, - [1747] = {.lex_state = 0, .external_lex_state = 3}, + [1746] = {.lex_state = 18, .external_lex_state = 3}, + [1747] = {.lex_state = 4, .external_lex_state = 3}, [1748] = {.lex_state = 18, .external_lex_state = 3}, - [1749] = {.lex_state = 18, .external_lex_state = 3}, - [1750] = {.lex_state = 18, .external_lex_state = 3}, - [1751] = {.lex_state = 4, .external_lex_state = 3}, - [1752] = {.lex_state = 18, .external_lex_state = 3}, - [1753] = {.lex_state = 0, .external_lex_state = 3}, - [1754] = {.lex_state = 18, .external_lex_state = 3}, - [1755] = {.lex_state = 9, .external_lex_state = 3}, - [1756] = {.lex_state = 18, .external_lex_state = 3}, - [1757] = {.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 = 0, .external_lex_state = 3}, + [1752] = {.lex_state = 4, .external_lex_state = 3}, + [1753] = {.lex_state = 4, .external_lex_state = 3}, + [1754] = {.lex_state = 4, .external_lex_state = 3}, + [1755] = {.lex_state = 18, .external_lex_state = 3}, + [1756] = {.lex_state = 0, .external_lex_state = 3}, + [1757] = {.lex_state = 58, .external_lex_state = 3}, [1758] = {.lex_state = 0, .external_lex_state = 3}, - [1759] = {.lex_state = 0, .external_lex_state = 3}, + [1759] = {.lex_state = 18, .external_lex_state = 3}, [1760] = {.lex_state = 18, .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}, + [1761] = {.lex_state = 0, .external_lex_state = 3}, + [1762] = {.lex_state = 18, .external_lex_state = 3}, + [1763] = {.lex_state = 0, .external_lex_state = 3}, [1764] = {.lex_state = 4, .external_lex_state = 3}, - [1765] = {.lex_state = 9, .external_lex_state = 3}, - [1766] = {.lex_state = 4, .external_lex_state = 3}, - [1767] = {.lex_state = 0, .external_lex_state = 3}, + [1765] = {.lex_state = 18, .external_lex_state = 3}, + [1766] = {.lex_state = 9, .external_lex_state = 3}, + [1767] = {.lex_state = 9, .external_lex_state = 3}, [1768] = {.lex_state = 4, .external_lex_state = 3}, - [1769] = {.lex_state = 4, .external_lex_state = 3}, - [1770] = {.lex_state = 4, .external_lex_state = 3}, - [1771] = {.lex_state = 4, .external_lex_state = 3}, - [1772] = {.lex_state = 4, .external_lex_state = 3}, + [1769] = {.lex_state = 0, .external_lex_state = 3}, + [1770] = {.lex_state = 9, .external_lex_state = 3}, + [1771] = {.lex_state = 9, .external_lex_state = 3}, + [1772] = {.lex_state = 0, .external_lex_state = 3}, [1773] = {.lex_state = 4, .external_lex_state = 3}, - [1774] = {.lex_state = 4, .external_lex_state = 3}, - [1775] = {.lex_state = 4, .external_lex_state = 3}, - [1776] = {.lex_state = 18, .external_lex_state = 3}, + [1774] = {.lex_state = 18, .external_lex_state = 3}, + [1775] = {.lex_state = 18, .external_lex_state = 3}, + [1776] = {.lex_state = 4, .external_lex_state = 3}, [1777] = {.lex_state = 4, .external_lex_state = 3}, - [1778] = {.lex_state = 9, .external_lex_state = 3}, + [1778] = {.lex_state = 4, .external_lex_state = 3}, [1779] = {.lex_state = 4, .external_lex_state = 3}, [1780] = {.lex_state = 4, .external_lex_state = 3}, [1781] = {.lex_state = 4, .external_lex_state = 3}, [1782] = {.lex_state = 18, .external_lex_state = 3}, - [1783] = {.lex_state = 0, .external_lex_state = 3}, + [1783] = {.lex_state = 4, .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 = 4}, - [1787] = {.lex_state = 4, .external_lex_state = 3}, - [1788] = {.lex_state = 19, .external_lex_state = 3}, + [1786] = {.lex_state = 58, .external_lex_state = 3}, + [1787] = {.lex_state = 18, .external_lex_state = 3}, + [1788] = {.lex_state = 0, .external_lex_state = 3}, [1789] = {.lex_state = 4, .external_lex_state = 3}, - [1790] = {.lex_state = 18, .external_lex_state = 3}, + [1790] = {.lex_state = 4, .external_lex_state = 3}, [1791] = {.lex_state = 4, .external_lex_state = 3}, - [1792] = {.lex_state = 19, .external_lex_state = 3}, - [1793] = {.lex_state = 4, .external_lex_state = 4}, - [1794] = {.lex_state = 4, .external_lex_state = 3}, - [1795] = {.lex_state = 0, .external_lex_state = 3}, - [1796] = {.lex_state = 58, .external_lex_state = 3}, - [1797] = {.lex_state = 18, .external_lex_state = 3}, + [1792] = {.lex_state = 0, .external_lex_state = 3}, + [1793] = {.lex_state = 4, .external_lex_state = 3}, + [1794] = {.lex_state = 58, .external_lex_state = 3}, + [1795] = {.lex_state = 58, .external_lex_state = 3}, + [1796] = {.lex_state = 19, .external_lex_state = 3}, + [1797] = {.lex_state = 58, .external_lex_state = 3}, [1798] = {.lex_state = 58, .external_lex_state = 3}, - [1799] = {.lex_state = 19, .external_lex_state = 3}, + [1799] = {.lex_state = 4, .external_lex_state = 3}, [1800] = {.lex_state = 4, .external_lex_state = 3}, - [1801] = {.lex_state = 58, .external_lex_state = 3}, - [1802] = {.lex_state = 19, .external_lex_state = 3}, - [1803] = {.lex_state = 18, .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 = 58, .external_lex_state = 3}, - [1807] = {.lex_state = 58, .external_lex_state = 3}, - [1808] = {.lex_state = 0, .external_lex_state = 3}, + [1806] = {.lex_state = 4, .external_lex_state = 3}, + [1807] = {.lex_state = 4, .external_lex_state = 3}, + [1808] = {.lex_state = 58, .external_lex_state = 3}, [1809] = {.lex_state = 0, .external_lex_state = 3}, [1810] = {.lex_state = 18, .external_lex_state = 3}, [1811] = {.lex_state = 58, .external_lex_state = 3}, - [1812] = {.lex_state = 4, .external_lex_state = 4}, - [1813] = {.lex_state = 0, .external_lex_state = 3}, - [1814] = {.lex_state = 0, .external_lex_state = 3}, - [1815] = {.lex_state = 4, .external_lex_state = 4}, - [1816] = {.lex_state = 0, .external_lex_state = 3}, - [1817] = {.lex_state = 4, .external_lex_state = 4}, - [1818] = {.lex_state = 4, .external_lex_state = 3}, - [1819] = {.lex_state = 0, .external_lex_state = 3}, + [1812] = {.lex_state = 58, .external_lex_state = 3}, + [1813] = {.lex_state = 58, .external_lex_state = 3}, + [1814] = {.lex_state = 58, .external_lex_state = 3}, + [1815] = {.lex_state = 4, .external_lex_state = 3}, + [1816] = {.lex_state = 18, .external_lex_state = 3}, + [1817] = {.lex_state = 4, .external_lex_state = 3}, + [1818] = {.lex_state = 18, .external_lex_state = 3}, + [1819] = {.lex_state = 4, .external_lex_state = 3}, [1820] = {.lex_state = 58, .external_lex_state = 3}, [1821] = {.lex_state = 58, .external_lex_state = 3}, [1822] = {.lex_state = 58, .external_lex_state = 3}, - [1823] = {.lex_state = 0, .external_lex_state = 3}, - [1824] = {.lex_state = 4, .external_lex_state = 4}, - [1825] = {.lex_state = 58, .external_lex_state = 3}, + [1823] = {.lex_state = 9, .external_lex_state = 3}, + [1824] = {.lex_state = 4, .external_lex_state = 3}, + [1825] = {.lex_state = 18, .external_lex_state = 3}, [1826] = {.lex_state = 18, .external_lex_state = 3}, - [1827] = {.lex_state = 0, .external_lex_state = 3}, - [1828] = {.lex_state = 4, .external_lex_state = 3}, - [1829] = {.lex_state = 58, .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 = 58, .external_lex_state = 3}, - [1834] = {.lex_state = 4, .external_lex_state = 3}, + [1827] = {.lex_state = 19, .external_lex_state = 3}, + [1828] = {.lex_state = 0, .external_lex_state = 3}, + [1829] = {.lex_state = 9, .external_lex_state = 3}, + [1830] = {.lex_state = 58, .external_lex_state = 3}, + [1831] = {.lex_state = 58, .external_lex_state = 3}, + [1832] = {.lex_state = 58, .external_lex_state = 3}, + [1833] = {.lex_state = 4, .external_lex_state = 4}, + [1834] = {.lex_state = 0, .external_lex_state = 3}, [1835] = {.lex_state = 58, .external_lex_state = 3}, - [1836] = {.lex_state = 58, .external_lex_state = 3}, - [1837] = {.lex_state = 58, .external_lex_state = 3}, + [1836] = {.lex_state = 4, .external_lex_state = 3}, + [1837] = {.lex_state = 4, .external_lex_state = 3}, [1838] = {.lex_state = 58, .external_lex_state = 3}, - [1839] = {.lex_state = 4, .external_lex_state = 3}, - [1840] = {.lex_state = 4, .external_lex_state = 3}, + [1839] = {.lex_state = 4, .external_lex_state = 4}, + [1840] = {.lex_state = 4, .external_lex_state = 4}, [1841] = {.lex_state = 4, .external_lex_state = 3}, - [1842] = {.lex_state = 4, .external_lex_state = 3}, - [1843] = {.lex_state = 4, .external_lex_state = 3}, - [1844] = {.lex_state = 4, .external_lex_state = 3}, + [1842] = {.lex_state = 0, .external_lex_state = 3}, + [1843] = {.lex_state = 0, .external_lex_state = 3}, + [1844] = {.lex_state = 4, .external_lex_state = 4}, [1845] = {.lex_state = 4, .external_lex_state = 3}, [1846] = {.lex_state = 0, .external_lex_state = 3}, - [1847] = {.lex_state = 18, .external_lex_state = 3}, - [1848] = {.lex_state = 58, .external_lex_state = 3}, + [1847] = {.lex_state = 58, .external_lex_state = 3}, + [1848] = {.lex_state = 18, .external_lex_state = 3}, [1849] = {.lex_state = 58, .external_lex_state = 3}, - [1850] = {.lex_state = 58, .external_lex_state = 3}, - [1851] = {.lex_state = 58, .external_lex_state = 3}, - [1852] = {.lex_state = 4, .external_lex_state = 3}, - [1853] = {.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 = 4, .external_lex_state = 4}, + [1853] = {.lex_state = 0, .external_lex_state = 3}, [1854] = {.lex_state = 58, .external_lex_state = 3}, - [1855] = {.lex_state = 9, .external_lex_state = 3}, - [1856] = {.lex_state = 4, .external_lex_state = 3}, - [1857] = {.lex_state = 18, .external_lex_state = 3}, - [1858] = {.lex_state = 0, .external_lex_state = 3}, - [1859] = {.lex_state = 18, .external_lex_state = 3}, - [1860] = {.lex_state = 9, .external_lex_state = 3}, - [1861] = {.lex_state = 58, .external_lex_state = 3}, - [1862] = {.lex_state = 58, .external_lex_state = 3}, - [1863] = {.lex_state = 4, .external_lex_state = 3}, - [1864] = {.lex_state = 0, .external_lex_state = 3}, - [1865] = {.lex_state = 4, .external_lex_state = 4}, - [1866] = {.lex_state = 4, .external_lex_state = 3}, - [1867] = {.lex_state = 18, .external_lex_state = 3}, + [1855] = {.lex_state = 0, .external_lex_state = 3}, + [1856] = {.lex_state = 4, .external_lex_state = 4}, + [1857] = {.lex_state = 0, .external_lex_state = 3}, + [1858] = {.lex_state = 4, .external_lex_state = 3}, + [1859] = {.lex_state = 0, .external_lex_state = 3}, + [1860] = {.lex_state = 4, .external_lex_state = 4}, + [1861] = {.lex_state = 0, .external_lex_state = 3}, + [1862] = {.lex_state = 0, .external_lex_state = 3}, + [1863] = {.lex_state = 4, .external_lex_state = 4}, + [1864] = {.lex_state = 18, .external_lex_state = 3}, + [1865] = {.lex_state = 0, .external_lex_state = 3}, + [1866] = {.lex_state = 0, .external_lex_state = 3}, + [1867] = {.lex_state = 0, .external_lex_state = 3}, [1868] = {.lex_state = 0, .external_lex_state = 3}, [1869] = {.lex_state = 18, .external_lex_state = 3}, - [1870] = {.lex_state = 58, .external_lex_state = 3}, - [1871] = {.lex_state = 4, .external_lex_state = 3}, + [1870] = {.lex_state = 0, .external_lex_state = 3}, + [1871] = {.lex_state = 58, .external_lex_state = 3}, [1872] = {.lex_state = 0, .external_lex_state = 3}, [1873] = {.lex_state = 0, .external_lex_state = 3}, - [1874] = {.lex_state = 58, .external_lex_state = 3}, - [1875] = {.lex_state = 4, .external_lex_state = 4}, - [1876] = {.lex_state = 0, .external_lex_state = 3}, - [1877] = {.lex_state = 0, .external_lex_state = 3}, - [1878] = {.lex_state = 58, .external_lex_state = 3}, - [1879] = {.lex_state = 58, .external_lex_state = 3}, - [1880] = {.lex_state = 0, .external_lex_state = 3}, - [1881] = {.lex_state = 0, .external_lex_state = 3}, - [1882] = {.lex_state = 18, .external_lex_state = 3}, - [1883] = {.lex_state = 4, .external_lex_state = 3}, - [1884] = {.lex_state = 0, .external_lex_state = 3}, + [1874] = {.lex_state = 18, .external_lex_state = 3}, + [1875] = {.lex_state = 4, .external_lex_state = 3}, + [1876] = {.lex_state = 19, .external_lex_state = 3}, + [1877] = {.lex_state = 58, .external_lex_state = 3}, + [1878] = {.lex_state = 18, .external_lex_state = 3}, + [1879] = {.lex_state = 4, .external_lex_state = 3}, + [1880] = {.lex_state = 4, .external_lex_state = 3}, + [1881] = {.lex_state = 58, .external_lex_state = 3}, + [1882] = {.lex_state = 58, .external_lex_state = 3}, + [1883] = {.lex_state = 58, .external_lex_state = 3}, + [1884] = {.lex_state = 58, .external_lex_state = 3}, [1885] = {.lex_state = 4, .external_lex_state = 3}, - [1886] = {.lex_state = 58, .external_lex_state = 3}, - [1887] = {.lex_state = 58, .external_lex_state = 3}, - [1888] = {.lex_state = 4, .external_lex_state = 3}, + [1886] = {.lex_state = 4, .external_lex_state = 3}, + [1887] = {.lex_state = 4, .external_lex_state = 3}, + [1888] = {.lex_state = 18, .external_lex_state = 3}, [1889] = {.lex_state = 4, .external_lex_state = 4}, - [1890] = {.lex_state = 0, .external_lex_state = 3}, - [1891] = {.lex_state = 0, .external_lex_state = 3}, - [1892] = {.lex_state = 58, .external_lex_state = 3}, - [1893] = {.lex_state = 4, .external_lex_state = 3}, - [1894] = {.lex_state = 0, .external_lex_state = 3}, - [1895] = {.lex_state = 9, .external_lex_state = 3}, - [1896] = {.lex_state = 0, .external_lex_state = 3}, - [1897] = {.lex_state = 4, .external_lex_state = 3}, - [1898] = {.lex_state = 4, .external_lex_state = 3}, - [1899] = {.lex_state = 0, .external_lex_state = 3}, - [1900] = {.lex_state = 0, .external_lex_state = 3}, - [1901] = {.lex_state = 58, .external_lex_state = 3}, + [1890] = {.lex_state = 58, .external_lex_state = 3}, + [1891] = {.lex_state = 58, .external_lex_state = 3}, + [1892] = {.lex_state = 4, .external_lex_state = 3}, + [1893] = {.lex_state = 58, .external_lex_state = 3}, + [1894] = {.lex_state = 19, .external_lex_state = 3}, + [1895] = {.lex_state = 18, .external_lex_state = 3}, + [1896] = {.lex_state = 58, .external_lex_state = 3}, + [1897] = {.lex_state = 58, .external_lex_state = 3}, + [1898] = {.lex_state = 0, .external_lex_state = 3}, + [1899] = {.lex_state = 58, .external_lex_state = 3}, + [1900] = {.lex_state = 4, .external_lex_state = 3}, + [1901] = {.lex_state = 0, .external_lex_state = 3}, [1902] = {.lex_state = 58, .external_lex_state = 3}, [1903] = {.lex_state = 0, .external_lex_state = 3}, - [1904] = {.lex_state = 58, .external_lex_state = 3}, + [1904] = {.lex_state = 0, .external_lex_state = 3}, [1905] = {.lex_state = 0, .external_lex_state = 3}, - [1906] = {.lex_state = 58, .external_lex_state = 3}, - [1907] = {.lex_state = 58, .external_lex_state = 3}, + [1906] = {.lex_state = 0, .external_lex_state = 3}, + [1907] = {.lex_state = 0, .external_lex_state = 3}, [1908] = {.lex_state = 58, .external_lex_state = 3}, - [1909] = {.lex_state = 4, .external_lex_state = 3}, + [1909] = {.lex_state = 9, .external_lex_state = 3}, [1910] = {.lex_state = 0, .external_lex_state = 3}, [1911] = {.lex_state = 58, .external_lex_state = 3}, - [1912] = {.lex_state = 4, .external_lex_state = 3}, - [1913] = {.lex_state = 58, .external_lex_state = 3}, + [1912] = {.lex_state = 0, .external_lex_state = 3}, + [1913] = {.lex_state = 4, .external_lex_state = 3}, [1914] = {.lex_state = 0, .external_lex_state = 3}, - [1915] = {.lex_state = 58, .external_lex_state = 3}, - [1916] = {.lex_state = 58, .external_lex_state = 3}, + [1915] = {.lex_state = 0, .external_lex_state = 3}, + [1916] = {.lex_state = 0, .external_lex_state = 3}, [1917] = {.lex_state = 0, .external_lex_state = 3}, [1918] = {.lex_state = 58, .external_lex_state = 3}, - [1919] = {.lex_state = 4, .external_lex_state = 3}, + [1919] = {.lex_state = 0, .external_lex_state = 3}, [1920] = {.lex_state = 0, .external_lex_state = 3}, - [1921] = {.lex_state = 58, .external_lex_state = 3}, + [1921] = {.lex_state = 0, .external_lex_state = 3}, [1922] = {.lex_state = 0, .external_lex_state = 3}, - [1923] = {.lex_state = 0, .external_lex_state = 3}, + [1923] = {.lex_state = 4, .external_lex_state = 3}, [1924] = {.lex_state = 0, .external_lex_state = 3}, [1925] = {.lex_state = 4, .external_lex_state = 3}, - [1926] = {.lex_state = 0, .external_lex_state = 3}, - [1927] = {.lex_state = 0, .external_lex_state = 3}, + [1926] = {.lex_state = 58, .external_lex_state = 3}, + [1927] = {.lex_state = 4, .external_lex_state = 3}, [1928] = {.lex_state = 4, .external_lex_state = 3}, [1929] = {.lex_state = 0, .external_lex_state = 3}, [1930] = {.lex_state = 0, .external_lex_state = 3}, [1931] = {.lex_state = 0, .external_lex_state = 3}, - [1932] = {.lex_state = 58, .external_lex_state = 3}, - [1933] = {.lex_state = 58, .external_lex_state = 3}, - [1934] = {.lex_state = 58, .external_lex_state = 3}, + [1932] = {.lex_state = 0, .external_lex_state = 3}, + [1933] = {.lex_state = 0, .external_lex_state = 3}, + [1934] = {.lex_state = 3, .external_lex_state = 3}, [1935] = {.lex_state = 0, .external_lex_state = 3}, [1936] = {.lex_state = 9, .external_lex_state = 3}, - [1937] = {.lex_state = 0, .external_lex_state = 3}, + [1937] = {.lex_state = 58, .external_lex_state = 3}, [1938] = {.lex_state = 0, .external_lex_state = 3}, [1939] = {.lex_state = 0, .external_lex_state = 3}, - [1940] = {.lex_state = 4, .external_lex_state = 3}, - [1941] = {.lex_state = 0, .external_lex_state = 3}, - [1942] = {.lex_state = 58, .external_lex_state = 3}, - [1943] = {.lex_state = 18, .external_lex_state = 3}, + [1940] = {.lex_state = 0, .external_lex_state = 3}, + [1941] = {.lex_state = 4, .external_lex_state = 3}, + [1942] = {.lex_state = 3, .external_lex_state = 3}, + [1943] = {.lex_state = 0, .external_lex_state = 3}, [1944] = {.lex_state = 58, .external_lex_state = 3}, - [1945] = {.lex_state = 0, .external_lex_state = 3}, - [1946] = {.lex_state = 4, .external_lex_state = 3}, + [1945] = {.lex_state = 3, .external_lex_state = 3}, + [1946] = {.lex_state = 3, .external_lex_state = 3}, [1947] = {.lex_state = 58, .external_lex_state = 3}, - [1948] = {.lex_state = 58, .external_lex_state = 3}, - [1949] = {.lex_state = 0, .external_lex_state = 3}, + [1948] = {.lex_state = 0, .external_lex_state = 3}, + [1949] = {.lex_state = 58, .external_lex_state = 3}, [1950] = {.lex_state = 0, .external_lex_state = 3}, - [1951] = {.lex_state = 0, .external_lex_state = 3}, + [1951] = {.lex_state = 4, .external_lex_state = 3}, [1952] = {.lex_state = 58, .external_lex_state = 3}, [1953] = {.lex_state = 0, .external_lex_state = 3}, [1954] = {.lex_state = 0, .external_lex_state = 3}, - [1955] = {.lex_state = 0, .external_lex_state = 3}, - [1956] = {.lex_state = 4, .external_lex_state = 3}, + [1955] = {.lex_state = 58, .external_lex_state = 3}, + [1956] = {.lex_state = 0, .external_lex_state = 3}, [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 0, .external_lex_state = 3}, + [1958] = {.lex_state = 3, .external_lex_state = 3}, [1959] = {.lex_state = 0, .external_lex_state = 3}, - [1960] = {.lex_state = 0, .external_lex_state = 3}, + [1960] = {.lex_state = 3, .external_lex_state = 3}, [1961] = {.lex_state = 0, .external_lex_state = 3}, - [1962] = {.lex_state = 58, .external_lex_state = 3}, - [1963] = {.lex_state = 58, .external_lex_state = 3}, - [1964] = {.lex_state = 0, .external_lex_state = 3}, - [1965] = {.lex_state = 58, .external_lex_state = 3}, + [1962] = {.lex_state = 3, .external_lex_state = 3}, + [1963] = {.lex_state = 0, .external_lex_state = 3}, + [1964] = {.lex_state = 4, .external_lex_state = 3}, + [1965] = {.lex_state = 3, .external_lex_state = 3}, [1966] = {.lex_state = 0, .external_lex_state = 3}, [1967] = {.lex_state = 0, .external_lex_state = 3}, [1968] = {.lex_state = 4, .external_lex_state = 3}, - [1969] = {.lex_state = 58, .external_lex_state = 3}, - [1970] = {.lex_state = 4, .external_lex_state = 3}, + [1969] = {.lex_state = 3, .external_lex_state = 3}, + [1970] = {.lex_state = 58, .external_lex_state = 3}, [1971] = {.lex_state = 0, .external_lex_state = 3}, - [1972] = {.lex_state = 0, .external_lex_state = 3}, + [1972] = {.lex_state = 58, .external_lex_state = 3}, [1973] = {.lex_state = 0, .external_lex_state = 3}, [1974] = {.lex_state = 0, .external_lex_state = 3}, [1975] = {.lex_state = 0, .external_lex_state = 3}, [1976] = {.lex_state = 0, .external_lex_state = 3}, [1977] = {.lex_state = 0, .external_lex_state = 3}, - [1978] = {.lex_state = 58, .external_lex_state = 3}, + [1978] = {.lex_state = 0, .external_lex_state = 3}, [1979] = {.lex_state = 4, .external_lex_state = 3}, [1980] = {.lex_state = 0, .external_lex_state = 3}, [1981] = {.lex_state = 0, .external_lex_state = 3}, - [1982] = {.lex_state = 58, .external_lex_state = 3}, - [1983] = {.lex_state = 58, .external_lex_state = 3}, - [1984] = {.lex_state = 0, .external_lex_state = 3}, - [1985] = {.lex_state = 4, .external_lex_state = 3}, - [1986] = {.lex_state = 3, .external_lex_state = 3}, - [1987] = {.lex_state = 3, .external_lex_state = 3}, - [1988] = {.lex_state = 0, .external_lex_state = 3}, - [1989] = {.lex_state = 0, .external_lex_state = 3}, - [1990] = {.lex_state = 58, .external_lex_state = 3}, + [1982] = {.lex_state = 4, .external_lex_state = 3}, + [1983] = {.lex_state = 3, .external_lex_state = 3}, + [1984] = {.lex_state = 4, .external_lex_state = 3}, + [1985] = {.lex_state = 58, .external_lex_state = 3}, + [1986] = {.lex_state = 0, .external_lex_state = 3}, + [1987] = {.lex_state = 0, .external_lex_state = 3}, + [1988] = {.lex_state = 58, .external_lex_state = 3}, + [1989] = {.lex_state = 58, .external_lex_state = 3}, + [1990] = {.lex_state = 0, .external_lex_state = 3}, [1991] = {.lex_state = 58, .external_lex_state = 3}, [1992] = {.lex_state = 0, .external_lex_state = 3}, [1993] = {.lex_state = 0, .external_lex_state = 3}, [1994] = {.lex_state = 0, .external_lex_state = 3}, [1995] = {.lex_state = 0, .external_lex_state = 3}, - [1996] = {.lex_state = 9, .external_lex_state = 3}, + [1996] = {.lex_state = 0, .external_lex_state = 3}, [1997] = {.lex_state = 0, .external_lex_state = 3}, - [1998] = {.lex_state = 3, .external_lex_state = 3}, - [1999] = {.lex_state = 3, .external_lex_state = 3}, + [1998] = {.lex_state = 58, .external_lex_state = 3}, + [1999] = {.lex_state = 0, .external_lex_state = 3}, [2000] = {.lex_state = 3, .external_lex_state = 3}, [2001] = {.lex_state = 0, .external_lex_state = 3}, - [2002] = {.lex_state = 3, .external_lex_state = 3}, - [2003] = {.lex_state = 0, .external_lex_state = 3}, + [2002] = {.lex_state = 0, .external_lex_state = 3}, + [2003] = {.lex_state = 4, .external_lex_state = 3}, [2004] = {.lex_state = 3, .external_lex_state = 3}, - [2005] = {.lex_state = 4, .external_lex_state = 3}, + [2005] = {.lex_state = 3, .external_lex_state = 3}, [2006] = {.lex_state = 0, .external_lex_state = 3}, [2007] = {.lex_state = 0, .external_lex_state = 3}, - [2008] = {.lex_state = 3, .external_lex_state = 3}, - [2009] = {.lex_state = 3, .external_lex_state = 3}, + [2008] = {.lex_state = 58, .external_lex_state = 3}, + [2009] = {.lex_state = 58, .external_lex_state = 3}, [2010] = {.lex_state = 3, .external_lex_state = 3}, [2011] = {.lex_state = 0, .external_lex_state = 3}, [2012] = {.lex_state = 0, .external_lex_state = 3}, - [2013] = {.lex_state = 58, .external_lex_state = 3}, + [2013] = {.lex_state = 9, .external_lex_state = 3}, [2014] = {.lex_state = 0, .external_lex_state = 3}, - [2015] = {.lex_state = 4, .external_lex_state = 3}, - [2016] = {.lex_state = 58, .external_lex_state = 3}, - [2017] = {.lex_state = 3, .external_lex_state = 3}, + [2015] = {.lex_state = 58, .external_lex_state = 3}, + [2016] = {.lex_state = 0, .external_lex_state = 3}, + [2017] = {.lex_state = 0, .external_lex_state = 3}, [2018] = {.lex_state = 58, .external_lex_state = 3}, [2019] = {.lex_state = 0, .external_lex_state = 3}, [2020] = {.lex_state = 0, .external_lex_state = 3}, - [2021] = {.lex_state = 3, .external_lex_state = 3}, - [2022] = {.lex_state = 58, .external_lex_state = 3}, - [2023] = {.lex_state = 0, .external_lex_state = 3}, + [2021] = {.lex_state = 0, .external_lex_state = 3}, + [2022] = {.lex_state = 4, .external_lex_state = 3}, + [2023] = {.lex_state = 4, .external_lex_state = 3}, [2024] = {.lex_state = 3, .external_lex_state = 3}, - [2025] = {.lex_state = 4, .external_lex_state = 3}, - [2026] = {.lex_state = 3, .external_lex_state = 3}, - [2027] = {.lex_state = 4, .external_lex_state = 3}, + [2025] = {.lex_state = 58, .external_lex_state = 3}, + [2026] = {.lex_state = 4, .external_lex_state = 3}, + [2027] = {.lex_state = 0, .external_lex_state = 3}, [2028] = {.lex_state = 3, .external_lex_state = 3}, - [2029] = {.lex_state = 58, .external_lex_state = 3}, + [2029] = {.lex_state = 0, .external_lex_state = 3}, [2030] = {.lex_state = 58, .external_lex_state = 3}, [2031] = {.lex_state = 4, .external_lex_state = 3}, [2032] = {.lex_state = 58, .external_lex_state = 3}, - [2033] = {.lex_state = 3, .external_lex_state = 3}, - [2034] = {.lex_state = 58, .external_lex_state = 3}, - [2035] = {.lex_state = 58, .external_lex_state = 3}, - [2036] = {.lex_state = 58, .external_lex_state = 3}, + [2033] = {.lex_state = 9, .external_lex_state = 3}, + [2034] = {.lex_state = 0, .external_lex_state = 3}, + [2035] = {.lex_state = 0, .external_lex_state = 3}, + [2036] = {.lex_state = 0, .external_lex_state = 3}, [2037] = {.lex_state = 58, .external_lex_state = 3}, [2038] = {.lex_state = 0, .external_lex_state = 3}, [2039] = {.lex_state = 58, .external_lex_state = 3}, - [2040] = {.lex_state = 3, .external_lex_state = 3}, - [2041] = {.lex_state = 3, .external_lex_state = 3}, - [2042] = {.lex_state = 58, .external_lex_state = 3}, + [2040] = {.lex_state = 0, .external_lex_state = 3}, + [2041] = {.lex_state = 0, .external_lex_state = 3}, + [2042] = {.lex_state = 0, .external_lex_state = 3}, [2043] = {.lex_state = 0, .external_lex_state = 3}, - [2044] = {.lex_state = 58, .external_lex_state = 3}, + [2044] = {.lex_state = 0, .external_lex_state = 3}, [2045] = {.lex_state = 4, .external_lex_state = 3}, [2046] = {.lex_state = 0, .external_lex_state = 3}, - [2047] = {.lex_state = 58, .external_lex_state = 3}, - [2048] = {.lex_state = 0, .external_lex_state = 3}, - [2049] = {.lex_state = 0, .external_lex_state = 3}, - [2050] = {.lex_state = 0, .external_lex_state = 3}, + [2047] = {.lex_state = 3, .external_lex_state = 3}, + [2048] = {.lex_state = 58, .external_lex_state = 3}, + [2049] = {.lex_state = 58, .external_lex_state = 3}, + [2050] = {.lex_state = 58, .external_lex_state = 3}, [2051] = {.lex_state = 58, .external_lex_state = 3}, - [2052] = {.lex_state = 0, .external_lex_state = 3}, - [2053] = {.lex_state = 4, .external_lex_state = 3}, - [2054] = {.lex_state = 0, .external_lex_state = 3}, - [2055] = {.lex_state = 0, .external_lex_state = 3}, - [2056] = {.lex_state = 58, .external_lex_state = 3}, - [2057] = {.lex_state = 58, .external_lex_state = 3}, + [2052] = {.lex_state = 58, .external_lex_state = 3}, + [2053] = {.lex_state = 0, .external_lex_state = 3}, + [2054] = {.lex_state = 58, .external_lex_state = 3}, + [2055] = {.lex_state = 3, .external_lex_state = 3}, + [2056] = {.lex_state = 0, .external_lex_state = 3}, + [2057] = {.lex_state = 0, .external_lex_state = 3}, [2058] = {.lex_state = 0, .external_lex_state = 3}, - [2059] = {.lex_state = 0, .external_lex_state = 3}, - [2060] = {.lex_state = 4, .external_lex_state = 3}, - [2061] = {.lex_state = 9, .external_lex_state = 3}, + [2059] = {.lex_state = 58, .external_lex_state = 3}, + [2060] = {.lex_state = 0, .external_lex_state = 3}, + [2061] = {.lex_state = 58, .external_lex_state = 3}, [2062] = {.lex_state = 0, .external_lex_state = 3}, [2063] = {.lex_state = 0, .external_lex_state = 3}, - [2064] = {.lex_state = 58, .external_lex_state = 3}, + [2064] = {.lex_state = 0, .external_lex_state = 3}, [2065] = {.lex_state = 0, .external_lex_state = 3}, [2066] = {.lex_state = 0, .external_lex_state = 3}, [2067] = {.lex_state = 0, .external_lex_state = 3}, - [2068] = {.lex_state = 0, .external_lex_state = 3}, - [2069] = {.lex_state = 58, .external_lex_state = 3}, - [2070] = {.lex_state = 0, .external_lex_state = 3}, + [2068] = {.lex_state = 58, .external_lex_state = 3}, + [2069] = {.lex_state = 0, .external_lex_state = 3}, + [2070] = {.lex_state = 3, .external_lex_state = 3}, [2071] = {.lex_state = 0, .external_lex_state = 3}, - [2072] = {.lex_state = 0, .external_lex_state = 3}, + [2072] = {.lex_state = 3, .external_lex_state = 3}, [2073] = {.lex_state = 0, .external_lex_state = 3}, [2074] = {.lex_state = 0, .external_lex_state = 3}, [2075] = {.lex_state = 0, .external_lex_state = 3}, - [2076] = {.lex_state = 58, .external_lex_state = 3}, + [2076] = {.lex_state = 0, .external_lex_state = 3}, [2077] = {.lex_state = 58, .external_lex_state = 3}, - [2078] = {.lex_state = 0, .external_lex_state = 3}, + [2078] = {.lex_state = 58, .external_lex_state = 3}, [2079] = {.lex_state = 0, .external_lex_state = 3}, - [2080] = {.lex_state = 3, .external_lex_state = 3}, - [2081] = {.lex_state = 3, .external_lex_state = 3}, + [2080] = {.lex_state = 0, .external_lex_state = 3}, + [2081] = {.lex_state = 0, .external_lex_state = 3}, [2082] = {.lex_state = 0, .external_lex_state = 3}, [2083] = {.lex_state = 0, .external_lex_state = 3}, [2084] = {.lex_state = 0, .external_lex_state = 3}, [2085] = {.lex_state = 0, .external_lex_state = 3}, [2086] = {.lex_state = 0, .external_lex_state = 3}, - [2087] = {.lex_state = 0, .external_lex_state = 3}, + [2087] = {.lex_state = 58, .external_lex_state = 3}, [2088] = {.lex_state = 0, .external_lex_state = 3}, [2089] = {.lex_state = 0, .external_lex_state = 3}, - [2090] = {.lex_state = 0, .external_lex_state = 3}, + [2090] = {.lex_state = 58, .external_lex_state = 3}, [2091] = {.lex_state = 0, .external_lex_state = 3}, [2092] = {.lex_state = 0, .external_lex_state = 3}, [2093] = {.lex_state = 0, .external_lex_state = 3}, [2094] = {.lex_state = 0, .external_lex_state = 3}, - [2095] = {.lex_state = 0, .external_lex_state = 3}, + [2095] = {.lex_state = 58, .external_lex_state = 3}, [2096] = {.lex_state = 58, .external_lex_state = 3}, [2097] = {.lex_state = 0, .external_lex_state = 3}, [2098] = {.lex_state = 0, .external_lex_state = 3}, @@ -15468,81 +15468,81 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2102] = {.lex_state = 58, .external_lex_state = 3}, [2103] = {.lex_state = 0, .external_lex_state = 3}, [2104] = {.lex_state = 58, .external_lex_state = 3}, - [2105] = {.lex_state = 0, .external_lex_state = 3}, - [2106] = {.lex_state = 58, .external_lex_state = 3}, + [2105] = {.lex_state = 58, .external_lex_state = 3}, + [2106] = {.lex_state = 0, .external_lex_state = 3}, [2107] = {.lex_state = 0, .external_lex_state = 3}, - [2108] = {.lex_state = 0, .external_lex_state = 3}, + [2108] = {.lex_state = 58, .external_lex_state = 3}, [2109] = {.lex_state = 0, .external_lex_state = 3}, [2110] = {.lex_state = 58, .external_lex_state = 3}, [2111] = {.lex_state = 0, .external_lex_state = 3}, - [2112] = {.lex_state = 0, .external_lex_state = 3}, + [2112] = {.lex_state = 58, .external_lex_state = 3}, [2113] = {.lex_state = 0, .external_lex_state = 3}, - [2114] = {.lex_state = 0, .external_lex_state = 3}, - [2115] = {.lex_state = 9, .external_lex_state = 3}, - [2116] = {.lex_state = 58, .external_lex_state = 3}, - [2117] = {.lex_state = 0, .external_lex_state = 3}, + [2114] = {.lex_state = 9, .external_lex_state = 3}, + [2115] = {.lex_state = 4, .external_lex_state = 3}, + [2116] = {.lex_state = 4, .external_lex_state = 3}, + [2117] = {.lex_state = 58, .external_lex_state = 3}, [2118] = {.lex_state = 58, .external_lex_state = 3}, [2119] = {.lex_state = 0, .external_lex_state = 3}, [2120] = {.lex_state = 0, .external_lex_state = 3}, [2121] = {.lex_state = 0, .external_lex_state = 3}, [2122] = {.lex_state = 4, .external_lex_state = 3}, [2123] = {.lex_state = 4, .external_lex_state = 3}, - [2124] = {.lex_state = 58, .external_lex_state = 3}, - [2125] = {.lex_state = 0, .external_lex_state = 3}, - [2126] = {.lex_state = 0, .external_lex_state = 3}, + [2124] = {.lex_state = 0, .external_lex_state = 3}, + [2125] = {.lex_state = 58, .external_lex_state = 3}, + [2126] = {.lex_state = 58, .external_lex_state = 3}, [2127] = {.lex_state = 0, .external_lex_state = 3}, [2128] = {.lex_state = 0, .external_lex_state = 3}, - [2129] = {.lex_state = 0, .external_lex_state = 3}, - [2130] = {.lex_state = 0, .external_lex_state = 3}, + [2129] = {.lex_state = 58, .external_lex_state = 3}, + [2130] = {.lex_state = 4, .external_lex_state = 3}, [2131] = {.lex_state = 0, .external_lex_state = 3}, - [2132] = {.lex_state = 0, .external_lex_state = 3}, - [2133] = {.lex_state = 0, .external_lex_state = 3}, + [2132] = {.lex_state = 58, .external_lex_state = 3}, + [2133] = {.lex_state = 58, .external_lex_state = 3}, [2134] = {.lex_state = 0, .external_lex_state = 3}, [2135] = {.lex_state = 58, .external_lex_state = 3}, - [2136] = {.lex_state = 58, .external_lex_state = 3}, + [2136] = {.lex_state = 0, .external_lex_state = 3}, [2137] = {.lex_state = 0, .external_lex_state = 3}, - [2138] = {.lex_state = 0, .external_lex_state = 3}, + [2138] = {.lex_state = 58, .external_lex_state = 3}, [2139] = {.lex_state = 4, .external_lex_state = 3}, [2140] = {.lex_state = 58, .external_lex_state = 3}, [2141] = {.lex_state = 0, .external_lex_state = 3}, - [2142] = {.lex_state = 58, .external_lex_state = 3}, + [2142] = {.lex_state = 0, .external_lex_state = 3}, [2143] = {.lex_state = 0, .external_lex_state = 3}, - [2144] = {.lex_state = 4, .external_lex_state = 3}, - [2145] = {.lex_state = 0, .external_lex_state = 3}, + [2144] = {.lex_state = 0, .external_lex_state = 3}, + [2145] = {.lex_state = 4, .external_lex_state = 3}, [2146] = {.lex_state = 0, .external_lex_state = 3}, [2147] = {.lex_state = 0, .external_lex_state = 3}, [2148] = {.lex_state = 0, .external_lex_state = 3}, - [2149] = {.lex_state = 58, .external_lex_state = 3}, + [2149] = {.lex_state = 4, .external_lex_state = 3}, [2150] = {.lex_state = 0, .external_lex_state = 3}, - [2151] = {.lex_state = 0, .external_lex_state = 3}, + [2151] = {.lex_state = 58, .external_lex_state = 3}, [2152] = {.lex_state = 0, .external_lex_state = 3}, - [2153] = {.lex_state = 0, .external_lex_state = 3}, - [2154] = {.lex_state = 0, .external_lex_state = 3}, + [2153] = {.lex_state = 58, .external_lex_state = 3}, + [2154] = {.lex_state = 58, .external_lex_state = 3}, [2155] = {.lex_state = 0, .external_lex_state = 3}, [2156] = {.lex_state = 0, .external_lex_state = 3}, - [2157] = {.lex_state = 0, .external_lex_state = 3}, + [2157] = {.lex_state = 58, .external_lex_state = 3}, [2158] = {.lex_state = 0, .external_lex_state = 3}, - [2159] = {.lex_state = 4, .external_lex_state = 3}, + [2159] = {.lex_state = 58, .external_lex_state = 3}, [2160] = {.lex_state = 0, .external_lex_state = 3}, [2161] = {.lex_state = 0, .external_lex_state = 3}, [2162] = {.lex_state = 0, .external_lex_state = 3}, - [2163] = {.lex_state = 4, .external_lex_state = 3}, - [2164] = {.lex_state = 0, .external_lex_state = 3}, + [2163] = {.lex_state = 0, .external_lex_state = 3}, + [2164] = {.lex_state = 4, .external_lex_state = 3}, [2165] = {.lex_state = 4, .external_lex_state = 3}, [2166] = {.lex_state = 0, .external_lex_state = 3}, - [2167] = {.lex_state = 0, .external_lex_state = 3}, + [2167] = {.lex_state = 4, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, [2169] = {.lex_state = 4, .external_lex_state = 3}, [2170] = {.lex_state = 0, .external_lex_state = 3}, [2171] = {.lex_state = 0, .external_lex_state = 3}, - [2172] = {.lex_state = 58, .external_lex_state = 3}, + [2172] = {.lex_state = 0, .external_lex_state = 3}, [2173] = {.lex_state = 0, .external_lex_state = 3}, - [2174] = {.lex_state = 0, .external_lex_state = 3}, + [2174] = {.lex_state = 58, .external_lex_state = 3}, [2175] = {.lex_state = 0, .external_lex_state = 3}, - [2176] = {.lex_state = 0, .external_lex_state = 3}, + [2176] = {.lex_state = 58, .external_lex_state = 3}, [2177] = {.lex_state = 0, .external_lex_state = 3}, - [2178] = {.lex_state = 58, .external_lex_state = 3}, - [2179] = {.lex_state = 4, .external_lex_state = 3}, + [2178] = {.lex_state = 4, .external_lex_state = 3}, + [2179] = {.lex_state = 0, .external_lex_state = 3}, [2180] = {.lex_state = 58, .external_lex_state = 3}, [2181] = {.lex_state = 58, .external_lex_state = 3}, [2182] = {.lex_state = 0, .external_lex_state = 3}, @@ -15551,29 +15551,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2185] = {.lex_state = 58, .external_lex_state = 3}, [2186] = {.lex_state = 0, .external_lex_state = 3}, [2187] = {.lex_state = 58, .external_lex_state = 3}, - [2188] = {.lex_state = 0, .external_lex_state = 3}, - [2189] = {.lex_state = 4, .external_lex_state = 3}, - [2190] = {.lex_state = 58, .external_lex_state = 3}, + [2188] = {.lex_state = 4, .external_lex_state = 3}, + [2189] = {.lex_state = 0, .external_lex_state = 3}, + [2190] = {.lex_state = 0, .external_lex_state = 3}, [2191] = {.lex_state = 0, .external_lex_state = 3}, [2192] = {.lex_state = 0, .external_lex_state = 3}, - [2193] = {.lex_state = 4, .external_lex_state = 3}, + [2193] = {.lex_state = 0, .external_lex_state = 3}, [2194] = {.lex_state = 0, .external_lex_state = 3}, [2195] = {.lex_state = 0, .external_lex_state = 3}, - [2196] = {.lex_state = 58, .external_lex_state = 3}, + [2196] = {.lex_state = 0, .external_lex_state = 3}, [2197] = {.lex_state = 0, .external_lex_state = 3}, - [2198] = {.lex_state = 0, .external_lex_state = 3}, + [2198] = {.lex_state = 4, .external_lex_state = 3}, [2199] = {.lex_state = 0, .external_lex_state = 3}, - [2200] = {.lex_state = 4, .external_lex_state = 3}, + [2200] = {.lex_state = 0, .external_lex_state = 3}, [2201] = {.lex_state = 0, .external_lex_state = 3}, [2202] = {.lex_state = 0, .external_lex_state = 3}, [2203] = {.lex_state = 58, .external_lex_state = 3}, [2204] = {.lex_state = 0, .external_lex_state = 3}, [2205] = {.lex_state = 0, .external_lex_state = 3}, - [2206] = {.lex_state = 58, .external_lex_state = 3}, + [2206] = {.lex_state = 0, .external_lex_state = 3}, [2207] = {.lex_state = 0, .external_lex_state = 3}, - [2208] = {.lex_state = 0, .external_lex_state = 3}, - [2209] = {.lex_state = 18, .external_lex_state = 3}, - [2210] = {.lex_state = 18, .external_lex_state = 3}, + [2208] = {.lex_state = 58, .external_lex_state = 3}, + [2209] = {.lex_state = 0, .external_lex_state = 3}, + [2210] = {.lex_state = 58, .external_lex_state = 3}, [2211] = {.lex_state = 0, .external_lex_state = 3}, [2212] = {.lex_state = 58, .external_lex_state = 3}, [2213] = {.lex_state = 4, .external_lex_state = 3}, @@ -15582,264 +15582,264 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2216] = {.lex_state = 0, .external_lex_state = 3}, [2217] = {.lex_state = 0, .external_lex_state = 3}, [2218] = {.lex_state = 0, .external_lex_state = 3}, - [2219] = {.lex_state = 0, .external_lex_state = 3}, - [2220] = {.lex_state = 0, .external_lex_state = 3}, - [2221] = {.lex_state = 0, .external_lex_state = 3}, - [2222] = {.lex_state = 4, .external_lex_state = 3}, + [2219] = {.lex_state = 4, .external_lex_state = 3}, + [2220] = {.lex_state = 58, .external_lex_state = 3}, + [2221] = {.lex_state = 4, .external_lex_state = 3}, + [2222] = {.lex_state = 58, .external_lex_state = 3}, [2223] = {.lex_state = 0, .external_lex_state = 3}, - [2224] = {.lex_state = 4, .external_lex_state = 3}, - [2225] = {.lex_state = 0, .external_lex_state = 3}, + [2224] = {.lex_state = 0, .external_lex_state = 3}, + [2225] = {.lex_state = 58, .external_lex_state = 3}, [2226] = {.lex_state = 58, .external_lex_state = 3}, - [2227] = {.lex_state = 0, .external_lex_state = 3}, - [2228] = {.lex_state = 58, .external_lex_state = 3}, + [2227] = {.lex_state = 58, .external_lex_state = 3}, + [2228] = {.lex_state = 0, .external_lex_state = 3}, [2229] = {.lex_state = 0, .external_lex_state = 3}, - [2230] = {.lex_state = 18, .external_lex_state = 3}, - [2231] = {.lex_state = 0, .external_lex_state = 3}, - [2232] = {.lex_state = 58, .external_lex_state = 3}, - [2233] = {.lex_state = 18, .external_lex_state = 3}, - [2234] = {.lex_state = 4, .external_lex_state = 3}, + [2230] = {.lex_state = 4, .external_lex_state = 3}, + [2231] = {.lex_state = 58, .external_lex_state = 3}, + [2232] = {.lex_state = 0, .external_lex_state = 3}, + [2233] = {.lex_state = 0, .external_lex_state = 3}, + [2234] = {.lex_state = 0, .external_lex_state = 3}, [2235] = {.lex_state = 0, .external_lex_state = 3}, - [2236] = {.lex_state = 18, .external_lex_state = 3}, + [2236] = {.lex_state = 58, .external_lex_state = 3}, [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 58, .external_lex_state = 3}, + [2238] = {.lex_state = 0, .external_lex_state = 3}, [2239] = {.lex_state = 58, .external_lex_state = 3}, [2240] = {.lex_state = 0, .external_lex_state = 3}, [2241] = {.lex_state = 0, .external_lex_state = 3}, - [2242] = {.lex_state = 0, .external_lex_state = 3}, + [2242] = {.lex_state = 18, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, [2244] = {.lex_state = 0, .external_lex_state = 3}, - [2245] = {.lex_state = 58, .external_lex_state = 3}, + [2245] = {.lex_state = 0, .external_lex_state = 3}, [2246] = {.lex_state = 0, .external_lex_state = 3}, [2247] = {.lex_state = 0, .external_lex_state = 3}, - [2248] = {.lex_state = 4, .external_lex_state = 3}, - [2249] = {.lex_state = 4, .external_lex_state = 3}, - [2250] = {.lex_state = 0, .external_lex_state = 3}, + [2248] = {.lex_state = 0, .external_lex_state = 3}, + [2249] = {.lex_state = 0, .external_lex_state = 3}, + [2250] = {.lex_state = 18, .external_lex_state = 3}, [2251] = {.lex_state = 0, .external_lex_state = 3}, [2252] = {.lex_state = 0, .external_lex_state = 3}, [2253] = {.lex_state = 0, .external_lex_state = 3}, [2254] = {.lex_state = 0, .external_lex_state = 3}, [2255] = {.lex_state = 0, .external_lex_state = 3}, [2256] = {.lex_state = 0, .external_lex_state = 3}, - [2257] = {.lex_state = 0, .external_lex_state = 3}, + [2257] = {.lex_state = 4, .external_lex_state = 3}, [2258] = {.lex_state = 0, .external_lex_state = 3}, [2259] = {.lex_state = 0, .external_lex_state = 3}, - [2260] = {.lex_state = 58, .external_lex_state = 3}, + [2260] = {.lex_state = 0, .external_lex_state = 3}, [2261] = {.lex_state = 0, .external_lex_state = 3}, [2262] = {.lex_state = 0, .external_lex_state = 3}, [2263] = {.lex_state = 0, .external_lex_state = 3}, [2264] = {.lex_state = 0, .external_lex_state = 3}, - [2265] = {.lex_state = 0, .external_lex_state = 3}, - [2266] = {.lex_state = 0, .external_lex_state = 3}, + [2265] = {.lex_state = 58, .external_lex_state = 3}, + [2266] = {.lex_state = 9, .external_lex_state = 3}, [2267] = {.lex_state = 58, .external_lex_state = 3}, - [2268] = {.lex_state = 0, .external_lex_state = 3}, + [2268] = {.lex_state = 58, .external_lex_state = 3}, [2269] = {.lex_state = 0, .external_lex_state = 3}, [2270] = {.lex_state = 0, .external_lex_state = 3}, - [2271] = {.lex_state = 4, .external_lex_state = 3}, + [2271] = {.lex_state = 0, .external_lex_state = 3}, [2272] = {.lex_state = 0, .external_lex_state = 3}, [2273] = {.lex_state = 0, .external_lex_state = 3}, - [2274] = {.lex_state = 58, .external_lex_state = 3}, + [2274] = {.lex_state = 0, .external_lex_state = 3}, [2275] = {.lex_state = 0, .external_lex_state = 3}, - [2276] = {.lex_state = 4, .external_lex_state = 3}, + [2276] = {.lex_state = 0, .external_lex_state = 5}, [2277] = {.lex_state = 0, .external_lex_state = 3}, [2278] = {.lex_state = 0, .external_lex_state = 3}, [2279] = {.lex_state = 0, .external_lex_state = 3}, [2280] = {.lex_state = 0, .external_lex_state = 3}, - [2281] = {.lex_state = 0, .external_lex_state = 3}, - [2282] = {.lex_state = 0, .external_lex_state = 3}, - [2283] = {.lex_state = 0, .external_lex_state = 3}, + [2281] = {.lex_state = 58, .external_lex_state = 3}, + [2282] = {.lex_state = 4, .external_lex_state = 3}, + [2283] = {.lex_state = 18, .external_lex_state = 3}, [2284] = {.lex_state = 0, .external_lex_state = 3}, - [2285] = {.lex_state = 0, .external_lex_state = 3}, + [2285] = {.lex_state = 4, .external_lex_state = 3}, [2286] = {.lex_state = 0, .external_lex_state = 3}, - [2287] = {.lex_state = 0, .external_lex_state = 5}, + [2287] = {.lex_state = 0, .external_lex_state = 3}, [2288] = {.lex_state = 0, .external_lex_state = 3}, [2289] = {.lex_state = 0, .external_lex_state = 3}, [2290] = {.lex_state = 0, .external_lex_state = 3}, - [2291] = {.lex_state = 0, .external_lex_state = 3}, - [2292] = {.lex_state = 0, .external_lex_state = 3}, - [2293] = {.lex_state = 4, .external_lex_state = 3}, - [2294] = {.lex_state = 4, .external_lex_state = 3}, - [2295] = {.lex_state = 58, .external_lex_state = 3}, + [2291] = {.lex_state = 58, .external_lex_state = 3}, + [2292] = {.lex_state = 58, .external_lex_state = 3}, + [2293] = {.lex_state = 0, .external_lex_state = 3}, + [2294] = {.lex_state = 0, .external_lex_state = 3}, + [2295] = {.lex_state = 0, .external_lex_state = 3}, [2296] = {.lex_state = 0, .external_lex_state = 3}, - [2297] = {.lex_state = 58, .external_lex_state = 3}, + [2297] = {.lex_state = 0, .external_lex_state = 3}, [2298] = {.lex_state = 0, .external_lex_state = 3}, [2299] = {.lex_state = 0, .external_lex_state = 3}, - [2300] = {.lex_state = 0, .external_lex_state = 3}, + [2300] = {.lex_state = 58, .external_lex_state = 3}, [2301] = {.lex_state = 0, .external_lex_state = 3}, - [2302] = {.lex_state = 0, .external_lex_state = 3}, - [2303] = {.lex_state = 58, .external_lex_state = 3}, - [2304] = {.lex_state = 0, .external_lex_state = 3}, + [2302] = {.lex_state = 18, .external_lex_state = 3}, + [2303] = {.lex_state = 0, .external_lex_state = 3}, + [2304] = {.lex_state = 18, .external_lex_state = 3}, [2305] = {.lex_state = 0, .external_lex_state = 3}, [2306] = {.lex_state = 58, .external_lex_state = 3}, - [2307] = {.lex_state = 4, .external_lex_state = 3}, - [2308] = {.lex_state = 58, .external_lex_state = 3}, + [2307] = {.lex_state = 58, .external_lex_state = 3}, + [2308] = {.lex_state = 0, .external_lex_state = 3}, [2309] = {.lex_state = 0, .external_lex_state = 3}, [2310] = {.lex_state = 0, .external_lex_state = 3}, - [2311] = {.lex_state = 58, .external_lex_state = 3}, - [2312] = {.lex_state = 0, .external_lex_state = 3}, + [2311] = {.lex_state = 4, .external_lex_state = 3}, + [2312] = {.lex_state = 18, .external_lex_state = 3}, [2313] = {.lex_state = 0, .external_lex_state = 3}, - [2314] = {.lex_state = 58, .external_lex_state = 3}, - [2315] = {.lex_state = 58, .external_lex_state = 3}, - [2316] = {.lex_state = 58, .external_lex_state = 3}, + [2314] = {.lex_state = 4, .external_lex_state = 3}, + [2315] = {.lex_state = 4, .external_lex_state = 3}, + [2316] = {.lex_state = 0, .external_lex_state = 3}, [2317] = {.lex_state = 0, .external_lex_state = 3}, - [2318] = {.lex_state = 4, .external_lex_state = 3}, + [2318] = {.lex_state = 58, .external_lex_state = 3}, [2319] = {.lex_state = 0, .external_lex_state = 3}, [2320] = {.lex_state = 0, .external_lex_state = 3}, - [2321] = {.lex_state = 18, .external_lex_state = 3}, + [2321] = {.lex_state = 0, .external_lex_state = 3}, [2322] = {.lex_state = 58, .external_lex_state = 3}, [2323] = {.lex_state = 0, .external_lex_state = 3}, [2324] = {.lex_state = 0, .external_lex_state = 3}, - [2325] = {.lex_state = 0, .external_lex_state = 3}, - [2326] = {.lex_state = 0, .external_lex_state = 3}, + [2325] = {.lex_state = 58, .external_lex_state = 3}, + [2326] = {.lex_state = 4, .external_lex_state = 3}, [2327] = {.lex_state = 0, .external_lex_state = 3}, [2328] = {.lex_state = 0, .external_lex_state = 3}, [2329] = {.lex_state = 0, .external_lex_state = 3}, - [2330] = {.lex_state = 58, .external_lex_state = 3}, - [2331] = {.lex_state = 58, .external_lex_state = 3}, + [2330] = {.lex_state = 0, .external_lex_state = 3}, + [2331] = {.lex_state = 4, .external_lex_state = 3}, [2332] = {.lex_state = 0, .external_lex_state = 3}, [2333] = {.lex_state = 0, .external_lex_state = 3}, [2334] = {.lex_state = 4, .external_lex_state = 3}, [2335] = {.lex_state = 4, .external_lex_state = 3}, [2336] = {.lex_state = 0, .external_lex_state = 3}, - [2337] = {.lex_state = 9, .external_lex_state = 3}, + [2337] = {.lex_state = 0, .external_lex_state = 3}, [2338] = {.lex_state = 0, .external_lex_state = 3}, [2339] = {.lex_state = 0, .external_lex_state = 3}, - [2340] = {.lex_state = 4, .external_lex_state = 3}, + [2340] = {.lex_state = 58, .external_lex_state = 3}, [2341] = {.lex_state = 58, .external_lex_state = 3}, - [2342] = {.lex_state = 58, .external_lex_state = 3}, - [2343] = {.lex_state = 58, .external_lex_state = 3}, - [2344] = {.lex_state = 4, .external_lex_state = 3}, - [2345] = {.lex_state = 0, .external_lex_state = 3}, - [2346] = {.lex_state = 0, .external_lex_state = 3}, + [2342] = {.lex_state = 4, .external_lex_state = 3}, + [2343] = {.lex_state = 0, .external_lex_state = 3}, + [2344] = {.lex_state = 58, .external_lex_state = 3}, + [2345] = {.lex_state = 4, .external_lex_state = 3}, + [2346] = {.lex_state = 58, .external_lex_state = 3}, [2347] = {.lex_state = 4, .external_lex_state = 3}, [2348] = {.lex_state = 4, .external_lex_state = 3}, [2349] = {.lex_state = 4, .external_lex_state = 3}, [2350] = {.lex_state = 4, .external_lex_state = 3}, - [2351] = {.lex_state = 4, .external_lex_state = 3}, - [2352] = {.lex_state = 0, .external_lex_state = 3}, + [2351] = {.lex_state = 0, .external_lex_state = 3}, + [2352] = {.lex_state = 4, .external_lex_state = 3}, [2353] = {.lex_state = 0, .external_lex_state = 3}, - [2354] = {.lex_state = 4, .external_lex_state = 3}, + [2354] = {.lex_state = 0, .external_lex_state = 3}, [2355] = {.lex_state = 4, .external_lex_state = 3}, [2356] = {.lex_state = 4, .external_lex_state = 3}, [2357] = {.lex_state = 4, .external_lex_state = 3}, - [2358] = {.lex_state = 4, .external_lex_state = 3}, + [2358] = {.lex_state = 0, .external_lex_state = 3}, [2359] = {.lex_state = 4, .external_lex_state = 3}, [2360] = {.lex_state = 4, .external_lex_state = 3}, - [2361] = {.lex_state = 4, .external_lex_state = 3}, - [2362] = {.lex_state = 4, .external_lex_state = 3}, - [2363] = {.lex_state = 0, .external_lex_state = 3}, + [2361] = {.lex_state = 0, .external_lex_state = 3}, + [2362] = {.lex_state = 58, .external_lex_state = 3}, + [2363] = {.lex_state = 4, .external_lex_state = 3}, [2364] = {.lex_state = 4, .external_lex_state = 3}, - [2365] = {.lex_state = 4, .external_lex_state = 3}, - [2366] = {.lex_state = 0, .external_lex_state = 3}, + [2365] = {.lex_state = 0, .external_lex_state = 3}, + [2366] = {.lex_state = 4, .external_lex_state = 3}, [2367] = {.lex_state = 0, .external_lex_state = 3}, [2368] = {.lex_state = 4, .external_lex_state = 3}, [2369] = {.lex_state = 4, .external_lex_state = 3}, - [2370] = {.lex_state = 9, .external_lex_state = 3}, - [2371] = {.lex_state = 0, .external_lex_state = 3}, + [2370] = {.lex_state = 4, .external_lex_state = 3}, + [2371] = {.lex_state = 4, .external_lex_state = 3}, [2372] = {.lex_state = 4, .external_lex_state = 3}, - [2373] = {.lex_state = 58, .external_lex_state = 3}, - [2374] = {.lex_state = 4, .external_lex_state = 3}, - [2375] = {.lex_state = 0, .external_lex_state = 3}, - [2376] = {.lex_state = 4, .external_lex_state = 3}, - [2377] = {.lex_state = 4, .external_lex_state = 3}, - [2378] = {.lex_state = 4, .external_lex_state = 3}, - [2379] = {.lex_state = 58, .external_lex_state = 3}, - [2380] = {.lex_state = 4, .external_lex_state = 3}, + [2373] = {.lex_state = 0, .external_lex_state = 3}, + [2374] = {.lex_state = 0, .external_lex_state = 3}, + [2375] = {.lex_state = 4, .external_lex_state = 3}, + [2376] = {.lex_state = 0, .external_lex_state = 3}, + [2377] = {.lex_state = 0, .external_lex_state = 3}, + [2378] = {.lex_state = 0, .external_lex_state = 3}, + [2379] = {.lex_state = 4, .external_lex_state = 3}, + [2380] = {.lex_state = 0, .external_lex_state = 3}, [2381] = {.lex_state = 4, .external_lex_state = 3}, [2382] = {.lex_state = 4, .external_lex_state = 3}, - [2383] = {.lex_state = 0, .external_lex_state = 3}, + [2383] = {.lex_state = 4, .external_lex_state = 3}, [2384] = {.lex_state = 4, .external_lex_state = 3}, [2385] = {.lex_state = 4, .external_lex_state = 3}, - [2386] = {.lex_state = 4, .external_lex_state = 3}, - [2387] = {.lex_state = 4, .external_lex_state = 3}, + [2386] = {.lex_state = 0, .external_lex_state = 3}, + [2387] = {.lex_state = 0, .external_lex_state = 3}, [2388] = {.lex_state = 0, .external_lex_state = 3}, - [2389] = {.lex_state = 0, .external_lex_state = 3}, - [2390] = {.lex_state = 0, .external_lex_state = 3}, - [2391] = {.lex_state = 0, .external_lex_state = 3}, + [2389] = {.lex_state = 9, .external_lex_state = 3}, + [2390] = {.lex_state = 4, .external_lex_state = 3}, + [2391] = {.lex_state = 4, .external_lex_state = 3}, [2392] = {.lex_state = 4, .external_lex_state = 3}, - [2393] = {.lex_state = 0, .external_lex_state = 3}, + [2393] = {.lex_state = 4, .external_lex_state = 3}, [2394] = {.lex_state = 4, .external_lex_state = 3}, - [2395] = {.lex_state = 0, .external_lex_state = 3}, - [2396] = {.lex_state = 0, .external_lex_state = 3}, - [2397] = {.lex_state = 4, .external_lex_state = 3}, + [2395] = {.lex_state = 4, .external_lex_state = 3}, + [2396] = {.lex_state = 4, .external_lex_state = 3}, + [2397] = {.lex_state = 0, .external_lex_state = 3}, [2398] = {.lex_state = 4, .external_lex_state = 3}, [2399] = {.lex_state = 4, .external_lex_state = 3}, [2400] = {.lex_state = 4, .external_lex_state = 3}, [2401] = {.lex_state = 4, .external_lex_state = 3}, - [2402] = {.lex_state = 9, .external_lex_state = 3}, + [2402] = {.lex_state = 4, .external_lex_state = 3}, [2403] = {.lex_state = 4, .external_lex_state = 3}, [2404] = {.lex_state = 4, .external_lex_state = 3}, [2405] = {.lex_state = 4, .external_lex_state = 3}, - [2406] = {.lex_state = 4, .external_lex_state = 3}, - [2407] = {.lex_state = 4, .external_lex_state = 3}, + [2406] = {.lex_state = 9, .external_lex_state = 3}, + [2407] = {.lex_state = 0, .external_lex_state = 3}, [2408] = {.lex_state = 4, .external_lex_state = 3}, - [2409] = {.lex_state = 9, .external_lex_state = 3}, + [2409] = {.lex_state = 4, .external_lex_state = 3}, [2410] = {.lex_state = 4, .external_lex_state = 3}, [2411] = {.lex_state = 4, .external_lex_state = 3}, [2412] = {.lex_state = 4, .external_lex_state = 3}, [2413] = {.lex_state = 4, .external_lex_state = 3}, - [2414] = {.lex_state = 0, .external_lex_state = 3}, + [2414] = {.lex_state = 4, .external_lex_state = 3}, [2415] = {.lex_state = 0, .external_lex_state = 3}, - [2416] = {.lex_state = 0, .external_lex_state = 3}, + [2416] = {.lex_state = 4, .external_lex_state = 3}, [2417] = {.lex_state = 0, .external_lex_state = 3}, - [2418] = {.lex_state = 4, .external_lex_state = 3}, + [2418] = {.lex_state = 0, .external_lex_state = 3}, [2419] = {.lex_state = 4, .external_lex_state = 3}, - [2420] = {.lex_state = 4, .external_lex_state = 3}, - [2421] = {.lex_state = 4, .external_lex_state = 3}, + [2420] = {.lex_state = 0, .external_lex_state = 3}, + [2421] = {.lex_state = 0, .external_lex_state = 3}, [2422] = {.lex_state = 4, .external_lex_state = 3}, - [2423] = {.lex_state = 4, .external_lex_state = 3}, - [2424] = {.lex_state = 4, .external_lex_state = 3}, + [2423] = {.lex_state = 0, .external_lex_state = 3}, + [2424] = {.lex_state = 58, .external_lex_state = 3}, [2425] = {.lex_state = 58, .external_lex_state = 3}, [2426] = {.lex_state = 0, .external_lex_state = 3}, [2427] = {.lex_state = 4, .external_lex_state = 3}, - [2428] = {.lex_state = 4, .external_lex_state = 3}, + [2428] = {.lex_state = 0, .external_lex_state = 3}, [2429] = {.lex_state = 4, .external_lex_state = 3}, [2430] = {.lex_state = 4, .external_lex_state = 3}, - [2431] = {.lex_state = 0, .external_lex_state = 3}, - [2432] = {.lex_state = 4, .external_lex_state = 3}, + [2431] = {.lex_state = 4, .external_lex_state = 3}, + [2432] = {.lex_state = 0, .external_lex_state = 3}, [2433] = {.lex_state = 4, .external_lex_state = 3}, [2434] = {.lex_state = 0, .external_lex_state = 3}, [2435] = {.lex_state = 0, .external_lex_state = 3}, - [2436] = {.lex_state = 0, .external_lex_state = 3}, + [2436] = {.lex_state = 4, .external_lex_state = 3}, [2437] = {.lex_state = 0, .external_lex_state = 3}, - [2438] = {.lex_state = 0, .external_lex_state = 3}, + [2438] = {.lex_state = 4, .external_lex_state = 3}, [2439] = {.lex_state = 0, .external_lex_state = 3}, [2440] = {.lex_state = 0, .external_lex_state = 3}, [2441] = {.lex_state = 0, .external_lex_state = 3}, [2442] = {.lex_state = 4, .external_lex_state = 3}, - [2443] = {.lex_state = 4, .external_lex_state = 3}, + [2443] = {.lex_state = 0, .external_lex_state = 3}, [2444] = {.lex_state = 0, .external_lex_state = 3}, [2445] = {.lex_state = 58, .external_lex_state = 3}, - [2446] = {.lex_state = 0, .external_lex_state = 3}, - [2447] = {.lex_state = 0, .external_lex_state = 3}, + [2446] = {.lex_state = 4, .external_lex_state = 3}, + [2447] = {.lex_state = 4, .external_lex_state = 3}, [2448] = {.lex_state = 4, .external_lex_state = 3}, [2449] = {.lex_state = 4, .external_lex_state = 3}, [2450] = {.lex_state = 0, .external_lex_state = 3}, - [2451] = {.lex_state = 4, .external_lex_state = 3}, + [2451] = {.lex_state = 0, .external_lex_state = 3}, [2452] = {.lex_state = 0, .external_lex_state = 3}, - [2453] = {.lex_state = 0, .external_lex_state = 3}, + [2453] = {.lex_state = 4, .external_lex_state = 3}, [2454] = {.lex_state = 0, .external_lex_state = 3}, - [2455] = {.lex_state = 0, .external_lex_state = 3}, + [2455] = {.lex_state = 4, .external_lex_state = 3}, [2456] = {.lex_state = 0, .external_lex_state = 3}, [2457] = {.lex_state = 4, .external_lex_state = 3}, [2458] = {.lex_state = 4, .external_lex_state = 3}, - [2459] = {.lex_state = 0, .external_lex_state = 3}, - [2460] = {.lex_state = 0, .external_lex_state = 3}, + [2459] = {.lex_state = 4, .external_lex_state = 3}, + [2460] = {.lex_state = 4, .external_lex_state = 3}, [2461] = {.lex_state = 0, .external_lex_state = 3}, [2462] = {.lex_state = 0, .external_lex_state = 3}, [2463] = {.lex_state = 4, .external_lex_state = 3}, [2464] = {.lex_state = 0, .external_lex_state = 3}, [2465] = {.lex_state = 4, .external_lex_state = 3}, - [2466] = {.lex_state = 0, .external_lex_state = 3}, - [2467] = {.lex_state = 4, .external_lex_state = 3}, + [2466] = {.lex_state = 4, .external_lex_state = 3}, + [2467] = {.lex_state = 0, .external_lex_state = 3}, [2468] = {.lex_state = 4, .external_lex_state = 3}, [2469] = {.lex_state = 0, .external_lex_state = 3}, - [2470] = {.lex_state = 0, .external_lex_state = 3}, + [2470] = {.lex_state = 4, .external_lex_state = 3}, [2471] = {.lex_state = 0, .external_lex_state = 3}, [2472] = {.lex_state = 0, .external_lex_state = 3}, - [2473] = {.lex_state = 0, .external_lex_state = 3}, + [2473] = {.lex_state = 4, .external_lex_state = 3}, [2474] = {.lex_state = 9, .external_lex_state = 3}, [2475] = {.lex_state = 4, .external_lex_state = 3}, - [2476] = {.lex_state = 4, .external_lex_state = 3}, + [2476] = {.lex_state = 0, .external_lex_state = 3}, [2477] = {.lex_state = 0, .external_lex_state = 3}, [2478] = {.lex_state = 0, .external_lex_state = 3}, [2479] = {.lex_state = 4, .external_lex_state = 3}, @@ -15847,25 +15847,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2481] = {.lex_state = 0, .external_lex_state = 3}, [2482] = {.lex_state = 0, .external_lex_state = 3}, [2483] = {.lex_state = 0, .external_lex_state = 3}, - [2484] = {.lex_state = 0, .external_lex_state = 3}, - [2485] = {.lex_state = 0, .external_lex_state = 3}, - [2486] = {.lex_state = 0, .external_lex_state = 3}, - [2487] = {.lex_state = 9, .external_lex_state = 3}, + [2484] = {.lex_state = 4, .external_lex_state = 3}, + [2485] = {.lex_state = 4, .external_lex_state = 3}, + [2486] = {.lex_state = 4, .external_lex_state = 3}, + [2487] = {.lex_state = 4, .external_lex_state = 3}, [2488] = {.lex_state = 9, .external_lex_state = 3}, - [2489] = {.lex_state = 9, .external_lex_state = 3}, - [2490] = {.lex_state = 9, .external_lex_state = 3}, - [2491] = {.lex_state = 4, .external_lex_state = 3}, + [2489] = {.lex_state = 0, .external_lex_state = 3}, + [2490] = {.lex_state = 0, .external_lex_state = 3}, + [2491] = {.lex_state = 0, .external_lex_state = 3}, [2492] = {.lex_state = 0, .external_lex_state = 3}, - [2493] = {.lex_state = 4, .external_lex_state = 3}, + [2493] = {.lex_state = 0, .external_lex_state = 3}, [2494] = {.lex_state = 0, .external_lex_state = 3}, [2495] = {.lex_state = 0, .external_lex_state = 3}, [2496] = {.lex_state = 0, .external_lex_state = 3}, [2497] = {.lex_state = 4, .external_lex_state = 3}, - [2498] = {.lex_state = 4, .external_lex_state = 3}, + [2498] = {.lex_state = 0, .external_lex_state = 3}, [2499] = {.lex_state = 0, .external_lex_state = 3}, [2500] = {.lex_state = 0, .external_lex_state = 3}, [2501] = {.lex_state = 0, .external_lex_state = 3}, - [2502] = {.lex_state = 4, .external_lex_state = 3}, + [2502] = {.lex_state = 9, .external_lex_state = 3}, [2503] = {.lex_state = 4, .external_lex_state = 3}, [2504] = {.lex_state = 0, .external_lex_state = 3}, [2505] = {.lex_state = 4, .external_lex_state = 3}, @@ -15876,7 +15876,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2510] = {.lex_state = 0, .external_lex_state = 3}, [2511] = {.lex_state = 0, .external_lex_state = 3}, [2512] = {.lex_state = 0, .external_lex_state = 3}, - [2513] = {.lex_state = 4, .external_lex_state = 3}, + [2513] = {.lex_state = 0, .external_lex_state = 3}, [2514] = {.lex_state = 0, .external_lex_state = 3}, [2515] = {.lex_state = 0, .external_lex_state = 3}, [2516] = {.lex_state = 4, .external_lex_state = 3}, @@ -15890,14 +15890,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2524] = {.lex_state = 0, .external_lex_state = 3}, [2525] = {.lex_state = 9, .external_lex_state = 3}, [2526] = {.lex_state = 0, .external_lex_state = 3}, - [2527] = {.lex_state = 0, .external_lex_state = 3}, + [2527] = {.lex_state = 4, .external_lex_state = 3}, [2528] = {.lex_state = 0, .external_lex_state = 3}, [2529] = {.lex_state = 0, .external_lex_state = 3}, [2530] = {.lex_state = 9, .external_lex_state = 3}, [2531] = {.lex_state = 0, .external_lex_state = 3}, [2532] = {.lex_state = 0, .external_lex_state = 3}, - [2533] = {.lex_state = 0, .external_lex_state = 3}, - [2534] = {.lex_state = 0, .external_lex_state = 3}, + [2533] = {.lex_state = 4, .external_lex_state = 3}, + [2534] = {.lex_state = 9, .external_lex_state = 3}, [2535] = {.lex_state = 0, .external_lex_state = 3}, [2536] = {.lex_state = 0, .external_lex_state = 3}, [2537] = {.lex_state = 0, .external_lex_state = 3}, @@ -15905,11 +15905,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2539] = {.lex_state = 9, .external_lex_state = 3}, [2540] = {.lex_state = 0, .external_lex_state = 3}, [2541] = {.lex_state = 0, .external_lex_state = 3}, - [2542] = {.lex_state = 0, .external_lex_state = 3}, + [2542] = {.lex_state = 9, .external_lex_state = 3}, [2543] = {.lex_state = 0, .external_lex_state = 3}, [2544] = {.lex_state = 9, .external_lex_state = 3}, - [2545] = {.lex_state = 4, .external_lex_state = 3}, - [2546] = {.lex_state = 4, .external_lex_state = 3}, + [2545] = {.lex_state = 0, .external_lex_state = 3}, + [2546] = {.lex_state = 0, .external_lex_state = 3}, [2547] = {.lex_state = 9, .external_lex_state = 3}, [2548] = {.lex_state = 0, .external_lex_state = 3}, [2549] = {.lex_state = 0, .external_lex_state = 3}, @@ -15917,21 +15917,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2551] = {.lex_state = 0, .external_lex_state = 3}, [2552] = {.lex_state = 0, .external_lex_state = 3}, [2553] = {.lex_state = 9, .external_lex_state = 3}, - [2554] = {.lex_state = 0, .external_lex_state = 3}, + [2554] = {.lex_state = 4, .external_lex_state = 3}, [2555] = {.lex_state = 9, .external_lex_state = 3}, [2556] = {.lex_state = 0, .external_lex_state = 3}, [2557] = {.lex_state = 0, .external_lex_state = 3}, [2558] = {.lex_state = 0, .external_lex_state = 3}, [2559] = {.lex_state = 0, .external_lex_state = 3}, [2560] = {.lex_state = 0, .external_lex_state = 3}, - [2561] = {.lex_state = 4, .external_lex_state = 3}, + [2561] = {.lex_state = 0, .external_lex_state = 3}, [2562] = {.lex_state = 4, .external_lex_state = 3}, [2563] = {.lex_state = 0, .external_lex_state = 3}, [2564] = {.lex_state = 4, .external_lex_state = 3}, [2565] = {.lex_state = 4, .external_lex_state = 3}, - [2566] = {.lex_state = 0, .external_lex_state = 3}, + [2566] = {.lex_state = 9, .external_lex_state = 3}, [2567] = {.lex_state = 4, .external_lex_state = 3}, - [2568] = {.lex_state = 0, .external_lex_state = 3}, + [2568] = {.lex_state = 9, .external_lex_state = 3}, [2569] = {.lex_state = 0, .external_lex_state = 3}, [2570] = {.lex_state = 0, .external_lex_state = 3}, [2571] = {.lex_state = 4, .external_lex_state = 3}, @@ -15941,7 +15941,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2575] = {.lex_state = 4, .external_lex_state = 3}, [2576] = {.lex_state = 4, .external_lex_state = 3}, [2577] = {.lex_state = 0, .external_lex_state = 3}, - [2578] = {.lex_state = 9, .external_lex_state = 3}, + [2578] = {.lex_state = 0, .external_lex_state = 3}, [2579] = {.lex_state = 4, .external_lex_state = 3}, [2580] = {.lex_state = 0, .external_lex_state = 3}, [2581] = {.lex_state = 0, .external_lex_state = 3}, @@ -16173,79 +16173,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1] = { [sym_source_file] = STATE(2499), - [sym__statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_macro_definition] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_foreign_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_union_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_extern_crate_declaration] = STATE(5), - [sym_const_item] = STATE(5), - [sym_static_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), [sym_function_modifiers] = STATE(2497), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_extern_modifier] = STATE(1519), - [sym_visibility_modifier] = STATE(1350), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1520), + [sym_visibility_modifier] = STATE(1365), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(137), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1327), + [sym_macro_invocation] = STATE(75), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -16322,79 +16322,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), + [sym__statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_macro_definition] = STATE(10), + [sym_attribute_item] = STATE(10), + [sym_inner_attribute_item] = STATE(10), + [sym_mod_item] = STATE(10), + [sym_foreign_mod_item] = STATE(10), + [sym_struct_item] = STATE(10), + [sym_union_item] = STATE(10), + [sym_enum_item] = STATE(10), + [sym_extern_crate_declaration] = STATE(10), + [sym_const_item] = STATE(10), + [sym_static_item] = STATE(10), + [sym_type_item] = STATE(10), + [sym_function_item] = STATE(10), + [sym_function_signature_item] = STATE(10), [sym_function_modifiers] = STATE(2497), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1519), - [sym_visibility_modifier] = STATE(1350), + [sym_impl_item] = STATE(10), + [sym_trait_item] = STATE(10), + [sym_associated_type] = STATE(10), + [sym_let_declaration] = STATE(10), + [sym_use_declaration] = STATE(10), + [sym_extern_modifier] = STATE(1520), + [sym_visibility_modifier] = STATE(1365), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1258), - [sym_macro_invocation] = STATE(137), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1274), + [sym_macro_invocation] = STATE(75), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16471,79 +16471,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [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__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(2497), - [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(1519), - [sym_visibility_modifier] = STATE(1350), + [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(1520), + [sym_visibility_modifier] = STATE(1365), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1267), - [sym_macro_invocation] = STATE(137), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1286), + [sym_macro_invocation] = STATE(75), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16620,79 +16620,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [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__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), [sym_function_modifiers] = STATE(2497), - [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(1519), - [sym_visibility_modifier] = STATE(1350), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1520), + [sym_visibility_modifier] = STATE(1365), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1289), - [sym_macro_invocation] = STATE(137), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(75), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16769,234 +16769,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [5] = { - [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__statement] = STATE(5), + [sym_empty_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_macro_definition] = STATE(5), + [sym_attribute_item] = STATE(5), + [sym_inner_attribute_item] = STATE(5), + [sym_mod_item] = STATE(5), + [sym_foreign_mod_item] = STATE(5), + [sym_struct_item] = STATE(5), + [sym_union_item] = STATE(5), + [sym_enum_item] = STATE(5), + [sym_extern_crate_declaration] = STATE(5), + [sym_const_item] = STATE(5), + [sym_static_item] = STATE(5), + [sym_type_item] = STATE(5), + [sym_function_item] = STATE(5), + [sym_function_signature_item] = STATE(5), [sym_function_modifiers] = STATE(2497), - [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(1519), - [sym_visibility_modifier] = STATE(1350), + [sym_impl_item] = STATE(5), + [sym_trait_item] = STATE(5), + [sym_associated_type] = STATE(5), + [sym_let_declaration] = STATE(5), + [sym_use_declaration] = STATE(5), + [sym_extern_modifier] = STATE(1520), + [sym_visibility_modifier] = STATE(1365), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(137), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1327), + [sym_macro_invocation] = STATE(75), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [ts_builtin_sym_end] = ACTIONS(111), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_identifier] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(116), + [anon_sym_macro_rules_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(128), + [anon_sym_STAR] = ACTIONS(131), + [anon_sym_u8] = ACTIONS(134), + [anon_sym_i8] = ACTIONS(134), + [anon_sym_u16] = ACTIONS(134), + [anon_sym_i16] = ACTIONS(134), + [anon_sym_u32] = ACTIONS(134), + [anon_sym_i32] = ACTIONS(134), + [anon_sym_u64] = ACTIONS(134), + [anon_sym_i64] = ACTIONS(134), + [anon_sym_u128] = ACTIONS(134), + [anon_sym_i128] = ACTIONS(134), + [anon_sym_isize] = ACTIONS(134), + [anon_sym_usize] = ACTIONS(134), + [anon_sym_f32] = ACTIONS(134), + [anon_sym_f64] = ACTIONS(134), + [anon_sym_bool] = ACTIONS(134), + [anon_sym_str] = ACTIONS(134), + [anon_sym_char] = ACTIONS(134), + [anon_sym_SQUOTE] = ACTIONS(137), + [anon_sym_async] = ACTIONS(140), + [anon_sym_break] = ACTIONS(143), + [anon_sym_const] = ACTIONS(146), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_default] = ACTIONS(152), + [anon_sym_enum] = ACTIONS(155), + [anon_sym_fn] = ACTIONS(158), + [anon_sym_for] = ACTIONS(161), + [anon_sym_if] = ACTIONS(164), + [anon_sym_impl] = ACTIONS(167), + [anon_sym_let] = ACTIONS(170), + [anon_sym_loop] = ACTIONS(173), + [anon_sym_match] = ACTIONS(176), + [anon_sym_mod] = ACTIONS(179), + [anon_sym_pub] = ACTIONS(182), + [anon_sym_return] = ACTIONS(185), + [anon_sym_static] = ACTIONS(188), + [anon_sym_struct] = ACTIONS(191), + [anon_sym_trait] = ACTIONS(194), + [anon_sym_type] = ACTIONS(197), + [anon_sym_union] = ACTIONS(200), + [anon_sym_unsafe] = ACTIONS(203), + [anon_sym_use] = ACTIONS(206), + [anon_sym_while] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(212), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_COLON_COLON] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(224), + [anon_sym_DOT_DOT] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_move] = ACTIONS(236), + [sym_integer_literal] = ACTIONS(239), + [aux_sym_string_literal_token1] = ACTIONS(242), + [sym_char_literal] = ACTIONS(239), + [anon_sym_true] = ACTIONS(245), + [anon_sym_false] = ACTIONS(245), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(248), + [sym_super] = ACTIONS(251), + [sym_crate] = ACTIONS(254), + [sym_metavariable] = ACTIONS(257), + [sym_raw_string_literal] = ACTIONS(239), + [sym_float_literal] = ACTIONS(239), [sym_block_comment] = ACTIONS(3), }, [6] = { - [sym__statement] = STATE(3), - [sym_empty_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_macro_definition] = STATE(3), - [sym_attribute_item] = STATE(3), - [sym_inner_attribute_item] = STATE(3), - [sym_mod_item] = STATE(3), - [sym_foreign_mod_item] = STATE(3), - [sym_struct_item] = STATE(3), - [sym_union_item] = STATE(3), - [sym_enum_item] = STATE(3), - [sym_extern_crate_declaration] = STATE(3), - [sym_const_item] = STATE(3), - [sym_static_item] = STATE(3), - [sym_type_item] = STATE(3), - [sym_function_item] = STATE(3), - [sym_function_signature_item] = STATE(3), + [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(2497), - [sym_impl_item] = STATE(3), - [sym_trait_item] = STATE(3), - [sym_associated_type] = STATE(3), - [sym_let_declaration] = STATE(3), - [sym_use_declaration] = STATE(3), - [sym_extern_modifier] = STATE(1519), - [sym_visibility_modifier] = STATE(1350), + [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(1520), + [sym_visibility_modifier] = STATE(1365), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1279), - [sym_macro_invocation] = STATE(137), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(75), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [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_RBRACE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17067,85 +17067,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [7] = { - [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__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), [sym_function_modifiers] = STATE(2497), - [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(1519), - [sym_visibility_modifier] = STATE(1350), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1520), + [sym_visibility_modifier] = STATE(1365), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(137), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(75), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [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_RBRACE] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17239,62 +17239,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_associated_type] = STATE(7), [sym_let_declaration] = STATE(7), [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1519), - [sym_visibility_modifier] = STATE(1350), + [sym_extern_modifier] = STATE(1520), + [sym_visibility_modifier] = STATE(1365), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1239), - [sym_macro_invocation] = STATE(137), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(75), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [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_RBRACE] = ACTIONS(264), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17365,85 +17365,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [9] = { - [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__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), [sym_function_modifiers] = STATE(2497), - [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(1519), - [sym_visibility_modifier] = STATE(1350), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1520), + [sym_visibility_modifier] = STATE(1365), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1231), - [sym_macro_invocation] = STATE(137), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(75), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [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_RBRACE] = ACTIONS(266), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17514,85 +17514,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_macro_definition] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_foreign_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_union_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_extern_crate_declaration] = STATE(4), - [sym_const_item] = STATE(4), - [sym_static_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), [sym_function_modifiers] = STATE(2497), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_extern_modifier] = STATE(1519), - [sym_visibility_modifier] = STATE(1350), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1520), + [sym_visibility_modifier] = STATE(1365), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1285), - [sym_macro_invocation] = STATE(137), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1275), + [sym_macro_invocation] = STATE(75), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [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_RBRACE] = ACTIONS(268), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17663,85 +17663,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), [sym_function_modifiers] = STATE(2497), - [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(1519), - [sym_visibility_modifier] = STATE(1350), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1520), + [sym_visibility_modifier] = STATE(1365), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(137), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1241), + [sym_macro_invocation] = STATE(75), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [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_RBRACE] = ACTIONS(270), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17812,234 +17812,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [12] = { - [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(2497), - [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(1519), - [sym_visibility_modifier] = STATE(1350), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(137), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(125), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(130), - [anon_sym_macro_rules_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(142), - [anon_sym_STAR] = ACTIONS(145), - [anon_sym_u8] = ACTIONS(148), - [anon_sym_i8] = ACTIONS(148), - [anon_sym_u16] = ACTIONS(148), - [anon_sym_i16] = ACTIONS(148), - [anon_sym_u32] = ACTIONS(148), - [anon_sym_i32] = ACTIONS(148), - [anon_sym_u64] = ACTIONS(148), - [anon_sym_i64] = ACTIONS(148), - [anon_sym_u128] = ACTIONS(148), - [anon_sym_i128] = ACTIONS(148), - [anon_sym_isize] = ACTIONS(148), - [anon_sym_usize] = ACTIONS(148), - [anon_sym_f32] = ACTIONS(148), - [anon_sym_f64] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(148), - [anon_sym_str] = ACTIONS(148), - [anon_sym_char] = ACTIONS(148), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_async] = ACTIONS(154), - [anon_sym_break] = ACTIONS(157), - [anon_sym_const] = ACTIONS(160), - [anon_sym_continue] = ACTIONS(163), - [anon_sym_default] = ACTIONS(166), - [anon_sym_enum] = ACTIONS(169), - [anon_sym_fn] = ACTIONS(172), - [anon_sym_for] = ACTIONS(175), - [anon_sym_if] = ACTIONS(178), - [anon_sym_impl] = ACTIONS(181), - [anon_sym_let] = ACTIONS(184), - [anon_sym_loop] = ACTIONS(187), - [anon_sym_match] = ACTIONS(190), - [anon_sym_mod] = ACTIONS(193), - [anon_sym_pub] = ACTIONS(196), - [anon_sym_return] = ACTIONS(199), - [anon_sym_static] = ACTIONS(202), - [anon_sym_struct] = ACTIONS(205), - [anon_sym_trait] = ACTIONS(208), - [anon_sym_type] = ACTIONS(211), - [anon_sym_union] = ACTIONS(214), - [anon_sym_unsafe] = ACTIONS(217), - [anon_sym_use] = ACTIONS(220), - [anon_sym_while] = ACTIONS(223), - [anon_sym_POUND] = ACTIONS(226), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_extern] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(232), - [anon_sym_COLON_COLON] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(238), - [anon_sym_DOT_DOT] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(244), - [anon_sym_yield] = ACTIONS(247), - [anon_sym_move] = ACTIONS(250), - [sym_integer_literal] = ACTIONS(253), - [aux_sym_string_literal_token1] = ACTIONS(256), - [sym_char_literal] = ACTIONS(253), - [anon_sym_true] = ACTIONS(259), - [anon_sym_false] = ACTIONS(259), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(262), - [sym_super] = ACTIONS(265), - [sym_crate] = ACTIONS(268), - [sym_metavariable] = ACTIONS(271), - [sym_raw_string_literal] = ACTIONS(253), - [sym_float_literal] = ACTIONS(253), - [sym_block_comment] = ACTIONS(3), - }, - [13] = { - [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__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), [sym_function_modifiers] = STATE(2497), - [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(1519), - [sym_visibility_modifier] = STATE(1350), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1520), + [sym_visibility_modifier] = STATE(1365), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1256), - [sym_macro_invocation] = STATE(137), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1294), + [sym_macro_invocation] = STATE(75), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [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(274), + [anon_sym_RBRACE] = ACTIONS(272), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18109,86 +17960,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [13] = { + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(2497), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1520), + [sym_visibility_modifier] = STATE(1365), + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1327), + [sym_macro_invocation] = STATE(188), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2488), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(116), + [anon_sym_macro_rules_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(128), + [anon_sym_STAR] = ACTIONS(131), + [anon_sym_u8] = ACTIONS(134), + [anon_sym_i8] = ACTIONS(134), + [anon_sym_u16] = ACTIONS(134), + [anon_sym_i16] = ACTIONS(134), + [anon_sym_u32] = ACTIONS(134), + [anon_sym_i32] = ACTIONS(134), + [anon_sym_u64] = ACTIONS(134), + [anon_sym_i64] = ACTIONS(134), + [anon_sym_u128] = ACTIONS(134), + [anon_sym_i128] = ACTIONS(134), + [anon_sym_isize] = ACTIONS(134), + [anon_sym_usize] = ACTIONS(134), + [anon_sym_f32] = ACTIONS(134), + [anon_sym_f64] = ACTIONS(134), + [anon_sym_bool] = ACTIONS(134), + [anon_sym_str] = ACTIONS(134), + [anon_sym_char] = ACTIONS(134), + [anon_sym_SQUOTE] = ACTIONS(137), + [anon_sym_async] = ACTIONS(140), + [anon_sym_break] = ACTIONS(143), + [anon_sym_const] = ACTIONS(146), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_default] = ACTIONS(152), + [anon_sym_enum] = ACTIONS(155), + [anon_sym_fn] = ACTIONS(158), + [anon_sym_for] = ACTIONS(161), + [anon_sym_if] = ACTIONS(164), + [anon_sym_impl] = ACTIONS(167), + [anon_sym_let] = ACTIONS(170), + [anon_sym_loop] = ACTIONS(173), + [anon_sym_match] = ACTIONS(176), + [anon_sym_mod] = ACTIONS(179), + [anon_sym_pub] = ACTIONS(182), + [anon_sym_return] = ACTIONS(185), + [anon_sym_static] = ACTIONS(188), + [anon_sym_struct] = ACTIONS(191), + [anon_sym_trait] = ACTIONS(194), + [anon_sym_type] = ACTIONS(197), + [anon_sym_union] = ACTIONS(200), + [anon_sym_unsafe] = ACTIONS(203), + [anon_sym_use] = ACTIONS(206), + [anon_sym_while] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(212), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_COLON_COLON] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(224), + [anon_sym_DOT_DOT] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_move] = ACTIONS(236), + [sym_integer_literal] = ACTIONS(239), + [aux_sym_string_literal_token1] = ACTIONS(242), + [sym_char_literal] = ACTIONS(239), + [anon_sym_true] = ACTIONS(245), + [anon_sym_false] = ACTIONS(245), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(248), + [sym_super] = ACTIONS(251), + [sym_crate] = ACTIONS(254), + [sym_metavariable] = ACTIONS(257), + [sym_raw_string_literal] = ACTIONS(239), + [sym_float_literal] = ACTIONS(239), + [sym_block_comment] = ACTIONS(3), + }, [14] = { - [sym__statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_macro_definition] = STATE(15), - [sym_attribute_item] = STATE(15), - [sym_inner_attribute_item] = STATE(15), - [sym_mod_item] = STATE(15), - [sym_foreign_mod_item] = STATE(15), - [sym_struct_item] = STATE(15), - [sym_union_item] = STATE(15), - [sym_enum_item] = STATE(15), - [sym_extern_crate_declaration] = STATE(15), - [sym_const_item] = STATE(15), - [sym_static_item] = STATE(15), - [sym_type_item] = STATE(15), - [sym_function_item] = STATE(15), - [sym_function_signature_item] = STATE(15), + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), [sym_function_modifiers] = STATE(2497), - [sym_impl_item] = STATE(15), - [sym_trait_item] = STATE(15), - [sym_associated_type] = STATE(15), - [sym_let_declaration] = STATE(15), - [sym_use_declaration] = STATE(15), - [sym_extern_modifier] = STATE(1519), - [sym_visibility_modifier] = STATE(1350), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1520), + [sym_visibility_modifier] = STATE(1365), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1253), - [sym_macro_invocation] = STATE(137), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(75), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [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(276), + [anon_sym_RBRACE] = ACTIONS(274), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18259,85 +18259,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [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__statement] = STATE(5), + [sym_empty_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_macro_definition] = STATE(5), + [sym_attribute_item] = STATE(5), + [sym_inner_attribute_item] = STATE(5), + [sym_mod_item] = STATE(5), + [sym_foreign_mod_item] = STATE(5), + [sym_struct_item] = STATE(5), + [sym_union_item] = STATE(5), + [sym_enum_item] = STATE(5), + [sym_extern_crate_declaration] = STATE(5), + [sym_const_item] = STATE(5), + [sym_static_item] = STATE(5), + [sym_type_item] = STATE(5), + [sym_function_item] = STATE(5), + [sym_function_signature_item] = STATE(5), [sym_function_modifiers] = STATE(2497), - [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(1519), - [sym_visibility_modifier] = STATE(1350), + [sym_impl_item] = STATE(5), + [sym_trait_item] = STATE(5), + [sym_associated_type] = STATE(5), + [sym_let_declaration] = STATE(5), + [sym_use_declaration] = STATE(5), + [sym_extern_modifier] = STATE(1520), + [sym_visibility_modifier] = STATE(1365), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(137), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1327), + [sym_macro_invocation] = STATE(75), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [ts_builtin_sym_end] = ACTIONS(276), [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(278), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18408,201 +18408,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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__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(2497), - [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(1519), - [sym_visibility_modifier] = STATE(1350), + [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(1520), + [sym_visibility_modifier] = STATE(1365), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(183), - [sym_scoped_identifier] = STATE(1187), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(77), - [sym_if_let_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_while_let_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(75), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(79), + [sym_if_let_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_while_let_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(130), - [anon_sym_macro_rules_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(142), - [anon_sym_STAR] = ACTIONS(145), - [anon_sym_u8] = ACTIONS(148), - [anon_sym_i8] = ACTIONS(148), - [anon_sym_u16] = ACTIONS(148), - [anon_sym_i16] = ACTIONS(148), - [anon_sym_u32] = ACTIONS(148), - [anon_sym_i32] = ACTIONS(148), - [anon_sym_u64] = ACTIONS(148), - [anon_sym_i64] = ACTIONS(148), - [anon_sym_u128] = ACTIONS(148), - [anon_sym_i128] = ACTIONS(148), - [anon_sym_isize] = ACTIONS(148), - [anon_sym_usize] = ACTIONS(148), - [anon_sym_f32] = ACTIONS(148), - [anon_sym_f64] = ACTIONS(148), - [anon_sym_bool] = ACTIONS(148), - [anon_sym_str] = ACTIONS(148), - [anon_sym_char] = ACTIONS(148), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_async] = ACTIONS(154), - [anon_sym_break] = ACTIONS(157), - [anon_sym_const] = ACTIONS(160), - [anon_sym_continue] = ACTIONS(163), - [anon_sym_default] = ACTIONS(166), - [anon_sym_enum] = ACTIONS(169), - [anon_sym_fn] = ACTIONS(172), - [anon_sym_for] = ACTIONS(175), - [anon_sym_if] = ACTIONS(178), - [anon_sym_impl] = ACTIONS(181), - [anon_sym_let] = ACTIONS(184), - [anon_sym_loop] = ACTIONS(187), - [anon_sym_match] = ACTIONS(190), - [anon_sym_mod] = ACTIONS(193), - [anon_sym_pub] = ACTIONS(196), - [anon_sym_return] = ACTIONS(199), - [anon_sym_static] = ACTIONS(202), - [anon_sym_struct] = ACTIONS(205), - [anon_sym_trait] = ACTIONS(208), - [anon_sym_type] = ACTIONS(211), - [anon_sym_union] = ACTIONS(214), - [anon_sym_unsafe] = ACTIONS(217), - [anon_sym_use] = ACTIONS(220), - [anon_sym_while] = ACTIONS(223), - [anon_sym_POUND] = ACTIONS(226), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_extern] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(232), - [anon_sym_COLON_COLON] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(238), - [anon_sym_DOT_DOT] = ACTIONS(241), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(244), - [anon_sym_yield] = ACTIONS(247), - [anon_sym_move] = ACTIONS(250), - [sym_integer_literal] = ACTIONS(253), - [aux_sym_string_literal_token1] = ACTIONS(256), - [sym_char_literal] = ACTIONS(253), - [anon_sym_true] = ACTIONS(259), - [anon_sym_false] = ACTIONS(259), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(262), - [sym_super] = ACTIONS(265), - [sym_crate] = ACTIONS(268), - [sym_metavariable] = ACTIONS(271), - [sym_raw_string_literal] = ACTIONS(253), - [sym_float_literal] = ACTIONS(253), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [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(278), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [17] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1154), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(282), @@ -18700,51 +18700,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [18] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1153), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), [anon_sym_LPAREN] = ACTIONS(310), @@ -18774,7 +18774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(314), + [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), @@ -18841,63 +18841,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [19] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1124), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(316), + [anon_sym_SEMI] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_RPAREN] = ACTIONS(314), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(316), - [anon_sym_EQ_GT] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(316), - [anon_sym_RBRACK] = ACTIONS(316), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_EQ_GT] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_RBRACK] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(314), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -18916,7 +18916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(318), + [anon_sym_as] = ACTIONS(316), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -18931,41 +18931,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(316), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(316), - [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(316), - [anon_sym_BANG_EQ] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT] = ACTIONS(318), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(314), + [anon_sym_DASH_EQ] = ACTIONS(314), + [anon_sym_STAR_EQ] = ACTIONS(314), + [anon_sym_SLASH_EQ] = ACTIONS(314), + [anon_sym_PERCENT_EQ] = ACTIONS(314), + [anon_sym_AMP_EQ] = ACTIONS(314), + [anon_sym_PIPE_EQ] = ACTIONS(314), + [anon_sym_CARET_EQ] = ACTIONS(314), + [anon_sym_LT_LT_EQ] = ACTIONS(314), + [anon_sym_GT_GT_EQ] = ACTIONS(314), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(316), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18982,63 +18982,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [20] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1161), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(314), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(320), + [anon_sym_RPAREN] = ACTIONS(314), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(320), - [anon_sym_EQ_GT] = ACTIONS(320), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(322), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_EQ_GT] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_RBRACK] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(314), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19057,7 +19057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(322), + [anon_sym_as] = ACTIONS(316), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19072,41 +19072,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(316), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(320), - [anon_sym_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT_EQ] = ACTIONS(320), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(322), - [anon_sym_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(320), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(322), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(314), + [anon_sym_DASH_EQ] = ACTIONS(314), + [anon_sym_STAR_EQ] = ACTIONS(314), + [anon_sym_SLASH_EQ] = ACTIONS(314), + [anon_sym_PERCENT_EQ] = ACTIONS(314), + [anon_sym_AMP_EQ] = ACTIONS(314), + [anon_sym_PIPE_EQ] = ACTIONS(314), + [anon_sym_CARET_EQ] = ACTIONS(314), + [anon_sym_LT_LT_EQ] = ACTIONS(314), + [anon_sym_GT_GT_EQ] = ACTIONS(314), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(316), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19123,63 +19123,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [21] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1155), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1165), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(318), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(332), + [anon_sym_RPAREN] = ACTIONS(318), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(332), - [anon_sym_EQ_GT] = ACTIONS(332), + [anon_sym_RBRACE] = ACTIONS(318), + [anon_sym_EQ_GT] = ACTIONS(318), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(332), - [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_RBRACK] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(320), [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(318), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19198,7 +19198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(334), + [anon_sym_as] = ACTIONS(320), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19213,41 +19213,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_COMMA] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(320), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT_EQ] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT] = ACTIONS(326), + [anon_sym_DOT_DOT_EQ] = ACTIONS(318), [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_PIPE_PIPE] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(332), - [anon_sym_BANG_EQ] = ACTIONS(332), - [anon_sym_LT_EQ] = ACTIONS(332), - [anon_sym_GT_EQ] = ACTIONS(332), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_PERCENT] = ACTIONS(334), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [anon_sym_DASH_EQ] = ACTIONS(332), - [anon_sym_STAR_EQ] = ACTIONS(332), - [anon_sym_SLASH_EQ] = ACTIONS(332), - [anon_sym_PERCENT_EQ] = ACTIONS(332), - [anon_sym_AMP_EQ] = ACTIONS(332), - [anon_sym_PIPE_EQ] = ACTIONS(332), - [anon_sym_CARET_EQ] = ACTIONS(332), - [anon_sym_LT_LT_EQ] = ACTIONS(332), - [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(328), + [anon_sym_CARET] = ACTIONS(320), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(318), + [anon_sym_GT_EQ] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(320), + [anon_sym_PERCENT] = ACTIONS(320), + [anon_sym_PLUS_EQ] = ACTIONS(318), + [anon_sym_DASH_EQ] = ACTIONS(318), + [anon_sym_STAR_EQ] = ACTIONS(318), + [anon_sym_SLASH_EQ] = ACTIONS(318), + [anon_sym_PERCENT_EQ] = ACTIONS(318), + [anon_sym_AMP_EQ] = ACTIONS(318), + [anon_sym_PIPE_EQ] = ACTIONS(318), + [anon_sym_CARET_EQ] = ACTIONS(318), + [anon_sym_LT_LT_EQ] = ACTIONS(318), + [anon_sym_GT_GT_EQ] = ACTIONS(318), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(334), + [anon_sym_DOT] = ACTIONS(320), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19264,63 +19264,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [22] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1124), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1177), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_RPAREN] = ACTIONS(316), + [anon_sym_SEMI] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(330), + [anon_sym_RPAREN] = ACTIONS(330), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(316), - [anon_sym_EQ_GT] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(316), - [anon_sym_RBRACK] = ACTIONS(316), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(330), + [anon_sym_EQ_GT] = ACTIONS(330), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_RBRACK] = ACTIONS(330), + [anon_sym_PLUS] = ACTIONS(332), + [anon_sym_STAR] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(330), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19338,8 +19338,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(318), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_as] = ACTIONS(332), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19354,41 +19354,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(330), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT] = ACTIONS(332), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(316), - [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(316), - [anon_sym_BANG_EQ] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT] = ACTIONS(318), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(332), + [anon_sym_DOT_DOT_DOT] = ACTIONS(330), + [anon_sym_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(330), + [anon_sym_DASH] = ACTIONS(332), + [anon_sym_AMP_AMP] = ACTIONS(330), + [anon_sym_PIPE_PIPE] = ACTIONS(330), + [anon_sym_PIPE] = ACTIONS(332), + [anon_sym_CARET] = ACTIONS(332), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(332), + [anon_sym_GT_GT] = ACTIONS(332), + [anon_sym_SLASH] = ACTIONS(332), + [anon_sym_PERCENT] = ACTIONS(332), + [anon_sym_PLUS_EQ] = ACTIONS(330), + [anon_sym_DASH_EQ] = ACTIONS(330), + [anon_sym_STAR_EQ] = ACTIONS(330), + [anon_sym_SLASH_EQ] = ACTIONS(330), + [anon_sym_PERCENT_EQ] = ACTIONS(330), + [anon_sym_AMP_EQ] = ACTIONS(330), + [anon_sym_PIPE_EQ] = ACTIONS(330), + [anon_sym_CARET_EQ] = ACTIONS(330), + [anon_sym_LT_LT_EQ] = ACTIONS(330), + [anon_sym_GT_GT_EQ] = ACTIONS(330), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(332), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19405,63 +19405,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [23] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1073), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1153), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(310), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(336), + [anon_sym_RPAREN] = ACTIONS(310), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_EQ_GT] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_RBRACK] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_EQ_GT] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_RBRACK] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19480,7 +19480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), + [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19495,41 +19495,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(338), - [anon_sym_GT] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_LT] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(338), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(338), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_EQ_EQ] = ACTIONS(310), + [anon_sym_BANG_EQ] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(312), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_PERCENT] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(310), + [anon_sym_DASH_EQ] = ACTIONS(310), + [anon_sym_STAR_EQ] = ACTIONS(310), + [anon_sym_SLASH_EQ] = ACTIONS(310), + [anon_sym_PERCENT_EQ] = ACTIONS(310), + [anon_sym_AMP_EQ] = ACTIONS(310), + [anon_sym_PIPE_EQ] = ACTIONS(310), + [anon_sym_CARET_EQ] = ACTIONS(310), + [anon_sym_LT_LT_EQ] = ACTIONS(310), + [anon_sym_GT_GT_EQ] = ACTIONS(310), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(312), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19546,62 +19546,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [24] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1073), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1174), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(336), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_RBRACE] = ACTIONS(336), [anon_sym_EQ_GT] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(336), [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(308), [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -19638,17 +19638,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(308), [anon_sym_EQ] = ACTIONS(338), [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(322), [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(324), [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(326), [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_AMP_AMP] = ACTIONS(336), [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(328), [anon_sym_CARET] = ACTIONS(338), [anon_sym_EQ_EQ] = ACTIONS(336), [anon_sym_BANG_EQ] = ACTIONS(336), @@ -19687,51 +19687,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [25] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_LBRACE] = ACTIONS(282), @@ -19823,53 +19823,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [26] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1233), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(25), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1153), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(310), [anon_sym_LBRACK] = ACTIONS(310), [anon_sym_PLUS] = ACTIONS(312), @@ -19892,7 +19892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(314), + [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), @@ -19958,58 +19958,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [27] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1073), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1289), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(318), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20028,7 +20028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), + [anon_sym_as] = ACTIONS(320), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20043,40 +20043,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_LT] = ACTIONS(338), - [anon_sym_GT] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(320), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(338), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(338), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(328), + [anon_sym_CARET] = ACTIONS(320), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(318), + [anon_sym_GT_EQ] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(320), + [anon_sym_PERCENT] = ACTIONS(320), + [anon_sym_PLUS_EQ] = ACTIONS(318), + [anon_sym_DASH_EQ] = ACTIONS(318), + [anon_sym_STAR_EQ] = ACTIONS(318), + [anon_sym_SLASH_EQ] = ACTIONS(318), + [anon_sym_PERCENT_EQ] = ACTIONS(318), + [anon_sym_AMP_EQ] = ACTIONS(318), + [anon_sym_PIPE_EQ] = ACTIONS(318), + [anon_sym_CARET_EQ] = ACTIONS(318), + [anon_sym_LT_LT_EQ] = ACTIONS(318), + [anon_sym_GT_GT_EQ] = ACTIONS(318), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(320), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20093,58 +20093,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [28] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1238), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1296), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20163,7 +20163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(334), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20178,40 +20178,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_PIPE_PIPE] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(332), - [anon_sym_BANG_EQ] = ACTIONS(332), - [anon_sym_LT_EQ] = ACTIONS(332), - [anon_sym_GT_EQ] = ACTIONS(332), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_PERCENT] = ACTIONS(334), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [anon_sym_DASH_EQ] = ACTIONS(332), - [anon_sym_STAR_EQ] = ACTIONS(332), - [anon_sym_SLASH_EQ] = ACTIONS(332), - [anon_sym_PERCENT_EQ] = ACTIONS(332), - [anon_sym_AMP_EQ] = ACTIONS(332), - [anon_sym_PIPE_EQ] = ACTIONS(332), - [anon_sym_CARET_EQ] = ACTIONS(332), - [anon_sym_LT_LT_EQ] = ACTIONS(332), - [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(328), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(334), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20228,58 +20228,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [29] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1241), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(25), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(322), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(330), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_PLUS] = ACTIONS(332), + [anon_sym_STAR] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(330), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20297,8 +20297,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(322), + [anon_sym_SQUOTE] = ACTIONS(334), + [anon_sym_as] = ACTIONS(332), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20313,40 +20313,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(332), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT] = ACTIONS(332), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(320), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(320), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(322), - [anon_sym_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(320), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(322), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(332), + [anon_sym_DOT_DOT_DOT] = ACTIONS(330), + [anon_sym_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(330), + [anon_sym_DASH] = ACTIONS(332), + [anon_sym_AMP_AMP] = ACTIONS(330), + [anon_sym_PIPE_PIPE] = ACTIONS(330), + [anon_sym_PIPE] = ACTIONS(332), + [anon_sym_CARET] = ACTIONS(332), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(332), + [anon_sym_GT_GT] = ACTIONS(332), + [anon_sym_SLASH] = ACTIONS(332), + [anon_sym_PERCENT] = ACTIONS(332), + [anon_sym_PLUS_EQ] = ACTIONS(330), + [anon_sym_DASH_EQ] = ACTIONS(330), + [anon_sym_STAR_EQ] = ACTIONS(330), + [anon_sym_SLASH_EQ] = ACTIONS(330), + [anon_sym_PERCENT_EQ] = ACTIONS(330), + [anon_sym_AMP_EQ] = ACTIONS(330), + [anon_sym_PIPE_EQ] = ACTIONS(330), + [anon_sym_CARET_EQ] = ACTIONS(330), + [anon_sym_LT_LT_EQ] = ACTIONS(330), + [anon_sym_GT_GT_EQ] = ACTIONS(330), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(332), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20363,58 +20363,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [30] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1124), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(316), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(314), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20433,7 +20433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(318), + [anon_sym_as] = ACTIONS(316), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20448,40 +20448,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(318), - [anon_sym_LT] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(316), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(316), - [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(316), - [anon_sym_BANG_EQ] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT] = ACTIONS(318), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(314), + [anon_sym_DASH_EQ] = ACTIONS(314), + [anon_sym_STAR_EQ] = ACTIONS(314), + [anon_sym_SLASH_EQ] = ACTIONS(314), + [anon_sym_PERCENT_EQ] = ACTIONS(314), + [anon_sym_AMP_EQ] = ACTIONS(314), + [anon_sym_PIPE_EQ] = ACTIONS(314), + [anon_sym_CARET_EQ] = ACTIONS(314), + [anon_sym_LT_LT_EQ] = ACTIONS(314), + [anon_sym_GT_GT_EQ] = ACTIONS(314), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(316), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20498,58 +20498,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [31] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1073), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1153), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20568,7 +20568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), + [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20583,40 +20583,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_LT] = ACTIONS(338), - [anon_sym_GT] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(338), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(338), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_EQ_EQ] = ACTIONS(310), + [anon_sym_BANG_EQ] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(312), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_PERCENT] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(310), + [anon_sym_DASH_EQ] = ACTIONS(310), + [anon_sym_STAR_EQ] = ACTIONS(310), + [anon_sym_SLASH_EQ] = ACTIONS(310), + [anon_sym_PERCENT_EQ] = ACTIONS(310), + [anon_sym_AMP_EQ] = ACTIONS(310), + [anon_sym_PIPE_EQ] = ACTIONS(310), + [anon_sym_CARET_EQ] = ACTIONS(310), + [anon_sym_LT_LT_EQ] = ACTIONS(310), + [anon_sym_GT_GT_EQ] = ACTIONS(310), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(312), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20633,58 +20633,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [32] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1124), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(316), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(314), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20703,7 +20703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(318), + [anon_sym_as] = ACTIONS(316), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20718,40 +20718,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(318), - [anon_sym_LT] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(316), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(316), - [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(316), - [anon_sym_BANG_EQ] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT] = ACTIONS(318), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(314), + [anon_sym_DASH_EQ] = ACTIONS(314), + [anon_sym_STAR_EQ] = ACTIONS(314), + [anon_sym_SLASH_EQ] = ACTIONS(314), + [anon_sym_PERCENT_EQ] = ACTIONS(314), + [anon_sym_AMP_EQ] = ACTIONS(314), + [anon_sym_PIPE_EQ] = ACTIONS(314), + [anon_sym_CARET_EQ] = ACTIONS(314), + [anon_sym_LT_LT_EQ] = ACTIONS(314), + [anon_sym_GT_GT_EQ] = ACTIONS(314), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(316), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20767,59 +20767,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_attribute_item] = STATE(34), + [sym_attribute_item] = STATE(42), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1193), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_enum_variant_list_repeat1] = STATE(34), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_enum_variant_list_repeat1] = STATE(42), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(368), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -20878,54 +20878,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_attribute_item] = STATE(613), + [sym_attribute_item] = STATE(644), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1208), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_enum_variant_list_repeat1] = STATE(613), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_enum_variant_list_repeat1] = STATE(644), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20989,59 +20989,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym_attribute_item] = STATE(41), + [sym_attribute_item] = STATE(34), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1208), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1204), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_enum_variant_list_repeat1] = STATE(41), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_enum_variant_list_repeat1] = STATE(34), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(378), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(378), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -21100,54 +21100,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym_attribute_item] = STATE(40), + [sym_attribute_item] = STATE(43), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1255), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_enum_variant_list_repeat1] = STATE(40), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(382), @@ -21212,51 +21212,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [37] = { [sym_attribute_item] = STATE(43), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), @@ -21322,51 +21322,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [38] = { [sym_attribute_item] = STATE(43), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), @@ -21430,54 +21430,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym_attribute_item] = STATE(43), + [sym_attribute_item] = STATE(41), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_enum_variant_list_repeat1] = STATE(41), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(388), @@ -21540,54 +21540,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym_attribute_item] = STATE(613), + [sym_attribute_item] = STATE(43), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1296), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_enum_variant_list_repeat1] = STATE(613), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21649,54 +21649,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym_attribute_item] = STATE(613), + [sym_attribute_item] = STATE(644), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1330), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_enum_variant_list_repeat1] = STATE(613), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_enum_variant_list_repeat1] = STATE(644), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21758,54 +21758,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym_attribute_item] = STATE(43), + [sym_attribute_item] = STATE(644), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1215), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_enum_variant_list_repeat1] = STATE(644), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21867,54 +21867,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym_attribute_item] = STATE(613), + [sym_attribute_item] = STATE(644), [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1278), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_enum_variant_list_repeat1] = STATE(613), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_enum_variant_list_repeat1] = STATE(644), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21977,52 +21977,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [44] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1227), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_tuple_expression_repeat1] = STATE(47), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_tuple_expression_repeat1] = STATE(46), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(390), @@ -22084,164 +22084,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [45] = { - [sym_else_clause] = STATE(78), - [ts_builtin_sym_end] = ACTIONS(392), - [sym_identifier] = ACTIONS(394), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_macro_rules_BANG] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_isize] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_f32] = ACTIONS(394), - [anon_sym_f64] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_str] = ACTIONS(394), - [anon_sym_char] = ACTIONS(394), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_as] = ACTIONS(394), - [anon_sym_async] = ACTIONS(394), - [anon_sym_break] = ACTIONS(394), - [anon_sym_const] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(394), - [anon_sym_default] = ACTIONS(394), - [anon_sym_enum] = ACTIONS(394), - [anon_sym_fn] = ACTIONS(394), - [anon_sym_for] = ACTIONS(394), - [anon_sym_if] = ACTIONS(394), - [anon_sym_impl] = ACTIONS(394), - [anon_sym_let] = ACTIONS(394), - [anon_sym_loop] = ACTIONS(394), - [anon_sym_match] = ACTIONS(394), - [anon_sym_mod] = ACTIONS(394), - [anon_sym_pub] = ACTIONS(394), - [anon_sym_return] = ACTIONS(394), - [anon_sym_static] = ACTIONS(394), - [anon_sym_struct] = ACTIONS(394), - [anon_sym_trait] = ACTIONS(394), - [anon_sym_type] = ACTIONS(394), - [anon_sym_union] = ACTIONS(394), - [anon_sym_unsafe] = ACTIONS(394), - [anon_sym_use] = ACTIONS(394), - [anon_sym_while] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_extern] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_yield] = ACTIONS(394), - [anon_sym_else] = ACTIONS(396), - [anon_sym_move] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(394), - [sym_integer_literal] = ACTIONS(392), - [aux_sym_string_literal_token1] = ACTIONS(392), - [sym_char_literal] = ACTIONS(392), - [anon_sym_true] = ACTIONS(394), - [anon_sym_false] = ACTIONS(394), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(394), - [sym_super] = ACTIONS(394), - [sym_crate] = ACTIONS(394), - [sym_metavariable] = ACTIONS(392), - [sym_raw_string_literal] = ACTIONS(392), - [sym_float_literal] = ACTIONS(392), - [sym_block_comment] = ACTIONS(3), - }, - [46] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1284), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_tuple_expression_repeat1] = STATE(44), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_tuple_expression_repeat1] = STATE(46), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(398), + [anon_sym_RPAREN] = ACTIONS(392), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -22299,224 +22191,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [47] = { + [46] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1298), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1322), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_tuple_expression_repeat1] = STATE(47), - [sym_identifier] = ACTIONS(400), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_STAR] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(417), - [anon_sym_i8] = ACTIONS(417), - [anon_sym_u16] = ACTIONS(417), - [anon_sym_i16] = ACTIONS(417), - [anon_sym_u32] = ACTIONS(417), - [anon_sym_i32] = ACTIONS(417), - [anon_sym_u64] = ACTIONS(417), - [anon_sym_i64] = ACTIONS(417), - [anon_sym_u128] = ACTIONS(417), - [anon_sym_i128] = ACTIONS(417), - [anon_sym_isize] = ACTIONS(417), - [anon_sym_usize] = ACTIONS(417), - [anon_sym_f32] = ACTIONS(417), - [anon_sym_f64] = ACTIONS(417), - [anon_sym_bool] = ACTIONS(417), - [anon_sym_str] = ACTIONS(417), - [anon_sym_char] = ACTIONS(417), - [anon_sym_SQUOTE] = ACTIONS(420), - [anon_sym_async] = ACTIONS(423), - [anon_sym_break] = ACTIONS(426), - [anon_sym_const] = ACTIONS(429), - [anon_sym_continue] = ACTIONS(432), - [anon_sym_default] = ACTIONS(435), - [anon_sym_for] = ACTIONS(438), - [anon_sym_if] = ACTIONS(441), - [anon_sym_loop] = ACTIONS(444), - [anon_sym_match] = ACTIONS(447), - [anon_sym_return] = ACTIONS(450), - [anon_sym_union] = ACTIONS(435), - [anon_sym_unsafe] = ACTIONS(453), - [anon_sym_while] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_AMP] = ACTIONS(465), - [anon_sym_DOT_DOT] = ACTIONS(468), - [anon_sym_DASH] = ACTIONS(414), - [anon_sym_PIPE] = ACTIONS(471), - [anon_sym_yield] = ACTIONS(474), - [anon_sym_move] = ACTIONS(477), - [sym_integer_literal] = ACTIONS(480), - [aux_sym_string_literal_token1] = ACTIONS(483), - [sym_char_literal] = ACTIONS(480), - [anon_sym_true] = ACTIONS(486), - [anon_sym_false] = ACTIONS(486), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(492), - [sym_crate] = ACTIONS(492), - [sym_metavariable] = ACTIONS(495), - [sym_raw_string_literal] = ACTIONS(480), - [sym_float_literal] = ACTIONS(480), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_tuple_expression_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(400), + [anon_sym_LBRACE] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_SQUOTE] = ACTIONS(414), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(420), + [anon_sym_const] = ACTIONS(423), + [anon_sym_continue] = ACTIONS(426), + [anon_sym_default] = ACTIONS(429), + [anon_sym_for] = ACTIONS(432), + [anon_sym_if] = ACTIONS(435), + [anon_sym_loop] = ACTIONS(438), + [anon_sym_match] = ACTIONS(441), + [anon_sym_return] = ACTIONS(444), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(447), + [anon_sym_while] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(453), + [anon_sym_COLON_COLON] = ACTIONS(456), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_DOT_DOT] = ACTIONS(462), + [anon_sym_DASH] = ACTIONS(408), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_move] = ACTIONS(471), + [sym_integer_literal] = ACTIONS(474), + [aux_sym_string_literal_token1] = ACTIONS(477), + [sym_char_literal] = ACTIONS(474), + [anon_sym_true] = ACTIONS(480), + [anon_sym_false] = ACTIONS(480), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(483), + [sym_super] = ACTIONS(486), + [sym_crate] = ACTIONS(486), + [sym_metavariable] = ACTIONS(489), + [sym_raw_string_literal] = ACTIONS(474), + [sym_float_literal] = ACTIONS(474), [sym_block_comment] = ACTIONS(3), }, - [48] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1227), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_tuple_expression_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [47] = { + [sym_else_clause] = STATE(125), + [ts_builtin_sym_end] = ACTIONS(492), + [sym_identifier] = ACTIONS(494), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_macro_rules_BANG] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_STAR] = ACTIONS(494), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u8] = ACTIONS(494), + [anon_sym_i8] = ACTIONS(494), + [anon_sym_u16] = ACTIONS(494), + [anon_sym_i16] = ACTIONS(494), + [anon_sym_u32] = ACTIONS(494), + [anon_sym_i32] = ACTIONS(494), + [anon_sym_u64] = ACTIONS(494), + [anon_sym_i64] = ACTIONS(494), + [anon_sym_u128] = ACTIONS(494), + [anon_sym_i128] = ACTIONS(494), + [anon_sym_isize] = ACTIONS(494), + [anon_sym_usize] = ACTIONS(494), + [anon_sym_f32] = ACTIONS(494), + [anon_sym_f64] = ACTIONS(494), + [anon_sym_bool] = ACTIONS(494), + [anon_sym_str] = ACTIONS(494), + [anon_sym_char] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(494), + [anon_sym_as] = ACTIONS(494), + [anon_sym_async] = ACTIONS(494), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(494), + [anon_sym_continue] = ACTIONS(494), + [anon_sym_default] = ACTIONS(494), + [anon_sym_enum] = ACTIONS(494), + [anon_sym_fn] = ACTIONS(494), + [anon_sym_for] = ACTIONS(494), + [anon_sym_if] = ACTIONS(494), + [anon_sym_impl] = ACTIONS(494), + [anon_sym_let] = ACTIONS(494), + [anon_sym_loop] = ACTIONS(494), + [anon_sym_match] = ACTIONS(494), + [anon_sym_mod] = ACTIONS(494), + [anon_sym_pub] = ACTIONS(494), + [anon_sym_return] = ACTIONS(494), + [anon_sym_static] = ACTIONS(494), + [anon_sym_struct] = ACTIONS(494), + [anon_sym_trait] = ACTIONS(494), + [anon_sym_type] = ACTIONS(494), + [anon_sym_union] = ACTIONS(494), + [anon_sym_unsafe] = ACTIONS(494), + [anon_sym_use] = ACTIONS(494), + [anon_sym_while] = ACTIONS(494), + [anon_sym_POUND] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(494), + [anon_sym_extern] = ACTIONS(494), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(492), + [anon_sym_DOT_DOT] = ACTIONS(494), + [anon_sym_DOT_DOT_EQ] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_AMP_AMP] = ACTIONS(492), + [anon_sym_PIPE_PIPE] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(494), + [anon_sym_CARET] = ACTIONS(494), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(494), + [anon_sym_PERCENT] = ACTIONS(494), + [anon_sym_PLUS_EQ] = ACTIONS(492), + [anon_sym_DASH_EQ] = ACTIONS(492), + [anon_sym_STAR_EQ] = ACTIONS(492), + [anon_sym_SLASH_EQ] = ACTIONS(492), + [anon_sym_PERCENT_EQ] = ACTIONS(492), + [anon_sym_AMP_EQ] = ACTIONS(492), + [anon_sym_PIPE_EQ] = ACTIONS(492), + [anon_sym_CARET_EQ] = ACTIONS(492), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_GT_GT_EQ] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(494), + [anon_sym_else] = ACTIONS(496), + [anon_sym_move] = ACTIONS(494), + [anon_sym_DOT] = ACTIONS(494), + [sym_integer_literal] = ACTIONS(492), + [aux_sym_string_literal_token1] = ACTIONS(492), + [sym_char_literal] = ACTIONS(492), + [anon_sym_true] = ACTIONS(494), + [anon_sym_false] = ACTIONS(494), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(492), + [sym_raw_string_literal] = ACTIONS(492), + [sym_float_literal] = ACTIONS(492), [sym_block_comment] = ACTIONS(3), }, - [49] = { - [sym_else_clause] = STATE(172), + [48] = { + [sym_else_clause] = STATE(130), [ts_builtin_sym_end] = ACTIONS(498), [sym_identifier] = ACTIONS(500), [anon_sym_SEMI] = ACTIONS(498), @@ -22606,7 +22498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(498), [anon_sym_GT_GT_EQ] = ACTIONS(498), [anon_sym_yield] = ACTIONS(500), - [anon_sym_else] = ACTIONS(396), + [anon_sym_else] = ACTIONS(496), [anon_sym_move] = ACTIONS(500), [anon_sym_DOT] = ACTIONS(500), [sym_integer_literal] = ACTIONS(498), @@ -22623,54 +22515,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(498), [sym_block_comment] = ACTIONS(3), }, - [50] = { + [49] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1246), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [aux_sym_tuple_expression_repeat1] = STATE(47), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_tuple_expression_repeat1] = STATE(44), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(502), @@ -22731,162 +22623,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [51] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1240), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [sym_mutable_specifier] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [52] = { + [50] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1162), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [aux_sym_tuple_expression_repeat1] = STATE(45), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(390), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -22922,12 +22709,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(512), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -22945,53 +22731,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [53] = { + [51] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1225), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1297), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23022,7 +22808,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(516), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -23030,11 +22815,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(504), + [anon_sym_DASH_GT] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23052,160 +22838,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [54] = { + [52] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1159), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [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_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(512), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [55] = { + [53] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1164), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1160), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23243,12 +23029,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(522), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(308), + [sym_mutable_specifier] = ACTIONS(516), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -23266,53 +23052,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [56] = { + [54] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1243), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23343,6 +23129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(520), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -23350,12 +23137,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(512), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23373,53 +23159,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [57] = { + [55] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1276), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23450,7 +23236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(524), + [anon_sym_let] = ACTIONS(522), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -23460,8 +23246,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -23480,53 +23266,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [58] = { + [56] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1295), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23557,7 +23343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(526), + [anon_sym_let] = ACTIONS(524), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -23567,8 +23353,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -23587,160 +23373,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [59] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1216), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), + [57] = { + [ts_builtin_sym_end] = ACTIONS(526), + [sym_identifier] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_macro_rules_BANG] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(526), + [anon_sym_LBRACE] = ACTIONS(526), + [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(528), + [anon_sym_STAR] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(526), + [anon_sym_u8] = ACTIONS(528), + [anon_sym_i8] = ACTIONS(528), + [anon_sym_u16] = ACTIONS(528), + [anon_sym_i16] = ACTIONS(528), + [anon_sym_u32] = ACTIONS(528), + [anon_sym_i32] = ACTIONS(528), + [anon_sym_u64] = ACTIONS(528), + [anon_sym_i64] = ACTIONS(528), + [anon_sym_u128] = ACTIONS(528), + [anon_sym_i128] = ACTIONS(528), + [anon_sym_isize] = ACTIONS(528), + [anon_sym_usize] = ACTIONS(528), + [anon_sym_f32] = ACTIONS(528), + [anon_sym_f64] = ACTIONS(528), + [anon_sym_bool] = ACTIONS(528), + [anon_sym_str] = ACTIONS(528), + [anon_sym_char] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(528), + [anon_sym_as] = ACTIONS(528), + [anon_sym_async] = ACTIONS(528), + [anon_sym_break] = ACTIONS(528), + [anon_sym_const] = ACTIONS(528), + [anon_sym_continue] = ACTIONS(528), + [anon_sym_default] = ACTIONS(528), + [anon_sym_enum] = ACTIONS(528), + [anon_sym_fn] = ACTIONS(528), + [anon_sym_for] = ACTIONS(528), + [anon_sym_if] = ACTIONS(528), + [anon_sym_impl] = ACTIONS(528), [anon_sym_let] = ACTIONS(528), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [anon_sym_loop] = ACTIONS(528), + [anon_sym_match] = ACTIONS(528), + [anon_sym_mod] = ACTIONS(528), + [anon_sym_pub] = ACTIONS(528), + [anon_sym_return] = ACTIONS(528), + [anon_sym_static] = ACTIONS(528), + [anon_sym_struct] = ACTIONS(528), + [anon_sym_trait] = ACTIONS(528), + [anon_sym_type] = ACTIONS(528), + [anon_sym_union] = ACTIONS(528), + [anon_sym_unsafe] = ACTIONS(528), + [anon_sym_use] = ACTIONS(528), + [anon_sym_while] = ACTIONS(528), + [anon_sym_POUND] = ACTIONS(526), + [anon_sym_BANG] = ACTIONS(528), + [anon_sym_EQ] = ACTIONS(528), + [anon_sym_extern] = ACTIONS(528), + [anon_sym_LT] = ACTIONS(528), + [anon_sym_GT] = ACTIONS(528), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_AMP] = ACTIONS(528), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [anon_sym_DOT_DOT] = ACTIONS(528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(526), + [anon_sym_PIPE_PIPE] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(528), + [anon_sym_CARET] = ACTIONS(528), + [anon_sym_EQ_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_LT_LT] = ACTIONS(528), + [anon_sym_GT_GT] = ACTIONS(528), + [anon_sym_SLASH] = ACTIONS(528), + [anon_sym_PERCENT] = ACTIONS(528), + [anon_sym_PLUS_EQ] = ACTIONS(526), + [anon_sym_DASH_EQ] = ACTIONS(526), + [anon_sym_STAR_EQ] = ACTIONS(526), + [anon_sym_SLASH_EQ] = ACTIONS(526), + [anon_sym_PERCENT_EQ] = ACTIONS(526), + [anon_sym_AMP_EQ] = ACTIONS(526), + [anon_sym_PIPE_EQ] = ACTIONS(526), + [anon_sym_CARET_EQ] = ACTIONS(526), + [anon_sym_LT_LT_EQ] = ACTIONS(526), + [anon_sym_GT_GT_EQ] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(528), + [anon_sym_else] = ACTIONS(528), + [anon_sym_move] = ACTIONS(528), + [anon_sym_DOT] = ACTIONS(528), + [sym_integer_literal] = ACTIONS(526), + [aux_sym_string_literal_token1] = ACTIONS(526), + [sym_char_literal] = ACTIONS(526), + [anon_sym_true] = ACTIONS(528), + [anon_sym_false] = ACTIONS(528), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(528), + [sym_super] = ACTIONS(528), + [sym_crate] = ACTIONS(528), + [sym_metavariable] = ACTIONS(526), + [sym_raw_string_literal] = ACTIONS(526), + [sym_float_literal] = ACTIONS(526), [sym_block_comment] = ACTIONS(3), }, - [60] = { + [58] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1222), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23781,8 +23567,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -23801,267 +23587,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [61] = { + [59] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1161), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(532), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(532), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [62] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [63] = { + [60] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1252), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1290), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24102,8 +23781,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -24122,7 +23801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [64] = { + [61] = { [ts_builtin_sym_end] = ACTIONS(536), [sym_identifier] = ACTIONS(538), [anon_sym_SEMI] = ACTIONS(536), @@ -24229,165 +23908,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(536), [sym_block_comment] = ACTIONS(3), }, - [65] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1288), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(540), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [66] = { + [62] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(542), + [anon_sym_RBRACK] = ACTIONS(540), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -24443,58 +24015,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [67] = { + [63] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1169), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(544), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -24528,11 +24099,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -24550,53 +24122,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [68] = { + [64] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1286), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24627,7 +24199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(546), + [anon_sym_let] = ACTIONS(542), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -24637,8 +24209,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -24657,58 +24229,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [69] = { + [65] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(548), + [anon_sym_RBRACK] = ACTIONS(544), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -24764,7 +24336,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [70] = { + [66] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_DASH_GT] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [67] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(546), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [68] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [sym_mutable_specifier] = ACTIONS(548), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [69] = { [ts_builtin_sym_end] = ACTIONS(550), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(550), @@ -24871,266 +24764,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(550), [sym_block_comment] = ACTIONS(3), }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(554), - [sym_identifier] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_macro_rules_BANG] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_SQUOTE] = ACTIONS(556), - [anon_sym_as] = ACTIONS(556), - [anon_sym_async] = ACTIONS(556), - [anon_sym_break] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_continue] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_enum] = ACTIONS(556), - [anon_sym_fn] = ACTIONS(556), - [anon_sym_for] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_impl] = ACTIONS(556), - [anon_sym_let] = ACTIONS(556), - [anon_sym_loop] = ACTIONS(556), - [anon_sym_match] = ACTIONS(556), - [anon_sym_mod] = ACTIONS(556), - [anon_sym_pub] = ACTIONS(556), - [anon_sym_return] = ACTIONS(556), - [anon_sym_static] = ACTIONS(556), - [anon_sym_struct] = ACTIONS(556), - [anon_sym_trait] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_unsafe] = ACTIONS(556), - [anon_sym_use] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_extern] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT] = ACTIONS(556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_yield] = ACTIONS(556), - [anon_sym_else] = ACTIONS(556), - [anon_sym_move] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), - [sym_block_comment] = ACTIONS(3), - }, - [72] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1321), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [73] = { + [70] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25161,6 +24841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(554), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -25170,8 +24851,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -25190,57 +24871,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [74] = { + [71] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1322), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(556), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -25296,53 +24978,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [75] = { + [72] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1309), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1303), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25402,53 +25084,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [76] = { + [73] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1248), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1167), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [74] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1331), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25508,18 +25296,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [77] = { + [75] = { [ts_builtin_sym_end] = ACTIONS(558), [sym_identifier] = ACTIONS(560), - [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(562), [anon_sym_macro_rules_BANG] = ACTIONS(558), - [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(562), [anon_sym_LBRACE] = ACTIONS(558), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(558), - [anon_sym_PLUS] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), [anon_sym_u8] = ACTIONS(560), [anon_sym_i8] = ACTIONS(560), [anon_sym_u16] = ACTIONS(560), @@ -25538,7 +25326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(560), [anon_sym_char] = ACTIONS(560), [anon_sym_SQUOTE] = ACTIONS(560), - [anon_sym_as] = ACTIONS(562), + [anon_sym_as] = ACTIONS(564), [anon_sym_async] = ACTIONS(560), [anon_sym_break] = ACTIONS(560), [anon_sym_const] = ACTIONS(560), @@ -25565,41 +25353,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(560), [anon_sym_POUND] = ACTIONS(558), [anon_sym_BANG] = ACTIONS(560), - [anon_sym_EQ] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(564), [anon_sym_extern] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(564), [anon_sym_COLON_COLON] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(564), - [anon_sym_PIPE_PIPE] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym_EQ_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_PLUS_EQ] = ACTIONS(564), - [anon_sym_DASH_EQ] = ACTIONS(564), - [anon_sym_STAR_EQ] = ACTIONS(564), - [anon_sym_SLASH_EQ] = ACTIONS(564), - [anon_sym_PERCENT_EQ] = ACTIONS(564), - [anon_sym_AMP_EQ] = ACTIONS(564), - [anon_sym_PIPE_EQ] = ACTIONS(564), - [anon_sym_CARET_EQ] = ACTIONS(564), - [anon_sym_LT_LT_EQ] = ACTIONS(564), - [anon_sym_GT_GT_EQ] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(562), + [anon_sym_DASH_EQ] = ACTIONS(562), + [anon_sym_STAR_EQ] = ACTIONS(562), + [anon_sym_SLASH_EQ] = ACTIONS(562), + [anon_sym_PERCENT_EQ] = ACTIONS(562), + [anon_sym_AMP_EQ] = ACTIONS(562), + [anon_sym_PIPE_EQ] = ACTIONS(562), + [anon_sym_CARET_EQ] = ACTIONS(562), + [anon_sym_LT_LT_EQ] = ACTIONS(562), + [anon_sym_GT_GT_EQ] = ACTIONS(562), [anon_sym_yield] = ACTIONS(560), [anon_sym_move] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(562), + [anon_sym_DOT] = ACTIONS(564), [sym_integer_literal] = ACTIONS(558), [aux_sym_string_literal_token1] = ACTIONS(558), [sym_char_literal] = ACTIONS(558), @@ -25614,7 +25402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(558), [sym_block_comment] = ACTIONS(3), }, - [78] = { + [76] = { [ts_builtin_sym_end] = ACTIONS(566), [sym_identifier] = ACTIONS(568), [anon_sym_SEMI] = ACTIONS(566), @@ -25720,477 +25508,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(566), [sym_block_comment] = ACTIONS(3), }, - [79] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [80] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1295), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [81] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1280), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [82] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1282), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [83] = { + [77] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1308), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1317), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26250,7 +25614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [84] = { + [78] = { [ts_builtin_sym_end] = ACTIONS(570), [sym_identifier] = ACTIONS(572), [anon_sym_SEMI] = ACTIONS(570), @@ -26356,53 +25720,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(570), [sym_block_comment] = ACTIONS(3), }, - [85] = { + [79] = { + [ts_builtin_sym_end] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_macro_rules_BANG] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_u8] = ACTIONS(576), + [anon_sym_i8] = ACTIONS(576), + [anon_sym_u16] = ACTIONS(576), + [anon_sym_i16] = ACTIONS(576), + [anon_sym_u32] = ACTIONS(576), + [anon_sym_i32] = ACTIONS(576), + [anon_sym_u64] = ACTIONS(576), + [anon_sym_i64] = ACTIONS(576), + [anon_sym_u128] = ACTIONS(576), + [anon_sym_i128] = ACTIONS(576), + [anon_sym_isize] = ACTIONS(576), + [anon_sym_usize] = ACTIONS(576), + [anon_sym_f32] = ACTIONS(576), + [anon_sym_f64] = ACTIONS(576), + [anon_sym_bool] = ACTIONS(576), + [anon_sym_str] = ACTIONS(576), + [anon_sym_char] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(576), + [anon_sym_as] = ACTIONS(564), + [anon_sym_async] = ACTIONS(576), + [anon_sym_break] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(576), + [anon_sym_fn] = ACTIONS(576), + [anon_sym_for] = ACTIONS(576), + [anon_sym_if] = ACTIONS(576), + [anon_sym_impl] = ACTIONS(576), + [anon_sym_let] = ACTIONS(576), + [anon_sym_loop] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_mod] = ACTIONS(576), + [anon_sym_pub] = ACTIONS(576), + [anon_sym_return] = ACTIONS(576), + [anon_sym_static] = ACTIONS(576), + [anon_sym_struct] = ACTIONS(576), + [anon_sym_trait] = ACTIONS(576), + [anon_sym_type] = ACTIONS(576), + [anon_sym_union] = ACTIONS(576), + [anon_sym_unsafe] = ACTIONS(576), + [anon_sym_use] = ACTIONS(576), + [anon_sym_while] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_extern] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_COLON_COLON] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(562), + [anon_sym_DASH_EQ] = ACTIONS(562), + [anon_sym_STAR_EQ] = ACTIONS(562), + [anon_sym_SLASH_EQ] = ACTIONS(562), + [anon_sym_PERCENT_EQ] = ACTIONS(562), + [anon_sym_AMP_EQ] = ACTIONS(562), + [anon_sym_PIPE_EQ] = ACTIONS(562), + [anon_sym_CARET_EQ] = ACTIONS(562), + [anon_sym_LT_LT_EQ] = ACTIONS(562), + [anon_sym_GT_GT_EQ] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(576), + [anon_sym_move] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(564), + [sym_integer_literal] = ACTIONS(574), + [aux_sym_string_literal_token1] = ACTIONS(574), + [sym_char_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_crate] = ACTIONS(576), + [sym_metavariable] = ACTIONS(574), + [sym_raw_string_literal] = ACTIONS(574), + [sym_float_literal] = ACTIONS(574), + [sym_block_comment] = ACTIONS(3), + }, + [80] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1294), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1315), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26462,53 +25932,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [86] = { + [81] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1300), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26568,53 +26038,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [87] = { + [82] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1281), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1308), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26674,195 +26144,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [88] = { + [83] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [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_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1275), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [84] = { + [ts_builtin_sym_end] = ACTIONS(578), + [sym_identifier] = ACTIONS(580), + [anon_sym_SEMI] = ACTIONS(578), + [anon_sym_macro_rules_BANG] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(580), + [anon_sym_as] = ACTIONS(580), + [anon_sym_async] = ACTIONS(580), + [anon_sym_break] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_continue] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(580), + [anon_sym_for] = ACTIONS(580), + [anon_sym_if] = ACTIONS(580), + [anon_sym_impl] = ACTIONS(580), + [anon_sym_let] = ACTIONS(580), + [anon_sym_loop] = ACTIONS(580), + [anon_sym_match] = ACTIONS(580), + [anon_sym_mod] = ACTIONS(580), + [anon_sym_pub] = ACTIONS(580), + [anon_sym_return] = ACTIONS(580), + [anon_sym_static] = ACTIONS(580), + [anon_sym_struct] = ACTIONS(580), + [anon_sym_trait] = ACTIONS(580), + [anon_sym_type] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_unsafe] = ACTIONS(580), + [anon_sym_use] = ACTIONS(580), + [anon_sym_while] = ACTIONS(580), + [anon_sym_POUND] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_EQ] = ACTIONS(580), + [anon_sym_extern] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_PLUS_EQ] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(578), + [anon_sym_STAR_EQ] = ACTIONS(578), + [anon_sym_SLASH_EQ] = ACTIONS(578), + [anon_sym_PERCENT_EQ] = ACTIONS(578), + [anon_sym_AMP_EQ] = ACTIONS(578), + [anon_sym_PIPE_EQ] = ACTIONS(578), + [anon_sym_CARET_EQ] = ACTIONS(578), + [anon_sym_LT_LT_EQ] = ACTIONS(578), + [anon_sym_GT_GT_EQ] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [anon_sym_move] = ACTIONS(580), + [anon_sym_DOT] = ACTIONS(580), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_crate] = ACTIONS(580), + [sym_metavariable] = ACTIONS(578), + [sym_raw_string_literal] = ACTIONS(578), + [sym_float_literal] = ACTIONS(578), + [sym_block_comment] = ACTIONS(3), + }, + [85] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1316), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(241), + [sym_if_let_expression] = STATE(241), + [sym_match_expression] = STATE(241), + [sym_while_expression] = STATE(241), + [sym_while_let_expression] = STATE(241), + [sym_loop_expression] = STATE(241), + [sym_for_expression] = STATE(241), + [sym_const_block] = STATE(241), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2555), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(241), + [sym_async_block] = STATE(241), + [sym_block] = STATE(241), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(582), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(584), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(586), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(594), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_while] = ACTIONS(598), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -26886,53 +26462,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [90] = { + [86] = { + [ts_builtin_sym_end] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_macro_rules_BANG] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(602), + [anon_sym_i8] = ACTIONS(602), + [anon_sym_u16] = ACTIONS(602), + [anon_sym_i16] = ACTIONS(602), + [anon_sym_u32] = ACTIONS(602), + [anon_sym_i32] = ACTIONS(602), + [anon_sym_u64] = ACTIONS(602), + [anon_sym_i64] = ACTIONS(602), + [anon_sym_u128] = ACTIONS(602), + [anon_sym_i128] = ACTIONS(602), + [anon_sym_isize] = ACTIONS(602), + [anon_sym_usize] = ACTIONS(602), + [anon_sym_f32] = ACTIONS(602), + [anon_sym_f64] = ACTIONS(602), + [anon_sym_bool] = ACTIONS(602), + [anon_sym_str] = ACTIONS(602), + [anon_sym_char] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(602), + [anon_sym_as] = ACTIONS(602), + [anon_sym_async] = ACTIONS(602), + [anon_sym_break] = ACTIONS(602), + [anon_sym_const] = ACTIONS(602), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_default] = ACTIONS(602), + [anon_sym_enum] = ACTIONS(602), + [anon_sym_fn] = ACTIONS(602), + [anon_sym_for] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_impl] = ACTIONS(602), + [anon_sym_let] = ACTIONS(602), + [anon_sym_loop] = ACTIONS(602), + [anon_sym_match] = ACTIONS(602), + [anon_sym_mod] = ACTIONS(602), + [anon_sym_pub] = ACTIONS(602), + [anon_sym_return] = ACTIONS(602), + [anon_sym_static] = ACTIONS(602), + [anon_sym_struct] = ACTIONS(602), + [anon_sym_trait] = ACTIONS(602), + [anon_sym_type] = ACTIONS(602), + [anon_sym_union] = ACTIONS(602), + [anon_sym_unsafe] = ACTIONS(602), + [anon_sym_use] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_EQ] = ACTIONS(602), + [anon_sym_extern] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(600), + [anon_sym_AMP] = ACTIONS(602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT] = ACTIONS(602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_EQ_EQ] = ACTIONS(600), + [anon_sym_BANG_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(602), + [anon_sym_PERCENT] = ACTIONS(602), + [anon_sym_PLUS_EQ] = ACTIONS(600), + [anon_sym_DASH_EQ] = ACTIONS(600), + [anon_sym_STAR_EQ] = ACTIONS(600), + [anon_sym_SLASH_EQ] = ACTIONS(600), + [anon_sym_PERCENT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(600), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_yield] = ACTIONS(602), + [anon_sym_move] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(602), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(600), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(602), + [anon_sym_false] = ACTIONS(602), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(602), + [sym_super] = ACTIONS(602), + [sym_crate] = ACTIONS(602), + [sym_metavariable] = ACTIONS(600), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), + [sym_block_comment] = ACTIONS(3), + }, + [87] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1301), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1304), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26992,56 +26674,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [91] = { + [88] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1173), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(241), + [sym_if_let_expression] = STATE(241), + [sym_match_expression] = STATE(241), + [sym_while_expression] = STATE(241), + [sym_while_let_expression] = STATE(241), + [sym_loop_expression] = STATE(241), + [sym_for_expression] = STATE(241), + [sym_const_block] = STATE(241), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2555), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(241), + [sym_async_block] = STATE(241), + [sym_block] = STATE(241), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(582), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -27062,24 +26744,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(584), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(586), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(594), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_while] = ACTIONS(598), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27098,159 +26780,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [92] = { + [89] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1320), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [93] = { + [90] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1174), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1302), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27291,7 +26973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27310,53 +26992,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [94] = { + [91] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1172), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1329), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27397,7 +27079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27416,265 +27098,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [95] = { - [ts_builtin_sym_end] = ACTIONS(574), - [sym_identifier] = ACTIONS(576), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_macro_rules_BANG] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_u8] = ACTIONS(576), - [anon_sym_i8] = ACTIONS(576), - [anon_sym_u16] = ACTIONS(576), - [anon_sym_i16] = ACTIONS(576), - [anon_sym_u32] = ACTIONS(576), - [anon_sym_i32] = ACTIONS(576), - [anon_sym_u64] = ACTIONS(576), - [anon_sym_i64] = ACTIONS(576), - [anon_sym_u128] = ACTIONS(576), - [anon_sym_i128] = ACTIONS(576), - [anon_sym_isize] = ACTIONS(576), - [anon_sym_usize] = ACTIONS(576), - [anon_sym_f32] = ACTIONS(576), - [anon_sym_f64] = ACTIONS(576), - [anon_sym_bool] = ACTIONS(576), - [anon_sym_str] = ACTIONS(576), - [anon_sym_char] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(576), - [anon_sym_as] = ACTIONS(576), - [anon_sym_async] = ACTIONS(576), - [anon_sym_break] = ACTIONS(576), - [anon_sym_const] = ACTIONS(576), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_default] = ACTIONS(576), - [anon_sym_enum] = ACTIONS(576), - [anon_sym_fn] = ACTIONS(576), - [anon_sym_for] = ACTIONS(576), - [anon_sym_if] = ACTIONS(576), - [anon_sym_impl] = ACTIONS(576), - [anon_sym_let] = ACTIONS(576), - [anon_sym_loop] = ACTIONS(576), - [anon_sym_match] = ACTIONS(576), - [anon_sym_mod] = ACTIONS(576), - [anon_sym_pub] = ACTIONS(576), - [anon_sym_return] = ACTIONS(576), - [anon_sym_static] = ACTIONS(576), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_trait] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_union] = ACTIONS(576), - [anon_sym_unsafe] = ACTIONS(576), - [anon_sym_use] = ACTIONS(576), - [anon_sym_while] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(576), - [anon_sym_extern] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(574), - [anon_sym_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_EQ_EQ] = ACTIONS(574), - [anon_sym_BANG_EQ] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(574), - [anon_sym_LT_LT] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(576), - [anon_sym_SLASH] = ACTIONS(576), - [anon_sym_PERCENT] = ACTIONS(576), - [anon_sym_PLUS_EQ] = ACTIONS(574), - [anon_sym_DASH_EQ] = ACTIONS(574), - [anon_sym_STAR_EQ] = ACTIONS(574), - [anon_sym_SLASH_EQ] = ACTIONS(574), - [anon_sym_PERCENT_EQ] = ACTIONS(574), - [anon_sym_AMP_EQ] = ACTIONS(574), - [anon_sym_PIPE_EQ] = ACTIONS(574), - [anon_sym_CARET_EQ] = ACTIONS(574), - [anon_sym_LT_LT_EQ] = ACTIONS(574), - [anon_sym_GT_GT_EQ] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(576), - [anon_sym_move] = ACTIONS(576), - [anon_sym_DOT] = ACTIONS(576), - [sym_integer_literal] = ACTIONS(574), - [aux_sym_string_literal_token1] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [anon_sym_true] = ACTIONS(576), - [anon_sym_false] = ACTIONS(576), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(576), - [sym_super] = ACTIONS(576), - [sym_crate] = ACTIONS(576), - [sym_metavariable] = ACTIONS(574), - [sym_raw_string_literal] = ACTIONS(574), - [sym_float_literal] = ACTIONS(574), - [sym_block_comment] = ACTIONS(3), - }, - [96] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [92] = { + [ts_builtin_sym_end] = ACTIONS(604), + [sym_identifier] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_macro_rules_BANG] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(604), + [anon_sym_u8] = ACTIONS(606), + [anon_sym_i8] = ACTIONS(606), + [anon_sym_u16] = ACTIONS(606), + [anon_sym_i16] = ACTIONS(606), + [anon_sym_u32] = ACTIONS(606), + [anon_sym_i32] = ACTIONS(606), + [anon_sym_u64] = ACTIONS(606), + [anon_sym_i64] = ACTIONS(606), + [anon_sym_u128] = ACTIONS(606), + [anon_sym_i128] = ACTIONS(606), + [anon_sym_isize] = ACTIONS(606), + [anon_sym_usize] = ACTIONS(606), + [anon_sym_f32] = ACTIONS(606), + [anon_sym_f64] = ACTIONS(606), + [anon_sym_bool] = ACTIONS(606), + [anon_sym_str] = ACTIONS(606), + [anon_sym_char] = ACTIONS(606), + [anon_sym_SQUOTE] = ACTIONS(606), + [anon_sym_as] = ACTIONS(606), + [anon_sym_async] = ACTIONS(606), + [anon_sym_break] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_default] = ACTIONS(606), + [anon_sym_enum] = ACTIONS(606), + [anon_sym_fn] = ACTIONS(606), + [anon_sym_for] = ACTIONS(606), + [anon_sym_if] = ACTIONS(606), + [anon_sym_impl] = ACTIONS(606), + [anon_sym_let] = ACTIONS(606), + [anon_sym_loop] = ACTIONS(606), + [anon_sym_match] = ACTIONS(606), + [anon_sym_mod] = ACTIONS(606), + [anon_sym_pub] = ACTIONS(606), + [anon_sym_return] = ACTIONS(606), + [anon_sym_static] = ACTIONS(606), + [anon_sym_struct] = ACTIONS(606), + [anon_sym_trait] = ACTIONS(606), + [anon_sym_type] = ACTIONS(606), + [anon_sym_union] = ACTIONS(606), + [anon_sym_unsafe] = ACTIONS(606), + [anon_sym_use] = ACTIONS(606), + [anon_sym_while] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_EQ] = ACTIONS(606), + [anon_sym_extern] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_AMP_AMP] = ACTIONS(604), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_CARET] = ACTIONS(606), + [anon_sym_EQ_EQ] = ACTIONS(604), + [anon_sym_BANG_EQ] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_LT_LT] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(606), + [anon_sym_PLUS_EQ] = ACTIONS(604), + [anon_sym_DASH_EQ] = ACTIONS(604), + [anon_sym_STAR_EQ] = ACTIONS(604), + [anon_sym_SLASH_EQ] = ACTIONS(604), + [anon_sym_PERCENT_EQ] = ACTIONS(604), + [anon_sym_AMP_EQ] = ACTIONS(604), + [anon_sym_PIPE_EQ] = ACTIONS(604), + [anon_sym_CARET_EQ] = ACTIONS(604), + [anon_sym_LT_LT_EQ] = ACTIONS(604), + [anon_sym_GT_GT_EQ] = ACTIONS(604), + [anon_sym_yield] = ACTIONS(606), + [anon_sym_move] = ACTIONS(606), + [anon_sym_DOT] = ACTIONS(606), + [sym_integer_literal] = ACTIONS(604), + [aux_sym_string_literal_token1] = ACTIONS(604), + [sym_char_literal] = ACTIONS(604), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(606), + [sym_super] = ACTIONS(606), + [sym_crate] = ACTIONS(606), + [sym_metavariable] = ACTIONS(604), + [sym_raw_string_literal] = ACTIONS(604), + [sym_float_literal] = ACTIONS(604), [sym_block_comment] = ACTIONS(3), }, - [97] = { + [93] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1169), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1333), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27715,7 +27291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27734,159 +27310,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [98] = { - [ts_builtin_sym_end] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_macro_rules_BANG] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_async] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_enum] = ACTIONS(580), - [anon_sym_fn] = ACTIONS(580), - [anon_sym_for] = ACTIONS(580), - [anon_sym_if] = ACTIONS(580), - [anon_sym_impl] = ACTIONS(580), - [anon_sym_let] = ACTIONS(580), - [anon_sym_loop] = ACTIONS(580), - [anon_sym_match] = ACTIONS(580), - [anon_sym_mod] = ACTIONS(580), - [anon_sym_pub] = ACTIONS(580), - [anon_sym_return] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_struct] = ACTIONS(580), - [anon_sym_trait] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_unsafe] = ACTIONS(580), - [anon_sym_use] = ACTIONS(580), - [anon_sym_while] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_extern] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_yield] = ACTIONS(580), - [anon_sym_move] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), - [sym_block_comment] = ACTIONS(3), - }, - [99] = { + [94] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1285), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27926,7 +27396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), @@ -27946,53 +27416,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [100] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1261), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [95] = { + [ts_builtin_sym_end] = ACTIONS(608), + [sym_identifier] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_macro_rules_BANG] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(608), + [anon_sym_u8] = ACTIONS(610), + [anon_sym_i8] = ACTIONS(610), + [anon_sym_u16] = ACTIONS(610), + [anon_sym_i16] = ACTIONS(610), + [anon_sym_u32] = ACTIONS(610), + [anon_sym_i32] = ACTIONS(610), + [anon_sym_u64] = ACTIONS(610), + [anon_sym_i64] = ACTIONS(610), + [anon_sym_u128] = ACTIONS(610), + [anon_sym_i128] = ACTIONS(610), + [anon_sym_isize] = ACTIONS(610), + [anon_sym_usize] = ACTIONS(610), + [anon_sym_f32] = ACTIONS(610), + [anon_sym_f64] = ACTIONS(610), + [anon_sym_bool] = ACTIONS(610), + [anon_sym_str] = ACTIONS(610), + [anon_sym_char] = ACTIONS(610), + [anon_sym_SQUOTE] = ACTIONS(610), + [anon_sym_as] = ACTIONS(610), + [anon_sym_async] = ACTIONS(610), + [anon_sym_break] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(610), + [anon_sym_default] = ACTIONS(610), + [anon_sym_enum] = ACTIONS(610), + [anon_sym_fn] = ACTIONS(610), + [anon_sym_for] = ACTIONS(610), + [anon_sym_if] = ACTIONS(610), + [anon_sym_impl] = ACTIONS(610), + [anon_sym_let] = ACTIONS(610), + [anon_sym_loop] = ACTIONS(610), + [anon_sym_match] = ACTIONS(610), + [anon_sym_mod] = ACTIONS(610), + [anon_sym_pub] = ACTIONS(610), + [anon_sym_return] = ACTIONS(610), + [anon_sym_static] = ACTIONS(610), + [anon_sym_struct] = ACTIONS(610), + [anon_sym_trait] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_union] = ACTIONS(610), + [anon_sym_unsafe] = ACTIONS(610), + [anon_sym_use] = ACTIONS(610), + [anon_sym_while] = ACTIONS(610), + [anon_sym_POUND] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_EQ] = ACTIONS(610), + [anon_sym_extern] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_COLON_COLON] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(608), + [anon_sym_DOT_DOT] = ACTIONS(610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_BANG_EQ] = ACTIONS(608), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(610), + [anon_sym_PLUS_EQ] = ACTIONS(608), + [anon_sym_DASH_EQ] = ACTIONS(608), + [anon_sym_STAR_EQ] = ACTIONS(608), + [anon_sym_SLASH_EQ] = ACTIONS(608), + [anon_sym_PERCENT_EQ] = ACTIONS(608), + [anon_sym_AMP_EQ] = ACTIONS(608), + [anon_sym_PIPE_EQ] = ACTIONS(608), + [anon_sym_CARET_EQ] = ACTIONS(608), + [anon_sym_LT_LT_EQ] = ACTIONS(608), + [anon_sym_GT_GT_EQ] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), + [anon_sym_move] = ACTIONS(610), + [anon_sym_DOT] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(608), + [aux_sym_string_literal_token1] = ACTIONS(608), + [sym_char_literal] = ACTIONS(608), + [anon_sym_true] = ACTIONS(610), + [anon_sym_false] = ACTIONS(610), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(610), + [sym_super] = ACTIONS(610), + [sym_crate] = ACTIONS(610), + [sym_metavariable] = ACTIONS(608), + [sym_raw_string_literal] = ACTIONS(608), + [sym_float_literal] = ACTIONS(608), + [sym_block_comment] = ACTIONS(3), + }, + [96] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28032,8 +27608,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -28052,53 +27628,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [101] = { + [97] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28138,8 +27714,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -28158,53 +27734,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [102] = { + [98] = { + [ts_builtin_sym_end] = ACTIONS(612), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(612), + [anon_sym_macro_rules_BANG] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_extern] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_DOT_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(614), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(614), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_move] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(612), + [aux_sym_string_literal_token1] = ACTIONS(612), + [sym_char_literal] = ACTIONS(612), + [anon_sym_true] = ACTIONS(614), + [anon_sym_false] = ACTIONS(614), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(612), + [sym_raw_string_literal] = ACTIONS(612), + [sym_float_literal] = ACTIONS(612), + [sym_block_comment] = ACTIONS(3), + }, + [99] = { + [ts_builtin_sym_end] = ACTIONS(616), + [sym_identifier] = ACTIONS(618), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_macro_rules_BANG] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(616), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(618), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(618), + [anon_sym_i8] = ACTIONS(618), + [anon_sym_u16] = ACTIONS(618), + [anon_sym_i16] = ACTIONS(618), + [anon_sym_u32] = ACTIONS(618), + [anon_sym_i32] = ACTIONS(618), + [anon_sym_u64] = ACTIONS(618), + [anon_sym_i64] = ACTIONS(618), + [anon_sym_u128] = ACTIONS(618), + [anon_sym_i128] = ACTIONS(618), + [anon_sym_isize] = ACTIONS(618), + [anon_sym_usize] = ACTIONS(618), + [anon_sym_f32] = ACTIONS(618), + [anon_sym_f64] = ACTIONS(618), + [anon_sym_bool] = ACTIONS(618), + [anon_sym_str] = ACTIONS(618), + [anon_sym_char] = ACTIONS(618), + [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_as] = ACTIONS(618), + [anon_sym_async] = ACTIONS(618), + [anon_sym_break] = ACTIONS(618), + [anon_sym_const] = ACTIONS(618), + [anon_sym_continue] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_enum] = ACTIONS(618), + [anon_sym_fn] = ACTIONS(618), + [anon_sym_for] = ACTIONS(618), + [anon_sym_if] = ACTIONS(618), + [anon_sym_impl] = ACTIONS(618), + [anon_sym_let] = ACTIONS(618), + [anon_sym_loop] = ACTIONS(618), + [anon_sym_match] = ACTIONS(618), + [anon_sym_mod] = ACTIONS(618), + [anon_sym_pub] = ACTIONS(618), + [anon_sym_return] = ACTIONS(618), + [anon_sym_static] = ACTIONS(618), + [anon_sym_struct] = ACTIONS(618), + [anon_sym_trait] = ACTIONS(618), + [anon_sym_type] = ACTIONS(618), + [anon_sym_union] = ACTIONS(618), + [anon_sym_unsafe] = ACTIONS(618), + [anon_sym_use] = ACTIONS(618), + [anon_sym_while] = ACTIONS(618), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_BANG] = ACTIONS(618), + [anon_sym_EQ] = ACTIONS(618), + [anon_sym_extern] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_GT] = ACTIONS(618), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_CARET] = ACTIONS(618), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_GT_GT] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(618), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_yield] = ACTIONS(618), + [anon_sym_move] = ACTIONS(618), + [anon_sym_DOT] = ACTIONS(618), + [sym_integer_literal] = ACTIONS(616), + [aux_sym_string_literal_token1] = ACTIONS(616), + [sym_char_literal] = ACTIONS(616), + [anon_sym_true] = ACTIONS(618), + [anon_sym_false] = ACTIONS(618), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(618), + [sym_super] = ACTIONS(618), + [sym_crate] = ACTIONS(618), + [sym_metavariable] = ACTIONS(616), + [sym_raw_string_literal] = ACTIONS(616), + [sym_float_literal] = ACTIONS(616), + [sym_block_comment] = ACTIONS(3), + }, + [100] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1303), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28264,53 +28052,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [103] = { + [101] = { + [ts_builtin_sym_end] = ACTIONS(620), + [sym_identifier] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(620), + [anon_sym_macro_rules_BANG] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_u8] = ACTIONS(622), + [anon_sym_i8] = ACTIONS(622), + [anon_sym_u16] = ACTIONS(622), + [anon_sym_i16] = ACTIONS(622), + [anon_sym_u32] = ACTIONS(622), + [anon_sym_i32] = ACTIONS(622), + [anon_sym_u64] = ACTIONS(622), + [anon_sym_i64] = ACTIONS(622), + [anon_sym_u128] = ACTIONS(622), + [anon_sym_i128] = ACTIONS(622), + [anon_sym_isize] = ACTIONS(622), + [anon_sym_usize] = ACTIONS(622), + [anon_sym_f32] = ACTIONS(622), + [anon_sym_f64] = ACTIONS(622), + [anon_sym_bool] = ACTIONS(622), + [anon_sym_str] = ACTIONS(622), + [anon_sym_char] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_async] = ACTIONS(622), + [anon_sym_break] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_default] = ACTIONS(622), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_fn] = ACTIONS(622), + [anon_sym_for] = ACTIONS(622), + [anon_sym_if] = ACTIONS(622), + [anon_sym_impl] = ACTIONS(622), + [anon_sym_let] = ACTIONS(622), + [anon_sym_loop] = ACTIONS(622), + [anon_sym_match] = ACTIONS(622), + [anon_sym_mod] = ACTIONS(622), + [anon_sym_pub] = ACTIONS(622), + [anon_sym_return] = ACTIONS(622), + [anon_sym_static] = ACTIONS(622), + [anon_sym_struct] = ACTIONS(622), + [anon_sym_trait] = ACTIONS(622), + [anon_sym_type] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [anon_sym_unsafe] = ACTIONS(622), + [anon_sym_use] = ACTIONS(622), + [anon_sym_while] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_extern] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_COLON_COLON] = ACTIONS(620), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT_EQ] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(620), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_BANG_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_PLUS_EQ] = ACTIONS(620), + [anon_sym_DASH_EQ] = ACTIONS(620), + [anon_sym_STAR_EQ] = ACTIONS(620), + [anon_sym_SLASH_EQ] = ACTIONS(620), + [anon_sym_PERCENT_EQ] = ACTIONS(620), + [anon_sym_AMP_EQ] = ACTIONS(620), + [anon_sym_PIPE_EQ] = ACTIONS(620), + [anon_sym_CARET_EQ] = ACTIONS(620), + [anon_sym_LT_LT_EQ] = ACTIONS(620), + [anon_sym_GT_GT_EQ] = ACTIONS(620), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_move] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(622), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(620), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(622), + [sym_super] = ACTIONS(622), + [sym_crate] = ACTIONS(622), + [sym_metavariable] = ACTIONS(620), + [sym_raw_string_literal] = ACTIONS(620), + [sym_float_literal] = ACTIONS(620), + [sym_block_comment] = ACTIONS(3), + }, + [102] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1167), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1326), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28351,7 +28245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28370,265 +28264,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [104] = { + [103] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1230), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1305), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [105] = { + [104] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1334), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [106] = { + [105] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1324), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1306), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28688,53 +28582,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [107] = { + [106] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1304), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1324), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28794,159 +28688,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [108] = { - [ts_builtin_sym_end] = ACTIONS(582), - [sym_identifier] = ACTIONS(584), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_macro_rules_BANG] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(582), - [anon_sym_u8] = ACTIONS(584), - [anon_sym_i8] = ACTIONS(584), - [anon_sym_u16] = ACTIONS(584), - [anon_sym_i16] = ACTIONS(584), - [anon_sym_u32] = ACTIONS(584), - [anon_sym_i32] = ACTIONS(584), - [anon_sym_u64] = ACTIONS(584), - [anon_sym_i64] = ACTIONS(584), - [anon_sym_u128] = ACTIONS(584), - [anon_sym_i128] = ACTIONS(584), - [anon_sym_isize] = ACTIONS(584), - [anon_sym_usize] = ACTIONS(584), - [anon_sym_f32] = ACTIONS(584), - [anon_sym_f64] = ACTIONS(584), - [anon_sym_bool] = ACTIONS(584), - [anon_sym_str] = ACTIONS(584), - [anon_sym_char] = ACTIONS(584), - [anon_sym_SQUOTE] = ACTIONS(584), - [anon_sym_as] = ACTIONS(584), - [anon_sym_async] = ACTIONS(584), - [anon_sym_break] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_default] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(584), - [anon_sym_fn] = ACTIONS(584), - [anon_sym_for] = ACTIONS(584), - [anon_sym_if] = ACTIONS(584), - [anon_sym_impl] = ACTIONS(584), - [anon_sym_let] = ACTIONS(584), - [anon_sym_loop] = ACTIONS(584), - [anon_sym_match] = ACTIONS(584), - [anon_sym_mod] = ACTIONS(584), - [anon_sym_pub] = ACTIONS(584), - [anon_sym_return] = ACTIONS(584), - [anon_sym_static] = ACTIONS(584), - [anon_sym_struct] = ACTIONS(584), - [anon_sym_trait] = ACTIONS(584), - [anon_sym_type] = ACTIONS(584), - [anon_sym_union] = ACTIONS(584), - [anon_sym_unsafe] = ACTIONS(584), - [anon_sym_use] = ACTIONS(584), - [anon_sym_while] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(582), - [anon_sym_BANG] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(584), - [anon_sym_extern] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_COLON_COLON] = ACTIONS(582), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(582), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_PLUS_EQ] = ACTIONS(582), - [anon_sym_DASH_EQ] = ACTIONS(582), - [anon_sym_STAR_EQ] = ACTIONS(582), - [anon_sym_SLASH_EQ] = ACTIONS(582), - [anon_sym_PERCENT_EQ] = ACTIONS(582), - [anon_sym_AMP_EQ] = ACTIONS(582), - [anon_sym_PIPE_EQ] = ACTIONS(582), - [anon_sym_CARET_EQ] = ACTIONS(582), - [anon_sym_LT_LT_EQ] = ACTIONS(582), - [anon_sym_GT_GT_EQ] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(584), - [anon_sym_move] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(584), - [sym_integer_literal] = ACTIONS(582), - [aux_sym_string_literal_token1] = ACTIONS(582), - [sym_char_literal] = ACTIONS(582), - [anon_sym_true] = ACTIONS(584), - [anon_sym_false] = ACTIONS(584), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(584), - [sym_super] = ACTIONS(584), - [sym_crate] = ACTIONS(584), - [sym_metavariable] = ACTIONS(582), - [sym_raw_string_literal] = ACTIONS(582), - [sym_float_literal] = ACTIONS(582), - [sym_block_comment] = ACTIONS(3), - }, - [109] = { + [107] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1316), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1175), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28987,7 +28775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29006,53 +28794,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [110] = { + [108] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1124), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1300), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29093,7 +28881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29112,159 +28900,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [111] = { + [109] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1265), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1310), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [112] = { + [110] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1247), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29304,8 +29092,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -29324,159 +29112,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [113] = { + [111] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1237), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1309), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [114] = { + [112] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1263), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29516,8 +29304,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -29536,159 +29324,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [115] = { + [113] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1248), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [116] = { + [114] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29728,8 +29516,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -29748,159 +29536,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [117] = { - [ts_builtin_sym_end] = ACTIONS(586), - [sym_identifier] = ACTIONS(588), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_macro_rules_BANG] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_RBRACE] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_STAR] = ACTIONS(588), - [anon_sym_QMARK] = ACTIONS(586), - [anon_sym_u8] = ACTIONS(588), - [anon_sym_i8] = ACTIONS(588), - [anon_sym_u16] = ACTIONS(588), - [anon_sym_i16] = ACTIONS(588), - [anon_sym_u32] = ACTIONS(588), - [anon_sym_i32] = ACTIONS(588), - [anon_sym_u64] = ACTIONS(588), - [anon_sym_i64] = ACTIONS(588), - [anon_sym_u128] = ACTIONS(588), - [anon_sym_i128] = ACTIONS(588), - [anon_sym_isize] = ACTIONS(588), - [anon_sym_usize] = ACTIONS(588), - [anon_sym_f32] = ACTIONS(588), - [anon_sym_f64] = ACTIONS(588), - [anon_sym_bool] = ACTIONS(588), - [anon_sym_str] = ACTIONS(588), - [anon_sym_char] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(588), - [anon_sym_as] = ACTIONS(588), - [anon_sym_async] = ACTIONS(588), - [anon_sym_break] = ACTIONS(588), - [anon_sym_const] = ACTIONS(588), - [anon_sym_continue] = ACTIONS(588), - [anon_sym_default] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(588), - [anon_sym_fn] = ACTIONS(588), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(588), - [anon_sym_impl] = ACTIONS(588), - [anon_sym_let] = ACTIONS(588), - [anon_sym_loop] = ACTIONS(588), - [anon_sym_match] = ACTIONS(588), - [anon_sym_mod] = ACTIONS(588), - [anon_sym_pub] = ACTIONS(588), - [anon_sym_return] = ACTIONS(588), - [anon_sym_static] = ACTIONS(588), - [anon_sym_struct] = ACTIONS(588), - [anon_sym_trait] = ACTIONS(588), - [anon_sym_type] = ACTIONS(588), - [anon_sym_union] = ACTIONS(588), - [anon_sym_unsafe] = ACTIONS(588), - [anon_sym_use] = ACTIONS(588), - [anon_sym_while] = ACTIONS(588), - [anon_sym_POUND] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_EQ] = ACTIONS(588), - [anon_sym_extern] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(588), - [anon_sym_DOT_DOT_EQ] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_EQ_EQ] = ACTIONS(586), - [anon_sym_BANG_EQ] = ACTIONS(586), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(588), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_PLUS_EQ] = ACTIONS(586), - [anon_sym_DASH_EQ] = ACTIONS(586), - [anon_sym_STAR_EQ] = ACTIONS(586), - [anon_sym_SLASH_EQ] = ACTIONS(586), - [anon_sym_PERCENT_EQ] = ACTIONS(586), - [anon_sym_AMP_EQ] = ACTIONS(586), - [anon_sym_PIPE_EQ] = ACTIONS(586), - [anon_sym_CARET_EQ] = ACTIONS(586), - [anon_sym_LT_LT_EQ] = ACTIONS(586), - [anon_sym_GT_GT_EQ] = ACTIONS(586), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_move] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(588), - [sym_integer_literal] = ACTIONS(586), - [aux_sym_string_literal_token1] = ACTIONS(586), - [sym_char_literal] = ACTIONS(586), - [anon_sym_true] = ACTIONS(588), - [anon_sym_false] = ACTIONS(588), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(588), - [sym_super] = ACTIONS(588), - [sym_crate] = ACTIONS(588), - [sym_metavariable] = ACTIONS(586), - [sym_raw_string_literal] = ACTIONS(586), - [sym_float_literal] = ACTIONS(586), - [sym_block_comment] = ACTIONS(3), - }, - [118] = { + [115] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1249), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1307), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29960,53 +29642,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [119] = { + [116] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1319), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1312), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30066,53 +29748,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [120] = { + [117] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1292), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1314), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30172,371 +29854,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1124), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [122] = { - [ts_builtin_sym_end] = ACTIONS(590), - [sym_identifier] = ACTIONS(592), - [anon_sym_SEMI] = ACTIONS(590), - [anon_sym_macro_rules_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_RBRACE] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(590), - [anon_sym_u8] = ACTIONS(592), - [anon_sym_i8] = ACTIONS(592), - [anon_sym_u16] = ACTIONS(592), - [anon_sym_i16] = ACTIONS(592), - [anon_sym_u32] = ACTIONS(592), - [anon_sym_i32] = ACTIONS(592), - [anon_sym_u64] = ACTIONS(592), - [anon_sym_i64] = ACTIONS(592), - [anon_sym_u128] = ACTIONS(592), - [anon_sym_i128] = ACTIONS(592), - [anon_sym_isize] = ACTIONS(592), - [anon_sym_usize] = ACTIONS(592), - [anon_sym_f32] = ACTIONS(592), - [anon_sym_f64] = ACTIONS(592), - [anon_sym_bool] = ACTIONS(592), - [anon_sym_str] = ACTIONS(592), - [anon_sym_char] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_as] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_const] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_enum] = ACTIONS(592), - [anon_sym_fn] = ACTIONS(592), - [anon_sym_for] = ACTIONS(592), - [anon_sym_if] = ACTIONS(592), - [anon_sym_impl] = ACTIONS(592), - [anon_sym_let] = ACTIONS(592), - [anon_sym_loop] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_mod] = ACTIONS(592), - [anon_sym_pub] = ACTIONS(592), - [anon_sym_return] = ACTIONS(592), - [anon_sym_static] = ACTIONS(592), - [anon_sym_struct] = ACTIONS(592), - [anon_sym_trait] = ACTIONS(592), - [anon_sym_type] = ACTIONS(592), - [anon_sym_union] = ACTIONS(592), - [anon_sym_unsafe] = ACTIONS(592), - [anon_sym_use] = ACTIONS(592), - [anon_sym_while] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(592), - [anon_sym_extern] = ACTIONS(592), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(590), - [anon_sym_AMP] = ACTIONS(592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_AMP_AMP] = ACTIONS(590), - [anon_sym_PIPE_PIPE] = ACTIONS(590), - [anon_sym_PIPE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_EQ_EQ] = ACTIONS(590), - [anon_sym_BANG_EQ] = ACTIONS(590), - [anon_sym_LT_EQ] = ACTIONS(590), - [anon_sym_GT_EQ] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_PERCENT] = ACTIONS(592), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_STAR_EQ] = ACTIONS(590), - [anon_sym_SLASH_EQ] = ACTIONS(590), - [anon_sym_PERCENT_EQ] = ACTIONS(590), - [anon_sym_AMP_EQ] = ACTIONS(590), - [anon_sym_PIPE_EQ] = ACTIONS(590), - [anon_sym_CARET_EQ] = ACTIONS(590), - [anon_sym_LT_LT_EQ] = ACTIONS(590), - [anon_sym_GT_GT_EQ] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_move] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(590), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(592), - [sym_super] = ACTIONS(592), - [sym_crate] = ACTIONS(592), - [sym_metavariable] = ACTIONS(590), - [sym_raw_string_literal] = ACTIONS(590), - [sym_float_literal] = ACTIONS(590), - [sym_block_comment] = ACTIONS(3), - }, - [123] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [124] = { + [118] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1293), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1321), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30596,56 +29960,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [125] = { + [119] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1302), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(242), - [sym_if_let_expression] = STATE(242), - [sym_match_expression] = STATE(242), - [sym_while_expression] = STATE(242), - [sym_while_let_expression] = STATE(242), - [sym_loop_expression] = STATE(242), - [sym_for_expression] = STATE(242), - [sym_const_block] = STATE(242), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2555), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(242), - [sym_async_block] = STATE(242), - [sym_block] = STATE(242), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1313), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -30666,19 +30030,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(596), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(598), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(600), - [anon_sym_if] = ACTIONS(602), - [anon_sym_loop] = ACTIONS(604), - [anon_sym_match] = ACTIONS(606), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -30702,159 +30066,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [127] = { + [120] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1315), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30914,53 +30172,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [128] = { + [121] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1175), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1323), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31001,7 +30259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31020,537 +30278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [129] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [130] = { - [ts_builtin_sym_end] = ACTIONS(612), - [sym_identifier] = ACTIONS(614), - [anon_sym_SEMI] = ACTIONS(612), - [anon_sym_macro_rules_BANG] = ACTIONS(612), - [anon_sym_LPAREN] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(612), - [anon_sym_RBRACE] = ACTIONS(612), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(614), - [anon_sym_QMARK] = ACTIONS(612), - [anon_sym_u8] = ACTIONS(614), - [anon_sym_i8] = ACTIONS(614), - [anon_sym_u16] = ACTIONS(614), - [anon_sym_i16] = ACTIONS(614), - [anon_sym_u32] = ACTIONS(614), - [anon_sym_i32] = ACTIONS(614), - [anon_sym_u64] = ACTIONS(614), - [anon_sym_i64] = ACTIONS(614), - [anon_sym_u128] = ACTIONS(614), - [anon_sym_i128] = ACTIONS(614), - [anon_sym_isize] = ACTIONS(614), - [anon_sym_usize] = ACTIONS(614), - [anon_sym_f32] = ACTIONS(614), - [anon_sym_f64] = ACTIONS(614), - [anon_sym_bool] = ACTIONS(614), - [anon_sym_str] = ACTIONS(614), - [anon_sym_char] = ACTIONS(614), - [anon_sym_SQUOTE] = ACTIONS(614), - [anon_sym_as] = ACTIONS(614), - [anon_sym_async] = ACTIONS(614), - [anon_sym_break] = ACTIONS(614), - [anon_sym_const] = ACTIONS(614), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_default] = ACTIONS(614), - [anon_sym_enum] = ACTIONS(614), - [anon_sym_fn] = ACTIONS(614), - [anon_sym_for] = ACTIONS(614), - [anon_sym_if] = ACTIONS(614), - [anon_sym_impl] = ACTIONS(614), - [anon_sym_let] = ACTIONS(614), - [anon_sym_loop] = ACTIONS(614), - [anon_sym_match] = ACTIONS(614), - [anon_sym_mod] = ACTIONS(614), - [anon_sym_pub] = ACTIONS(614), - [anon_sym_return] = ACTIONS(614), - [anon_sym_static] = ACTIONS(614), - [anon_sym_struct] = ACTIONS(614), - [anon_sym_trait] = ACTIONS(614), - [anon_sym_type] = ACTIONS(614), - [anon_sym_union] = ACTIONS(614), - [anon_sym_unsafe] = ACTIONS(614), - [anon_sym_use] = ACTIONS(614), - [anon_sym_while] = ACTIONS(614), - [anon_sym_POUND] = ACTIONS(612), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_EQ] = ACTIONS(614), - [anon_sym_extern] = ACTIONS(614), - [anon_sym_LT] = ACTIONS(614), - [anon_sym_GT] = ACTIONS(614), - [anon_sym_COLON_COLON] = ACTIONS(612), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [anon_sym_DOT_DOT] = ACTIONS(614), - [anon_sym_DOT_DOT_EQ] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_AMP_AMP] = ACTIONS(612), - [anon_sym_PIPE_PIPE] = ACTIONS(612), - [anon_sym_PIPE] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_EQ_EQ] = ACTIONS(612), - [anon_sym_BANG_EQ] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(612), - [anon_sym_GT_EQ] = ACTIONS(612), - [anon_sym_LT_LT] = ACTIONS(614), - [anon_sym_GT_GT] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(614), - [anon_sym_PERCENT] = ACTIONS(614), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_move] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(614), - [sym_integer_literal] = ACTIONS(612), - [aux_sym_string_literal_token1] = ACTIONS(612), - [sym_char_literal] = ACTIONS(612), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(614), - [sym_super] = ACTIONS(614), - [sym_crate] = ACTIONS(614), - [sym_metavariable] = ACTIONS(612), - [sym_raw_string_literal] = ACTIONS(612), - [sym_float_literal] = ACTIONS(612), - [sym_block_comment] = ACTIONS(3), - }, - [131] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1314), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [132] = { - [ts_builtin_sym_end] = ACTIONS(616), - [sym_identifier] = ACTIONS(618), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_macro_rules_BANG] = ACTIONS(616), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_LBRACK] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(618), - [anon_sym_QMARK] = ACTIONS(616), - [anon_sym_u8] = ACTIONS(618), - [anon_sym_i8] = ACTIONS(618), - [anon_sym_u16] = ACTIONS(618), - [anon_sym_i16] = ACTIONS(618), - [anon_sym_u32] = ACTIONS(618), - [anon_sym_i32] = ACTIONS(618), - [anon_sym_u64] = ACTIONS(618), - [anon_sym_i64] = ACTIONS(618), - [anon_sym_u128] = ACTIONS(618), - [anon_sym_i128] = ACTIONS(618), - [anon_sym_isize] = ACTIONS(618), - [anon_sym_usize] = ACTIONS(618), - [anon_sym_f32] = ACTIONS(618), - [anon_sym_f64] = ACTIONS(618), - [anon_sym_bool] = ACTIONS(618), - [anon_sym_str] = ACTIONS(618), - [anon_sym_char] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(618), - [anon_sym_as] = ACTIONS(618), - [anon_sym_async] = ACTIONS(618), - [anon_sym_break] = ACTIONS(618), - [anon_sym_const] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(618), - [anon_sym_default] = ACTIONS(618), - [anon_sym_enum] = ACTIONS(618), - [anon_sym_fn] = ACTIONS(618), - [anon_sym_for] = ACTIONS(618), - [anon_sym_if] = ACTIONS(618), - [anon_sym_impl] = ACTIONS(618), - [anon_sym_let] = ACTIONS(618), - [anon_sym_loop] = ACTIONS(618), - [anon_sym_match] = ACTIONS(618), - [anon_sym_mod] = ACTIONS(618), - [anon_sym_pub] = ACTIONS(618), - [anon_sym_return] = ACTIONS(618), - [anon_sym_static] = ACTIONS(618), - [anon_sym_struct] = ACTIONS(618), - [anon_sym_trait] = ACTIONS(618), - [anon_sym_type] = ACTIONS(618), - [anon_sym_union] = ACTIONS(618), - [anon_sym_unsafe] = ACTIONS(618), - [anon_sym_use] = ACTIONS(618), - [anon_sym_while] = ACTIONS(618), - [anon_sym_POUND] = ACTIONS(616), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_EQ] = ACTIONS(618), - [anon_sym_extern] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(618), - [anon_sym_GT] = ACTIONS(618), - [anon_sym_COLON_COLON] = ACTIONS(616), - [anon_sym_AMP] = ACTIONS(618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(616), - [anon_sym_DOT_DOT] = ACTIONS(618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_AMP_AMP] = ACTIONS(616), - [anon_sym_PIPE_PIPE] = ACTIONS(616), - [anon_sym_PIPE] = ACTIONS(618), - [anon_sym_CARET] = ACTIONS(618), - [anon_sym_EQ_EQ] = ACTIONS(616), - [anon_sym_BANG_EQ] = ACTIONS(616), - [anon_sym_LT_EQ] = ACTIONS(616), - [anon_sym_GT_EQ] = ACTIONS(616), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_GT_GT] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(618), - [anon_sym_PLUS_EQ] = ACTIONS(616), - [anon_sym_DASH_EQ] = ACTIONS(616), - [anon_sym_STAR_EQ] = ACTIONS(616), - [anon_sym_SLASH_EQ] = ACTIONS(616), - [anon_sym_PERCENT_EQ] = ACTIONS(616), - [anon_sym_AMP_EQ] = ACTIONS(616), - [anon_sym_PIPE_EQ] = ACTIONS(616), - [anon_sym_CARET_EQ] = ACTIONS(616), - [anon_sym_LT_LT_EQ] = ACTIONS(616), - [anon_sym_GT_GT_EQ] = ACTIONS(616), - [anon_sym_yield] = ACTIONS(618), - [anon_sym_move] = ACTIONS(618), - [anon_sym_DOT] = ACTIONS(618), - [sym_integer_literal] = ACTIONS(616), - [aux_sym_string_literal_token1] = ACTIONS(616), - [sym_char_literal] = ACTIONS(616), - [anon_sym_true] = ACTIONS(618), - [anon_sym_false] = ACTIONS(618), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(618), - [sym_super] = ACTIONS(618), - [sym_crate] = ACTIONS(618), - [sym_metavariable] = ACTIONS(616), - [sym_raw_string_literal] = ACTIONS(616), - [sym_float_literal] = ACTIONS(616), - [sym_block_comment] = ACTIONS(3), - }, - [133] = { - [ts_builtin_sym_end] = ACTIONS(620), - [sym_identifier] = ACTIONS(622), - [anon_sym_SEMI] = ACTIONS(620), - [anon_sym_macro_rules_BANG] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(622), - [anon_sym_QMARK] = ACTIONS(620), - [anon_sym_u8] = ACTIONS(622), - [anon_sym_i8] = ACTIONS(622), - [anon_sym_u16] = ACTIONS(622), - [anon_sym_i16] = ACTIONS(622), - [anon_sym_u32] = ACTIONS(622), - [anon_sym_i32] = ACTIONS(622), - [anon_sym_u64] = ACTIONS(622), - [anon_sym_i64] = ACTIONS(622), - [anon_sym_u128] = ACTIONS(622), - [anon_sym_i128] = ACTIONS(622), - [anon_sym_isize] = ACTIONS(622), - [anon_sym_usize] = ACTIONS(622), - [anon_sym_f32] = ACTIONS(622), - [anon_sym_f64] = ACTIONS(622), - [anon_sym_bool] = ACTIONS(622), - [anon_sym_str] = ACTIONS(622), - [anon_sym_char] = ACTIONS(622), - [anon_sym_SQUOTE] = ACTIONS(622), - [anon_sym_as] = ACTIONS(622), - [anon_sym_async] = ACTIONS(622), - [anon_sym_break] = ACTIONS(622), - [anon_sym_const] = ACTIONS(622), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_enum] = ACTIONS(622), - [anon_sym_fn] = ACTIONS(622), - [anon_sym_for] = ACTIONS(622), - [anon_sym_if] = ACTIONS(622), - [anon_sym_impl] = ACTIONS(622), - [anon_sym_let] = ACTIONS(622), - [anon_sym_loop] = ACTIONS(622), - [anon_sym_match] = ACTIONS(622), - [anon_sym_mod] = ACTIONS(622), - [anon_sym_pub] = ACTIONS(622), - [anon_sym_return] = ACTIONS(622), - [anon_sym_static] = ACTIONS(622), - [anon_sym_struct] = ACTIONS(622), - [anon_sym_trait] = ACTIONS(622), - [anon_sym_type] = ACTIONS(622), - [anon_sym_union] = ACTIONS(622), - [anon_sym_unsafe] = ACTIONS(622), - [anon_sym_use] = ACTIONS(622), - [anon_sym_while] = ACTIONS(622), - [anon_sym_POUND] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_EQ] = ACTIONS(622), - [anon_sym_extern] = ACTIONS(622), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_COLON_COLON] = ACTIONS(620), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DOT_DOT_EQ] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(622), - [anon_sym_AMP_AMP] = ACTIONS(620), - [anon_sym_PIPE_PIPE] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(622), - [anon_sym_CARET] = ACTIONS(622), - [anon_sym_EQ_EQ] = ACTIONS(620), - [anon_sym_BANG_EQ] = ACTIONS(620), - [anon_sym_LT_EQ] = ACTIONS(620), - [anon_sym_GT_EQ] = ACTIONS(620), - [anon_sym_LT_LT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(622), - [anon_sym_SLASH] = ACTIONS(622), - [anon_sym_PERCENT] = ACTIONS(622), - [anon_sym_PLUS_EQ] = ACTIONS(620), - [anon_sym_DASH_EQ] = ACTIONS(620), - [anon_sym_STAR_EQ] = ACTIONS(620), - [anon_sym_SLASH_EQ] = ACTIONS(620), - [anon_sym_PERCENT_EQ] = ACTIONS(620), - [anon_sym_AMP_EQ] = ACTIONS(620), - [anon_sym_PIPE_EQ] = ACTIONS(620), - [anon_sym_CARET_EQ] = ACTIONS(620), - [anon_sym_LT_LT_EQ] = ACTIONS(620), - [anon_sym_GT_GT_EQ] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_move] = ACTIONS(622), - [anon_sym_DOT] = ACTIONS(622), - [sym_integer_literal] = ACTIONS(620), - [aux_sym_string_literal_token1] = ACTIONS(620), - [sym_char_literal] = ACTIONS(620), - [anon_sym_true] = ACTIONS(622), - [anon_sym_false] = ACTIONS(622), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(622), - [sym_super] = ACTIONS(622), - [sym_crate] = ACTIONS(622), - [sym_metavariable] = ACTIONS(620), - [sym_raw_string_literal] = ACTIONS(620), - [sym_float_literal] = ACTIONS(620), - [sym_block_comment] = ACTIONS(3), - }, - [134] = { + [122] = { [ts_builtin_sym_end] = ACTIONS(624), [sym_identifier] = ACTIONS(626), [anon_sym_SEMI] = ACTIONS(624), @@ -31656,113 +30384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(624), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1310), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [136] = { + [123] = { [ts_builtin_sym_end] = ACTIONS(628), [sym_identifier] = ACTIONS(630), [anon_sym_SEMI] = ACTIONS(628), @@ -31868,265 +30490,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(628), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [ts_builtin_sym_end] = ACTIONS(632), - [sym_identifier] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_macro_rules_BANG] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_u8] = ACTIONS(634), - [anon_sym_i8] = ACTIONS(634), - [anon_sym_u16] = ACTIONS(634), - [anon_sym_i16] = ACTIONS(634), - [anon_sym_u32] = ACTIONS(634), - [anon_sym_i32] = ACTIONS(634), - [anon_sym_u64] = ACTIONS(634), - [anon_sym_i64] = ACTIONS(634), - [anon_sym_u128] = ACTIONS(634), - [anon_sym_i128] = ACTIONS(634), - [anon_sym_isize] = ACTIONS(634), - [anon_sym_usize] = ACTIONS(634), - [anon_sym_f32] = ACTIONS(634), - [anon_sym_f64] = ACTIONS(634), - [anon_sym_bool] = ACTIONS(634), - [anon_sym_str] = ACTIONS(634), - [anon_sym_char] = ACTIONS(634), - [anon_sym_SQUOTE] = ACTIONS(634), - [anon_sym_as] = ACTIONS(562), - [anon_sym_async] = ACTIONS(634), - [anon_sym_break] = ACTIONS(634), - [anon_sym_const] = ACTIONS(634), - [anon_sym_continue] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(634), - [anon_sym_fn] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_impl] = ACTIONS(634), - [anon_sym_let] = ACTIONS(634), - [anon_sym_loop] = ACTIONS(634), - [anon_sym_match] = ACTIONS(634), - [anon_sym_mod] = ACTIONS(634), - [anon_sym_pub] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_static] = ACTIONS(634), - [anon_sym_struct] = ACTIONS(634), - [anon_sym_trait] = ACTIONS(634), - [anon_sym_type] = ACTIONS(634), - [anon_sym_union] = ACTIONS(634), - [anon_sym_unsafe] = ACTIONS(634), - [anon_sym_use] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(632), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_extern] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_COLON_COLON] = ACTIONS(632), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_DOT_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(562), - [anon_sym_DOT_DOT_EQ] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(562), - [anon_sym_AMP_AMP] = ACTIONS(564), - [anon_sym_PIPE_PIPE] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(562), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym_EQ_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_PLUS_EQ] = ACTIONS(564), - [anon_sym_DASH_EQ] = ACTIONS(564), - [anon_sym_STAR_EQ] = ACTIONS(564), - [anon_sym_SLASH_EQ] = ACTIONS(564), - [anon_sym_PERCENT_EQ] = ACTIONS(564), - [anon_sym_AMP_EQ] = ACTIONS(564), - [anon_sym_PIPE_EQ] = ACTIONS(564), - [anon_sym_CARET_EQ] = ACTIONS(564), - [anon_sym_LT_LT_EQ] = ACTIONS(564), - [anon_sym_GT_GT_EQ] = ACTIONS(564), - [anon_sym_yield] = ACTIONS(634), - [anon_sym_move] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(562), - [sym_integer_literal] = ACTIONS(632), - [aux_sym_string_literal_token1] = ACTIONS(632), - [sym_char_literal] = ACTIONS(632), - [anon_sym_true] = ACTIONS(634), - [anon_sym_false] = ACTIONS(634), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(634), - [sym_super] = ACTIONS(634), - [sym_crate] = ACTIONS(634), - [sym_metavariable] = ACTIONS(632), - [sym_raw_string_literal] = ACTIONS(632), - [sym_float_literal] = ACTIONS(632), - [sym_block_comment] = ACTIONS(3), - }, - [138] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1224), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [139] = { + [124] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1297), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1319), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32186,265 +30596,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1311), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [125] = { + [ts_builtin_sym_end] = ACTIONS(632), + [sym_identifier] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(632), + [anon_sym_macro_rules_BANG] = ACTIONS(632), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_u8] = ACTIONS(634), + [anon_sym_i8] = ACTIONS(634), + [anon_sym_u16] = ACTIONS(634), + [anon_sym_i16] = ACTIONS(634), + [anon_sym_u32] = ACTIONS(634), + [anon_sym_i32] = ACTIONS(634), + [anon_sym_u64] = ACTIONS(634), + [anon_sym_i64] = ACTIONS(634), + [anon_sym_u128] = ACTIONS(634), + [anon_sym_i128] = ACTIONS(634), + [anon_sym_isize] = ACTIONS(634), + [anon_sym_usize] = ACTIONS(634), + [anon_sym_f32] = ACTIONS(634), + [anon_sym_f64] = ACTIONS(634), + [anon_sym_bool] = ACTIONS(634), + [anon_sym_str] = ACTIONS(634), + [anon_sym_char] = ACTIONS(634), + [anon_sym_SQUOTE] = ACTIONS(634), + [anon_sym_as] = ACTIONS(634), + [anon_sym_async] = ACTIONS(634), + [anon_sym_break] = ACTIONS(634), + [anon_sym_const] = ACTIONS(634), + [anon_sym_continue] = ACTIONS(634), + [anon_sym_default] = ACTIONS(634), + [anon_sym_enum] = ACTIONS(634), + [anon_sym_fn] = ACTIONS(634), + [anon_sym_for] = ACTIONS(634), + [anon_sym_if] = ACTIONS(634), + [anon_sym_impl] = ACTIONS(634), + [anon_sym_let] = ACTIONS(634), + [anon_sym_loop] = ACTIONS(634), + [anon_sym_match] = ACTIONS(634), + [anon_sym_mod] = ACTIONS(634), + [anon_sym_pub] = ACTIONS(634), + [anon_sym_return] = ACTIONS(634), + [anon_sym_static] = ACTIONS(634), + [anon_sym_struct] = ACTIONS(634), + [anon_sym_trait] = ACTIONS(634), + [anon_sym_type] = ACTIONS(634), + [anon_sym_union] = ACTIONS(634), + [anon_sym_unsafe] = ACTIONS(634), + [anon_sym_use] = ACTIONS(634), + [anon_sym_while] = ACTIONS(634), + [anon_sym_POUND] = ACTIONS(632), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_EQ] = ACTIONS(634), + [anon_sym_extern] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(634), + [anon_sym_COLON_COLON] = ACTIONS(632), + [anon_sym_AMP] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(632), + [anon_sym_DOT_DOT] = ACTIONS(634), + [anon_sym_DOT_DOT_EQ] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_AMP_AMP] = ACTIONS(632), + [anon_sym_PIPE_PIPE] = ACTIONS(632), + [anon_sym_PIPE] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_EQ_EQ] = ACTIONS(632), + [anon_sym_BANG_EQ] = ACTIONS(632), + [anon_sym_LT_EQ] = ACTIONS(632), + [anon_sym_GT_EQ] = ACTIONS(632), + [anon_sym_LT_LT] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(634), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(634), + [anon_sym_PLUS_EQ] = ACTIONS(632), + [anon_sym_DASH_EQ] = ACTIONS(632), + [anon_sym_STAR_EQ] = ACTIONS(632), + [anon_sym_SLASH_EQ] = ACTIONS(632), + [anon_sym_PERCENT_EQ] = ACTIONS(632), + [anon_sym_AMP_EQ] = ACTIONS(632), + [anon_sym_PIPE_EQ] = ACTIONS(632), + [anon_sym_CARET_EQ] = ACTIONS(632), + [anon_sym_LT_LT_EQ] = ACTIONS(632), + [anon_sym_GT_GT_EQ] = ACTIONS(632), + [anon_sym_yield] = ACTIONS(634), + [anon_sym_move] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(634), + [sym_integer_literal] = ACTIONS(632), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(634), + [sym_super] = ACTIONS(634), + [sym_crate] = ACTIONS(634), + [sym_metavariable] = ACTIONS(632), + [sym_raw_string_literal] = ACTIONS(632), + [sym_float_literal] = ACTIONS(632), [sym_block_comment] = ACTIONS(3), }, - [141] = { + [126] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1305), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [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_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [142] = { + [127] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1317), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1325), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32504,53 +30914,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [143] = { + [128] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1220), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32590,8 +31000,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -32610,268 +31020,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1313), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [145] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1306), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(235), - [sym_if_let_expression] = STATE(235), - [sym_match_expression] = STATE(235), - [sym_while_expression] = STATE(235), - [sym_while_let_expression] = STATE(235), - [sym_loop_expression] = STATE(235), - [sym_for_expression] = STATE(235), - [sym_const_block] = STATE(235), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2555), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(235), - [sym_async_block] = STATE(235), - [sym_block] = STATE(235), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(594), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(596), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(600), - [anon_sym_if] = ACTIONS(602), - [anon_sym_loop] = ACTIONS(604), - [anon_sym_match] = ACTIONS(606), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [146] = { + [129] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1264), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(235), - [sym_if_let_expression] = STATE(235), - [sym_match_expression] = STATE(235), - [sym_while_expression] = STATE(235), - [sym_while_let_expression] = STATE(235), - [sym_loop_expression] = STATE(235), - [sym_for_expression] = STATE(235), - [sym_const_block] = STATE(235), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1250), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(256), + [sym_if_let_expression] = STATE(256), + [sym_match_expression] = STATE(256), + [sym_while_expression] = STATE(256), + [sym_while_let_expression] = STATE(256), + [sym_loop_expression] = STATE(256), + [sym_for_expression] = STATE(256), + [sym_const_block] = STATE(256), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2555), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(235), - [sym_async_block] = STATE(235), - [sym_block] = STATE(235), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(256), + [sym_async_block] = STATE(256), + [sym_block] = STATE(256), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(582), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -32892,19 +31090,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(596), + [anon_sym_async] = ACTIONS(584), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(598), + [anon_sym_const] = ACTIONS(586), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(600), - [anon_sym_if] = ACTIONS(602), - [anon_sym_loop] = ACTIONS(604), - [anon_sym_match] = ACTIONS(606), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(594), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_while] = ACTIONS(598), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -32928,7 +31126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [147] = { + [130] = { [ts_builtin_sym_end] = ACTIONS(636), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(636), @@ -33034,57 +31232,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(636), [sym_block_comment] = ACTIONS(3), }, - [148] = { + [131] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1318), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [132] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1328), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(256), + [sym_if_let_expression] = STATE(256), + [sym_match_expression] = STATE(256), + [sym_while_expression] = STATE(256), + [sym_while_let_expression] = STATE(256), + [sym_loop_expression] = STATE(256), + [sym_for_expression] = STATE(256), + [sym_const_block] = STATE(256), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2555), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(256), + [sym_async_block] = STATE(256), + [sym_block] = STATE(256), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -33104,19 +31408,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(584), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(586), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(594), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_while] = ACTIONS(598), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -33140,159 +31444,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [ts_builtin_sym_end] = ACTIONS(640), - [sym_identifier] = ACTIONS(642), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_macro_rules_BANG] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(640), - [anon_sym_PLUS] = ACTIONS(642), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(642), - [anon_sym_i8] = ACTIONS(642), - [anon_sym_u16] = ACTIONS(642), - [anon_sym_i16] = ACTIONS(642), - [anon_sym_u32] = ACTIONS(642), - [anon_sym_i32] = ACTIONS(642), - [anon_sym_u64] = ACTIONS(642), - [anon_sym_i64] = ACTIONS(642), - [anon_sym_u128] = ACTIONS(642), - [anon_sym_i128] = ACTIONS(642), - [anon_sym_isize] = ACTIONS(642), - [anon_sym_usize] = ACTIONS(642), - [anon_sym_f32] = ACTIONS(642), - [anon_sym_f64] = ACTIONS(642), - [anon_sym_bool] = ACTIONS(642), - [anon_sym_str] = ACTIONS(642), - [anon_sym_char] = ACTIONS(642), - [anon_sym_SQUOTE] = ACTIONS(642), - [anon_sym_as] = ACTIONS(642), - [anon_sym_async] = ACTIONS(642), - [anon_sym_break] = ACTIONS(642), - [anon_sym_const] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), - [anon_sym_enum] = ACTIONS(642), - [anon_sym_fn] = ACTIONS(642), - [anon_sym_for] = ACTIONS(642), - [anon_sym_if] = ACTIONS(642), - [anon_sym_impl] = ACTIONS(642), - [anon_sym_let] = ACTIONS(642), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(642), - [anon_sym_mod] = ACTIONS(642), - [anon_sym_pub] = ACTIONS(642), - [anon_sym_return] = ACTIONS(642), - [anon_sym_static] = ACTIONS(642), - [anon_sym_struct] = ACTIONS(642), - [anon_sym_trait] = ACTIONS(642), - [anon_sym_type] = ACTIONS(642), - [anon_sym_union] = ACTIONS(642), - [anon_sym_unsafe] = ACTIONS(642), - [anon_sym_use] = ACTIONS(642), - [anon_sym_while] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(642), - [anon_sym_EQ] = ACTIONS(642), - [anon_sym_extern] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(642), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(642), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_CARET] = ACTIONS(642), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(642), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(642), - [anon_sym_move] = ACTIONS(642), - [anon_sym_DOT] = ACTIONS(642), - [sym_integer_literal] = ACTIONS(640), - [aux_sym_string_literal_token1] = ACTIONS(640), - [sym_char_literal] = ACTIONS(640), - [anon_sym_true] = ACTIONS(642), - [anon_sym_false] = ACTIONS(642), + [133] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1240), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(642), - [sym_super] = ACTIONS(642), - [sym_crate] = ACTIONS(642), - [sym_metavariable] = ACTIONS(640), - [sym_raw_string_literal] = ACTIONS(640), - [sym_float_literal] = ACTIONS(640), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [150] = { + [134] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1271), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33332,8 +31636,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -33352,53 +31656,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [151] = { + [135] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1250), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1283), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33438,8 +31742,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -33458,159 +31762,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1170), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [153] = { + [136] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1224), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33650,8 +31848,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -33670,53 +31868,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [154] = { + [137] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1166), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1180), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33757,7 +31955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33776,53 +31974,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [155] = { + [138] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1171), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1179), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33863,7 +32061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33882,159 +32080,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [156] = { + [139] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1165), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [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_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [157] = { + [140] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1160), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1301), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34075,7 +32273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -34094,431 +32292,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1157), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [141] = { + [ts_builtin_sym_end] = ACTIONS(640), + [sym_identifier] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_macro_rules_BANG] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(640), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(642), + [anon_sym_i8] = ACTIONS(642), + [anon_sym_u16] = ACTIONS(642), + [anon_sym_i16] = ACTIONS(642), + [anon_sym_u32] = ACTIONS(642), + [anon_sym_i32] = ACTIONS(642), + [anon_sym_u64] = ACTIONS(642), + [anon_sym_i64] = ACTIONS(642), + [anon_sym_u128] = ACTIONS(642), + [anon_sym_i128] = ACTIONS(642), + [anon_sym_isize] = ACTIONS(642), + [anon_sym_usize] = ACTIONS(642), + [anon_sym_f32] = ACTIONS(642), + [anon_sym_f64] = ACTIONS(642), + [anon_sym_bool] = ACTIONS(642), + [anon_sym_str] = ACTIONS(642), + [anon_sym_char] = ACTIONS(642), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_as] = ACTIONS(642), + [anon_sym_async] = ACTIONS(642), + [anon_sym_break] = ACTIONS(642), + [anon_sym_const] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_enum] = ACTIONS(642), + [anon_sym_fn] = ACTIONS(642), + [anon_sym_for] = ACTIONS(642), + [anon_sym_if] = ACTIONS(642), + [anon_sym_impl] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(642), + [anon_sym_mod] = ACTIONS(642), + [anon_sym_pub] = ACTIONS(642), + [anon_sym_return] = ACTIONS(642), + [anon_sym_static] = ACTIONS(642), + [anon_sym_struct] = ACTIONS(642), + [anon_sym_trait] = ACTIONS(642), + [anon_sym_type] = ACTIONS(642), + [anon_sym_union] = ACTIONS(642), + [anon_sym_unsafe] = ACTIONS(642), + [anon_sym_use] = ACTIONS(642), + [anon_sym_while] = ACTIONS(642), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_extern] = ACTIONS(642), + [anon_sym_LT] = ACTIONS(642), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT] = ACTIONS(642), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_yield] = ACTIONS(642), + [anon_sym_move] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [sym_integer_literal] = ACTIONS(640), + [aux_sym_string_literal_token1] = ACTIONS(640), + [sym_char_literal] = ACTIONS(640), + [anon_sym_true] = ACTIONS(642), + [anon_sym_false] = ACTIONS(642), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(642), + [sym_super] = ACTIONS(642), + [sym_crate] = ACTIONS(642), + [sym_metavariable] = ACTIONS(640), + [sym_raw_string_literal] = ACTIONS(640), + [sym_float_literal] = ACTIONS(640), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1312), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [160] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1229), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [161] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1124), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [162] = { + [142] = { [ts_builtin_sym_end] = ACTIONS(644), [sym_identifier] = ACTIONS(646), [anon_sym_SEMI] = ACTIONS(644), @@ -34624,113 +32504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(644), [sym_block_comment] = ACTIONS(3), }, - [163] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [164] = { + [143] = { [ts_builtin_sym_end] = ACTIONS(648), [sym_identifier] = ACTIONS(650), [anon_sym_SEMI] = ACTIONS(648), @@ -34836,583 +32610,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(648), [sym_block_comment] = ACTIONS(3), }, - [165] = { + [144] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1236), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1318), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [166] = { + [145] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1124), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1172), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [167] = { - [ts_builtin_sym_end] = ACTIONS(652), - [sym_identifier] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_macro_rules_BANG] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(654), - [anon_sym_i8] = ACTIONS(654), - [anon_sym_u16] = ACTIONS(654), - [anon_sym_i16] = ACTIONS(654), - [anon_sym_u32] = ACTIONS(654), - [anon_sym_i32] = ACTIONS(654), - [anon_sym_u64] = ACTIONS(654), - [anon_sym_i64] = ACTIONS(654), - [anon_sym_u128] = ACTIONS(654), - [anon_sym_i128] = ACTIONS(654), - [anon_sym_isize] = ACTIONS(654), - [anon_sym_usize] = ACTIONS(654), - [anon_sym_f32] = ACTIONS(654), - [anon_sym_f64] = ACTIONS(654), - [anon_sym_bool] = ACTIONS(654), - [anon_sym_str] = ACTIONS(654), - [anon_sym_char] = ACTIONS(654), - [anon_sym_SQUOTE] = ACTIONS(654), - [anon_sym_as] = ACTIONS(654), - [anon_sym_async] = ACTIONS(654), - [anon_sym_break] = ACTIONS(654), - [anon_sym_const] = ACTIONS(654), - [anon_sym_continue] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_enum] = ACTIONS(654), - [anon_sym_fn] = ACTIONS(654), - [anon_sym_for] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_impl] = ACTIONS(654), - [anon_sym_let] = ACTIONS(654), - [anon_sym_loop] = ACTIONS(654), - [anon_sym_match] = ACTIONS(654), - [anon_sym_mod] = ACTIONS(654), - [anon_sym_pub] = ACTIONS(654), - [anon_sym_return] = ACTIONS(654), - [anon_sym_static] = ACTIONS(654), - [anon_sym_struct] = ACTIONS(654), - [anon_sym_trait] = ACTIONS(654), - [anon_sym_type] = ACTIONS(654), - [anon_sym_union] = ACTIONS(654), - [anon_sym_unsafe] = ACTIONS(654), - [anon_sym_use] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_POUND] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_extern] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_COLON_COLON] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(652), - [anon_sym_DOT_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT_EQ] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_SLASH_EQ] = ACTIONS(652), - [anon_sym_PERCENT_EQ] = ACTIONS(652), - [anon_sym_AMP_EQ] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(652), - [anon_sym_LT_LT_EQ] = ACTIONS(652), - [anon_sym_GT_GT_EQ] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_move] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(654), - [sym_integer_literal] = ACTIONS(652), - [aux_sym_string_literal_token1] = ACTIONS(652), - [sym_char_literal] = ACTIONS(652), - [anon_sym_true] = ACTIONS(654), - [anon_sym_false] = ACTIONS(654), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(654), - [sym_super] = ACTIONS(654), - [sym_crate] = ACTIONS(654), - [sym_metavariable] = ACTIONS(652), - [sym_raw_string_literal] = ACTIONS(652), - [sym_float_literal] = ACTIONS(652), - [sym_block_comment] = ACTIONS(3), - }, - [168] = { + [146] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1228), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [ts_builtin_sym_end] = ACTIONS(656), - [sym_identifier] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(656), - [anon_sym_macro_rules_BANG] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(658), - [anon_sym_i8] = ACTIONS(658), - [anon_sym_u16] = ACTIONS(658), - [anon_sym_i16] = ACTIONS(658), - [anon_sym_u32] = ACTIONS(658), - [anon_sym_i32] = ACTIONS(658), - [anon_sym_u64] = ACTIONS(658), - [anon_sym_i64] = ACTIONS(658), - [anon_sym_u128] = ACTIONS(658), - [anon_sym_i128] = ACTIONS(658), - [anon_sym_isize] = ACTIONS(658), - [anon_sym_usize] = ACTIONS(658), - [anon_sym_f32] = ACTIONS(658), - [anon_sym_f64] = ACTIONS(658), - [anon_sym_bool] = ACTIONS(658), - [anon_sym_str] = ACTIONS(658), - [anon_sym_char] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_as] = ACTIONS(658), - [anon_sym_async] = ACTIONS(658), - [anon_sym_break] = ACTIONS(658), - [anon_sym_const] = ACTIONS(658), - [anon_sym_continue] = ACTIONS(658), - [anon_sym_default] = ACTIONS(658), - [anon_sym_enum] = ACTIONS(658), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(658), - [anon_sym_if] = ACTIONS(658), - [anon_sym_impl] = ACTIONS(658), - [anon_sym_let] = ACTIONS(658), - [anon_sym_loop] = ACTIONS(658), - [anon_sym_match] = ACTIONS(658), - [anon_sym_mod] = ACTIONS(658), - [anon_sym_pub] = ACTIONS(658), - [anon_sym_return] = ACTIONS(658), - [anon_sym_static] = ACTIONS(658), - [anon_sym_struct] = ACTIONS(658), - [anon_sym_trait] = ACTIONS(658), - [anon_sym_type] = ACTIONS(658), - [anon_sym_union] = ACTIONS(658), - [anon_sym_unsafe] = ACTIONS(658), - [anon_sym_use] = ACTIONS(658), - [anon_sym_while] = ACTIONS(658), - [anon_sym_POUND] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_EQ] = ACTIONS(658), - [anon_sym_extern] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_COLON_COLON] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(656), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_AMP_AMP] = ACTIONS(656), - [anon_sym_PIPE_PIPE] = ACTIONS(656), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(656), - [anon_sym_BANG_EQ] = ACTIONS(656), - [anon_sym_LT_EQ] = ACTIONS(656), - [anon_sym_GT_EQ] = ACTIONS(656), - [anon_sym_LT_LT] = ACTIONS(658), - [anon_sym_GT_GT] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_PERCENT] = ACTIONS(658), - [anon_sym_PLUS_EQ] = ACTIONS(656), - [anon_sym_DASH_EQ] = ACTIONS(656), - [anon_sym_STAR_EQ] = ACTIONS(656), - [anon_sym_SLASH_EQ] = ACTIONS(656), - [anon_sym_PERCENT_EQ] = ACTIONS(656), - [anon_sym_AMP_EQ] = ACTIONS(656), - [anon_sym_PIPE_EQ] = ACTIONS(656), - [anon_sym_CARET_EQ] = ACTIONS(656), - [anon_sym_LT_LT_EQ] = ACTIONS(656), - [anon_sym_GT_GT_EQ] = ACTIONS(656), - [anon_sym_yield] = ACTIONS(658), - [anon_sym_move] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(658), - [sym_integer_literal] = ACTIONS(656), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(656), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(658), - [sym_super] = ACTIONS(658), - [sym_crate] = ACTIONS(658), - [sym_metavariable] = ACTIONS(656), - [sym_raw_string_literal] = ACTIONS(656), - [sym_float_literal] = ACTIONS(656), - [sym_block_comment] = ACTIONS(3), - }, - [170] = { + [147] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1307), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1298), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35472,56 +33034,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [171] = { + [148] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1273), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(242), - [sym_if_let_expression] = STATE(242), - [sym_match_expression] = STATE(242), - [sym_while_expression] = STATE(242), - [sym_while_let_expression] = STATE(242), - [sym_loop_expression] = STATE(242), - [sym_for_expression] = STATE(242), - [sym_const_block] = STATE(242), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), - [sym_loop_label] = STATE(2555), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(242), - [sym_async_block] = STATE(242), - [sym_block] = STATE(242), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1332), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -35542,19 +33104,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(596), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(598), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(600), - [anon_sym_if] = ACTIONS(602), - [anon_sym_loop] = ACTIONS(604), - [anon_sym_match] = ACTIONS(606), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -35578,159 +33140,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [172] = { - [ts_builtin_sym_end] = ACTIONS(660), - [sym_identifier] = ACTIONS(662), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_macro_rules_BANG] = ACTIONS(660), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_RBRACE] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(660), - [anon_sym_u8] = ACTIONS(662), - [anon_sym_i8] = ACTIONS(662), - [anon_sym_u16] = ACTIONS(662), - [anon_sym_i16] = ACTIONS(662), - [anon_sym_u32] = ACTIONS(662), - [anon_sym_i32] = ACTIONS(662), - [anon_sym_u64] = ACTIONS(662), - [anon_sym_i64] = ACTIONS(662), - [anon_sym_u128] = ACTIONS(662), - [anon_sym_i128] = ACTIONS(662), - [anon_sym_isize] = ACTIONS(662), - [anon_sym_usize] = ACTIONS(662), - [anon_sym_f32] = ACTIONS(662), - [anon_sym_f64] = ACTIONS(662), - [anon_sym_bool] = ACTIONS(662), - [anon_sym_str] = ACTIONS(662), - [anon_sym_char] = ACTIONS(662), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_as] = ACTIONS(662), - [anon_sym_async] = ACTIONS(662), - [anon_sym_break] = ACTIONS(662), - [anon_sym_const] = ACTIONS(662), - [anon_sym_continue] = ACTIONS(662), - [anon_sym_default] = ACTIONS(662), - [anon_sym_enum] = ACTIONS(662), - [anon_sym_fn] = ACTIONS(662), - [anon_sym_for] = ACTIONS(662), - [anon_sym_if] = ACTIONS(662), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_let] = ACTIONS(662), - [anon_sym_loop] = ACTIONS(662), - [anon_sym_match] = ACTIONS(662), - [anon_sym_mod] = ACTIONS(662), - [anon_sym_pub] = ACTIONS(662), - [anon_sym_return] = ACTIONS(662), - [anon_sym_static] = ACTIONS(662), - [anon_sym_struct] = ACTIONS(662), - [anon_sym_trait] = ACTIONS(662), - [anon_sym_type] = ACTIONS(662), - [anon_sym_union] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(662), - [anon_sym_use] = ACTIONS(662), - [anon_sym_while] = ACTIONS(662), - [anon_sym_POUND] = ACTIONS(660), - [anon_sym_BANG] = ACTIONS(662), - [anon_sym_EQ] = ACTIONS(662), - [anon_sym_extern] = ACTIONS(662), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_COLON_COLON] = ACTIONS(660), - [anon_sym_AMP] = ACTIONS(662), - [anon_sym_DOT_DOT_DOT] = ACTIONS(660), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_DOT_DOT_EQ] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(660), - [anon_sym_PIPE_PIPE] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(662), - [anon_sym_CARET] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(660), - [anon_sym_LT_LT] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_SLASH] = ACTIONS(662), - [anon_sym_PERCENT] = ACTIONS(662), - [anon_sym_PLUS_EQ] = ACTIONS(660), - [anon_sym_DASH_EQ] = ACTIONS(660), - [anon_sym_STAR_EQ] = ACTIONS(660), - [anon_sym_SLASH_EQ] = ACTIONS(660), - [anon_sym_PERCENT_EQ] = ACTIONS(660), - [anon_sym_AMP_EQ] = ACTIONS(660), - [anon_sym_PIPE_EQ] = ACTIONS(660), - [anon_sym_CARET_EQ] = ACTIONS(660), - [anon_sym_LT_LT_EQ] = ACTIONS(660), - [anon_sym_GT_GT_EQ] = ACTIONS(660), - [anon_sym_yield] = ACTIONS(662), - [anon_sym_move] = ACTIONS(662), - [anon_sym_DOT] = ACTIONS(662), - [sym_integer_literal] = ACTIONS(660), - [aux_sym_string_literal_token1] = ACTIONS(660), - [sym_char_literal] = ACTIONS(660), - [anon_sym_true] = ACTIONS(662), - [anon_sym_false] = ACTIONS(662), + [149] = { + [ts_builtin_sym_end] = ACTIONS(652), + [sym_identifier] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_macro_rules_BANG] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_QMARK] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(654), + [anon_sym_as] = ACTIONS(654), + [anon_sym_async] = ACTIONS(654), + [anon_sym_break] = ACTIONS(654), + [anon_sym_const] = ACTIONS(654), + [anon_sym_continue] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_enum] = ACTIONS(654), + [anon_sym_fn] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_impl] = ACTIONS(654), + [anon_sym_let] = ACTIONS(654), + [anon_sym_loop] = ACTIONS(654), + [anon_sym_match] = ACTIONS(654), + [anon_sym_mod] = ACTIONS(654), + [anon_sym_pub] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_static] = ACTIONS(654), + [anon_sym_struct] = ACTIONS(654), + [anon_sym_trait] = ACTIONS(654), + [anon_sym_type] = ACTIONS(654), + [anon_sym_union] = ACTIONS(654), + [anon_sym_unsafe] = ACTIONS(654), + [anon_sym_use] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_extern] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_EQ] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_AMP_AMP] = ACTIONS(652), + [anon_sym_PIPE_PIPE] = ACTIONS(652), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_LT_EQ] = ACTIONS(652), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(652), + [anon_sym_DASH_EQ] = ACTIONS(652), + [anon_sym_STAR_EQ] = ACTIONS(652), + [anon_sym_SLASH_EQ] = ACTIONS(652), + [anon_sym_PERCENT_EQ] = ACTIONS(652), + [anon_sym_AMP_EQ] = ACTIONS(652), + [anon_sym_PIPE_EQ] = ACTIONS(652), + [anon_sym_CARET_EQ] = ACTIONS(652), + [anon_sym_LT_LT_EQ] = ACTIONS(652), + [anon_sym_GT_GT_EQ] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(654), + [anon_sym_move] = ACTIONS(654), + [anon_sym_DOT] = ACTIONS(654), + [sym_integer_literal] = ACTIONS(652), + [aux_sym_string_literal_token1] = ACTIONS(652), + [sym_char_literal] = ACTIONS(652), + [anon_sym_true] = ACTIONS(654), + [anon_sym_false] = ACTIONS(654), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(662), - [sym_super] = ACTIONS(662), - [sym_crate] = ACTIONS(662), - [sym_metavariable] = ACTIONS(660), - [sym_raw_string_literal] = ACTIONS(660), - [sym_float_literal] = ACTIONS(660), + [sym_self] = ACTIONS(654), + [sym_super] = ACTIONS(654), + [sym_crate] = ACTIONS(654), + [sym_metavariable] = ACTIONS(652), + [sym_raw_string_literal] = ACTIONS(652), + [sym_float_literal] = ACTIONS(652), [sym_block_comment] = ACTIONS(3), }, - [173] = { + [150] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1290), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1164), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35771,7 +33333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -35790,53 +33352,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [174] = { + [151] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1254), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35876,8 +33438,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -35896,53 +33458,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [175] = { + [152] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1170), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [153] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1292), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [154] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1258), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35982,8 +33756,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -36002,53 +33776,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [176] = { + [155] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1923), - [sym__expression_except_range] = STATE(800), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), [sym__expression] = STATE(1158), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(52), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36089,7 +33863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -36108,13 +33882,649 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [177] = { - [ts_builtin_sym_end] = ACTIONS(664), - [sym_identifier] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(664), - [anon_sym_macro_rules_BANG] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(664), + [156] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [157] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1176), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [158] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [159] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1284), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [160] = { + [ts_builtin_sym_end] = ACTIONS(656), + [sym_identifier] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(656), + [anon_sym_macro_rules_BANG] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_u8] = ACTIONS(658), + [anon_sym_i8] = ACTIONS(658), + [anon_sym_u16] = ACTIONS(658), + [anon_sym_i16] = ACTIONS(658), + [anon_sym_u32] = ACTIONS(658), + [anon_sym_i32] = ACTIONS(658), + [anon_sym_u64] = ACTIONS(658), + [anon_sym_i64] = ACTIONS(658), + [anon_sym_u128] = ACTIONS(658), + [anon_sym_i128] = ACTIONS(658), + [anon_sym_isize] = ACTIONS(658), + [anon_sym_usize] = ACTIONS(658), + [anon_sym_f32] = ACTIONS(658), + [anon_sym_f64] = ACTIONS(658), + [anon_sym_bool] = ACTIONS(658), + [anon_sym_str] = ACTIONS(658), + [anon_sym_char] = ACTIONS(658), + [anon_sym_SQUOTE] = ACTIONS(658), + [anon_sym_as] = ACTIONS(658), + [anon_sym_async] = ACTIONS(658), + [anon_sym_break] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_continue] = ACTIONS(658), + [anon_sym_default] = ACTIONS(658), + [anon_sym_enum] = ACTIONS(658), + [anon_sym_fn] = ACTIONS(658), + [anon_sym_for] = ACTIONS(658), + [anon_sym_if] = ACTIONS(658), + [anon_sym_impl] = ACTIONS(658), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(658), + [anon_sym_match] = ACTIONS(658), + [anon_sym_mod] = ACTIONS(658), + [anon_sym_pub] = ACTIONS(658), + [anon_sym_return] = ACTIONS(658), + [anon_sym_static] = ACTIONS(658), + [anon_sym_struct] = ACTIONS(658), + [anon_sym_trait] = ACTIONS(658), + [anon_sym_type] = ACTIONS(658), + [anon_sym_union] = ACTIONS(658), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_use] = ACTIONS(658), + [anon_sym_while] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(656), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_extern] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_COLON_COLON] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_PERCENT] = ACTIONS(658), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_yield] = ACTIONS(658), + [anon_sym_move] = ACTIONS(658), + [anon_sym_DOT] = ACTIONS(658), + [sym_integer_literal] = ACTIONS(656), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(656), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(658), + [sym_super] = ACTIONS(658), + [sym_crate] = ACTIONS(658), + [sym_metavariable] = ACTIONS(656), + [sym_raw_string_literal] = ACTIONS(656), + [sym_float_literal] = ACTIONS(656), + [sym_block_comment] = ACTIONS(3), + }, + [161] = { + [ts_builtin_sym_end] = ACTIONS(660), + [sym_identifier] = ACTIONS(662), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_macro_rules_BANG] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_LBRACE] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_QMARK] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(662), + [anon_sym_i8] = ACTIONS(662), + [anon_sym_u16] = ACTIONS(662), + [anon_sym_i16] = ACTIONS(662), + [anon_sym_u32] = ACTIONS(662), + [anon_sym_i32] = ACTIONS(662), + [anon_sym_u64] = ACTIONS(662), + [anon_sym_i64] = ACTIONS(662), + [anon_sym_u128] = ACTIONS(662), + [anon_sym_i128] = ACTIONS(662), + [anon_sym_isize] = ACTIONS(662), + [anon_sym_usize] = ACTIONS(662), + [anon_sym_f32] = ACTIONS(662), + [anon_sym_f64] = ACTIONS(662), + [anon_sym_bool] = ACTIONS(662), + [anon_sym_str] = ACTIONS(662), + [anon_sym_char] = ACTIONS(662), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_as] = ACTIONS(662), + [anon_sym_async] = ACTIONS(662), + [anon_sym_break] = ACTIONS(662), + [anon_sym_const] = ACTIONS(662), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_default] = ACTIONS(662), + [anon_sym_enum] = ACTIONS(662), + [anon_sym_fn] = ACTIONS(662), + [anon_sym_for] = ACTIONS(662), + [anon_sym_if] = ACTIONS(662), + [anon_sym_impl] = ACTIONS(662), + [anon_sym_let] = ACTIONS(662), + [anon_sym_loop] = ACTIONS(662), + [anon_sym_match] = ACTIONS(662), + [anon_sym_mod] = ACTIONS(662), + [anon_sym_pub] = ACTIONS(662), + [anon_sym_return] = ACTIONS(662), + [anon_sym_static] = ACTIONS(662), + [anon_sym_struct] = ACTIONS(662), + [anon_sym_trait] = ACTIONS(662), + [anon_sym_type] = ACTIONS(662), + [anon_sym_union] = ACTIONS(662), + [anon_sym_unsafe] = ACTIONS(662), + [anon_sym_use] = ACTIONS(662), + [anon_sym_while] = ACTIONS(662), + [anon_sym_POUND] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_EQ] = ACTIONS(662), + [anon_sym_extern] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(662), + [anon_sym_GT] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(660), + [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT_EQ] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(662), + [anon_sym_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ] = ACTIONS(660), + [anon_sym_LT_EQ] = ACTIONS(660), + [anon_sym_GT_EQ] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(662), + [anon_sym_SLASH] = ACTIONS(662), + [anon_sym_PERCENT] = ACTIONS(662), + [anon_sym_PLUS_EQ] = ACTIONS(660), + [anon_sym_DASH_EQ] = ACTIONS(660), + [anon_sym_STAR_EQ] = ACTIONS(660), + [anon_sym_SLASH_EQ] = ACTIONS(660), + [anon_sym_PERCENT_EQ] = ACTIONS(660), + [anon_sym_AMP_EQ] = ACTIONS(660), + [anon_sym_PIPE_EQ] = ACTIONS(660), + [anon_sym_CARET_EQ] = ACTIONS(660), + [anon_sym_LT_LT_EQ] = ACTIONS(660), + [anon_sym_GT_GT_EQ] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(662), + [anon_sym_move] = ACTIONS(662), + [anon_sym_DOT] = ACTIONS(662), + [sym_integer_literal] = ACTIONS(660), + [aux_sym_string_literal_token1] = ACTIONS(660), + [sym_char_literal] = ACTIONS(660), + [anon_sym_true] = ACTIONS(662), + [anon_sym_false] = ACTIONS(662), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(662), + [sym_super] = ACTIONS(662), + [sym_crate] = ACTIONS(662), + [sym_metavariable] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(660), + [sym_float_literal] = ACTIONS(660), + [sym_block_comment] = ACTIONS(3), + }, + [162] = { + [ts_builtin_sym_end] = ACTIONS(664), + [sym_identifier] = ACTIONS(666), + [anon_sym_SEMI] = ACTIONS(664), + [anon_sym_macro_rules_BANG] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(664), [anon_sym_RBRACE] = ACTIONS(664), [anon_sym_LBRACK] = ACTIONS(664), [anon_sym_PLUS] = ACTIONS(666), @@ -36214,7 +34624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(664), [sym_block_comment] = ACTIONS(3), }, - [178] = { + [163] = { [ts_builtin_sym_end] = ACTIONS(668), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(668), @@ -36320,219 +34730,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(668), [sym_block_comment] = ACTIONS(3), }, - [179] = { + [164] = { [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1274), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1178), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [180] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(800), - [sym_generic_type_with_turbofish] = STATE(1980), - [sym__expression_except_range] = STATE(800), - [sym__expression] = STATE(1232), - [sym_macro_invocation] = STATE(800), - [sym_scoped_identifier] = STATE(1206), - [sym_scoped_type_identifier_in_expression_position] = STATE(2251), - [sym_range_expression] = STATE(1062), - [sym_unary_expression] = STATE(800), - [sym_try_expression] = STATE(800), - [sym_reference_expression] = STATE(800), - [sym_binary_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_compound_assignment_expr] = STATE(800), - [sym_type_cast_expression] = STATE(800), - [sym_return_expression] = STATE(800), - [sym_yield_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_array_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_tuple_expression] = STATE(800), - [sym_unit_expression] = STATE(800), - [sym_struct_expression] = STATE(800), - [sym_if_expression] = STATE(800), - [sym_if_let_expression] = STATE(800), - [sym_match_expression] = STATE(800), - [sym_while_expression] = STATE(800), - [sym_while_let_expression] = STATE(800), - [sym_loop_expression] = STATE(800), - [sym_for_expression] = STATE(800), - [sym_const_block] = STATE(800), - [sym_closure_expression] = STATE(800), - [sym_closure_parameters] = STATE(56), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(800), - [sym_continue_expression] = STATE(800), - [sym_index_expression] = STATE(800), - [sym_await_expression] = STATE(800), - [sym_field_expression] = STATE(803), - [sym_unsafe_block] = STATE(800), - [sym_async_block] = STATE(800), - [sym_block] = STATE(800), - [sym__literal] = STATE(800), - [sym_string_literal] = STATE(1068), - [sym_boolean_literal] = STATE(1068), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [181] = { + [165] = { [ts_builtin_sym_end] = ACTIONS(672), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(672), @@ -36638,7 +34942,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(672), [sym_block_comment] = ACTIONS(3), }, - [182] = { + [166] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [167] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1225), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [168] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1159), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [169] = { [ts_builtin_sym_end] = ACTIONS(676), [sym_identifier] = ACTIONS(678), [anon_sym_SEMI] = ACTIONS(676), @@ -36744,258 +35366,2166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(676), [sym_block_comment] = ACTIONS(3), }, - [183] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_macro_rules_BANG] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_u8] = ACTIONS(634), - [anon_sym_i8] = ACTIONS(634), - [anon_sym_u16] = ACTIONS(634), - [anon_sym_i16] = ACTIONS(634), - [anon_sym_u32] = ACTIONS(634), - [anon_sym_i32] = ACTIONS(634), - [anon_sym_u64] = ACTIONS(634), - [anon_sym_i64] = ACTIONS(634), - [anon_sym_u128] = ACTIONS(634), - [anon_sym_i128] = ACTIONS(634), - [anon_sym_isize] = ACTIONS(634), - [anon_sym_usize] = ACTIONS(634), - [anon_sym_f32] = ACTIONS(634), - [anon_sym_f64] = ACTIONS(634), - [anon_sym_bool] = ACTIONS(634), - [anon_sym_str] = ACTIONS(634), - [anon_sym_char] = ACTIONS(634), - [anon_sym_SQUOTE] = ACTIONS(634), - [anon_sym_as] = ACTIONS(562), - [anon_sym_async] = ACTIONS(634), - [anon_sym_break] = ACTIONS(634), - [anon_sym_const] = ACTIONS(634), - [anon_sym_continue] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(634), - [anon_sym_fn] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_impl] = ACTIONS(634), - [anon_sym_let] = ACTIONS(634), - [anon_sym_loop] = ACTIONS(634), - [anon_sym_match] = ACTIONS(634), - [anon_sym_mod] = ACTIONS(634), - [anon_sym_pub] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_static] = ACTIONS(634), - [anon_sym_struct] = ACTIONS(634), - [anon_sym_trait] = ACTIONS(634), - [anon_sym_type] = ACTIONS(634), - [anon_sym_union] = ACTIONS(634), - [anon_sym_unsafe] = ACTIONS(634), - [anon_sym_use] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(632), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_extern] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_COLON_COLON] = ACTIONS(632), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_DOT_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(562), - [anon_sym_DOT_DOT_EQ] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(562), - [anon_sym_AMP_AMP] = ACTIONS(564), - [anon_sym_PIPE_PIPE] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(562), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym_EQ_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_PLUS_EQ] = ACTIONS(564), - [anon_sym_DASH_EQ] = ACTIONS(564), - [anon_sym_STAR_EQ] = ACTIONS(564), - [anon_sym_SLASH_EQ] = ACTIONS(564), - [anon_sym_PERCENT_EQ] = ACTIONS(564), - [anon_sym_AMP_EQ] = ACTIONS(564), - [anon_sym_PIPE_EQ] = ACTIONS(564), - [anon_sym_CARET_EQ] = ACTIONS(564), - [anon_sym_LT_LT_EQ] = ACTIONS(564), - [anon_sym_GT_GT_EQ] = ACTIONS(564), - [anon_sym_yield] = ACTIONS(634), - [anon_sym_move] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(562), - [sym_integer_literal] = ACTIONS(632), - [aux_sym_string_literal_token1] = ACTIONS(632), - [sym_char_literal] = ACTIONS(632), - [anon_sym_true] = ACTIONS(634), - [anon_sym_false] = ACTIONS(634), + [170] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(634), - [sym_super] = ACTIONS(634), - [sym_crate] = ACTIONS(634), - [sym_metavariable] = ACTIONS(632), - [sym_raw_string_literal] = ACTIONS(632), - [sym_float_literal] = ACTIONS(632), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [184] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2054), - [sym_variadic_parameter] = STATE(2054), - [sym_parameter] = STATE(2054), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1854), - [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(2060), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2515), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1748), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [171] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1271), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(720), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [172] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [173] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [174] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [175] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1173), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [176] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [177] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [178] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [179] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1247), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [180] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [181] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [182] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1257), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [183] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [184] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1986), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1168), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(947), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [185] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [186] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1256), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [187] = { + [sym_bracketed_type] = STATE(2492), + [sym_generic_function] = STATE(886), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(886), + [sym__expression] = STATE(1264), + [sym_macro_invocation] = STATE(886), + [sym_scoped_identifier] = STATE(1203), + [sym_scoped_type_identifier_in_expression_position] = STATE(2245), + [sym_range_expression] = STATE(1081), + [sym_unary_expression] = STATE(886), + [sym_try_expression] = STATE(886), + [sym_reference_expression] = STATE(886), + [sym_binary_expression] = STATE(886), + [sym_assignment_expression] = STATE(886), + [sym_compound_assignment_expr] = STATE(886), + [sym_type_cast_expression] = STATE(886), + [sym_return_expression] = STATE(886), + [sym_yield_expression] = STATE(886), + [sym_call_expression] = STATE(886), + [sym_array_expression] = STATE(886), + [sym_parenthesized_expression] = STATE(886), + [sym_tuple_expression] = STATE(886), + [sym_unit_expression] = STATE(886), + [sym_struct_expression] = STATE(886), + [sym_if_expression] = STATE(886), + [sym_if_let_expression] = STATE(886), + [sym_match_expression] = STATE(886), + [sym_while_expression] = STATE(886), + [sym_while_let_expression] = STATE(886), + [sym_loop_expression] = STATE(886), + [sym_for_expression] = STATE(886), + [sym_const_block] = STATE(886), + [sym_closure_expression] = STATE(886), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2523), + [sym_break_expression] = STATE(886), + [sym_continue_expression] = STATE(886), + [sym_index_expression] = STATE(886), + [sym_await_expression] = STATE(886), + [sym_field_expression] = STATE(834), + [sym_unsafe_block] = STATE(886), + [sym_async_block] = STATE(886), + [sym_block] = STATE(886), + [sym__literal] = STATE(886), + [sym_string_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [188] = { + [sym_identifier] = ACTIONS(560), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_macro_rules_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_u8] = ACTIONS(560), + [anon_sym_i8] = ACTIONS(560), + [anon_sym_u16] = ACTIONS(560), + [anon_sym_i16] = ACTIONS(560), + [anon_sym_u32] = ACTIONS(560), + [anon_sym_i32] = ACTIONS(560), + [anon_sym_u64] = ACTIONS(560), + [anon_sym_i64] = ACTIONS(560), + [anon_sym_u128] = ACTIONS(560), + [anon_sym_i128] = ACTIONS(560), + [anon_sym_isize] = ACTIONS(560), + [anon_sym_usize] = ACTIONS(560), + [anon_sym_f32] = ACTIONS(560), + [anon_sym_f64] = ACTIONS(560), + [anon_sym_bool] = ACTIONS(560), + [anon_sym_str] = ACTIONS(560), + [anon_sym_char] = ACTIONS(560), + [anon_sym_SQUOTE] = ACTIONS(560), + [anon_sym_as] = ACTIONS(564), + [anon_sym_async] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_const] = ACTIONS(560), + [anon_sym_continue] = ACTIONS(560), + [anon_sym_default] = ACTIONS(560), + [anon_sym_enum] = ACTIONS(560), + [anon_sym_fn] = ACTIONS(560), + [anon_sym_for] = ACTIONS(560), + [anon_sym_if] = ACTIONS(560), + [anon_sym_impl] = ACTIONS(560), + [anon_sym_let] = ACTIONS(560), + [anon_sym_loop] = ACTIONS(560), + [anon_sym_match] = ACTIONS(560), + [anon_sym_mod] = ACTIONS(560), + [anon_sym_pub] = ACTIONS(560), + [anon_sym_return] = ACTIONS(560), + [anon_sym_static] = ACTIONS(560), + [anon_sym_struct] = ACTIONS(560), + [anon_sym_trait] = ACTIONS(560), + [anon_sym_type] = ACTIONS(560), + [anon_sym_union] = ACTIONS(560), + [anon_sym_unsafe] = ACTIONS(560), + [anon_sym_use] = ACTIONS(560), + [anon_sym_while] = ACTIONS(560), + [anon_sym_POUND] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_extern] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_COLON_COLON] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(562), + [anon_sym_DASH_EQ] = ACTIONS(562), + [anon_sym_STAR_EQ] = ACTIONS(562), + [anon_sym_SLASH_EQ] = ACTIONS(562), + [anon_sym_PERCENT_EQ] = ACTIONS(562), + [anon_sym_AMP_EQ] = ACTIONS(562), + [anon_sym_PIPE_EQ] = ACTIONS(562), + [anon_sym_CARET_EQ] = ACTIONS(562), + [anon_sym_LT_LT_EQ] = ACTIONS(562), + [anon_sym_GT_GT_EQ] = ACTIONS(562), + [anon_sym_yield] = ACTIONS(560), + [anon_sym_move] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(564), + [sym_integer_literal] = ACTIONS(558), + [aux_sym_string_literal_token1] = ACTIONS(558), + [sym_char_literal] = ACTIONS(558), + [anon_sym_true] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(560), + [sym_super] = ACTIONS(560), + [sym_crate] = ACTIONS(560), + [sym_metavariable] = ACTIONS(558), + [sym_raw_string_literal] = ACTIONS(558), + [sym_float_literal] = ACTIONS(558), + [sym_block_comment] = ACTIONS(3), + }, + [189] = { + [sym_attribute_item] = STATE(202), + [sym_function_modifiers] = STATE(2427), + [sym_self_parameter] = STATE(1977), + [sym_variadic_parameter] = STATE(1977), + [sym_parameter] = STATE(1977), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1854), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2242), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(684), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(706), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(712), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [185] = { - [sym_attribute_item] = STATE(196), + [190] = { + [sym_attribute_item] = STATE(202), [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2089), - [sym_variadic_parameter] = STATE(2089), - [sym_parameter] = STATE(2089), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1850), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2060), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2230), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_self_parameter] = STATE(1977), + [sym_variadic_parameter] = STATE(1977), + [sym_parameter] = STATE(1977), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1854), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1755), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(750), @@ -37055,50 +37585,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [186] = { - [sym_attribute_item] = STATE(197), + [191] = { + [sym_attribute_item] = STATE(202), [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2054), - [sym_variadic_parameter] = STATE(2054), - [sym_parameter] = STATE(2054), - [sym_extern_modifier] = STATE(1563), + [sym_self_parameter] = STATE(1977), + [sym_variadic_parameter] = STATE(1977), + [sym_parameter] = STATE(1977), + [sym_extern_modifier] = STATE(1594), [sym__type] = STATE(1854), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2060), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2230), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1755), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(772), @@ -37137,7 +37667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(776), + [anon_sym__] = ACTIONS(762), [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -37158,90 +37688,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [187] = { - [sym_attribute_item] = STATE(197), + [192] = { + [sym_attribute_item] = STATE(202), [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2054), - [sym_variadic_parameter] = STATE(2054), - [sym_parameter] = STATE(2054), - [sym_extern_modifier] = STATE(1563), + [sym_self_parameter] = STATE(1977), + [sym_variadic_parameter] = STATE(1977), + [sym_parameter] = STATE(1977), + [sym_extern_modifier] = STATE(1594), [sym__type] = STATE(1854), [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(2060), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2515), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1748), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(778), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1755), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(776), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), + [anon_sym_default] = ACTIONS(754), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), + [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(780), + [anon_sym_COMMA] = ACTIONS(778), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(720), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -37253,61 +37783,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [188] = { - [sym_attribute_item] = STATE(197), + [193] = { + [sym_attribute_item] = STATE(203), [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2054), - [sym_variadic_parameter] = STATE(2054), - [sym_parameter] = STATE(2054), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1854), - [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(2060), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2515), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1748), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_self_parameter] = STATE(2089), + [sym_variadic_parameter] = STATE(2089), + [sym_parameter] = STATE(2089), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1813), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2242), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(782), + [anon_sym_RPAREN] = ACTIONS(780), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -37338,12 +37868,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(782), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(720), + [anon_sym__] = ACTIONS(784), [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -37364,89 +37894,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [189] = { - [sym_attribute_item] = STATE(198), + [194] = { + [sym_attribute_item] = STATE(201), [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2253), - [sym_variadic_parameter] = STATE(2253), - [sym_parameter] = STATE(2253), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2076), + [sym_self_parameter] = STATE(2258), + [sym_variadic_parameter] = STATE(2258), + [sym_parameter] = STATE(2258), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(2051), [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2060), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2230), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2242), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), + [anon_sym_default] = ACTIONS(698), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), + [anon_sym_union] = ACTIONS(706), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -37458,97 +37988,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [190] = { - [sym_attribute_item] = STATE(198), + [195] = { + [sym_attribute_item] = STATE(201), [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2253), - [sym_variadic_parameter] = STATE(2253), - [sym_parameter] = STATE(2253), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2076), + [sym_self_parameter] = STATE(2258), + [sym_variadic_parameter] = STATE(2258), + [sym_parameter] = STATE(2258), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(2051), [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2060), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2230), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2242), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(790), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), + [anon_sym_default] = ACTIONS(698), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), + [anon_sym_union] = ACTIONS(706), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -37560,97 +38090,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [191] = { - [sym_attribute_item] = STATE(198), + [196] = { + [sym_attribute_item] = STATE(201), [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2253), - [sym_variadic_parameter] = STATE(2253), - [sym_parameter] = STATE(2253), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2076), + [sym_self_parameter] = STATE(2258), + [sym_variadic_parameter] = STATE(2258), + [sym_parameter] = STATE(2258), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(2051), [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2060), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2230), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2242), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(792), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), + [anon_sym_default] = ACTIONS(698), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), + [anon_sym_union] = ACTIONS(706), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -37662,97 +38192,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [192] = { - [sym_attribute_item] = STATE(198), + [197] = { + [sym_attribute_item] = STATE(201), [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2253), - [sym_variadic_parameter] = STATE(2253), - [sym_parameter] = STATE(2253), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2076), + [sym_self_parameter] = STATE(2258), + [sym_variadic_parameter] = STATE(2258), + [sym_parameter] = STATE(2258), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(2051), [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2060), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2230), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2242), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), + [anon_sym_default] = ACTIONS(698), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), + [anon_sym_union] = ACTIONS(706), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -37764,97 +38294,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [193] = { - [sym_attribute_item] = STATE(198), + [198] = { + [sym_attribute_item] = STATE(201), [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2253), - [sym_variadic_parameter] = STATE(2253), - [sym_parameter] = STATE(2253), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2076), + [sym_self_parameter] = STATE(2258), + [sym_variadic_parameter] = STATE(2258), + [sym_parameter] = STATE(2258), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(2051), [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2060), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2230), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2242), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(796), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), + [anon_sym_default] = ACTIONS(698), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), + [anon_sym_union] = ACTIONS(706), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -37866,97 +38396,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [194] = { - [sym_attribute_item] = STATE(198), + [199] = { + [sym_attribute_item] = STATE(201), [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2253), - [sym_variadic_parameter] = STATE(2253), - [sym_parameter] = STATE(2253), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2076), + [sym_self_parameter] = STATE(2258), + [sym_variadic_parameter] = STATE(2258), + [sym_parameter] = STATE(2258), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(2051), [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2060), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2230), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2242), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(798), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), + [anon_sym_default] = ACTIONS(698), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), + [anon_sym_union] = ACTIONS(706), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -37968,96 +38498,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [195] = { - [sym_attribute_item] = STATE(198), + [200] = { + [sym_attribute_item] = STATE(201), [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2253), - [sym_variadic_parameter] = STATE(2253), - [sym_parameter] = STATE(2253), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2076), + [sym_self_parameter] = STATE(2258), + [sym_variadic_parameter] = STATE(2258), + [sym_parameter] = STATE(2258), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(2051), [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2060), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2230), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2242), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), + [anon_sym_default] = ACTIONS(698), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), + [anon_sym_union] = ACTIONS(706), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -38069,94 +38599,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [196] = { + [201] = { [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2147), - [sym_variadic_parameter] = STATE(2147), - [sym_parameter] = STATE(2147), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1836), + [sym_self_parameter] = STATE(2270), + [sym_variadic_parameter] = STATE(2270), + [sym_parameter] = STATE(2270), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1949), [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2060), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2230), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2242), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), + [anon_sym_default] = ACTIONS(698), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), + [anon_sym_union] = ACTIONS(706), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -38168,94 +38698,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [197] = { + [202] = { [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(1967), - [sym_variadic_parameter] = STATE(1967), - [sym_parameter] = STATE(1967), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1874), + [sym_self_parameter] = STATE(1981), + [sym_variadic_parameter] = STATE(1981), + [sym_parameter] = STATE(1981), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1849), [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2060), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2230), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2242), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), + [anon_sym_default] = ACTIONS(698), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), + [anon_sym_union] = ACTIONS(706), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -38267,94 +38797,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [198] = { + [203] = { [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2277), - [sym_variadic_parameter] = STATE(2277), - [sym_parameter] = STATE(2277), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1933), + [sym_self_parameter] = STATE(2142), + [sym_variadic_parameter] = STATE(2142), + [sym_parameter] = STATE(2142), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1798), [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2060), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2230), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2242), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), + [anon_sym_default] = ACTIONS(698), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), + [anon_sym_union] = ACTIONS(706), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(804), - [anon_sym_AMP] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -38366,76 +38896,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [199] = { + [204] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1829), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1808), [sym_bracketed_type] = STATE(2514), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2515), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1822), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1838), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(806), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), @@ -38450,7 +38980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(814), [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), @@ -38463,76 +38993,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(768), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [200] = { + [205] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1829), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1808), [sym_bracketed_type] = STATE(2514), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2515), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1822), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1838), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), @@ -38547,7 +39077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(814), [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), @@ -38560,76 +39090,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(768), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [201] = { + [206] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1829), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1808), [sym_bracketed_type] = STATE(2514), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2515), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1822), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1838), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(824), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), @@ -38644,7 +39174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(814), [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), @@ -38657,54 +39187,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(768), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [202] = { + [207] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2116), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(2108), [sym_bracketed_type] = STATE(2517), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2518), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1825), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1572), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1832), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(826), [anon_sym_LPAREN] = ACTIONS(828), [anon_sym_LBRACK] = ACTIONS(686), @@ -38762,7 +39292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [203] = { + [208] = { [sym_identifier] = ACTIONS(848), [anon_sym_SEMI] = ACTIONS(850), [anon_sym_LPAREN] = ACTIONS(850), @@ -38858,46 +39388,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(850), [sym_block_comment] = ACTIONS(3), }, - [204] = { + [209] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1395), - [sym_bracketed_type] = STATE(2511), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1405), + [sym_bracketed_type] = STATE(2514), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1478), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1468), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -38922,11 +39452,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(852), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(854), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), @@ -38934,7 +39464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), @@ -38945,7 +39475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(858), + [sym_self] = ACTIONS(852), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), @@ -38953,46 +39483,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [205] = { + [210] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1395), - [sym_bracketed_type] = STATE(2517), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1405), + [sym_bracketed_type] = STATE(2511), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1468), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(854), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(856), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(858), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [211] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1422), + [sym_bracketed_type] = STATE(2517), + [sym_lifetime] = STATE(635), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2518), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1478), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1572), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1492), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(826), [anon_sym_LPAREN] = ACTIONS(828), [anon_sym_LBRACK] = ACTIONS(686), @@ -39014,7 +39639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(832), [anon_sym_str] = ACTIONS(832), [anon_sym_char] = ACTIONS(832), - [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(860), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(834), @@ -39031,7 +39656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(814), [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), + [sym_mutable_specifier] = ACTIONS(862), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -39048,67 +39673,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [206] = { + [212] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1398), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1422), [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(618), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(611), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2515), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1462), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1492), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(860), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), @@ -39122,11 +39747,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(814), [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(862), + [sym_mutable_specifier] = ACTIONS(864), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -39135,54 +39760,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(864), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(866), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [207] = { + [213] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1395), - [sym_bracketed_type] = STATE(2514), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1405), + [sym_bracketed_type] = STATE(2511), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2515), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1478), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1468), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -39207,11 +39832,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), + [anon_sym_default] = ACTIONS(854), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), + [anon_sym_union] = ACTIONS(856), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), @@ -39219,7 +39844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym_AMP] = ACTIONS(858), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), @@ -39230,7 +39855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), + [sym_self] = ACTIONS(868), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), [sym_metavariable] = ACTIONS(744), @@ -39238,46 +39863,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [208] = { + [214] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1398), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(618), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1462), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1422), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(635), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1492), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -39302,11 +39927,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(860), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(852), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(854), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), @@ -39314,9 +39939,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(866), + [sym_mutable_specifier] = ACTIONS(870), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -39325,7 +39950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(868), + [sym_self] = ACTIONS(768), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), @@ -39333,141 +39958,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [209] = { + [215] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1395), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1422), [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(635), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1478), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(852), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(854), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(856), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [210] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1395), - [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2515), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1478), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1492), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -39489,14 +40019,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(690), [anon_sym_str] = ACTIONS(690), [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(860), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), + [anon_sym_default] = ACTIONS(854), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), + [anon_sym_union] = ACTIONS(856), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), @@ -39504,9 +40034,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym_AMP] = ACTIONS(858), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), + [sym_mutable_specifier] = ACTIONS(872), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -39515,7 +40045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(870), + [sym_self] = ACTIONS(742), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), [sym_metavariable] = ACTIONS(744), @@ -39523,85 +40053,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [211] = { + [216] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1398), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1422), [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(629), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(611), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1629), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1462), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1633), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1492), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(860), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(852), + [anon_sym_default] = ACTIONS(854), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(854), + [anon_sym_union] = ACTIONS(856), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(858), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(872), + [sym_mutable_specifier] = ACTIONS(874), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -39610,54 +40140,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [212] = { + [217] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1398), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1405), [sym_bracketed_type] = STATE(2517), - [sym_lifetime] = STATE(629), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2518), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1562), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1462), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1572), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1468), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(826), [anon_sym_LPAREN] = ACTIONS(828), [anon_sym_LBRACK] = ACTIONS(686), @@ -39679,7 +40209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(832), [anon_sym_str] = ACTIONS(832), [anon_sym_char] = ACTIONS(832), - [anon_sym_SQUOTE] = ACTIONS(860), + [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(834), @@ -39696,7 +40226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(814), [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(874), + [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -39713,68 +40243,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [213] = { + [218] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1398), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1405), [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(629), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), [sym_generic_type_with_turbofish] = STATE(2515), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier] = STATE(1497), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1462), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier] = STATE(1505), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1468), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(860), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(808), @@ -39787,11 +40317,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(814), [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(876), + [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -39800,37 +40330,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(768), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [214] = { + [219] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1485), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1461), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), [sym_identifier] = ACTIONS(878), [anon_sym_LPAREN] = ACTIONS(880), [anon_sym_LBRACE] = ACTIONS(880), @@ -39894,14 +40424,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(880), [sym_block_comment] = ACTIONS(3), }, - [215] = { - [sym__attr] = STATE(2367), - [sym_custom_attr] = STATE(2367), - [sym_built_in_attr] = STATE(2367), - [sym__built_in_attr_path] = STATE(1877), + [220] = { + [sym__attr] = STATE(2353), + [sym_custom_attr] = STATE(2353), + [sym_built_in_attr] = STATE(2353), + [sym__built_in_attr_path] = STATE(1862), [sym_bracketed_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(2388), - [sym_scoped_identifier] = STATE(1605), + [sym_generic_type_with_turbofish] = STATE(2373), + [sym_scoped_identifier] = STATE(1604), [sym_identifier] = ACTIONS(882), [anon_sym_path] = ACTIONS(884), [anon_sym_u8] = ACTIONS(886), @@ -39976,96 +40506,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, - [216] = { - [sym_else_clause] = STATE(246), - [sym_identifier] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_isize] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_f32] = ACTIONS(394), - [anon_sym_f64] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_str] = ACTIONS(394), - [anon_sym_char] = ACTIONS(394), - [anon_sym_as] = ACTIONS(394), - [anon_sym_const] = ACTIONS(394), - [anon_sym_default] = ACTIONS(394), - [anon_sym_union] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_ref] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(392), - [anon_sym__] = ACTIONS(394), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [sym_mutable_specifier] = ACTIONS(394), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_else] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(394), - [sym_integer_literal] = ACTIONS(392), - [aux_sym_string_literal_token1] = ACTIONS(392), - [sym_char_literal] = ACTIONS(392), - [anon_sym_true] = ACTIONS(394), - [anon_sym_false] = ACTIONS(394), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(394), - [sym_super] = ACTIONS(394), - [sym_crate] = ACTIONS(394), - [sym_metavariable] = ACTIONS(392), - [sym_raw_string_literal] = ACTIONS(392), - [sym_float_literal] = ACTIONS(392), - [sym_block_comment] = ACTIONS(3), - }, - [217] = { - [sym__attr] = STATE(2363), - [sym_custom_attr] = STATE(2363), - [sym_built_in_attr] = STATE(2363), - [sym__built_in_attr_path] = STATE(1877), + [221] = { + [sym__attr] = STATE(2461), + [sym_custom_attr] = STATE(2461), + [sym_built_in_attr] = STATE(2461), + [sym__built_in_attr_path] = STATE(1862), [sym_bracketed_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(2388), - [sym_scoped_identifier] = STATE(1605), + [sym_generic_type_with_turbofish] = STATE(2373), + [sym_scoped_identifier] = STATE(1604), [sym_identifier] = ACTIONS(882), [anon_sym_path] = ACTIONS(884), [anon_sym_u8] = ACTIONS(886), @@ -40140,96 +40588,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, - [218] = { - [sym__attr] = STATE(2559), - [sym_custom_attr] = STATE(2559), - [sym_built_in_attr] = STATE(2559), - [sym__built_in_attr_path] = STATE(1877), - [sym_bracketed_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(2388), - [sym_scoped_identifier] = STATE(1605), - [sym_identifier] = ACTIONS(882), - [anon_sym_path] = 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_default] = ACTIONS(886), - [anon_sym_union] = ACTIONS(886), - [anon_sym_cfg] = ACTIONS(884), - [anon_sym_cfg_attr] = ACTIONS(884), - [anon_sym_test] = ACTIONS(884), - [anon_sym_ignore] = ACTIONS(884), - [anon_sym_should_panic] = ACTIONS(884), - [anon_sym_derive] = ACTIONS(884), - [anon_sym_automatically_derived] = ACTIONS(884), - [anon_sym_macro_export] = ACTIONS(884), - [anon_sym_macro_use] = ACTIONS(884), - [anon_sym_proc_macro] = ACTIONS(884), - [anon_sym_proc_macro_derive] = ACTIONS(884), - [anon_sym_proc_macro_attribute] = ACTIONS(884), - [anon_sym_allow] = ACTIONS(884), - [anon_sym_warn] = ACTIONS(884), - [anon_sym_deny] = ACTIONS(884), - [anon_sym_forbid] = ACTIONS(884), - [anon_sym_deprecated] = ACTIONS(884), - [anon_sym_must_use] = ACTIONS(884), - [anon_sym_link] = ACTIONS(884), - [anon_sym_link_name] = ACTIONS(884), - [anon_sym_no_link] = ACTIONS(884), - [anon_sym_repr] = ACTIONS(884), - [anon_sym_crate_type] = ACTIONS(884), - [anon_sym_no_main] = ACTIONS(884), - [anon_sym_export_name] = ACTIONS(884), - [anon_sym_link_section] = ACTIONS(884), - [anon_sym_no_mangle] = ACTIONS(884), - [anon_sym_used] = ACTIONS(884), - [anon_sym_crate_name] = ACTIONS(884), - [anon_sym_inline] = ACTIONS(884), - [anon_sym_cold] = ACTIONS(884), - [anon_sym_no_builtins] = ACTIONS(884), - [anon_sym_target_feature] = ACTIONS(884), - [anon_sym_track_caller] = ACTIONS(884), - [anon_sym_doc] = ACTIONS(884), - [anon_sym_no_std] = ACTIONS(884), - [anon_sym_no_implicit_prelude] = ACTIONS(884), - [anon_sym_recursion_limit] = ACTIONS(884), - [anon_sym_type_length_limit] = ACTIONS(884), - [anon_sym_panic_handler] = ACTIONS(884), - [anon_sym_global_allocator] = ACTIONS(884), - [anon_sym_windows_subsystem] = ACTIONS(884), - [anon_sym_feature] = ACTIONS(884), - [anon_sym_non_exhaustive] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(888), + [222] = { + [sym_else_clause] = STATE(251), + [sym_identifier] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_STAR] = ACTIONS(494), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u8] = ACTIONS(494), + [anon_sym_i8] = ACTIONS(494), + [anon_sym_u16] = ACTIONS(494), + [anon_sym_i16] = ACTIONS(494), + [anon_sym_u32] = ACTIONS(494), + [anon_sym_i32] = ACTIONS(494), + [anon_sym_u64] = ACTIONS(494), + [anon_sym_i64] = ACTIONS(494), + [anon_sym_u128] = ACTIONS(494), + [anon_sym_i128] = ACTIONS(494), + [anon_sym_isize] = ACTIONS(494), + [anon_sym_usize] = ACTIONS(494), + [anon_sym_f32] = ACTIONS(494), + [anon_sym_f64] = ACTIONS(494), + [anon_sym_bool] = ACTIONS(494), + [anon_sym_str] = ACTIONS(494), + [anon_sym_char] = ACTIONS(494), + [anon_sym_as] = ACTIONS(494), + [anon_sym_const] = ACTIONS(494), + [anon_sym_default] = ACTIONS(494), + [anon_sym_union] = ACTIONS(494), + [anon_sym_POUND] = ACTIONS(492), + [anon_sym_EQ] = ACTIONS(494), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_ref] = ACTIONS(494), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym__] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(492), + [sym_mutable_specifier] = ACTIONS(494), + [anon_sym_DOT_DOT] = ACTIONS(494), + [anon_sym_DOT_DOT_EQ] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_AMP_AMP] = ACTIONS(492), + [anon_sym_PIPE_PIPE] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(494), + [anon_sym_CARET] = ACTIONS(494), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(494), + [anon_sym_PERCENT] = ACTIONS(494), + [anon_sym_PLUS_EQ] = ACTIONS(492), + [anon_sym_DASH_EQ] = ACTIONS(492), + [anon_sym_STAR_EQ] = ACTIONS(492), + [anon_sym_SLASH_EQ] = ACTIONS(492), + [anon_sym_PERCENT_EQ] = ACTIONS(492), + [anon_sym_AMP_EQ] = ACTIONS(492), + [anon_sym_PIPE_EQ] = ACTIONS(492), + [anon_sym_CARET_EQ] = ACTIONS(492), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_GT_GT_EQ] = ACTIONS(492), + [anon_sym_else] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(494), + [sym_integer_literal] = ACTIONS(492), + [aux_sym_string_literal_token1] = ACTIONS(492), + [sym_char_literal] = ACTIONS(492), + [anon_sym_true] = ACTIONS(494), + [anon_sym_false] = ACTIONS(494), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(890), - [sym_super] = ACTIONS(890), - [sym_crate] = ACTIONS(890), - [sym_metavariable] = ACTIONS(892), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(492), + [sym_raw_string_literal] = ACTIONS(492), + [sym_float_literal] = ACTIONS(492), [sym_block_comment] = ACTIONS(3), }, - [219] = { - [sym__attr] = STATE(2472), - [sym_custom_attr] = STATE(2472), - [sym_built_in_attr] = STATE(2472), - [sym__built_in_attr_path] = STATE(1877), + [223] = { + [sym_else_clause] = STATE(248), + [sym_identifier] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_u8] = ACTIONS(500), + [anon_sym_i8] = ACTIONS(500), + [anon_sym_u16] = ACTIONS(500), + [anon_sym_i16] = ACTIONS(500), + [anon_sym_u32] = ACTIONS(500), + [anon_sym_i32] = ACTIONS(500), + [anon_sym_u64] = ACTIONS(500), + [anon_sym_i64] = ACTIONS(500), + [anon_sym_u128] = ACTIONS(500), + [anon_sym_i128] = ACTIONS(500), + [anon_sym_isize] = ACTIONS(500), + [anon_sym_usize] = ACTIONS(500), + [anon_sym_f32] = ACTIONS(500), + [anon_sym_f64] = ACTIONS(500), + [anon_sym_bool] = ACTIONS(500), + [anon_sym_str] = ACTIONS(500), + [anon_sym_char] = ACTIONS(500), + [anon_sym_as] = ACTIONS(500), + [anon_sym_const] = ACTIONS(500), + [anon_sym_default] = ACTIONS(500), + [anon_sym_union] = ACTIONS(500), + [anon_sym_POUND] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_COMMA] = ACTIONS(498), + [anon_sym_ref] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(498), + [anon_sym__] = ACTIONS(500), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(498), + [sym_mutable_specifier] = ACTIONS(500), + [anon_sym_DOT_DOT] = ACTIONS(500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(498), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_AMP_AMP] = ACTIONS(498), + [anon_sym_PIPE_PIPE] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_CARET] = ACTIONS(500), + [anon_sym_EQ_EQ] = ACTIONS(498), + [anon_sym_BANG_EQ] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_GT_GT] = ACTIONS(500), + [anon_sym_SLASH] = ACTIONS(500), + [anon_sym_PERCENT] = ACTIONS(500), + [anon_sym_PLUS_EQ] = ACTIONS(498), + [anon_sym_DASH_EQ] = ACTIONS(498), + [anon_sym_STAR_EQ] = ACTIONS(498), + [anon_sym_SLASH_EQ] = ACTIONS(498), + [anon_sym_PERCENT_EQ] = ACTIONS(498), + [anon_sym_AMP_EQ] = ACTIONS(498), + [anon_sym_PIPE_EQ] = ACTIONS(498), + [anon_sym_CARET_EQ] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(498), + [anon_sym_GT_GT_EQ] = ACTIONS(498), + [anon_sym_else] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(500), + [sym_integer_literal] = ACTIONS(498), + [aux_sym_string_literal_token1] = ACTIONS(498), + [sym_char_literal] = ACTIONS(498), + [anon_sym_true] = ACTIONS(500), + [anon_sym_false] = ACTIONS(500), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(500), + [sym_super] = ACTIONS(500), + [sym_crate] = ACTIONS(500), + [sym_metavariable] = ACTIONS(498), + [sym_raw_string_literal] = ACTIONS(498), + [sym_float_literal] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + }, + [224] = { + [sym__attr] = STATE(2559), + [sym_custom_attr] = STATE(2559), + [sym_built_in_attr] = STATE(2559), + [sym__built_in_attr_path] = STATE(1862), [sym_bracketed_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(2388), - [sym_scoped_identifier] = STATE(1605), + [sym_generic_type_with_turbofish] = STATE(2373), + [sym_scoped_identifier] = STATE(1604), [sym_identifier] = ACTIONS(882), [anon_sym_path] = ACTIONS(884), [anon_sym_u8] = ACTIONS(886), @@ -40304,96 +40834,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, - [220] = { - [sym_else_clause] = STATE(250), - [sym_identifier] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(498), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_PLUS] = ACTIONS(500), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_u8] = ACTIONS(500), - [anon_sym_i8] = ACTIONS(500), - [anon_sym_u16] = ACTIONS(500), - [anon_sym_i16] = ACTIONS(500), - [anon_sym_u32] = ACTIONS(500), - [anon_sym_i32] = ACTIONS(500), - [anon_sym_u64] = ACTIONS(500), - [anon_sym_i64] = ACTIONS(500), - [anon_sym_u128] = ACTIONS(500), - [anon_sym_i128] = ACTIONS(500), - [anon_sym_isize] = ACTIONS(500), - [anon_sym_usize] = ACTIONS(500), - [anon_sym_f32] = ACTIONS(500), - [anon_sym_f64] = ACTIONS(500), - [anon_sym_bool] = ACTIONS(500), - [anon_sym_str] = ACTIONS(500), - [anon_sym_char] = ACTIONS(500), - [anon_sym_as] = ACTIONS(500), - [anon_sym_const] = ACTIONS(500), - [anon_sym_default] = ACTIONS(500), - [anon_sym_union] = ACTIONS(500), - [anon_sym_POUND] = ACTIONS(498), - [anon_sym_EQ] = ACTIONS(500), - [anon_sym_COMMA] = ACTIONS(498), - [anon_sym_ref] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_COLON_COLON] = ACTIONS(498), - [anon_sym__] = ACTIONS(500), - [anon_sym_AMP] = ACTIONS(500), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), - [sym_mutable_specifier] = ACTIONS(500), - [anon_sym_DOT_DOT] = ACTIONS(500), - [anon_sym_DOT_DOT_EQ] = ACTIONS(498), - [anon_sym_DASH] = ACTIONS(500), - [anon_sym_AMP_AMP] = ACTIONS(498), - [anon_sym_PIPE_PIPE] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(500), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(498), - [anon_sym_BANG_EQ] = ACTIONS(498), - [anon_sym_LT_EQ] = ACTIONS(498), - [anon_sym_GT_EQ] = ACTIONS(498), - [anon_sym_LT_LT] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(500), - [anon_sym_SLASH] = ACTIONS(500), - [anon_sym_PERCENT] = ACTIONS(500), - [anon_sym_PLUS_EQ] = ACTIONS(498), - [anon_sym_DASH_EQ] = ACTIONS(498), - [anon_sym_STAR_EQ] = ACTIONS(498), - [anon_sym_SLASH_EQ] = ACTIONS(498), - [anon_sym_PERCENT_EQ] = ACTIONS(498), - [anon_sym_AMP_EQ] = ACTIONS(498), - [anon_sym_PIPE_EQ] = ACTIONS(498), - [anon_sym_CARET_EQ] = ACTIONS(498), - [anon_sym_LT_LT_EQ] = ACTIONS(498), - [anon_sym_GT_GT_EQ] = ACTIONS(498), - [anon_sym_else] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(500), - [sym_integer_literal] = ACTIONS(498), - [aux_sym_string_literal_token1] = ACTIONS(498), - [sym_char_literal] = ACTIONS(498), - [anon_sym_true] = ACTIONS(500), - [anon_sym_false] = ACTIONS(500), + [225] = { + [sym__attr] = STATE(2464), + [sym_custom_attr] = STATE(2464), + [sym_built_in_attr] = STATE(2464), + [sym__built_in_attr_path] = STATE(1862), + [sym_bracketed_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(2373), + [sym_scoped_identifier] = STATE(1604), + [sym_identifier] = ACTIONS(882), + [anon_sym_path] = 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_default] = ACTIONS(886), + [anon_sym_union] = ACTIONS(886), + [anon_sym_cfg] = ACTIONS(884), + [anon_sym_cfg_attr] = ACTIONS(884), + [anon_sym_test] = ACTIONS(884), + [anon_sym_ignore] = ACTIONS(884), + [anon_sym_should_panic] = ACTIONS(884), + [anon_sym_derive] = ACTIONS(884), + [anon_sym_automatically_derived] = ACTIONS(884), + [anon_sym_macro_export] = ACTIONS(884), + [anon_sym_macro_use] = ACTIONS(884), + [anon_sym_proc_macro] = ACTIONS(884), + [anon_sym_proc_macro_derive] = ACTIONS(884), + [anon_sym_proc_macro_attribute] = ACTIONS(884), + [anon_sym_allow] = ACTIONS(884), + [anon_sym_warn] = ACTIONS(884), + [anon_sym_deny] = ACTIONS(884), + [anon_sym_forbid] = ACTIONS(884), + [anon_sym_deprecated] = ACTIONS(884), + [anon_sym_must_use] = ACTIONS(884), + [anon_sym_link] = ACTIONS(884), + [anon_sym_link_name] = ACTIONS(884), + [anon_sym_no_link] = ACTIONS(884), + [anon_sym_repr] = ACTIONS(884), + [anon_sym_crate_type] = ACTIONS(884), + [anon_sym_no_main] = ACTIONS(884), + [anon_sym_export_name] = ACTIONS(884), + [anon_sym_link_section] = ACTIONS(884), + [anon_sym_no_mangle] = ACTIONS(884), + [anon_sym_used] = ACTIONS(884), + [anon_sym_crate_name] = ACTIONS(884), + [anon_sym_inline] = ACTIONS(884), + [anon_sym_cold] = ACTIONS(884), + [anon_sym_no_builtins] = ACTIONS(884), + [anon_sym_target_feature] = ACTIONS(884), + [anon_sym_track_caller] = ACTIONS(884), + [anon_sym_doc] = ACTIONS(884), + [anon_sym_no_std] = ACTIONS(884), + [anon_sym_no_implicit_prelude] = ACTIONS(884), + [anon_sym_recursion_limit] = ACTIONS(884), + [anon_sym_type_length_limit] = ACTIONS(884), + [anon_sym_panic_handler] = ACTIONS(884), + [anon_sym_global_allocator] = ACTIONS(884), + [anon_sym_windows_subsystem] = ACTIONS(884), + [anon_sym_feature] = ACTIONS(884), + [anon_sym_non_exhaustive] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(888), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(500), - [sym_super] = ACTIONS(500), - [sym_crate] = ACTIONS(500), - [sym_metavariable] = ACTIONS(498), - [sym_raw_string_literal] = ACTIONS(498), - [sym_float_literal] = ACTIONS(498), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, - [221] = { - [sym__attr] = STATE(2352), - [sym_custom_attr] = STATE(2352), - [sym_built_in_attr] = STATE(2352), - [sym__built_in_attr_path] = STATE(1877), + [226] = { + [sym__attr] = STATE(2397), + [sym_custom_attr] = STATE(2397), + [sym_built_in_attr] = STATE(2397), + [sym__built_in_attr_path] = STATE(1862), [sym_bracketed_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(2388), - [sym_scoped_identifier] = STATE(1605), + [sym_generic_type_with_turbofish] = STATE(2373), + [sym_scoped_identifier] = STATE(1604), [sym_identifier] = ACTIONS(882), [anon_sym_path] = ACTIONS(884), [anon_sym_u8] = ACTIONS(886), @@ -40468,14 +40998,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, - [222] = { - [sym__attr] = STATE(2426), - [sym_custom_attr] = STATE(2426), - [sym_built_in_attr] = STATE(2426), - [sym__built_in_attr_path] = STATE(1877), + [227] = { + [sym__attr] = STATE(2477), + [sym_custom_attr] = STATE(2477), + [sym_built_in_attr] = STATE(2477), + [sym__built_in_attr_path] = STATE(1862), [sym_bracketed_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(2388), - [sym_scoped_identifier] = STATE(1605), + [sym_generic_type_with_turbofish] = STATE(2373), + [sym_scoped_identifier] = STATE(1604), [sym_identifier] = ACTIONS(882), [anon_sym_path] = ACTIONS(884), [anon_sym_u8] = ACTIONS(886), @@ -40550,14 +41080,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, - [223] = { - [sym__attr] = STATE(2446), - [sym_custom_attr] = STATE(2446), - [sym_built_in_attr] = STATE(2446), - [sym__built_in_attr_path] = STATE(1877), + [228] = { + [sym__attr] = STATE(2435), + [sym_custom_attr] = STATE(2435), + [sym_built_in_attr] = STATE(2435), + [sym__built_in_attr_path] = STATE(1862), [sym_bracketed_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(2388), - [sym_scoped_identifier] = STATE(1605), + [sym_generic_type_with_turbofish] = STATE(2373), + [sym_scoped_identifier] = STATE(1604), [sym_identifier] = ACTIONS(882), [anon_sym_path] = ACTIONS(884), [anon_sym_u8] = ACTIONS(886), @@ -40632,7 +41162,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, - [224] = { + [229] = { + [sym_identifier] = ACTIONS(528), + [anon_sym_LPAREN] = ACTIONS(526), + [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(528), + [anon_sym_STAR] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(526), + [anon_sym_u8] = ACTIONS(528), + [anon_sym_i8] = ACTIONS(528), + [anon_sym_u16] = ACTIONS(528), + [anon_sym_i16] = ACTIONS(528), + [anon_sym_u32] = ACTIONS(528), + [anon_sym_i32] = ACTIONS(528), + [anon_sym_u64] = ACTIONS(528), + [anon_sym_i64] = ACTIONS(528), + [anon_sym_u128] = ACTIONS(528), + [anon_sym_i128] = ACTIONS(528), + [anon_sym_isize] = ACTIONS(528), + [anon_sym_usize] = ACTIONS(528), + [anon_sym_f32] = ACTIONS(528), + [anon_sym_f64] = ACTIONS(528), + [anon_sym_bool] = ACTIONS(528), + [anon_sym_str] = ACTIONS(528), + [anon_sym_char] = ACTIONS(528), + [anon_sym_as] = ACTIONS(528), + [anon_sym_const] = ACTIONS(528), + [anon_sym_default] = ACTIONS(528), + [anon_sym_union] = ACTIONS(528), + [anon_sym_POUND] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(528), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_ref] = ACTIONS(528), + [anon_sym_LT] = ACTIONS(528), + [anon_sym_GT] = ACTIONS(528), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym__] = ACTIONS(528), + [anon_sym_AMP] = ACTIONS(528), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_mutable_specifier] = ACTIONS(528), + [anon_sym_DOT_DOT] = ACTIONS(528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(528), + [anon_sym_AMP_AMP] = ACTIONS(526), + [anon_sym_PIPE_PIPE] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(528), + [anon_sym_CARET] = ACTIONS(528), + [anon_sym_EQ_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_LT_LT] = ACTIONS(528), + [anon_sym_GT_GT] = ACTIONS(528), + [anon_sym_SLASH] = ACTIONS(528), + [anon_sym_PERCENT] = ACTIONS(528), + [anon_sym_PLUS_EQ] = ACTIONS(526), + [anon_sym_DASH_EQ] = ACTIONS(526), + [anon_sym_STAR_EQ] = ACTIONS(526), + [anon_sym_SLASH_EQ] = ACTIONS(526), + [anon_sym_PERCENT_EQ] = ACTIONS(526), + [anon_sym_AMP_EQ] = ACTIONS(526), + [anon_sym_PIPE_EQ] = ACTIONS(526), + [anon_sym_CARET_EQ] = ACTIONS(526), + [anon_sym_LT_LT_EQ] = ACTIONS(526), + [anon_sym_GT_GT_EQ] = ACTIONS(526), + [anon_sym_else] = ACTIONS(528), + [anon_sym_DOT] = ACTIONS(528), + [sym_integer_literal] = ACTIONS(526), + [aux_sym_string_literal_token1] = ACTIONS(526), + [sym_char_literal] = ACTIONS(526), + [anon_sym_true] = ACTIONS(528), + [anon_sym_false] = ACTIONS(528), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(528), + [sym_super] = ACTIONS(528), + [sym_crate] = ACTIONS(528), + [sym_metavariable] = ACTIONS(526), + [sym_raw_string_literal] = ACTIONS(526), + [sym_float_literal] = ACTIONS(526), + [sym_block_comment] = ACTIONS(3), + }, + [230] = { [sym_identifier] = ACTIONS(538), [anon_sym_LPAREN] = ACTIONS(536), [anon_sym_RBRACE] = ACTIONS(536), @@ -40713,88 +41324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(536), [sym_block_comment] = ACTIONS(3), }, - [225] = { - [sym_identifier] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_as] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_ref] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym__] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [sym_mutable_specifier] = ACTIONS(556), - [anon_sym_DOT_DOT] = ACTIONS(556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_else] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), - [sym_block_comment] = ACTIONS(3), - }, - [226] = { + [231] = { [sym_identifier] = ACTIONS(552), [anon_sym_LPAREN] = ACTIONS(550), [anon_sym_RBRACE] = ACTIONS(550), @@ -40875,87 +41405,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(550), [sym_block_comment] = ACTIONS(3), }, - [227] = { - [sym_identifier] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(578), - [anon_sym_ref] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym__] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [sym_mutable_specifier] = ACTIONS(580), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), + [232] = { + [sym_identifier] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u128] = ACTIONS(568), + [anon_sym_i128] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_str] = ACTIONS(568), + [anon_sym_char] = ACTIONS(568), + [anon_sym_as] = ACTIONS(568), + [anon_sym_const] = ACTIONS(568), + [anon_sym_default] = ACTIONS(568), + [anon_sym_union] = ACTIONS(568), + [anon_sym_POUND] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_ref] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(566), + [anon_sym__] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [sym_mutable_specifier] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(566), + [aux_sym_string_literal_token1] = ACTIONS(566), + [sym_char_literal] = ACTIONS(566), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), + [sym_self] = ACTIONS(568), + [sym_super] = ACTIONS(568), + [sym_crate] = ACTIONS(568), + [sym_metavariable] = ACTIONS(566), + [sym_raw_string_literal] = ACTIONS(566), + [sym_float_literal] = ACTIONS(566), [sym_block_comment] = ACTIONS(3), }, - [228] = { + [233] = { + [sym_identifier] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u128] = ACTIONS(572), + [anon_sym_i128] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_str] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_as] = ACTIONS(572), + [anon_sym_const] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_union] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_ref] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym__] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(572), + [sym_integer_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(570), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(572), + [sym_super] = ACTIONS(572), + [sym_crate] = ACTIONS(572), + [sym_metavariable] = ACTIONS(570), + [sym_raw_string_literal] = ACTIONS(570), + [sym_float_literal] = ACTIONS(570), + [sym_block_comment] = ACTIONS(3), + }, + [234] = { [sym_identifier] = ACTIONS(614), [anon_sym_LPAREN] = ACTIONS(612), [anon_sym_RBRACE] = ACTIONS(612), @@ -41035,114 +41645,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(612), [sym_block_comment] = ACTIONS(3), }, - [229] = { - [sym_identifier] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_RBRACE] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(678), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_ref] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym__] = ACTIONS(678), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [sym_mutable_specifier] = ACTIONS(678), - [anon_sym_DOT_DOT] = ACTIONS(678), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(678), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(678), - [anon_sym_CARET] = ACTIONS(678), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_PERCENT] = ACTIONS(678), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(676), - [aux_sym_string_literal_token1] = ACTIONS(676), - [sym_char_literal] = ACTIONS(676), - [anon_sym_true] = ACTIONS(678), - [anon_sym_false] = ACTIONS(678), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym_metavariable] = ACTIONS(676), - [sym_raw_string_literal] = ACTIONS(676), - [sym_float_literal] = ACTIONS(676), - [sym_block_comment] = ACTIONS(3), - }, - [230] = { + [235] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(2035), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2303), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [sym_block] = STATE(2303), - [sym__literal] = STATE(2303), - [sym_string_literal] = STATE(2342), - [sym_boolean_literal] = STATE(2342), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(1988), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_type_binding] = STATE(2307), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [sym_block] = STATE(2307), + [sym__literal] = STATE(2307), + [sym_string_literal] = STATE(2267), + [sym_boolean_literal] = STATE(2267), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(896), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_LBRACE] = ACTIONS(900), @@ -41195,114 +41725,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, - [231] = { - [sym_identifier] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(586), - [anon_sym_RBRACE] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_STAR] = ACTIONS(588), - [anon_sym_QMARK] = ACTIONS(586), - [anon_sym_u8] = ACTIONS(588), - [anon_sym_i8] = ACTIONS(588), - [anon_sym_u16] = ACTIONS(588), - [anon_sym_i16] = ACTIONS(588), - [anon_sym_u32] = ACTIONS(588), - [anon_sym_i32] = ACTIONS(588), - [anon_sym_u64] = ACTIONS(588), - [anon_sym_i64] = ACTIONS(588), - [anon_sym_u128] = ACTIONS(588), - [anon_sym_i128] = ACTIONS(588), - [anon_sym_isize] = ACTIONS(588), - [anon_sym_usize] = ACTIONS(588), - [anon_sym_f32] = ACTIONS(588), - [anon_sym_f64] = ACTIONS(588), - [anon_sym_bool] = ACTIONS(588), - [anon_sym_str] = ACTIONS(588), - [anon_sym_char] = ACTIONS(588), - [anon_sym_as] = ACTIONS(588), - [anon_sym_const] = ACTIONS(588), - [anon_sym_default] = ACTIONS(588), - [anon_sym_union] = ACTIONS(588), - [anon_sym_POUND] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(588), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_ref] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(586), - [anon_sym__] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(586), - [sym_mutable_specifier] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(588), - [anon_sym_DOT_DOT_EQ] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_EQ_EQ] = ACTIONS(586), - [anon_sym_BANG_EQ] = ACTIONS(586), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(588), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_PLUS_EQ] = ACTIONS(586), - [anon_sym_DASH_EQ] = ACTIONS(586), - [anon_sym_STAR_EQ] = ACTIONS(586), - [anon_sym_SLASH_EQ] = ACTIONS(586), - [anon_sym_PERCENT_EQ] = ACTIONS(586), - [anon_sym_AMP_EQ] = ACTIONS(586), - [anon_sym_PIPE_EQ] = ACTIONS(586), - [anon_sym_CARET_EQ] = ACTIONS(586), - [anon_sym_LT_LT_EQ] = ACTIONS(586), - [anon_sym_GT_GT_EQ] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(588), - [sym_integer_literal] = ACTIONS(586), - [aux_sym_string_literal_token1] = ACTIONS(586), - [sym_char_literal] = ACTIONS(586), - [anon_sym_true] = ACTIONS(588), - [anon_sym_false] = ACTIONS(588), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(588), - [sym_super] = ACTIONS(588), - [sym_crate] = ACTIONS(588), - [sym_metavariable] = ACTIONS(586), - [sym_raw_string_literal] = ACTIONS(586), - [sym_float_literal] = ACTIONS(586), - [sym_block_comment] = ACTIONS(3), - }, - [232] = { + [236] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(2035), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2303), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [sym_block] = STATE(2303), - [sym__literal] = STATE(2303), - [sym_string_literal] = STATE(2342), - [sym_boolean_literal] = STATE(2342), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(1988), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_type_binding] = STATE(2307), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [sym_block] = STATE(2307), + [sym__literal] = STATE(2307), + [sym_string_literal] = STATE(2267), + [sym_boolean_literal] = STATE(2267), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(896), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_LBRACE] = ACTIONS(900), @@ -41355,34 +41805,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, - [233] = { + [237] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_QMARK] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_as] = ACTIONS(654), + [anon_sym_const] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_union] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(652), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(652), + [anon_sym_ref] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(652), + [anon_sym__] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(652), + [sym_mutable_specifier] = ACTIONS(654), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_EQ] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_AMP_AMP] = ACTIONS(652), + [anon_sym_PIPE_PIPE] = ACTIONS(652), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_LT_EQ] = ACTIONS(652), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(652), + [anon_sym_DASH_EQ] = ACTIONS(652), + [anon_sym_STAR_EQ] = ACTIONS(652), + [anon_sym_SLASH_EQ] = ACTIONS(652), + [anon_sym_PERCENT_EQ] = ACTIONS(652), + [anon_sym_AMP_EQ] = ACTIONS(652), + [anon_sym_PIPE_EQ] = ACTIONS(652), + [anon_sym_CARET_EQ] = ACTIONS(652), + [anon_sym_LT_LT_EQ] = ACTIONS(652), + [anon_sym_GT_GT_EQ] = ACTIONS(652), + [anon_sym_DOT] = ACTIONS(654), + [sym_integer_literal] = ACTIONS(652), + [aux_sym_string_literal_token1] = ACTIONS(652), + [sym_char_literal] = ACTIONS(652), + [anon_sym_true] = ACTIONS(654), + [anon_sym_false] = ACTIONS(654), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(654), + [sym_super] = ACTIONS(654), + [sym_crate] = ACTIONS(654), + [sym_metavariable] = ACTIONS(652), + [sym_raw_string_literal] = ACTIONS(652), + [sym_float_literal] = ACTIONS(652), + [sym_block_comment] = ACTIONS(3), + }, + [238] = { + [sym_identifier] = ACTIONS(670), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(670), + [anon_sym_STAR] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(668), + [anon_sym_u8] = ACTIONS(670), + [anon_sym_i8] = ACTIONS(670), + [anon_sym_u16] = ACTIONS(670), + [anon_sym_i16] = ACTIONS(670), + [anon_sym_u32] = ACTIONS(670), + [anon_sym_i32] = ACTIONS(670), + [anon_sym_u64] = ACTIONS(670), + [anon_sym_i64] = ACTIONS(670), + [anon_sym_u128] = ACTIONS(670), + [anon_sym_i128] = ACTIONS(670), + [anon_sym_isize] = ACTIONS(670), + [anon_sym_usize] = ACTIONS(670), + [anon_sym_f32] = ACTIONS(670), + [anon_sym_f64] = ACTIONS(670), + [anon_sym_bool] = ACTIONS(670), + [anon_sym_str] = ACTIONS(670), + [anon_sym_char] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(668), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_ref] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_COLON_COLON] = ACTIONS(668), + [anon_sym__] = ACTIONS(670), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(668), + [sym_mutable_specifier] = ACTIONS(670), + [anon_sym_DOT_DOT] = ACTIONS(670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(670), + [anon_sym_AMP_AMP] = ACTIONS(668), + [anon_sym_PIPE_PIPE] = ACTIONS(668), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(670), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(670), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_STAR_EQ] = ACTIONS(668), + [anon_sym_SLASH_EQ] = ACTIONS(668), + [anon_sym_PERCENT_EQ] = ACTIONS(668), + [anon_sym_AMP_EQ] = ACTIONS(668), + [anon_sym_PIPE_EQ] = ACTIONS(668), + [anon_sym_CARET_EQ] = ACTIONS(668), + [anon_sym_LT_LT_EQ] = ACTIONS(668), + [anon_sym_GT_GT_EQ] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(668), + [aux_sym_string_literal_token1] = ACTIONS(668), + [sym_char_literal] = ACTIONS(668), + [anon_sym_true] = ACTIONS(670), + [anon_sym_false] = ACTIONS(670), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_metavariable] = ACTIONS(668), + [sym_raw_string_literal] = ACTIONS(668), + [sym_float_literal] = ACTIONS(668), + [sym_block_comment] = ACTIONS(3), + }, + [239] = { + [sym_identifier] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_u8] = ACTIONS(658), + [anon_sym_i8] = ACTIONS(658), + [anon_sym_u16] = ACTIONS(658), + [anon_sym_i16] = ACTIONS(658), + [anon_sym_u32] = ACTIONS(658), + [anon_sym_i32] = ACTIONS(658), + [anon_sym_u64] = ACTIONS(658), + [anon_sym_i64] = ACTIONS(658), + [anon_sym_u128] = ACTIONS(658), + [anon_sym_i128] = ACTIONS(658), + [anon_sym_isize] = ACTIONS(658), + [anon_sym_usize] = ACTIONS(658), + [anon_sym_f32] = ACTIONS(658), + [anon_sym_f64] = ACTIONS(658), + [anon_sym_bool] = ACTIONS(658), + [anon_sym_str] = ACTIONS(658), + [anon_sym_char] = ACTIONS(658), + [anon_sym_as] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(658), + [anon_sym_union] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_ref] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_COLON_COLON] = ACTIONS(656), + [anon_sym__] = ACTIONS(658), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(656), + [sym_mutable_specifier] = ACTIONS(658), + [anon_sym_DOT_DOT] = ACTIONS(658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_PERCENT] = ACTIONS(658), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(658), + [sym_integer_literal] = ACTIONS(656), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(656), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(658), + [sym_super] = ACTIONS(658), + [sym_crate] = ACTIONS(658), + [sym_metavariable] = ACTIONS(656), + [sym_raw_string_literal] = ACTIONS(656), + [sym_float_literal] = ACTIONS(656), + [sym_block_comment] = ACTIONS(3), + }, + [240] = { + [sym_identifier] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_u8] = ACTIONS(622), + [anon_sym_i8] = ACTIONS(622), + [anon_sym_u16] = ACTIONS(622), + [anon_sym_i16] = ACTIONS(622), + [anon_sym_u32] = ACTIONS(622), + [anon_sym_i32] = ACTIONS(622), + [anon_sym_u64] = ACTIONS(622), + [anon_sym_i64] = ACTIONS(622), + [anon_sym_u128] = ACTIONS(622), + [anon_sym_i128] = ACTIONS(622), + [anon_sym_isize] = ACTIONS(622), + [anon_sym_usize] = ACTIONS(622), + [anon_sym_f32] = ACTIONS(622), + [anon_sym_f64] = ACTIONS(622), + [anon_sym_bool] = ACTIONS(622), + [anon_sym_str] = ACTIONS(622), + [anon_sym_char] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_default] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(620), + [anon_sym_ref] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_COLON_COLON] = ACTIONS(620), + [anon_sym__] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(620), + [sym_mutable_specifier] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT_EQ] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(620), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_BANG_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_PLUS_EQ] = ACTIONS(620), + [anon_sym_DASH_EQ] = ACTIONS(620), + [anon_sym_STAR_EQ] = ACTIONS(620), + [anon_sym_SLASH_EQ] = ACTIONS(620), + [anon_sym_PERCENT_EQ] = ACTIONS(620), + [anon_sym_AMP_EQ] = ACTIONS(620), + [anon_sym_PIPE_EQ] = ACTIONS(620), + [anon_sym_CARET_EQ] = ACTIONS(620), + [anon_sym_LT_LT_EQ] = ACTIONS(620), + [anon_sym_GT_GT_EQ] = ACTIONS(620), + [anon_sym_DOT] = ACTIONS(622), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(620), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(622), + [sym_super] = ACTIONS(622), + [sym_crate] = ACTIONS(622), + [sym_metavariable] = ACTIONS(620), + [sym_raw_string_literal] = ACTIONS(620), + [sym_float_literal] = ACTIONS(620), + [sym_block_comment] = ACTIONS(3), + }, + [241] = { + [sym_identifier] = ACTIONS(924), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), + [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_as] = ACTIONS(564), + [anon_sym_const] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_POUND] = ACTIONS(926), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_ref] = ACTIONS(924), + [anon_sym_LT] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym__] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [sym_mutable_specifier] = ACTIONS(924), + [anon_sym_DOT_DOT] = ACTIONS(924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_AMP_AMP] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(562), + [anon_sym_DASH_EQ] = ACTIONS(562), + [anon_sym_STAR_EQ] = ACTIONS(562), + [anon_sym_SLASH_EQ] = ACTIONS(562), + [anon_sym_PERCENT_EQ] = ACTIONS(562), + [anon_sym_AMP_EQ] = ACTIONS(562), + [anon_sym_PIPE_EQ] = ACTIONS(562), + [anon_sym_CARET_EQ] = ACTIONS(562), + [anon_sym_LT_LT_EQ] = ACTIONS(562), + [anon_sym_GT_GT_EQ] = ACTIONS(562), + [anon_sym_DOT] = ACTIONS(564), + [sym_integer_literal] = ACTIONS(926), + [aux_sym_string_literal_token1] = ACTIONS(926), + [sym_char_literal] = ACTIONS(926), + [anon_sym_true] = ACTIONS(924), + [anon_sym_false] = ACTIONS(924), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(924), + [sym_super] = ACTIONS(924), + [sym_crate] = ACTIONS(924), + [sym_metavariable] = ACTIONS(926), + [sym_raw_string_literal] = ACTIONS(926), + [sym_float_literal] = ACTIONS(926), + [sym_block_comment] = ACTIONS(3), + }, + [242] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(2035), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2303), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [sym_block] = STATE(2303), - [sym__literal] = STATE(2303), - [sym_string_literal] = STATE(2342), - [sym_boolean_literal] = STATE(2342), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(1988), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_type_binding] = STATE(2307), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [sym_block] = STATE(2307), + [sym__literal] = STATE(2307), + [sym_string_literal] = STATE(2267), + [sym_boolean_literal] = STATE(2267), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(896), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_LBRACE] = ACTIONS(900), @@ -41417,7 +42267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(928), [anon_sym_COLON_COLON] = ACTIONS(912), [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), @@ -41435,354 +42285,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, - [234] = { - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_EQ] = ACTIONS(638), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_ref] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(638), - [anon_sym_COLON_COLON] = ACTIONS(636), - [anon_sym__] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(636), - [sym_mutable_specifier] = ACTIONS(638), - [anon_sym_DOT_DOT] = ACTIONS(638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(638), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_LT_LT] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_SLASH] = ACTIONS(638), - [anon_sym_PERCENT] = ACTIONS(638), - [anon_sym_PLUS_EQ] = ACTIONS(636), - [anon_sym_DASH_EQ] = ACTIONS(636), - [anon_sym_STAR_EQ] = ACTIONS(636), - [anon_sym_SLASH_EQ] = ACTIONS(636), - [anon_sym_PERCENT_EQ] = ACTIONS(636), - [anon_sym_AMP_EQ] = ACTIONS(636), - [anon_sym_PIPE_EQ] = ACTIONS(636), - [anon_sym_CARET_EQ] = ACTIONS(636), - [anon_sym_LT_LT_EQ] = ACTIONS(636), - [anon_sym_GT_GT_EQ] = ACTIONS(636), - [anon_sym_DOT] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(636), - [aux_sym_string_literal_token1] = ACTIONS(636), - [sym_char_literal] = ACTIONS(636), - [anon_sym_true] = ACTIONS(638), - [anon_sym_false] = ACTIONS(638), + [243] = { + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_QMARK] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(662), + [anon_sym_i8] = ACTIONS(662), + [anon_sym_u16] = ACTIONS(662), + [anon_sym_i16] = ACTIONS(662), + [anon_sym_u32] = ACTIONS(662), + [anon_sym_i32] = ACTIONS(662), + [anon_sym_u64] = ACTIONS(662), + [anon_sym_i64] = ACTIONS(662), + [anon_sym_u128] = ACTIONS(662), + [anon_sym_i128] = ACTIONS(662), + [anon_sym_isize] = ACTIONS(662), + [anon_sym_usize] = ACTIONS(662), + [anon_sym_f32] = ACTIONS(662), + [anon_sym_f64] = ACTIONS(662), + [anon_sym_bool] = ACTIONS(662), + [anon_sym_str] = ACTIONS(662), + [anon_sym_char] = ACTIONS(662), + [anon_sym_as] = ACTIONS(662), + [anon_sym_const] = ACTIONS(662), + [anon_sym_default] = ACTIONS(662), + [anon_sym_union] = ACTIONS(662), + [anon_sym_POUND] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(662), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_ref] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(662), + [anon_sym_GT] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(660), + [anon_sym__] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(660), + [sym_mutable_specifier] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT_EQ] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(662), + [anon_sym_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ] = ACTIONS(660), + [anon_sym_LT_EQ] = ACTIONS(660), + [anon_sym_GT_EQ] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(662), + [anon_sym_SLASH] = ACTIONS(662), + [anon_sym_PERCENT] = ACTIONS(662), + [anon_sym_PLUS_EQ] = ACTIONS(660), + [anon_sym_DASH_EQ] = ACTIONS(660), + [anon_sym_STAR_EQ] = ACTIONS(660), + [anon_sym_SLASH_EQ] = ACTIONS(660), + [anon_sym_PERCENT_EQ] = ACTIONS(660), + [anon_sym_AMP_EQ] = ACTIONS(660), + [anon_sym_PIPE_EQ] = ACTIONS(660), + [anon_sym_CARET_EQ] = ACTIONS(660), + [anon_sym_LT_LT_EQ] = ACTIONS(660), + [anon_sym_GT_GT_EQ] = ACTIONS(660), + [anon_sym_DOT] = ACTIONS(662), + [sym_integer_literal] = ACTIONS(660), + [aux_sym_string_literal_token1] = ACTIONS(660), + [sym_char_literal] = ACTIONS(660), + [anon_sym_true] = ACTIONS(662), + [anon_sym_false] = ACTIONS(662), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(636), - [sym_raw_string_literal] = ACTIONS(636), - [sym_float_literal] = ACTIONS(636), - [sym_block_comment] = ACTIONS(3), - }, - [235] = { - [sym_identifier] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_u8] = ACTIONS(926), - [anon_sym_i8] = ACTIONS(926), - [anon_sym_u16] = ACTIONS(926), - [anon_sym_i16] = ACTIONS(926), - [anon_sym_u32] = ACTIONS(926), - [anon_sym_i32] = ACTIONS(926), - [anon_sym_u64] = ACTIONS(926), - [anon_sym_i64] = ACTIONS(926), - [anon_sym_u128] = ACTIONS(926), - [anon_sym_i128] = ACTIONS(926), - [anon_sym_isize] = ACTIONS(926), - [anon_sym_usize] = ACTIONS(926), - [anon_sym_f32] = ACTIONS(926), - [anon_sym_f64] = ACTIONS(926), - [anon_sym_bool] = ACTIONS(926), - [anon_sym_str] = ACTIONS(926), - [anon_sym_char] = ACTIONS(926), - [anon_sym_as] = ACTIONS(562), - [anon_sym_const] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_union] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(928), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_COMMA] = ACTIONS(564), - [anon_sym_ref] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(926), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_COLON_COLON] = ACTIONS(928), - [anon_sym__] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT] = ACTIONS(564), - [sym_mutable_specifier] = ACTIONS(926), - [anon_sym_DOT_DOT] = ACTIONS(926), - [anon_sym_DOT_DOT_EQ] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_AMP_AMP] = ACTIONS(564), - [anon_sym_PIPE_PIPE] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(562), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym_EQ_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_PLUS_EQ] = ACTIONS(564), - [anon_sym_DASH_EQ] = ACTIONS(564), - [anon_sym_STAR_EQ] = ACTIONS(564), - [anon_sym_SLASH_EQ] = ACTIONS(564), - [anon_sym_PERCENT_EQ] = ACTIONS(564), - [anon_sym_AMP_EQ] = ACTIONS(564), - [anon_sym_PIPE_EQ] = ACTIONS(564), - [anon_sym_CARET_EQ] = ACTIONS(564), - [anon_sym_LT_LT_EQ] = ACTIONS(564), - [anon_sym_GT_GT_EQ] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(562), - [sym_integer_literal] = ACTIONS(928), - [aux_sym_string_literal_token1] = ACTIONS(928), - [sym_char_literal] = ACTIONS(928), - [anon_sym_true] = ACTIONS(926), - [anon_sym_false] = ACTIONS(926), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(926), - [sym_super] = ACTIONS(926), - [sym_crate] = ACTIONS(926), - [sym_metavariable] = ACTIONS(928), - [sym_raw_string_literal] = ACTIONS(928), - [sym_float_literal] = ACTIONS(928), + [sym_self] = ACTIONS(662), + [sym_super] = ACTIONS(662), + [sym_crate] = ACTIONS(662), + [sym_metavariable] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(660), + [sym_float_literal] = ACTIONS(660), [sym_block_comment] = ACTIONS(3), }, - [236] = { - [sym_identifier] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_u8] = ACTIONS(572), - [anon_sym_i8] = ACTIONS(572), - [anon_sym_u16] = ACTIONS(572), - [anon_sym_i16] = ACTIONS(572), - [anon_sym_u32] = ACTIONS(572), - [anon_sym_i32] = ACTIONS(572), - [anon_sym_u64] = ACTIONS(572), - [anon_sym_i64] = ACTIONS(572), - [anon_sym_u128] = ACTIONS(572), - [anon_sym_i128] = ACTIONS(572), - [anon_sym_isize] = ACTIONS(572), - [anon_sym_usize] = ACTIONS(572), - [anon_sym_f32] = ACTIONS(572), - [anon_sym_f64] = ACTIONS(572), - [anon_sym_bool] = ACTIONS(572), - [anon_sym_str] = ACTIONS(572), - [anon_sym_char] = ACTIONS(572), - [anon_sym_as] = ACTIONS(572), - [anon_sym_const] = ACTIONS(572), - [anon_sym_default] = ACTIONS(572), - [anon_sym_union] = ACTIONS(572), - [anon_sym_POUND] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(572), - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_ref] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_COLON_COLON] = ACTIONS(570), - [anon_sym__] = ACTIONS(572), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(570), - [sym_mutable_specifier] = ACTIONS(572), - [anon_sym_DOT_DOT] = ACTIONS(572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_AMP_AMP] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_DOT] = ACTIONS(572), - [sym_integer_literal] = ACTIONS(570), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(570), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), + [244] = { + [sym_identifier] = ACTIONS(678), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(678), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_ref] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym__] = ACTIONS(678), + [anon_sym_AMP] = ACTIONS(678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [sym_mutable_specifier] = ACTIONS(678), + [anon_sym_DOT_DOT] = ACTIONS(678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(678), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_PERCENT] = ACTIONS(678), + [anon_sym_PLUS_EQ] = ACTIONS(676), + [anon_sym_DASH_EQ] = ACTIONS(676), + [anon_sym_STAR_EQ] = ACTIONS(676), + [anon_sym_SLASH_EQ] = ACTIONS(676), + [anon_sym_PERCENT_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_CARET_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(676), + [aux_sym_string_literal_token1] = ACTIONS(676), + [sym_char_literal] = ACTIONS(676), + [anon_sym_true] = ACTIONS(678), + [anon_sym_false] = ACTIONS(678), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(572), - [sym_super] = ACTIONS(572), - [sym_crate] = ACTIONS(572), - [sym_metavariable] = ACTIONS(570), - [sym_raw_string_literal] = ACTIONS(570), - [sym_float_literal] = ACTIONS(570), - [sym_block_comment] = ACTIONS(3), - }, - [237] = { - [sym_identifier] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(582), - [anon_sym_u8] = ACTIONS(584), - [anon_sym_i8] = ACTIONS(584), - [anon_sym_u16] = ACTIONS(584), - [anon_sym_i16] = ACTIONS(584), - [anon_sym_u32] = ACTIONS(584), - [anon_sym_i32] = ACTIONS(584), - [anon_sym_u64] = ACTIONS(584), - [anon_sym_i64] = ACTIONS(584), - [anon_sym_u128] = ACTIONS(584), - [anon_sym_i128] = ACTIONS(584), - [anon_sym_isize] = ACTIONS(584), - [anon_sym_usize] = ACTIONS(584), - [anon_sym_f32] = ACTIONS(584), - [anon_sym_f64] = ACTIONS(584), - [anon_sym_bool] = ACTIONS(584), - [anon_sym_str] = ACTIONS(584), - [anon_sym_char] = ACTIONS(584), - [anon_sym_as] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_default] = ACTIONS(584), - [anon_sym_union] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_ref] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_COLON_COLON] = ACTIONS(582), - [anon_sym__] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(582), - [sym_mutable_specifier] = ACTIONS(584), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_PLUS_EQ] = ACTIONS(582), - [anon_sym_DASH_EQ] = ACTIONS(582), - [anon_sym_STAR_EQ] = ACTIONS(582), - [anon_sym_SLASH_EQ] = ACTIONS(582), - [anon_sym_PERCENT_EQ] = ACTIONS(582), - [anon_sym_AMP_EQ] = ACTIONS(582), - [anon_sym_PIPE_EQ] = ACTIONS(582), - [anon_sym_CARET_EQ] = ACTIONS(582), - [anon_sym_LT_LT_EQ] = ACTIONS(582), - [anon_sym_GT_GT_EQ] = ACTIONS(582), - [anon_sym_DOT] = ACTIONS(584), - [sym_integer_literal] = ACTIONS(582), - [aux_sym_string_literal_token1] = ACTIONS(582), - [sym_char_literal] = ACTIONS(582), - [anon_sym_true] = ACTIONS(584), - [anon_sym_false] = ACTIONS(584), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(584), - [sym_super] = ACTIONS(584), - [sym_crate] = ACTIONS(584), - [sym_metavariable] = ACTIONS(582), - [sym_raw_string_literal] = ACTIONS(582), - [sym_float_literal] = ACTIONS(582), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym_metavariable] = ACTIONS(676), + [sym_raw_string_literal] = ACTIONS(676), + [sym_float_literal] = ACTIONS(676), [sym_block_comment] = ACTIONS(3), }, - [238] = { + [245] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(2035), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2303), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [sym_block] = STATE(2303), - [sym__literal] = STATE(2303), - [sym_string_literal] = STATE(2342), - [sym_boolean_literal] = STATE(2342), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(1988), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_type_binding] = STATE(2307), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [sym_block] = STATE(2307), + [sym__literal] = STATE(2307), + [sym_string_literal] = STATE(2267), + [sym_boolean_literal] = STATE(2267), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(896), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_LBRACE] = ACTIONS(900), @@ -41835,87 +42525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, - [239] = { - [sym_identifier] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(654), - [anon_sym_i8] = ACTIONS(654), - [anon_sym_u16] = ACTIONS(654), - [anon_sym_i16] = ACTIONS(654), - [anon_sym_u32] = ACTIONS(654), - [anon_sym_i32] = ACTIONS(654), - [anon_sym_u64] = ACTIONS(654), - [anon_sym_i64] = ACTIONS(654), - [anon_sym_u128] = ACTIONS(654), - [anon_sym_i128] = ACTIONS(654), - [anon_sym_isize] = ACTIONS(654), - [anon_sym_usize] = ACTIONS(654), - [anon_sym_f32] = ACTIONS(654), - [anon_sym_f64] = ACTIONS(654), - [anon_sym_bool] = ACTIONS(654), - [anon_sym_str] = ACTIONS(654), - [anon_sym_char] = ACTIONS(654), - [anon_sym_as] = ACTIONS(654), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_union] = ACTIONS(654), - [anon_sym_POUND] = ACTIONS(652), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_ref] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_COLON_COLON] = ACTIONS(652), - [anon_sym__] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(652), - [sym_mutable_specifier] = ACTIONS(654), - [anon_sym_DOT_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT_EQ] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_SLASH_EQ] = ACTIONS(652), - [anon_sym_PERCENT_EQ] = ACTIONS(652), - [anon_sym_AMP_EQ] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(652), - [anon_sym_LT_LT_EQ] = ACTIONS(652), - [anon_sym_GT_GT_EQ] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(654), - [sym_integer_literal] = ACTIONS(652), - [aux_sym_string_literal_token1] = ACTIONS(652), - [sym_char_literal] = ACTIONS(652), - [anon_sym_true] = ACTIONS(654), - [anon_sym_false] = ACTIONS(654), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(654), - [sym_super] = ACTIONS(654), - [sym_crate] = ACTIONS(654), - [sym_metavariable] = ACTIONS(652), - [sym_raw_string_literal] = ACTIONS(652), - [sym_float_literal] = ACTIONS(652), - [sym_block_comment] = ACTIONS(3), - }, - [240] = { + [246] = { [sym_identifier] = ACTIONS(666), [anon_sym_LPAREN] = ACTIONS(664), [anon_sym_RBRACE] = ACTIONS(664), @@ -41981,181 +42591,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(664), [anon_sym_GT_GT_EQ] = ACTIONS(664), [anon_sym_DOT] = ACTIONS(666), - [sym_integer_literal] = ACTIONS(664), - [aux_sym_string_literal_token1] = ACTIONS(664), - [sym_char_literal] = ACTIONS(664), - [anon_sym_true] = ACTIONS(666), - [anon_sym_false] = ACTIONS(666), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(666), - [sym_super] = ACTIONS(666), - [sym_crate] = ACTIONS(666), - [sym_metavariable] = ACTIONS(664), - [sym_raw_string_literal] = ACTIONS(664), - [sym_float_literal] = ACTIONS(664), - [sym_block_comment] = ACTIONS(3), - }, - [241] = { - [sym_identifier] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_u8] = ACTIONS(576), - [anon_sym_i8] = ACTIONS(576), - [anon_sym_u16] = ACTIONS(576), - [anon_sym_i16] = ACTIONS(576), - [anon_sym_u32] = ACTIONS(576), - [anon_sym_i32] = ACTIONS(576), - [anon_sym_u64] = ACTIONS(576), - [anon_sym_i64] = ACTIONS(576), - [anon_sym_u128] = ACTIONS(576), - [anon_sym_i128] = ACTIONS(576), - [anon_sym_isize] = ACTIONS(576), - [anon_sym_usize] = ACTIONS(576), - [anon_sym_f32] = ACTIONS(576), - [anon_sym_f64] = ACTIONS(576), - [anon_sym_bool] = ACTIONS(576), - [anon_sym_str] = ACTIONS(576), - [anon_sym_char] = ACTIONS(576), - [anon_sym_as] = ACTIONS(576), - [anon_sym_const] = ACTIONS(576), - [anon_sym_default] = ACTIONS(576), - [anon_sym_union] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(574), - [anon_sym_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(574), - [anon_sym_ref] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(574), - [anon_sym__] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(576), - [anon_sym_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_EQ_EQ] = ACTIONS(574), - [anon_sym_BANG_EQ] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(574), - [anon_sym_LT_LT] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(576), - [anon_sym_SLASH] = ACTIONS(576), - [anon_sym_PERCENT] = ACTIONS(576), - [anon_sym_PLUS_EQ] = ACTIONS(574), - [anon_sym_DASH_EQ] = ACTIONS(574), - [anon_sym_STAR_EQ] = ACTIONS(574), - [anon_sym_SLASH_EQ] = ACTIONS(574), - [anon_sym_PERCENT_EQ] = ACTIONS(574), - [anon_sym_AMP_EQ] = ACTIONS(574), - [anon_sym_PIPE_EQ] = ACTIONS(574), - [anon_sym_CARET_EQ] = ACTIONS(574), - [anon_sym_LT_LT_EQ] = ACTIONS(574), - [anon_sym_GT_GT_EQ] = ACTIONS(574), - [anon_sym_DOT] = ACTIONS(576), - [sym_integer_literal] = ACTIONS(574), - [aux_sym_string_literal_token1] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [anon_sym_true] = ACTIONS(576), - [anon_sym_false] = ACTIONS(576), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(576), - [sym_super] = ACTIONS(576), - [sym_crate] = ACTIONS(576), - [sym_metavariable] = ACTIONS(574), - [sym_raw_string_literal] = ACTIONS(574), - [sym_float_literal] = ACTIONS(574), - [sym_block_comment] = ACTIONS(3), - }, - [242] = { - [sym_identifier] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_QMARK] = ACTIONS(564), - [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_as] = ACTIONS(562), - [anon_sym_const] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_COMMA] = ACTIONS(564), - [anon_sym_ref] = ACTIONS(932), - [anon_sym_LT] = ACTIONS(932), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_COLON_COLON] = ACTIONS(934), - [anon_sym__] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_DOT_DOT_DOT] = ACTIONS(564), - [sym_mutable_specifier] = ACTIONS(932), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_AMP_AMP] = ACTIONS(564), - [anon_sym_PIPE_PIPE] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(562), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym_EQ_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_PLUS_EQ] = ACTIONS(564), - [anon_sym_DASH_EQ] = ACTIONS(564), - [anon_sym_STAR_EQ] = ACTIONS(564), - [anon_sym_SLASH_EQ] = ACTIONS(564), - [anon_sym_PERCENT_EQ] = ACTIONS(564), - [anon_sym_AMP_EQ] = ACTIONS(564), - [anon_sym_PIPE_EQ] = ACTIONS(564), - [anon_sym_CARET_EQ] = ACTIONS(564), - [anon_sym_LT_LT_EQ] = ACTIONS(564), - [anon_sym_GT_GT_EQ] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(562), - [sym_integer_literal] = ACTIONS(934), - [aux_sym_string_literal_token1] = ACTIONS(934), - [sym_char_literal] = ACTIONS(934), - [anon_sym_true] = ACTIONS(932), - [anon_sym_false] = ACTIONS(932), + [sym_integer_literal] = ACTIONS(664), + [aux_sym_string_literal_token1] = ACTIONS(664), + [sym_char_literal] = ACTIONS(664), + [anon_sym_true] = ACTIONS(666), + [anon_sym_false] = ACTIONS(666), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(932), - [sym_super] = ACTIONS(932), - [sym_crate] = ACTIONS(932), - [sym_metavariable] = ACTIONS(934), - [sym_raw_string_literal] = ACTIONS(934), - [sym_float_literal] = ACTIONS(934), + [sym_self] = ACTIONS(666), + [sym_super] = ACTIONS(666), + [sym_crate] = ACTIONS(666), + [sym_metavariable] = ACTIONS(664), + [sym_raw_string_literal] = ACTIONS(664), + [sym_float_literal] = ACTIONS(664), [sym_block_comment] = ACTIONS(3), }, - [243] = { + [247] = { [sym_identifier] = ACTIONS(642), [anon_sym_LPAREN] = ACTIONS(640), [anon_sym_RBRACE] = ACTIONS(640), @@ -42235,247 +42685,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(640), [sym_block_comment] = ACTIONS(3), }, - [244] = { - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(648), - [anon_sym_u8] = ACTIONS(650), - [anon_sym_i8] = ACTIONS(650), - [anon_sym_u16] = ACTIONS(650), - [anon_sym_i16] = ACTIONS(650), - [anon_sym_u32] = ACTIONS(650), - [anon_sym_i32] = ACTIONS(650), - [anon_sym_u64] = ACTIONS(650), - [anon_sym_i64] = ACTIONS(650), - [anon_sym_u128] = ACTIONS(650), - [anon_sym_i128] = ACTIONS(650), - [anon_sym_isize] = ACTIONS(650), - [anon_sym_usize] = ACTIONS(650), - [anon_sym_f32] = ACTIONS(650), - [anon_sym_f64] = ACTIONS(650), - [anon_sym_bool] = ACTIONS(650), - [anon_sym_str] = ACTIONS(650), - [anon_sym_char] = ACTIONS(650), - [anon_sym_as] = ACTIONS(650), - [anon_sym_const] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), - [anon_sym_union] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(648), - [anon_sym_ref] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_COLON_COLON] = ACTIONS(648), - [anon_sym__] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(648), - [sym_mutable_specifier] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_DOT] = ACTIONS(650), - [sym_integer_literal] = ACTIONS(648), - [aux_sym_string_literal_token1] = ACTIONS(648), - [sym_char_literal] = ACTIONS(648), - [anon_sym_true] = ACTIONS(650), - [anon_sym_false] = ACTIONS(650), + [248] = { + [sym_identifier] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(638), + [anon_sym_QMARK] = ACTIONS(636), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_POUND] = ACTIONS(636), + [anon_sym_EQ] = ACTIONS(638), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_ref] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_COLON_COLON] = ACTIONS(636), + [anon_sym__] = ACTIONS(638), + [anon_sym_AMP] = ACTIONS(638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(636), + [sym_mutable_specifier] = ACTIONS(638), + [anon_sym_DOT_DOT] = ACTIONS(638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(638), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), + [anon_sym_PIPE] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_EQ_EQ] = ACTIONS(636), + [anon_sym_BANG_EQ] = ACTIONS(636), + [anon_sym_LT_EQ] = ACTIONS(636), + [anon_sym_GT_EQ] = ACTIONS(636), + [anon_sym_LT_LT] = ACTIONS(638), + [anon_sym_GT_GT] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(638), + [anon_sym_PERCENT] = ACTIONS(638), + [anon_sym_PLUS_EQ] = ACTIONS(636), + [anon_sym_DASH_EQ] = ACTIONS(636), + [anon_sym_STAR_EQ] = ACTIONS(636), + [anon_sym_SLASH_EQ] = ACTIONS(636), + [anon_sym_PERCENT_EQ] = ACTIONS(636), + [anon_sym_AMP_EQ] = ACTIONS(636), + [anon_sym_PIPE_EQ] = ACTIONS(636), + [anon_sym_CARET_EQ] = ACTIONS(636), + [anon_sym_LT_LT_EQ] = ACTIONS(636), + [anon_sym_GT_GT_EQ] = ACTIONS(636), + [anon_sym_DOT] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(636), + [aux_sym_string_literal_token1] = ACTIONS(636), + [sym_char_literal] = ACTIONS(636), + [anon_sym_true] = ACTIONS(638), + [anon_sym_false] = ACTIONS(638), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(650), - [sym_super] = ACTIONS(650), - [sym_crate] = ACTIONS(650), - [sym_metavariable] = ACTIONS(648), - [sym_raw_string_literal] = ACTIONS(648), - [sym_float_literal] = ACTIONS(648), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(636), + [sym_raw_string_literal] = ACTIONS(636), + [sym_float_literal] = ACTIONS(636), [sym_block_comment] = ACTIONS(3), }, - [245] = { - [sym_identifier] = ACTIONS(618), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_LBRACK] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(618), - [anon_sym_QMARK] = ACTIONS(616), - [anon_sym_u8] = ACTIONS(618), - [anon_sym_i8] = ACTIONS(618), - [anon_sym_u16] = ACTIONS(618), - [anon_sym_i16] = ACTIONS(618), - [anon_sym_u32] = ACTIONS(618), - [anon_sym_i32] = ACTIONS(618), - [anon_sym_u64] = ACTIONS(618), - [anon_sym_i64] = ACTIONS(618), - [anon_sym_u128] = ACTIONS(618), - [anon_sym_i128] = ACTIONS(618), - [anon_sym_isize] = ACTIONS(618), - [anon_sym_usize] = ACTIONS(618), - [anon_sym_f32] = ACTIONS(618), - [anon_sym_f64] = ACTIONS(618), - [anon_sym_bool] = ACTIONS(618), - [anon_sym_str] = ACTIONS(618), - [anon_sym_char] = ACTIONS(618), - [anon_sym_as] = ACTIONS(618), - [anon_sym_const] = ACTIONS(618), - [anon_sym_default] = ACTIONS(618), - [anon_sym_union] = ACTIONS(618), - [anon_sym_POUND] = ACTIONS(616), - [anon_sym_EQ] = ACTIONS(618), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_ref] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(618), - [anon_sym_GT] = ACTIONS(618), - [anon_sym_COLON_COLON] = ACTIONS(616), - [anon_sym__] = ACTIONS(618), - [anon_sym_AMP] = ACTIONS(618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(616), - [sym_mutable_specifier] = ACTIONS(618), - [anon_sym_DOT_DOT] = ACTIONS(618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_AMP_AMP] = ACTIONS(616), - [anon_sym_PIPE_PIPE] = ACTIONS(616), - [anon_sym_PIPE] = ACTIONS(618), - [anon_sym_CARET] = ACTIONS(618), - [anon_sym_EQ_EQ] = ACTIONS(616), - [anon_sym_BANG_EQ] = ACTIONS(616), - [anon_sym_LT_EQ] = ACTIONS(616), - [anon_sym_GT_EQ] = ACTIONS(616), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_GT_GT] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(618), - [anon_sym_PLUS_EQ] = ACTIONS(616), - [anon_sym_DASH_EQ] = ACTIONS(616), - [anon_sym_STAR_EQ] = ACTIONS(616), - [anon_sym_SLASH_EQ] = ACTIONS(616), - [anon_sym_PERCENT_EQ] = ACTIONS(616), - [anon_sym_AMP_EQ] = ACTIONS(616), - [anon_sym_PIPE_EQ] = ACTIONS(616), - [anon_sym_CARET_EQ] = ACTIONS(616), - [anon_sym_LT_LT_EQ] = ACTIONS(616), - [anon_sym_GT_GT_EQ] = ACTIONS(616), - [anon_sym_DOT] = ACTIONS(618), - [sym_integer_literal] = ACTIONS(616), - [aux_sym_string_literal_token1] = ACTIONS(616), - [sym_char_literal] = ACTIONS(616), - [anon_sym_true] = ACTIONS(618), - [anon_sym_false] = ACTIONS(618), + [249] = { + [sym_identifier] = ACTIONS(626), + [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(624), + [anon_sym_u8] = ACTIONS(626), + [anon_sym_i8] = ACTIONS(626), + [anon_sym_u16] = ACTIONS(626), + [anon_sym_i16] = ACTIONS(626), + [anon_sym_u32] = ACTIONS(626), + [anon_sym_i32] = ACTIONS(626), + [anon_sym_u64] = ACTIONS(626), + [anon_sym_i64] = ACTIONS(626), + [anon_sym_u128] = ACTIONS(626), + [anon_sym_i128] = ACTIONS(626), + [anon_sym_isize] = ACTIONS(626), + [anon_sym_usize] = ACTIONS(626), + [anon_sym_f32] = ACTIONS(626), + [anon_sym_f64] = ACTIONS(626), + [anon_sym_bool] = ACTIONS(626), + [anon_sym_str] = ACTIONS(626), + [anon_sym_char] = ACTIONS(626), + [anon_sym_as] = ACTIONS(626), + [anon_sym_const] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_union] = ACTIONS(626), + [anon_sym_POUND] = ACTIONS(624), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(624), + [anon_sym_ref] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_COLON_COLON] = ACTIONS(624), + [anon_sym__] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(624), + [sym_mutable_specifier] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_BANG_EQ] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(624), + [anon_sym_DASH_EQ] = ACTIONS(624), + [anon_sym_STAR_EQ] = ACTIONS(624), + [anon_sym_SLASH_EQ] = ACTIONS(624), + [anon_sym_PERCENT_EQ] = ACTIONS(624), + [anon_sym_AMP_EQ] = ACTIONS(624), + [anon_sym_PIPE_EQ] = ACTIONS(624), + [anon_sym_CARET_EQ] = ACTIONS(624), + [anon_sym_LT_LT_EQ] = ACTIONS(624), + [anon_sym_GT_GT_EQ] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [sym_integer_literal] = ACTIONS(624), + [aux_sym_string_literal_token1] = ACTIONS(624), + [sym_char_literal] = ACTIONS(624), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(618), - [sym_super] = ACTIONS(618), - [sym_crate] = ACTIONS(618), - [sym_metavariable] = ACTIONS(616), - [sym_raw_string_literal] = ACTIONS(616), - [sym_float_literal] = ACTIONS(616), + [sym_self] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_crate] = ACTIONS(626), + [sym_metavariable] = ACTIONS(624), + [sym_raw_string_literal] = ACTIONS(624), + [sym_float_literal] = ACTIONS(624), [sym_block_comment] = ACTIONS(3), }, - [246] = { - [sym_identifier] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(568), - [anon_sym_i8] = ACTIONS(568), - [anon_sym_u16] = ACTIONS(568), - [anon_sym_i16] = ACTIONS(568), - [anon_sym_u32] = ACTIONS(568), - [anon_sym_i32] = ACTIONS(568), - [anon_sym_u64] = ACTIONS(568), - [anon_sym_i64] = ACTIONS(568), - [anon_sym_u128] = ACTIONS(568), - [anon_sym_i128] = ACTIONS(568), - [anon_sym_isize] = ACTIONS(568), - [anon_sym_usize] = ACTIONS(568), - [anon_sym_f32] = ACTIONS(568), - [anon_sym_f64] = ACTIONS(568), - [anon_sym_bool] = ACTIONS(568), - [anon_sym_str] = ACTIONS(568), - [anon_sym_char] = ACTIONS(568), - [anon_sym_as] = ACTIONS(568), - [anon_sym_const] = ACTIONS(568), - [anon_sym_default] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(566), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_ref] = ACTIONS(568), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(566), - [anon_sym__] = ACTIONS(568), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [sym_mutable_specifier] = ACTIONS(568), - [anon_sym_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(566), - [aux_sym_string_literal_token1] = ACTIONS(566), - [sym_char_literal] = ACTIONS(566), - [anon_sym_true] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), + [250] = { + [sym_identifier] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_u8] = ACTIONS(630), + [anon_sym_i8] = ACTIONS(630), + [anon_sym_u16] = ACTIONS(630), + [anon_sym_i16] = ACTIONS(630), + [anon_sym_u32] = ACTIONS(630), + [anon_sym_i32] = ACTIONS(630), + [anon_sym_u64] = ACTIONS(630), + [anon_sym_i64] = ACTIONS(630), + [anon_sym_u128] = ACTIONS(630), + [anon_sym_i128] = ACTIONS(630), + [anon_sym_isize] = ACTIONS(630), + [anon_sym_usize] = ACTIONS(630), + [anon_sym_f32] = ACTIONS(630), + [anon_sym_f64] = ACTIONS(630), + [anon_sym_bool] = ACTIONS(630), + [anon_sym_str] = ACTIONS(630), + [anon_sym_char] = ACTIONS(630), + [anon_sym_as] = ACTIONS(630), + [anon_sym_const] = ACTIONS(630), + [anon_sym_default] = ACTIONS(630), + [anon_sym_union] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(628), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(628), + [anon_sym_ref] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_COLON_COLON] = ACTIONS(628), + [anon_sym__] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(630), + [anon_sym_DOT_DOT_DOT] = ACTIONS(628), + [sym_mutable_specifier] = ACTIONS(630), + [anon_sym_DOT_DOT] = ACTIONS(630), + [anon_sym_DOT_DOT_EQ] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_PIPE_PIPE] = ACTIONS(628), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym_EQ_EQ] = ACTIONS(628), + [anon_sym_BANG_EQ] = ACTIONS(628), + [anon_sym_LT_EQ] = ACTIONS(628), + [anon_sym_GT_EQ] = ACTIONS(628), + [anon_sym_LT_LT] = ACTIONS(630), + [anon_sym_GT_GT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_PLUS_EQ] = ACTIONS(628), + [anon_sym_DASH_EQ] = ACTIONS(628), + [anon_sym_STAR_EQ] = ACTIONS(628), + [anon_sym_SLASH_EQ] = ACTIONS(628), + [anon_sym_PERCENT_EQ] = ACTIONS(628), + [anon_sym_AMP_EQ] = ACTIONS(628), + [anon_sym_PIPE_EQ] = ACTIONS(628), + [anon_sym_CARET_EQ] = ACTIONS(628), + [anon_sym_LT_LT_EQ] = ACTIONS(628), + [anon_sym_GT_GT_EQ] = ACTIONS(628), + [anon_sym_DOT] = ACTIONS(630), + [sym_integer_literal] = ACTIONS(628), + [aux_sym_string_literal_token1] = ACTIONS(628), + [sym_char_literal] = ACTIONS(628), + [anon_sym_true] = ACTIONS(630), + [anon_sym_false] = ACTIONS(630), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(568), - [sym_super] = ACTIONS(568), - [sym_crate] = ACTIONS(568), - [sym_metavariable] = ACTIONS(566), - [sym_raw_string_literal] = ACTIONS(566), - [sym_float_literal] = ACTIONS(566), + [sym_self] = ACTIONS(630), + [sym_super] = ACTIONS(630), + [sym_crate] = ACTIONS(630), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(628), + [sym_float_literal] = ACTIONS(628), [sym_block_comment] = ACTIONS(3), }, - [247] = { + [251] = { + [sym_identifier] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_u8] = ACTIONS(634), + [anon_sym_i8] = ACTIONS(634), + [anon_sym_u16] = ACTIONS(634), + [anon_sym_i16] = ACTIONS(634), + [anon_sym_u32] = ACTIONS(634), + [anon_sym_i32] = ACTIONS(634), + [anon_sym_u64] = ACTIONS(634), + [anon_sym_i64] = ACTIONS(634), + [anon_sym_u128] = ACTIONS(634), + [anon_sym_i128] = ACTIONS(634), + [anon_sym_isize] = ACTIONS(634), + [anon_sym_usize] = ACTIONS(634), + [anon_sym_f32] = ACTIONS(634), + [anon_sym_f64] = ACTIONS(634), + [anon_sym_bool] = ACTIONS(634), + [anon_sym_str] = ACTIONS(634), + [anon_sym_char] = ACTIONS(634), + [anon_sym_as] = ACTIONS(634), + [anon_sym_const] = ACTIONS(634), + [anon_sym_default] = ACTIONS(634), + [anon_sym_union] = ACTIONS(634), + [anon_sym_POUND] = ACTIONS(632), + [anon_sym_EQ] = ACTIONS(634), + [anon_sym_COMMA] = ACTIONS(632), + [anon_sym_ref] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(634), + [anon_sym_COLON_COLON] = ACTIONS(632), + [anon_sym__] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(632), + [sym_mutable_specifier] = ACTIONS(634), + [anon_sym_DOT_DOT] = ACTIONS(634), + [anon_sym_DOT_DOT_EQ] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_AMP_AMP] = ACTIONS(632), + [anon_sym_PIPE_PIPE] = ACTIONS(632), + [anon_sym_PIPE] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_EQ_EQ] = ACTIONS(632), + [anon_sym_BANG_EQ] = ACTIONS(632), + [anon_sym_LT_EQ] = ACTIONS(632), + [anon_sym_GT_EQ] = ACTIONS(632), + [anon_sym_LT_LT] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(634), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(634), + [anon_sym_PLUS_EQ] = ACTIONS(632), + [anon_sym_DASH_EQ] = ACTIONS(632), + [anon_sym_STAR_EQ] = ACTIONS(632), + [anon_sym_SLASH_EQ] = ACTIONS(632), + [anon_sym_PERCENT_EQ] = ACTIONS(632), + [anon_sym_AMP_EQ] = ACTIONS(632), + [anon_sym_PIPE_EQ] = ACTIONS(632), + [anon_sym_CARET_EQ] = ACTIONS(632), + [anon_sym_LT_LT_EQ] = ACTIONS(632), + [anon_sym_GT_GT_EQ] = ACTIONS(632), + [anon_sym_DOT] = ACTIONS(634), + [sym_integer_literal] = ACTIONS(632), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(634), + [sym_super] = ACTIONS(634), + [sym_crate] = ACTIONS(634), + [sym_metavariable] = ACTIONS(632), + [sym_raw_string_literal] = ACTIONS(632), + [sym_float_literal] = ACTIONS(632), + [sym_block_comment] = ACTIONS(3), + }, + [252] = { [sym_identifier] = ACTIONS(646), [anon_sym_LPAREN] = ACTIONS(644), [anon_sym_RBRACE] = ACTIONS(644), @@ -42555,354 +43085,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(644), [sym_block_comment] = ACTIONS(3), }, - [248] = { - [sym_identifier] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(672), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym__] = ACTIONS(674), - [anon_sym_AMP] = ACTIONS(674), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [sym_mutable_specifier] = ACTIONS(674), - [anon_sym_DOT_DOT] = ACTIONS(674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_AMP_AMP] = ACTIONS(672), - [anon_sym_PIPE_PIPE] = ACTIONS(672), - [anon_sym_PIPE] = ACTIONS(674), - [anon_sym_CARET] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(672), - [anon_sym_BANG_EQ] = ACTIONS(672), - [anon_sym_LT_EQ] = ACTIONS(672), - [anon_sym_GT_EQ] = ACTIONS(672), - [anon_sym_LT_LT] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(674), - [anon_sym_PERCENT] = ACTIONS(674), - [anon_sym_PLUS_EQ] = ACTIONS(672), - [anon_sym_DASH_EQ] = ACTIONS(672), - [anon_sym_STAR_EQ] = ACTIONS(672), - [anon_sym_SLASH_EQ] = ACTIONS(672), - [anon_sym_PERCENT_EQ] = ACTIONS(672), - [anon_sym_AMP_EQ] = ACTIONS(672), - [anon_sym_PIPE_EQ] = ACTIONS(672), - [anon_sym_CARET_EQ] = ACTIONS(672), - [anon_sym_LT_LT_EQ] = ACTIONS(672), - [anon_sym_GT_GT_EQ] = ACTIONS(672), - [anon_sym_DOT] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(672), - [aux_sym_string_literal_token1] = ACTIONS(672), - [sym_char_literal] = ACTIONS(672), - [anon_sym_true] = ACTIONS(674), - [anon_sym_false] = ACTIONS(674), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym_metavariable] = ACTIONS(672), - [sym_raw_string_literal] = ACTIONS(672), - [sym_float_literal] = ACTIONS(672), + [253] = { + [sym_identifier] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(602), + [anon_sym_i8] = ACTIONS(602), + [anon_sym_u16] = ACTIONS(602), + [anon_sym_i16] = ACTIONS(602), + [anon_sym_u32] = ACTIONS(602), + [anon_sym_i32] = ACTIONS(602), + [anon_sym_u64] = ACTIONS(602), + [anon_sym_i64] = ACTIONS(602), + [anon_sym_u128] = ACTIONS(602), + [anon_sym_i128] = ACTIONS(602), + [anon_sym_isize] = ACTIONS(602), + [anon_sym_usize] = ACTIONS(602), + [anon_sym_f32] = ACTIONS(602), + [anon_sym_f64] = ACTIONS(602), + [anon_sym_bool] = ACTIONS(602), + [anon_sym_str] = ACTIONS(602), + [anon_sym_char] = ACTIONS(602), + [anon_sym_as] = ACTIONS(602), + [anon_sym_const] = ACTIONS(602), + [anon_sym_default] = ACTIONS(602), + [anon_sym_union] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(600), + [anon_sym_EQ] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(600), + [anon_sym_ref] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(600), + [anon_sym__] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [sym_mutable_specifier] = ACTIONS(602), + [anon_sym_DOT_DOT] = ACTIONS(602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_EQ_EQ] = ACTIONS(600), + [anon_sym_BANG_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(602), + [anon_sym_PERCENT] = ACTIONS(602), + [anon_sym_PLUS_EQ] = ACTIONS(600), + [anon_sym_DASH_EQ] = ACTIONS(600), + [anon_sym_STAR_EQ] = ACTIONS(600), + [anon_sym_SLASH_EQ] = ACTIONS(600), + [anon_sym_PERCENT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(600), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_DOT] = ACTIONS(602), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(600), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(602), + [anon_sym_false] = ACTIONS(602), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(602), + [sym_super] = ACTIONS(602), + [sym_crate] = ACTIONS(602), + [sym_metavariable] = ACTIONS(600), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [249] = { - [sym_identifier] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_QMARK] = ACTIONS(624), - [anon_sym_u8] = ACTIONS(626), - [anon_sym_i8] = ACTIONS(626), - [anon_sym_u16] = ACTIONS(626), - [anon_sym_i16] = ACTIONS(626), - [anon_sym_u32] = ACTIONS(626), - [anon_sym_i32] = ACTIONS(626), - [anon_sym_u64] = ACTIONS(626), - [anon_sym_i64] = ACTIONS(626), - [anon_sym_u128] = ACTIONS(626), - [anon_sym_i128] = ACTIONS(626), - [anon_sym_isize] = ACTIONS(626), - [anon_sym_usize] = ACTIONS(626), - [anon_sym_f32] = ACTIONS(626), - [anon_sym_f64] = ACTIONS(626), - [anon_sym_bool] = ACTIONS(626), - [anon_sym_str] = ACTIONS(626), - [anon_sym_char] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_POUND] = ACTIONS(624), - [anon_sym_EQ] = ACTIONS(626), - [anon_sym_COMMA] = ACTIONS(624), - [anon_sym_ref] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_COLON_COLON] = ACTIONS(624), - [anon_sym__] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(624), - [sym_mutable_specifier] = ACTIONS(626), - [anon_sym_DOT_DOT] = ACTIONS(626), - [anon_sym_DOT_DOT_EQ] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_CARET] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_BANG_EQ] = ACTIONS(624), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_SLASH] = ACTIONS(626), - [anon_sym_PERCENT] = ACTIONS(626), - [anon_sym_PLUS_EQ] = ACTIONS(624), - [anon_sym_DASH_EQ] = ACTIONS(624), - [anon_sym_STAR_EQ] = ACTIONS(624), - [anon_sym_SLASH_EQ] = ACTIONS(624), - [anon_sym_PERCENT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(624), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_DOT] = ACTIONS(626), - [sym_integer_literal] = ACTIONS(624), - [aux_sym_string_literal_token1] = ACTIONS(624), - [sym_char_literal] = ACTIONS(624), - [anon_sym_true] = ACTIONS(626), - [anon_sym_false] = ACTIONS(626), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_crate] = ACTIONS(626), - [sym_metavariable] = ACTIONS(624), - [sym_raw_string_literal] = ACTIONS(624), - [sym_float_literal] = ACTIONS(624), + [254] = { + [sym_identifier] = ACTIONS(610), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(608), + [anon_sym_u8] = ACTIONS(610), + [anon_sym_i8] = ACTIONS(610), + [anon_sym_u16] = ACTIONS(610), + [anon_sym_i16] = ACTIONS(610), + [anon_sym_u32] = ACTIONS(610), + [anon_sym_i32] = ACTIONS(610), + [anon_sym_u64] = ACTIONS(610), + [anon_sym_i64] = ACTIONS(610), + [anon_sym_u128] = ACTIONS(610), + [anon_sym_i128] = ACTIONS(610), + [anon_sym_isize] = ACTIONS(610), + [anon_sym_usize] = ACTIONS(610), + [anon_sym_f32] = ACTIONS(610), + [anon_sym_f64] = ACTIONS(610), + [anon_sym_bool] = ACTIONS(610), + [anon_sym_str] = ACTIONS(610), + [anon_sym_char] = ACTIONS(610), + [anon_sym_as] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_default] = ACTIONS(610), + [anon_sym_union] = ACTIONS(610), + [anon_sym_POUND] = ACTIONS(608), + [anon_sym_EQ] = ACTIONS(610), + [anon_sym_COMMA] = ACTIONS(608), + [anon_sym_ref] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_COLON_COLON] = ACTIONS(608), + [anon_sym__] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(608), + [sym_mutable_specifier] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_BANG_EQ] = ACTIONS(608), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(610), + [anon_sym_PLUS_EQ] = ACTIONS(608), + [anon_sym_DASH_EQ] = ACTIONS(608), + [anon_sym_STAR_EQ] = ACTIONS(608), + [anon_sym_SLASH_EQ] = ACTIONS(608), + [anon_sym_PERCENT_EQ] = ACTIONS(608), + [anon_sym_AMP_EQ] = ACTIONS(608), + [anon_sym_PIPE_EQ] = ACTIONS(608), + [anon_sym_CARET_EQ] = ACTIONS(608), + [anon_sym_LT_LT_EQ] = ACTIONS(608), + [anon_sym_GT_GT_EQ] = ACTIONS(608), + [anon_sym_DOT] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(608), + [aux_sym_string_literal_token1] = ACTIONS(608), + [sym_char_literal] = ACTIONS(608), + [anon_sym_true] = ACTIONS(610), + [anon_sym_false] = ACTIONS(610), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(610), + [sym_super] = ACTIONS(610), + [sym_crate] = ACTIONS(610), + [sym_metavariable] = ACTIONS(608), + [sym_raw_string_literal] = ACTIONS(608), + [sym_float_literal] = ACTIONS(608), [sym_block_comment] = ACTIONS(3), }, - [250] = { - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RBRACE] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(660), - [anon_sym_u8] = ACTIONS(662), - [anon_sym_i8] = ACTIONS(662), - [anon_sym_u16] = ACTIONS(662), - [anon_sym_i16] = ACTIONS(662), - [anon_sym_u32] = ACTIONS(662), - [anon_sym_i32] = ACTIONS(662), - [anon_sym_u64] = ACTIONS(662), - [anon_sym_i64] = ACTIONS(662), - [anon_sym_u128] = ACTIONS(662), - [anon_sym_i128] = ACTIONS(662), - [anon_sym_isize] = ACTIONS(662), - [anon_sym_usize] = ACTIONS(662), - [anon_sym_f32] = ACTIONS(662), - [anon_sym_f64] = ACTIONS(662), - [anon_sym_bool] = ACTIONS(662), - [anon_sym_str] = ACTIONS(662), - [anon_sym_char] = ACTIONS(662), - [anon_sym_as] = ACTIONS(662), - [anon_sym_const] = ACTIONS(662), - [anon_sym_default] = ACTIONS(662), - [anon_sym_union] = ACTIONS(662), - [anon_sym_POUND] = ACTIONS(660), - [anon_sym_EQ] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(660), - [anon_sym_ref] = ACTIONS(662), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_COLON_COLON] = ACTIONS(660), - [anon_sym__] = ACTIONS(662), - [anon_sym_AMP] = ACTIONS(662), - [anon_sym_DOT_DOT_DOT] = ACTIONS(660), - [sym_mutable_specifier] = ACTIONS(662), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_DOT_DOT_EQ] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(660), - [anon_sym_PIPE_PIPE] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(662), - [anon_sym_CARET] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(660), - [anon_sym_LT_LT] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_SLASH] = ACTIONS(662), - [anon_sym_PERCENT] = ACTIONS(662), - [anon_sym_PLUS_EQ] = ACTIONS(660), - [anon_sym_DASH_EQ] = ACTIONS(660), - [anon_sym_STAR_EQ] = ACTIONS(660), - [anon_sym_SLASH_EQ] = ACTIONS(660), - [anon_sym_PERCENT_EQ] = ACTIONS(660), - [anon_sym_AMP_EQ] = ACTIONS(660), - [anon_sym_PIPE_EQ] = ACTIONS(660), - [anon_sym_CARET_EQ] = ACTIONS(660), - [anon_sym_LT_LT_EQ] = ACTIONS(660), - [anon_sym_GT_GT_EQ] = ACTIONS(660), - [anon_sym_DOT] = ACTIONS(662), - [sym_integer_literal] = ACTIONS(660), - [aux_sym_string_literal_token1] = ACTIONS(660), - [sym_char_literal] = ACTIONS(660), - [anon_sym_true] = ACTIONS(662), - [anon_sym_false] = ACTIONS(662), + [255] = { + [sym_identifier] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_as] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_POUND] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(580), + [anon_sym_COMMA] = ACTIONS(578), + [anon_sym_ref] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym__] = ACTIONS(580), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [sym_mutable_specifier] = ACTIONS(580), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_PLUS_EQ] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(578), + [anon_sym_STAR_EQ] = ACTIONS(578), + [anon_sym_SLASH_EQ] = ACTIONS(578), + [anon_sym_PERCENT_EQ] = ACTIONS(578), + [anon_sym_AMP_EQ] = ACTIONS(578), + [anon_sym_PIPE_EQ] = ACTIONS(578), + [anon_sym_CARET_EQ] = ACTIONS(578), + [anon_sym_LT_LT_EQ] = ACTIONS(578), + [anon_sym_GT_GT_EQ] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(580), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(662), - [sym_super] = ACTIONS(662), - [sym_crate] = ACTIONS(662), - [sym_metavariable] = ACTIONS(660), - [sym_raw_string_literal] = ACTIONS(660), - [sym_float_literal] = ACTIONS(660), + [sym_self] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_crate] = ACTIONS(580), + [sym_metavariable] = ACTIONS(578), + [sym_raw_string_literal] = ACTIONS(578), + [sym_float_literal] = ACTIONS(578), [sym_block_comment] = ACTIONS(3), }, - [251] = { - [sym_identifier] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(622), - [anon_sym_QMARK] = ACTIONS(620), - [anon_sym_u8] = ACTIONS(622), - [anon_sym_i8] = ACTIONS(622), - [anon_sym_u16] = ACTIONS(622), - [anon_sym_i16] = ACTIONS(622), - [anon_sym_u32] = ACTIONS(622), - [anon_sym_i32] = ACTIONS(622), - [anon_sym_u64] = ACTIONS(622), - [anon_sym_i64] = ACTIONS(622), - [anon_sym_u128] = ACTIONS(622), - [anon_sym_i128] = ACTIONS(622), - [anon_sym_isize] = ACTIONS(622), - [anon_sym_usize] = ACTIONS(622), - [anon_sym_f32] = ACTIONS(622), - [anon_sym_f64] = ACTIONS(622), - [anon_sym_bool] = ACTIONS(622), - [anon_sym_str] = ACTIONS(622), - [anon_sym_char] = ACTIONS(622), - [anon_sym_as] = ACTIONS(622), - [anon_sym_const] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_union] = ACTIONS(622), - [anon_sym_POUND] = ACTIONS(620), - [anon_sym_EQ] = ACTIONS(622), - [anon_sym_COMMA] = ACTIONS(620), - [anon_sym_ref] = ACTIONS(622), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_COLON_COLON] = ACTIONS(620), - [anon_sym__] = ACTIONS(622), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(620), - [sym_mutable_specifier] = ACTIONS(622), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DOT_DOT_EQ] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(622), - [anon_sym_AMP_AMP] = ACTIONS(620), - [anon_sym_PIPE_PIPE] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(622), - [anon_sym_CARET] = ACTIONS(622), - [anon_sym_EQ_EQ] = ACTIONS(620), - [anon_sym_BANG_EQ] = ACTIONS(620), - [anon_sym_LT_EQ] = ACTIONS(620), - [anon_sym_GT_EQ] = ACTIONS(620), - [anon_sym_LT_LT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(622), - [anon_sym_SLASH] = ACTIONS(622), - [anon_sym_PERCENT] = ACTIONS(622), - [anon_sym_PLUS_EQ] = ACTIONS(620), - [anon_sym_DASH_EQ] = ACTIONS(620), - [anon_sym_STAR_EQ] = ACTIONS(620), - [anon_sym_SLASH_EQ] = ACTIONS(620), - [anon_sym_PERCENT_EQ] = ACTIONS(620), - [anon_sym_AMP_EQ] = ACTIONS(620), - [anon_sym_PIPE_EQ] = ACTIONS(620), - [anon_sym_CARET_EQ] = ACTIONS(620), - [anon_sym_LT_LT_EQ] = ACTIONS(620), - [anon_sym_GT_GT_EQ] = ACTIONS(620), - [anon_sym_DOT] = ACTIONS(622), - [sym_integer_literal] = ACTIONS(620), - [aux_sym_string_literal_token1] = ACTIONS(620), - [sym_char_literal] = ACTIONS(620), - [anon_sym_true] = ACTIONS(622), - [anon_sym_false] = ACTIONS(622), + [256] = { + [sym_identifier] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), + [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_as] = ACTIONS(564), + [anon_sym_const] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_POUND] = ACTIONS(934), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_ref] = ACTIONS(932), + [anon_sym_LT] = ACTIONS(932), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_COLON_COLON] = ACTIONS(934), + [anon_sym__] = ACTIONS(932), + [anon_sym_AMP] = ACTIONS(932), + [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [sym_mutable_specifier] = ACTIONS(932), + [anon_sym_DOT_DOT] = ACTIONS(932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_AMP_AMP] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(562), + [anon_sym_DASH_EQ] = ACTIONS(562), + [anon_sym_STAR_EQ] = ACTIONS(562), + [anon_sym_SLASH_EQ] = ACTIONS(562), + [anon_sym_PERCENT_EQ] = ACTIONS(562), + [anon_sym_AMP_EQ] = ACTIONS(562), + [anon_sym_PIPE_EQ] = ACTIONS(562), + [anon_sym_CARET_EQ] = ACTIONS(562), + [anon_sym_LT_LT_EQ] = ACTIONS(562), + [anon_sym_GT_GT_EQ] = ACTIONS(562), + [anon_sym_DOT] = ACTIONS(564), + [sym_integer_literal] = ACTIONS(934), + [aux_sym_string_literal_token1] = ACTIONS(934), + [sym_char_literal] = ACTIONS(934), + [anon_sym_true] = ACTIONS(932), + [anon_sym_false] = ACTIONS(932), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(622), - [sym_super] = ACTIONS(622), - [sym_crate] = ACTIONS(622), - [sym_metavariable] = ACTIONS(620), - [sym_raw_string_literal] = ACTIONS(620), - [sym_float_literal] = ACTIONS(620), + [sym_self] = ACTIONS(932), + [sym_super] = ACTIONS(932), + [sym_crate] = ACTIONS(932), + [sym_metavariable] = ACTIONS(934), + [sym_raw_string_literal] = ACTIONS(934), + [sym_float_literal] = ACTIONS(934), [sym_block_comment] = ACTIONS(3), }, - [252] = { + [257] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), + [sym_extern_modifier] = STATE(1594), [sym__type] = STATE(1821), - [sym_bracketed_type] = STATE(2395), + [sym_bracketed_type] = STATE(2386), [sym_lifetime] = STATE(1820), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2042), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [sym_block] = STATE(2042), - [sym__literal] = STATE(2042), - [sym_string_literal] = STATE(2342), - [sym_boolean_literal] = STATE(2342), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_type_binding] = STATE(2054), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [sym_block] = STATE(2054), + [sym__literal] = STATE(2054), + [sym_string_literal] = STATE(2267), + [sym_boolean_literal] = STATE(2267), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(896), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_LBRACE] = ACTIONS(900), @@ -42954,34 +43484,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, - [253] = { + [258] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1849), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(1848), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2096), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [sym_block] = STATE(2096), - [sym__literal] = STATE(2096), - [sym_string_literal] = STATE(2342), - [sym_boolean_literal] = STATE(2342), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(1988), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_type_binding] = STATE(2307), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [sym_block] = STATE(2307), + [sym__literal] = STATE(2307), + [sym_string_literal] = STATE(2267), + [sym_boolean_literal] = STATE(2267), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(896), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_LBRACE] = ACTIONS(900), @@ -43033,34 +43563,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, - [254] = { + [259] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(2035), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2303), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [sym_block] = STATE(2303), - [sym__literal] = STATE(2303), - [sym_string_literal] = STATE(2342), - [sym_boolean_literal] = STATE(2342), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1812), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(1811), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_type_binding] = STATE(2096), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [sym_block] = STATE(2096), + [sym__literal] = STATE(2096), + [sym_string_literal] = STATE(2267), + [sym_boolean_literal] = STATE(2267), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(896), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_LBRACE] = ACTIONS(900), @@ -43112,36 +43642,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, - [255] = { - [sym_empty_statement] = STATE(257), - [sym_macro_definition] = STATE(257), - [sym_attribute_item] = STATE(257), - [sym_inner_attribute_item] = STATE(257), - [sym_mod_item] = STATE(257), - [sym_foreign_mod_item] = STATE(257), - [sym_struct_item] = STATE(257), - [sym_union_item] = STATE(257), - [sym_enum_item] = STATE(257), - [sym_extern_crate_declaration] = STATE(257), - [sym_const_item] = STATE(257), - [sym_static_item] = STATE(257), - [sym_type_item] = STATE(257), - [sym_function_item] = STATE(257), - [sym_function_signature_item] = STATE(257), + [260] = { + [sym_empty_statement] = STATE(261), + [sym_macro_definition] = STATE(261), + [sym_attribute_item] = STATE(261), + [sym_inner_attribute_item] = STATE(261), + [sym_mod_item] = STATE(261), + [sym_foreign_mod_item] = STATE(261), + [sym_struct_item] = STATE(261), + [sym_union_item] = STATE(261), + [sym_enum_item] = STATE(261), + [sym_extern_crate_declaration] = STATE(261), + [sym_const_item] = STATE(261), + [sym_static_item] = STATE(261), + [sym_type_item] = STATE(261), + [sym_function_item] = STATE(261), + [sym_function_signature_item] = STATE(261), [sym_function_modifiers] = STATE(2564), - [sym_impl_item] = STATE(257), - [sym_trait_item] = STATE(257), - [sym_associated_type] = STATE(257), - [sym_let_declaration] = STATE(257), - [sym_use_declaration] = STATE(257), - [sym_extern_modifier] = STATE(1548), - [sym_visibility_modifier] = STATE(1353), - [sym_bracketed_type] = STATE(2391), - [sym_generic_type_with_turbofish] = STATE(2388), - [sym_macro_invocation] = STATE(257), - [sym_scoped_identifier] = STATE(2260), - [aux_sym_declaration_list_repeat1] = STATE(257), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_impl_item] = STATE(261), + [sym_trait_item] = STATE(261), + [sym_associated_type] = STATE(261), + [sym_let_declaration] = STATE(261), + [sym_use_declaration] = STATE(261), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1363), + [sym_bracketed_type] = STATE(2378), + [sym_generic_type_with_turbofish] = STATE(2373), + [sym_macro_invocation] = STATE(261), + [sym_scoped_identifier] = STATE(2341), + [aux_sym_declaration_list_repeat1] = STATE(261), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(936), [anon_sym_SEMI] = ACTIONS(938), [anon_sym_macro_rules_BANG] = ACTIONS(940), @@ -43190,118 +43720,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(982), [sym_block_comment] = ACTIONS(3), }, - [256] = { - [sym_empty_statement] = STATE(256), - [sym_macro_definition] = STATE(256), - [sym_attribute_item] = STATE(256), - [sym_inner_attribute_item] = STATE(256), - [sym_mod_item] = STATE(256), - [sym_foreign_mod_item] = STATE(256), - [sym_struct_item] = STATE(256), - [sym_union_item] = STATE(256), - [sym_enum_item] = STATE(256), - [sym_extern_crate_declaration] = STATE(256), - [sym_const_item] = STATE(256), - [sym_static_item] = STATE(256), - [sym_type_item] = STATE(256), - [sym_function_item] = STATE(256), - [sym_function_signature_item] = STATE(256), - [sym_function_modifiers] = STATE(2564), - [sym_impl_item] = STATE(256), - [sym_trait_item] = STATE(256), - [sym_associated_type] = STATE(256), - [sym_let_declaration] = STATE(256), - [sym_use_declaration] = STATE(256), - [sym_extern_modifier] = STATE(1548), - [sym_visibility_modifier] = STATE(1353), - [sym_bracketed_type] = STATE(2391), - [sym_generic_type_with_turbofish] = STATE(2388), - [sym_macro_invocation] = STATE(256), - [sym_scoped_identifier] = STATE(2260), - [aux_sym_declaration_list_repeat1] = STATE(256), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_macro_rules_BANG] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(993), - [anon_sym_u8] = ACTIONS(995), - [anon_sym_i8] = ACTIONS(995), - [anon_sym_u16] = ACTIONS(995), - [anon_sym_i16] = ACTIONS(995), - [anon_sym_u32] = ACTIONS(995), - [anon_sym_i32] = ACTIONS(995), - [anon_sym_u64] = ACTIONS(995), - [anon_sym_i64] = ACTIONS(995), - [anon_sym_u128] = ACTIONS(995), - [anon_sym_i128] = ACTIONS(995), - [anon_sym_isize] = ACTIONS(995), - [anon_sym_usize] = ACTIONS(995), - [anon_sym_f32] = ACTIONS(995), - [anon_sym_f64] = ACTIONS(995), - [anon_sym_bool] = ACTIONS(995), - [anon_sym_str] = ACTIONS(995), - [anon_sym_char] = ACTIONS(995), - [anon_sym_async] = ACTIONS(998), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1007), - [anon_sym_fn] = ACTIONS(1010), - [anon_sym_impl] = ACTIONS(1013), - [anon_sym_let] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1019), - [anon_sym_pub] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1025), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_trait] = ACTIONS(1031), - [anon_sym_type] = ACTIONS(1034), - [anon_sym_union] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_use] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1049), - [anon_sym_LT] = ACTIONS(1052), - [anon_sym_COLON_COLON] = ACTIONS(1055), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1058), - [sym_super] = ACTIONS(1058), - [sym_crate] = ACTIONS(1061), - [sym_metavariable] = ACTIONS(1064), - [sym_block_comment] = ACTIONS(3), - }, - [257] = { - [sym_empty_statement] = STATE(256), - [sym_macro_definition] = STATE(256), - [sym_attribute_item] = STATE(256), - [sym_inner_attribute_item] = STATE(256), - [sym_mod_item] = STATE(256), - [sym_foreign_mod_item] = STATE(256), - [sym_struct_item] = STATE(256), - [sym_union_item] = STATE(256), - [sym_enum_item] = STATE(256), - [sym_extern_crate_declaration] = STATE(256), - [sym_const_item] = STATE(256), - [sym_static_item] = STATE(256), - [sym_type_item] = STATE(256), - [sym_function_item] = STATE(256), - [sym_function_signature_item] = STATE(256), + [261] = { + [sym_empty_statement] = STATE(265), + [sym_macro_definition] = STATE(265), + [sym_attribute_item] = STATE(265), + [sym_inner_attribute_item] = STATE(265), + [sym_mod_item] = STATE(265), + [sym_foreign_mod_item] = STATE(265), + [sym_struct_item] = STATE(265), + [sym_union_item] = STATE(265), + [sym_enum_item] = STATE(265), + [sym_extern_crate_declaration] = STATE(265), + [sym_const_item] = STATE(265), + [sym_static_item] = STATE(265), + [sym_type_item] = STATE(265), + [sym_function_item] = STATE(265), + [sym_function_signature_item] = STATE(265), [sym_function_modifiers] = STATE(2564), - [sym_impl_item] = STATE(256), - [sym_trait_item] = STATE(256), - [sym_associated_type] = STATE(256), - [sym_let_declaration] = STATE(256), - [sym_use_declaration] = STATE(256), - [sym_extern_modifier] = STATE(1548), - [sym_visibility_modifier] = STATE(1353), - [sym_bracketed_type] = STATE(2391), - [sym_generic_type_with_turbofish] = STATE(2388), - [sym_macro_invocation] = STATE(256), - [sym_scoped_identifier] = STATE(2260), - [aux_sym_declaration_list_repeat1] = STATE(256), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_impl_item] = STATE(265), + [sym_trait_item] = STATE(265), + [sym_associated_type] = STATE(265), + [sym_let_declaration] = STATE(265), + [sym_use_declaration] = STATE(265), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1363), + [sym_bracketed_type] = STATE(2378), + [sym_generic_type_with_turbofish] = STATE(2373), + [sym_macro_invocation] = STATE(265), + [sym_scoped_identifier] = STATE(2341), + [aux_sym_declaration_list_repeat1] = STATE(265), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(936), [anon_sym_SEMI] = ACTIONS(938), [anon_sym_macro_rules_BANG] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(984), [anon_sym_u8] = ACTIONS(944), [anon_sym_i8] = ACTIONS(944), [anon_sym_u16] = ACTIONS(944), @@ -43346,40 +43798,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(982), [sym_block_comment] = ACTIONS(3), }, - [258] = { - [sym_empty_statement] = STATE(259), - [sym_macro_definition] = STATE(259), - [sym_attribute_item] = STATE(259), - [sym_inner_attribute_item] = STATE(259), - [sym_mod_item] = STATE(259), - [sym_foreign_mod_item] = STATE(259), - [sym_struct_item] = STATE(259), - [sym_union_item] = STATE(259), - [sym_enum_item] = STATE(259), - [sym_extern_crate_declaration] = STATE(259), - [sym_const_item] = STATE(259), - [sym_static_item] = STATE(259), - [sym_type_item] = STATE(259), - [sym_function_item] = STATE(259), - [sym_function_signature_item] = STATE(259), + [262] = { + [sym_empty_statement] = STATE(263), + [sym_macro_definition] = STATE(263), + [sym_attribute_item] = STATE(263), + [sym_inner_attribute_item] = STATE(263), + [sym_mod_item] = STATE(263), + [sym_foreign_mod_item] = STATE(263), + [sym_struct_item] = STATE(263), + [sym_union_item] = STATE(263), + [sym_enum_item] = STATE(263), + [sym_extern_crate_declaration] = STATE(263), + [sym_const_item] = STATE(263), + [sym_static_item] = STATE(263), + [sym_type_item] = STATE(263), + [sym_function_item] = STATE(263), + [sym_function_signature_item] = STATE(263), [sym_function_modifiers] = STATE(2564), - [sym_impl_item] = STATE(259), - [sym_trait_item] = STATE(259), - [sym_associated_type] = STATE(259), - [sym_let_declaration] = STATE(259), - [sym_use_declaration] = STATE(259), - [sym_extern_modifier] = STATE(1548), - [sym_visibility_modifier] = STATE(1353), - [sym_bracketed_type] = STATE(2391), - [sym_generic_type_with_turbofish] = STATE(2388), - [sym_macro_invocation] = STATE(259), - [sym_scoped_identifier] = STATE(2260), - [aux_sym_declaration_list_repeat1] = STATE(259), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_impl_item] = STATE(263), + [sym_trait_item] = STATE(263), + [sym_associated_type] = STATE(263), + [sym_let_declaration] = STATE(263), + [sym_use_declaration] = STATE(263), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1363), + [sym_bracketed_type] = STATE(2378), + [sym_generic_type_with_turbofish] = STATE(2373), + [sym_macro_invocation] = STATE(263), + [sym_scoped_identifier] = STATE(2341), + [aux_sym_declaration_list_repeat1] = STATE(263), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(936), [anon_sym_SEMI] = ACTIONS(938), [anon_sym_macro_rules_BANG] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(1069), + [anon_sym_RBRACE] = ACTIONS(986), [anon_sym_u8] = ACTIONS(944), [anon_sym_i8] = ACTIONS(944), [anon_sym_u16] = ACTIONS(944), @@ -43424,40 +43876,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(982), [sym_block_comment] = ACTIONS(3), }, - [259] = { - [sym_empty_statement] = STATE(256), - [sym_macro_definition] = STATE(256), - [sym_attribute_item] = STATE(256), - [sym_inner_attribute_item] = STATE(256), - [sym_mod_item] = STATE(256), - [sym_foreign_mod_item] = STATE(256), - [sym_struct_item] = STATE(256), - [sym_union_item] = STATE(256), - [sym_enum_item] = STATE(256), - [sym_extern_crate_declaration] = STATE(256), - [sym_const_item] = STATE(256), - [sym_static_item] = STATE(256), - [sym_type_item] = STATE(256), - [sym_function_item] = STATE(256), - [sym_function_signature_item] = STATE(256), + [263] = { + [sym_empty_statement] = STATE(265), + [sym_macro_definition] = STATE(265), + [sym_attribute_item] = STATE(265), + [sym_inner_attribute_item] = STATE(265), + [sym_mod_item] = STATE(265), + [sym_foreign_mod_item] = STATE(265), + [sym_struct_item] = STATE(265), + [sym_union_item] = STATE(265), + [sym_enum_item] = STATE(265), + [sym_extern_crate_declaration] = STATE(265), + [sym_const_item] = STATE(265), + [sym_static_item] = STATE(265), + [sym_type_item] = STATE(265), + [sym_function_item] = STATE(265), + [sym_function_signature_item] = STATE(265), [sym_function_modifiers] = STATE(2564), - [sym_impl_item] = STATE(256), - [sym_trait_item] = STATE(256), - [sym_associated_type] = STATE(256), - [sym_let_declaration] = STATE(256), - [sym_use_declaration] = STATE(256), - [sym_extern_modifier] = STATE(1548), - [sym_visibility_modifier] = STATE(1353), - [sym_bracketed_type] = STATE(2391), - [sym_generic_type_with_turbofish] = STATE(2388), - [sym_macro_invocation] = STATE(256), - [sym_scoped_identifier] = STATE(2260), - [aux_sym_declaration_list_repeat1] = STATE(256), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_impl_item] = STATE(265), + [sym_trait_item] = STATE(265), + [sym_associated_type] = STATE(265), + [sym_let_declaration] = STATE(265), + [sym_use_declaration] = STATE(265), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1363), + [sym_bracketed_type] = STATE(2378), + [sym_generic_type_with_turbofish] = STATE(2373), + [sym_macro_invocation] = STATE(265), + [sym_scoped_identifier] = STATE(2341), + [aux_sym_declaration_list_repeat1] = STATE(265), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(936), [anon_sym_SEMI] = ACTIONS(938), [anon_sym_macro_rules_BANG] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(1071), + [anon_sym_RBRACE] = ACTIONS(988), [anon_sym_u8] = ACTIONS(944), [anon_sym_i8] = ACTIONS(944), [anon_sym_u16] = ACTIONS(944), @@ -43502,85 +43954,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(982), [sym_block_comment] = ACTIONS(3), }, - [260] = { - [sym__token_pattern] = STATE(260), - [sym_token_tree_pattern] = STATE(260), - [sym_token_binding_pattern] = STATE(260), - [sym_token_repetition_pattern] = STATE(260), - [sym__literal] = STATE(260), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_RPAREN] = ACTIONS(1079), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1084), - [anon_sym_RBRACK] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_u8] = ACTIONS(1073), - [anon_sym_i8] = ACTIONS(1073), - [anon_sym_u16] = ACTIONS(1073), - [anon_sym_i16] = ACTIONS(1073), - [anon_sym_u32] = ACTIONS(1073), - [anon_sym_i32] = ACTIONS(1073), - [anon_sym_u64] = ACTIONS(1073), - [anon_sym_i64] = ACTIONS(1073), - [anon_sym_u128] = ACTIONS(1073), - [anon_sym_i128] = ACTIONS(1073), - [anon_sym_isize] = ACTIONS(1073), - [anon_sym_usize] = ACTIONS(1073), - [anon_sym_f32] = ACTIONS(1073), - [anon_sym_f64] = ACTIONS(1073), - [anon_sym_bool] = ACTIONS(1073), - [anon_sym_str] = ACTIONS(1073), - [anon_sym_char] = ACTIONS(1073), - [aux_sym__non_special_token_token1] = ACTIONS(1073), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_as] = ACTIONS(1073), - [anon_sym_async] = ACTIONS(1073), - [anon_sym_await] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(1073), - [anon_sym_const] = ACTIONS(1073), - [anon_sym_continue] = ACTIONS(1073), - [anon_sym_default] = ACTIONS(1073), - [anon_sym_enum] = ACTIONS(1073), - [anon_sym_fn] = ACTIONS(1073), - [anon_sym_for] = ACTIONS(1073), - [anon_sym_if] = ACTIONS(1073), - [anon_sym_impl] = ACTIONS(1073), - [anon_sym_let] = ACTIONS(1073), - [anon_sym_loop] = ACTIONS(1073), - [anon_sym_match] = ACTIONS(1073), - [anon_sym_mod] = ACTIONS(1073), - [anon_sym_pub] = ACTIONS(1073), - [anon_sym_return] = ACTIONS(1073), - [anon_sym_static] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(1073), - [anon_sym_trait] = ACTIONS(1073), - [anon_sym_type] = ACTIONS(1073), - [anon_sym_union] = ACTIONS(1073), - [anon_sym_unsafe] = ACTIONS(1073), - [anon_sym_use] = ACTIONS(1073), - [anon_sym_where] = ACTIONS(1073), - [anon_sym_while] = ACTIONS(1073), - [sym_mutable_specifier] = ACTIONS(1073), - [sym_integer_literal] = ACTIONS(1090), - [aux_sym_string_literal_token1] = ACTIONS(1093), - [sym_char_literal] = ACTIONS(1090), - [anon_sym_true] = ACTIONS(1096), - [anon_sym_false] = ACTIONS(1096), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(1073), - [sym_super] = ACTIONS(1073), - [sym_crate] = ACTIONS(1073), + [264] = { + [sym__token_pattern] = STATE(264), + [sym_token_tree_pattern] = STATE(264), + [sym_token_binding_pattern] = STATE(264), + [sym_token_repetition_pattern] = STATE(264), + [sym__literal] = STATE(264), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_RBRACK] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(1004), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_async] = ACTIONS(990), + [anon_sym_await] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_default] = ACTIONS(990), + [anon_sym_enum] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_impl] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_mod] = ACTIONS(990), + [anon_sym_pub] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_static] = ACTIONS(990), + [anon_sym_struct] = ACTIONS(990), + [anon_sym_trait] = ACTIONS(990), + [anon_sym_type] = ACTIONS(990), + [anon_sym_union] = ACTIONS(990), + [anon_sym_unsafe] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_where] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [sym_mutable_specifier] = ACTIONS(990), + [sym_integer_literal] = ACTIONS(1007), + [aux_sym_string_literal_token1] = ACTIONS(1010), + [sym_char_literal] = ACTIONS(1007), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(990), + [sym_super] = ACTIONS(990), + [sym_crate] = ACTIONS(990), + [sym_metavariable] = ACTIONS(1018), + [sym_raw_string_literal] = ACTIONS(1007), + [sym_float_literal] = ACTIONS(1007), + [sym_block_comment] = ACTIONS(3), + }, + [265] = { + [sym_empty_statement] = STATE(265), + [sym_macro_definition] = STATE(265), + [sym_attribute_item] = STATE(265), + [sym_inner_attribute_item] = STATE(265), + [sym_mod_item] = STATE(265), + [sym_foreign_mod_item] = STATE(265), + [sym_struct_item] = STATE(265), + [sym_union_item] = STATE(265), + [sym_enum_item] = STATE(265), + [sym_extern_crate_declaration] = STATE(265), + [sym_const_item] = STATE(265), + [sym_static_item] = STATE(265), + [sym_type_item] = STATE(265), + [sym_function_item] = STATE(265), + [sym_function_signature_item] = STATE(265), + [sym_function_modifiers] = STATE(2564), + [sym_impl_item] = STATE(265), + [sym_trait_item] = STATE(265), + [sym_associated_type] = STATE(265), + [sym_let_declaration] = STATE(265), + [sym_use_declaration] = STATE(265), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1363), + [sym_bracketed_type] = STATE(2378), + [sym_generic_type_with_turbofish] = STATE(2373), + [sym_macro_invocation] = STATE(265), + [sym_scoped_identifier] = STATE(2341), + [aux_sym_declaration_list_repeat1] = STATE(265), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_macro_rules_BANG] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_u8] = ACTIONS(1032), + [anon_sym_i8] = ACTIONS(1032), + [anon_sym_u16] = ACTIONS(1032), + [anon_sym_i16] = ACTIONS(1032), + [anon_sym_u32] = ACTIONS(1032), + [anon_sym_i32] = ACTIONS(1032), + [anon_sym_u64] = ACTIONS(1032), + [anon_sym_i64] = ACTIONS(1032), + [anon_sym_u128] = ACTIONS(1032), + [anon_sym_i128] = ACTIONS(1032), + [anon_sym_isize] = ACTIONS(1032), + [anon_sym_usize] = ACTIONS(1032), + [anon_sym_f32] = ACTIONS(1032), + [anon_sym_f64] = ACTIONS(1032), + [anon_sym_bool] = ACTIONS(1032), + [anon_sym_str] = ACTIONS(1032), + [anon_sym_char] = ACTIONS(1032), + [anon_sym_async] = ACTIONS(1035), + [anon_sym_const] = ACTIONS(1038), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_fn] = ACTIONS(1047), + [anon_sym_impl] = ACTIONS(1050), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1056), + [anon_sym_pub] = ACTIONS(1059), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_struct] = ACTIONS(1065), + [anon_sym_trait] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_unsafe] = ACTIONS(1077), + [anon_sym_use] = ACTIONS(1080), + [anon_sym_POUND] = ACTIONS(1083), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1089), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1095), + [sym_super] = ACTIONS(1095), + [sym_crate] = ACTIONS(1098), [sym_metavariable] = ACTIONS(1101), - [sym_raw_string_literal] = ACTIONS(1090), - [sym_float_literal] = ACTIONS(1090), [sym_block_comment] = ACTIONS(3), }, - [261] = { + [266] = { [ts_builtin_sym_end] = ACTIONS(1104), [sym_identifier] = ACTIONS(1106), [anon_sym_SEMI] = ACTIONS(1104), @@ -43657,7 +44187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1104), [sym_block_comment] = ACTIONS(3), }, - [262] = { + [267] = { [ts_builtin_sym_end] = ACTIONS(1108), [sym_identifier] = ACTIONS(1110), [anon_sym_SEMI] = ACTIONS(1108), @@ -43734,7 +44264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1108), [sym_block_comment] = ACTIONS(3), }, - [263] = { + [268] = { [ts_builtin_sym_end] = ACTIONS(1112), [sym_identifier] = ACTIONS(1114), [anon_sym_SEMI] = ACTIONS(1112), @@ -43811,7 +44341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1112), [sym_block_comment] = ACTIONS(3), }, - [264] = { + [269] = { [ts_builtin_sym_end] = ACTIONS(1116), [sym_identifier] = ACTIONS(1118), [anon_sym_SEMI] = ACTIONS(1116), @@ -43888,7 +44418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1116), [sym_block_comment] = ACTIONS(3), }, - [265] = { + [270] = { [ts_builtin_sym_end] = ACTIONS(1120), [sym_identifier] = ACTIONS(1122), [anon_sym_SEMI] = ACTIONS(1120), @@ -43965,7 +44495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1120), [sym_block_comment] = ACTIONS(3), }, - [266] = { + [271] = { [ts_builtin_sym_end] = ACTIONS(1124), [sym_identifier] = ACTIONS(1126), [anon_sym_SEMI] = ACTIONS(1124), @@ -44042,7 +44572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1124), [sym_block_comment] = ACTIONS(3), }, - [267] = { + [272] = { [ts_builtin_sym_end] = ACTIONS(1128), [sym_identifier] = ACTIONS(1130), [anon_sym_SEMI] = ACTIONS(1128), @@ -44119,425 +44649,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1128), [sym_block_comment] = ACTIONS(3), }, - [268] = { - [ts_builtin_sym_end] = ACTIONS(1132), - [sym_identifier] = ACTIONS(1134), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_macro_rules_BANG] = ACTIONS(1132), - [anon_sym_LPAREN] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1132), - [anon_sym_RBRACE] = ACTIONS(1132), - [anon_sym_LBRACK] = ACTIONS(1132), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_u8] = ACTIONS(1134), - [anon_sym_i8] = ACTIONS(1134), - [anon_sym_u16] = ACTIONS(1134), - [anon_sym_i16] = ACTIONS(1134), - [anon_sym_u32] = ACTIONS(1134), - [anon_sym_i32] = ACTIONS(1134), - [anon_sym_u64] = ACTIONS(1134), - [anon_sym_i64] = ACTIONS(1134), - [anon_sym_u128] = ACTIONS(1134), - [anon_sym_i128] = ACTIONS(1134), - [anon_sym_isize] = ACTIONS(1134), - [anon_sym_usize] = ACTIONS(1134), - [anon_sym_f32] = ACTIONS(1134), - [anon_sym_f64] = ACTIONS(1134), - [anon_sym_bool] = ACTIONS(1134), - [anon_sym_str] = ACTIONS(1134), - [anon_sym_char] = ACTIONS(1134), - [anon_sym_SQUOTE] = ACTIONS(1134), - [anon_sym_async] = ACTIONS(1134), - [anon_sym_break] = ACTIONS(1134), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_continue] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1134), - [anon_sym_fn] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1134), - [anon_sym_impl] = ACTIONS(1134), - [anon_sym_let] = ACTIONS(1134), - [anon_sym_loop] = ACTIONS(1134), - [anon_sym_match] = ACTIONS(1134), - [anon_sym_mod] = ACTIONS(1134), - [anon_sym_pub] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_struct] = ACTIONS(1134), - [anon_sym_trait] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_unsafe] = ACTIONS(1134), - [anon_sym_use] = ACTIONS(1134), - [anon_sym_while] = ACTIONS(1134), - [anon_sym_POUND] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1132), - [anon_sym_extern] = ACTIONS(1134), - [anon_sym_LT] = ACTIONS(1132), - [anon_sym_COLON_COLON] = ACTIONS(1132), - [anon_sym_AMP] = ACTIONS(1132), - [anon_sym_DOT_DOT] = ACTIONS(1132), - [anon_sym_DASH] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1132), - [anon_sym_yield] = ACTIONS(1134), - [anon_sym_move] = ACTIONS(1134), - [sym_integer_literal] = ACTIONS(1132), - [aux_sym_string_literal_token1] = ACTIONS(1132), - [sym_char_literal] = ACTIONS(1132), - [anon_sym_true] = ACTIONS(1134), - [anon_sym_false] = ACTIONS(1134), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1134), - [sym_super] = ACTIONS(1134), - [sym_crate] = ACTIONS(1134), - [sym_metavariable] = ACTIONS(1132), - [sym_raw_string_literal] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1132), - [sym_block_comment] = ACTIONS(3), - }, - [269] = { - [ts_builtin_sym_end] = ACTIONS(1136), - [sym_identifier] = ACTIONS(1138), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_macro_rules_BANG] = ACTIONS(1136), - [anon_sym_LPAREN] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1136), + [273] = { + [sym_attribute_item] = STATE(558), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_macro_invocation] = STATE(2581), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1919), + [sym_match_arm] = STATE(507), + [sym_last_match_arm] = STATE(2428), + [sym_match_pattern] = STATE(2569), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2123), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_match_block_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1134), [anon_sym_RBRACE] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1136), - [anon_sym_u8] = ACTIONS(1138), - [anon_sym_i8] = ACTIONS(1138), - [anon_sym_u16] = ACTIONS(1138), - [anon_sym_i16] = ACTIONS(1138), - [anon_sym_u32] = ACTIONS(1138), - [anon_sym_i32] = ACTIONS(1138), - [anon_sym_u64] = ACTIONS(1138), - [anon_sym_i64] = ACTIONS(1138), - [anon_sym_u128] = ACTIONS(1138), - [anon_sym_i128] = ACTIONS(1138), - [anon_sym_isize] = ACTIONS(1138), - [anon_sym_usize] = ACTIONS(1138), - [anon_sym_f32] = ACTIONS(1138), - [anon_sym_f64] = ACTIONS(1138), - [anon_sym_bool] = ACTIONS(1138), - [anon_sym_str] = ACTIONS(1138), - [anon_sym_char] = ACTIONS(1138), - [anon_sym_SQUOTE] = ACTIONS(1138), - [anon_sym_async] = ACTIONS(1138), - [anon_sym_break] = ACTIONS(1138), - [anon_sym_const] = ACTIONS(1138), - [anon_sym_continue] = ACTIONS(1138), - [anon_sym_default] = ACTIONS(1138), - [anon_sym_enum] = ACTIONS(1138), - [anon_sym_fn] = ACTIONS(1138), - [anon_sym_for] = ACTIONS(1138), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_impl] = ACTIONS(1138), - [anon_sym_let] = ACTIONS(1138), - [anon_sym_loop] = ACTIONS(1138), - [anon_sym_match] = ACTIONS(1138), - [anon_sym_mod] = ACTIONS(1138), - [anon_sym_pub] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1138), - [anon_sym_static] = ACTIONS(1138), - [anon_sym_struct] = ACTIONS(1138), - [anon_sym_trait] = ACTIONS(1138), - [anon_sym_type] = ACTIONS(1138), - [anon_sym_union] = ACTIONS(1138), - [anon_sym_unsafe] = ACTIONS(1138), - [anon_sym_use] = ACTIONS(1138), - [anon_sym_while] = ACTIONS(1138), - [anon_sym_POUND] = ACTIONS(1136), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_extern] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1136), - [anon_sym_COLON_COLON] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_DOT_DOT] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_move] = ACTIONS(1138), - [sym_integer_literal] = ACTIONS(1136), - [aux_sym_string_literal_token1] = ACTIONS(1136), - [sym_char_literal] = ACTIONS(1136), - [anon_sym_true] = ACTIONS(1138), - [anon_sym_false] = ACTIONS(1138), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1138), - [sym_super] = ACTIONS(1138), - [sym_crate] = ACTIONS(1138), - [sym_metavariable] = ACTIONS(1136), - [sym_raw_string_literal] = ACTIONS(1136), - [sym_float_literal] = ACTIONS(1136), - [sym_block_comment] = ACTIONS(3), - }, - [270] = { - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_identifier] = ACTIONS(1142), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym_macro_rules_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_u8] = ACTIONS(1142), - [anon_sym_i8] = ACTIONS(1142), - [anon_sym_u16] = ACTIONS(1142), - [anon_sym_i16] = ACTIONS(1142), - [anon_sym_u32] = ACTIONS(1142), - [anon_sym_i32] = ACTIONS(1142), - [anon_sym_u64] = ACTIONS(1142), - [anon_sym_i64] = ACTIONS(1142), - [anon_sym_u128] = ACTIONS(1142), - [anon_sym_i128] = ACTIONS(1142), - [anon_sym_isize] = ACTIONS(1142), - [anon_sym_usize] = ACTIONS(1142), - [anon_sym_f32] = ACTIONS(1142), - [anon_sym_f64] = ACTIONS(1142), - [anon_sym_bool] = ACTIONS(1142), - [anon_sym_str] = ACTIONS(1142), - [anon_sym_char] = ACTIONS(1142), - [anon_sym_SQUOTE] = ACTIONS(1142), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_break] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), [anon_sym_const] = ACTIONS(1142), - [anon_sym_continue] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1142), - [anon_sym_enum] = ACTIONS(1142), - [anon_sym_fn] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_impl] = ACTIONS(1142), - [anon_sym_let] = ACTIONS(1142), - [anon_sym_loop] = ACTIONS(1142), - [anon_sym_match] = ACTIONS(1142), - [anon_sym_mod] = ACTIONS(1142), - [anon_sym_pub] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1142), - [anon_sym_static] = ACTIONS(1142), - [anon_sym_struct] = ACTIONS(1142), - [anon_sym_trait] = ACTIONS(1142), - [anon_sym_type] = ACTIONS(1142), - [anon_sym_union] = ACTIONS(1142), - [anon_sym_unsafe] = ACTIONS(1142), - [anon_sym_use] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_POUND] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_extern] = ACTIONS(1142), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_COLON_COLON] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_DOT_DOT] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_PIPE] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1142), - [anon_sym_move] = ACTIONS(1142), - [sym_integer_literal] = ACTIONS(1140), - [aux_sym_string_literal_token1] = ACTIONS(1140), - [sym_char_literal] = ACTIONS(1140), - [anon_sym_true] = ACTIONS(1142), - [anon_sym_false] = ACTIONS(1142), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1142), - [sym_super] = ACTIONS(1142), - [sym_crate] = ACTIONS(1142), - [sym_metavariable] = ACTIONS(1140), - [sym_raw_string_literal] = ACTIONS(1140), - [sym_float_literal] = ACTIONS(1140), - [sym_block_comment] = ACTIONS(3), - }, - [271] = { - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1146), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym_macro_rules_BANG] = ACTIONS(1144), - [anon_sym_LPAREN] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1144), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_u8] = ACTIONS(1146), - [anon_sym_i8] = ACTIONS(1146), - [anon_sym_u16] = ACTIONS(1146), - [anon_sym_i16] = ACTIONS(1146), - [anon_sym_u32] = ACTIONS(1146), - [anon_sym_i32] = ACTIONS(1146), - [anon_sym_u64] = ACTIONS(1146), - [anon_sym_i64] = ACTIONS(1146), - [anon_sym_u128] = ACTIONS(1146), - [anon_sym_i128] = ACTIONS(1146), - [anon_sym_isize] = ACTIONS(1146), - [anon_sym_usize] = ACTIONS(1146), - [anon_sym_f32] = ACTIONS(1146), - [anon_sym_f64] = ACTIONS(1146), - [anon_sym_bool] = ACTIONS(1146), - [anon_sym_str] = ACTIONS(1146), - [anon_sym_char] = ACTIONS(1146), - [anon_sym_SQUOTE] = ACTIONS(1146), - [anon_sym_async] = ACTIONS(1146), - [anon_sym_break] = ACTIONS(1146), - [anon_sym_const] = ACTIONS(1146), - [anon_sym_continue] = ACTIONS(1146), - [anon_sym_default] = ACTIONS(1146), - [anon_sym_enum] = ACTIONS(1146), - [anon_sym_fn] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_impl] = ACTIONS(1146), - [anon_sym_let] = ACTIONS(1146), - [anon_sym_loop] = ACTIONS(1146), - [anon_sym_match] = ACTIONS(1146), - [anon_sym_mod] = ACTIONS(1146), - [anon_sym_pub] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_static] = ACTIONS(1146), - [anon_sym_struct] = ACTIONS(1146), - [anon_sym_trait] = ACTIONS(1146), - [anon_sym_type] = ACTIONS(1146), - [anon_sym_union] = ACTIONS(1146), - [anon_sym_unsafe] = ACTIONS(1146), - [anon_sym_use] = ACTIONS(1146), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_POUND] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_extern] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1144), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), - [anon_sym_move] = ACTIONS(1146), - [sym_integer_literal] = ACTIONS(1144), - [aux_sym_string_literal_token1] = ACTIONS(1144), - [sym_char_literal] = ACTIONS(1144), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_false] = ACTIONS(1146), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1146), - [sym_super] = ACTIONS(1146), - [sym_crate] = ACTIONS(1146), - [sym_metavariable] = ACTIONS(1144), - [sym_raw_string_literal] = ACTIONS(1144), - [sym_float_literal] = ACTIONS(1144), - [sym_block_comment] = ACTIONS(3), - }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(1148), - [sym_identifier] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_macro_rules_BANG] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1148), - [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_SQUOTE] = ACTIONS(1150), - [anon_sym_async] = 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_while] = ACTIONS(1150), - [anon_sym_POUND] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_COLON_COLON] = ACTIONS(1148), + [anon_sym_default] = ACTIONS(1144), + [anon_sym_union] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1146), + [anon_sym__] = ACTIONS(814), [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_DOT_DOT] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1150), - [anon_sym_move] = ACTIONS(1150), - [sym_integer_literal] = ACTIONS(1148), - [aux_sym_string_literal_token1] = ACTIONS(1148), - [sym_char_literal] = ACTIONS(1148), - [anon_sym_true] = ACTIONS(1150), - [anon_sym_false] = ACTIONS(1150), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1150), [sym_super] = ACTIONS(1150), [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1148), - [sym_raw_string_literal] = ACTIONS(1148), - [sym_float_literal] = ACTIONS(1148), + [sym_metavariable] = ACTIONS(1152), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [273] = { - [sym_attribute_item] = STATE(554), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2537), - [sym_scoped_identifier] = STATE(1584), - [sym_scoped_type_identifier] = STATE(1941), - [sym_match_arm] = STATE(505), - [sym_last_match_arm] = STATE(2437), - [sym_match_pattern] = STATE(2393), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1956), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_enum_variant_list_repeat1] = STATE(554), - [aux_sym_match_block_repeat1] = STATE(505), - [sym_identifier] = ACTIONS(1152), + [274] = { + [ts_builtin_sym_end] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_macro_rules_BANG] = ACTIONS(1154), [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1154), + [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_SQUOTE] = ACTIONS(1156), + [anon_sym_async] = 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_while] = ACTIONS(1156), + [anon_sym_POUND] = ACTIONS(1154), + [anon_sym_BANG] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1154), + [anon_sym_COLON_COLON] = ACTIONS(1154), + [anon_sym_AMP] = ACTIONS(1154), + [anon_sym_DOT_DOT] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_move] = ACTIONS(1156), + [sym_integer_literal] = ACTIONS(1154), + [aux_sym_string_literal_token1] = ACTIONS(1154), + [sym_char_literal] = ACTIONS(1154), + [anon_sym_true] = ACTIONS(1156), + [anon_sym_false] = ACTIONS(1156), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1156), + [sym_super] = ACTIONS(1156), + [sym_crate] = ACTIONS(1156), + [sym_metavariable] = ACTIONS(1154), + [sym_raw_string_literal] = ACTIONS(1154), + [sym_float_literal] = ACTIONS(1154), + [sym_block_comment] = ACTIONS(3), + }, + [275] = { + [ts_builtin_sym_end] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1158), + [anon_sym_macro_rules_BANG] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_RBRACE] = ACTIONS(1158), [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1158), [anon_sym_u8] = ACTIONS(1160), [anon_sym_i8] = ACTIONS(1160), [anon_sym_u16] = ACTIONS(1160), @@ -44555,33 +44830,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1160), [anon_sym_str] = ACTIONS(1160), [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_async] = ACTIONS(1160), + [anon_sym_break] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1160), + [anon_sym_continue] = ACTIONS(1160), + [anon_sym_default] = ACTIONS(1160), + [anon_sym_enum] = ACTIONS(1160), + [anon_sym_fn] = ACTIONS(1160), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1160), + [anon_sym_impl] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_loop] = ACTIONS(1160), + [anon_sym_match] = ACTIONS(1160), + [anon_sym_mod] = ACTIONS(1160), + [anon_sym_pub] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_struct] = ACTIONS(1160), + [anon_sym_trait] = ACTIONS(1160), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_union] = ACTIONS(1160), + [anon_sym_unsafe] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_POUND] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1158), + [anon_sym_COLON_COLON] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1158), + [anon_sym_DOT_DOT] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PIPE] = ACTIONS(1158), + [anon_sym_yield] = ACTIONS(1160), + [anon_sym_move] = ACTIONS(1160), + [sym_integer_literal] = ACTIONS(1158), + [aux_sym_string_literal_token1] = ACTIONS(1158), + [sym_char_literal] = ACTIONS(1158), + [anon_sym_true] = ACTIONS(1160), + [anon_sym_false] = ACTIONS(1160), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1160), + [sym_super] = ACTIONS(1160), + [sym_crate] = ACTIONS(1160), + [sym_metavariable] = ACTIONS(1158), + [sym_raw_string_literal] = ACTIONS(1158), + [sym_float_literal] = ACTIONS(1158), + [sym_block_comment] = ACTIONS(3), + }, + [276] = { + [ts_builtin_sym_end] = ACTIONS(1162), + [sym_identifier] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_macro_rules_BANG] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_RBRACE] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_u8] = ACTIONS(1164), + [anon_sym_i8] = ACTIONS(1164), + [anon_sym_u16] = ACTIONS(1164), + [anon_sym_i16] = ACTIONS(1164), + [anon_sym_u32] = ACTIONS(1164), + [anon_sym_i32] = ACTIONS(1164), + [anon_sym_u64] = ACTIONS(1164), + [anon_sym_i64] = ACTIONS(1164), + [anon_sym_u128] = ACTIONS(1164), + [anon_sym_i128] = ACTIONS(1164), + [anon_sym_isize] = ACTIONS(1164), + [anon_sym_usize] = ACTIONS(1164), + [anon_sym_f32] = ACTIONS(1164), + [anon_sym_f64] = ACTIONS(1164), + [anon_sym_bool] = ACTIONS(1164), + [anon_sym_str] = ACTIONS(1164), + [anon_sym_char] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_const] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), [anon_sym_default] = ACTIONS(1164), + [anon_sym_enum] = ACTIONS(1164), + [anon_sym_fn] = ACTIONS(1164), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_impl] = ACTIONS(1164), + [anon_sym_let] = ACTIONS(1164), + [anon_sym_loop] = ACTIONS(1164), + [anon_sym_match] = ACTIONS(1164), + [anon_sym_mod] = ACTIONS(1164), + [anon_sym_pub] = ACTIONS(1164), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_trait] = ACTIONS(1164), + [anon_sym_type] = ACTIONS(1164), [anon_sym_union] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(1164), + [anon_sym_use] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_POUND] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_COLON_COLON] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), + [anon_sym_DOT_DOT] = ACTIONS(1162), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_yield] = ACTIONS(1164), + [anon_sym_move] = ACTIONS(1164), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1162), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1164), + [anon_sym_false] = ACTIONS(1164), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1164), + [sym_super] = ACTIONS(1164), + [sym_crate] = ACTIONS(1164), + [sym_metavariable] = ACTIONS(1162), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), + [sym_block_comment] = ACTIONS(3), + }, + [277] = { + [ts_builtin_sym_end] = ACTIONS(1166), + [sym_identifier] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1166), + [anon_sym_macro_rules_BANG] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_RBRACE] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_u8] = ACTIONS(1168), + [anon_sym_i8] = ACTIONS(1168), + [anon_sym_u16] = ACTIONS(1168), + [anon_sym_i16] = ACTIONS(1168), + [anon_sym_u32] = ACTIONS(1168), + [anon_sym_i32] = ACTIONS(1168), + [anon_sym_u64] = ACTIONS(1168), + [anon_sym_i64] = ACTIONS(1168), + [anon_sym_u128] = ACTIONS(1168), + [anon_sym_i128] = ACTIONS(1168), + [anon_sym_isize] = ACTIONS(1168), + [anon_sym_usize] = ACTIONS(1168), + [anon_sym_f32] = ACTIONS(1168), + [anon_sym_f64] = ACTIONS(1168), + [anon_sym_bool] = ACTIONS(1168), + [anon_sym_str] = ACTIONS(1168), + [anon_sym_char] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_async] = ACTIONS(1168), + [anon_sym_break] = ACTIONS(1168), + [anon_sym_const] = ACTIONS(1168), + [anon_sym_continue] = ACTIONS(1168), + [anon_sym_default] = ACTIONS(1168), + [anon_sym_enum] = ACTIONS(1168), + [anon_sym_fn] = ACTIONS(1168), + [anon_sym_for] = ACTIONS(1168), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_impl] = ACTIONS(1168), + [anon_sym_let] = ACTIONS(1168), + [anon_sym_loop] = ACTIONS(1168), + [anon_sym_match] = ACTIONS(1168), + [anon_sym_mod] = ACTIONS(1168), + [anon_sym_pub] = ACTIONS(1168), + [anon_sym_return] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1168), + [anon_sym_struct] = ACTIONS(1168), + [anon_sym_trait] = ACTIONS(1168), + [anon_sym_type] = ACTIONS(1168), + [anon_sym_union] = ACTIONS(1168), + [anon_sym_unsafe] = ACTIONS(1168), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_while] = ACTIONS(1168), + [anon_sym_POUND] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1168), + [anon_sym_LT] = ACTIONS(1166), [anon_sym_COLON_COLON] = ACTIONS(1166), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(1166), + [anon_sym_DOT_DOT] = ACTIONS(1166), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PIPE] = ACTIONS(1166), + [anon_sym_yield] = ACTIONS(1168), + [anon_sym_move] = ACTIONS(1168), + [sym_integer_literal] = ACTIONS(1166), + [aux_sym_string_literal_token1] = ACTIONS(1166), + [sym_char_literal] = ACTIONS(1166), + [anon_sym_true] = ACTIONS(1168), + [anon_sym_false] = ACTIONS(1168), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1168), + [sym_super] = ACTIONS(1168), + [sym_crate] = ACTIONS(1168), + [sym_metavariable] = ACTIONS(1166), + [sym_raw_string_literal] = ACTIONS(1166), + [sym_float_literal] = ACTIONS(1166), [sym_block_comment] = ACTIONS(3), }, - [274] = { + [278] = { + [ts_builtin_sym_end] = ACTIONS(1170), + [sym_identifier] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1170), + [anon_sym_macro_rules_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1170), + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1170), + [anon_sym_u8] = ACTIONS(1172), + [anon_sym_i8] = ACTIONS(1172), + [anon_sym_u16] = ACTIONS(1172), + [anon_sym_i16] = ACTIONS(1172), + [anon_sym_u32] = ACTIONS(1172), + [anon_sym_i32] = ACTIONS(1172), + [anon_sym_u64] = ACTIONS(1172), + [anon_sym_i64] = ACTIONS(1172), + [anon_sym_u128] = ACTIONS(1172), + [anon_sym_i128] = ACTIONS(1172), + [anon_sym_isize] = ACTIONS(1172), + [anon_sym_usize] = ACTIONS(1172), + [anon_sym_f32] = ACTIONS(1172), + [anon_sym_f64] = ACTIONS(1172), + [anon_sym_bool] = ACTIONS(1172), + [anon_sym_str] = ACTIONS(1172), + [anon_sym_char] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_async] = ACTIONS(1172), + [anon_sym_break] = ACTIONS(1172), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_continue] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1172), + [anon_sym_enum] = ACTIONS(1172), + [anon_sym_fn] = ACTIONS(1172), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1172), + [anon_sym_impl] = ACTIONS(1172), + [anon_sym_let] = ACTIONS(1172), + [anon_sym_loop] = ACTIONS(1172), + [anon_sym_match] = ACTIONS(1172), + [anon_sym_mod] = ACTIONS(1172), + [anon_sym_pub] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1172), + [anon_sym_struct] = ACTIONS(1172), + [anon_sym_trait] = ACTIONS(1172), + [anon_sym_type] = ACTIONS(1172), + [anon_sym_union] = ACTIONS(1172), + [anon_sym_unsafe] = ACTIONS(1172), + [anon_sym_use] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1172), + [anon_sym_POUND] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(1170), + [anon_sym_AMP] = ACTIONS(1170), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PIPE] = ACTIONS(1170), + [anon_sym_yield] = ACTIONS(1172), + [anon_sym_move] = ACTIONS(1172), + [sym_integer_literal] = ACTIONS(1170), + [aux_sym_string_literal_token1] = ACTIONS(1170), + [sym_char_literal] = ACTIONS(1170), + [anon_sym_true] = ACTIONS(1172), + [anon_sym_false] = ACTIONS(1172), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1172), + [sym_super] = ACTIONS(1172), + [sym_crate] = ACTIONS(1172), + [sym_metavariable] = ACTIONS(1170), + [sym_raw_string_literal] = ACTIONS(1170), + [sym_float_literal] = ACTIONS(1170), + [sym_block_comment] = ACTIONS(3), + }, + [279] = { [ts_builtin_sym_end] = ACTIONS(1174), [sym_identifier] = ACTIONS(1176), [anon_sym_SEMI] = ACTIONS(1174), @@ -44658,7 +45188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1174), [sym_block_comment] = ACTIONS(3), }, - [275] = { + [280] = { [ts_builtin_sym_end] = ACTIONS(1178), [sym_identifier] = ACTIONS(1180), [anon_sym_SEMI] = ACTIONS(1178), @@ -44735,7 +45265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1178), [sym_block_comment] = ACTIONS(3), }, - [276] = { + [281] = { [ts_builtin_sym_end] = ACTIONS(1182), [sym_identifier] = ACTIONS(1184), [anon_sym_SEMI] = ACTIONS(1182), @@ -44812,7 +45342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1182), [sym_block_comment] = ACTIONS(3), }, - [277] = { + [282] = { [ts_builtin_sym_end] = ACTIONS(1186), [sym_identifier] = ACTIONS(1188), [anon_sym_SEMI] = ACTIONS(1186), @@ -44889,7 +45419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1186), [sym_block_comment] = ACTIONS(3), }, - [278] = { + [283] = { [ts_builtin_sym_end] = ACTIONS(1190), [sym_identifier] = ACTIONS(1192), [anon_sym_SEMI] = ACTIONS(1190), @@ -44966,7 +45496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1190), [sym_block_comment] = ACTIONS(3), }, - [279] = { + [284] = { [ts_builtin_sym_end] = ACTIONS(1194), [sym_identifier] = ACTIONS(1196), [anon_sym_SEMI] = ACTIONS(1194), @@ -45043,7 +45573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1194), [sym_block_comment] = ACTIONS(3), }, - [280] = { + [285] = { [ts_builtin_sym_end] = ACTIONS(1198), [sym_identifier] = ACTIONS(1200), [anon_sym_SEMI] = ACTIONS(1198), @@ -45120,7 +45650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1198), [sym_block_comment] = ACTIONS(3), }, - [281] = { + [286] = { [ts_builtin_sym_end] = ACTIONS(1202), [sym_identifier] = ACTIONS(1204), [anon_sym_SEMI] = ACTIONS(1202), @@ -45197,7 +45727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [282] = { + [287] = { [ts_builtin_sym_end] = ACTIONS(1206), [sym_identifier] = ACTIONS(1208), [anon_sym_SEMI] = ACTIONS(1206), @@ -45274,7 +45804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1206), [sym_block_comment] = ACTIONS(3), }, - [283] = { + [288] = { [ts_builtin_sym_end] = ACTIONS(1210), [sym_identifier] = ACTIONS(1212), [anon_sym_SEMI] = ACTIONS(1210), @@ -45351,7 +45881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1210), [sym_block_comment] = ACTIONS(3), }, - [284] = { + [289] = { [ts_builtin_sym_end] = ACTIONS(1214), [sym_identifier] = ACTIONS(1216), [anon_sym_SEMI] = ACTIONS(1214), @@ -45428,7 +45958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1214), [sym_block_comment] = ACTIONS(3), }, - [285] = { + [290] = { [ts_builtin_sym_end] = ACTIONS(1218), [sym_identifier] = ACTIONS(1220), [anon_sym_SEMI] = ACTIONS(1218), @@ -45505,7 +46035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1218), [sym_block_comment] = ACTIONS(3), }, - [286] = { + [291] = { [ts_builtin_sym_end] = ACTIONS(1222), [sym_identifier] = ACTIONS(1224), [anon_sym_SEMI] = ACTIONS(1222), @@ -45582,7 +46112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1222), [sym_block_comment] = ACTIONS(3), }, - [287] = { + [292] = { [ts_builtin_sym_end] = ACTIONS(1226), [sym_identifier] = ACTIONS(1228), [anon_sym_SEMI] = ACTIONS(1226), @@ -45659,7 +46189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1226), [sym_block_comment] = ACTIONS(3), }, - [288] = { + [293] = { [ts_builtin_sym_end] = ACTIONS(1230), [sym_identifier] = ACTIONS(1232), [anon_sym_SEMI] = ACTIONS(1230), @@ -45736,7 +46266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1230), [sym_block_comment] = ACTIONS(3), }, - [289] = { + [294] = { [ts_builtin_sym_end] = ACTIONS(1234), [sym_identifier] = ACTIONS(1236), [anon_sym_SEMI] = ACTIONS(1234), @@ -45813,7 +46343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1234), [sym_block_comment] = ACTIONS(3), }, - [290] = { + [295] = { [ts_builtin_sym_end] = ACTIONS(1238), [sym_identifier] = ACTIONS(1240), [anon_sym_SEMI] = ACTIONS(1238), @@ -45890,7 +46420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1238), [sym_block_comment] = ACTIONS(3), }, - [291] = { + [296] = { [ts_builtin_sym_end] = ACTIONS(1242), [sym_identifier] = ACTIONS(1244), [anon_sym_SEMI] = ACTIONS(1242), @@ -45967,7 +46497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1242), [sym_block_comment] = ACTIONS(3), }, - [292] = { + [297] = { [ts_builtin_sym_end] = ACTIONS(1246), [sym_identifier] = ACTIONS(1248), [anon_sym_SEMI] = ACTIONS(1246), @@ -46044,7 +46574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1246), [sym_block_comment] = ACTIONS(3), }, - [293] = { + [298] = { [ts_builtin_sym_end] = ACTIONS(1250), [sym_identifier] = ACTIONS(1252), [anon_sym_SEMI] = ACTIONS(1250), @@ -46121,7 +46651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1250), [sym_block_comment] = ACTIONS(3), }, - [294] = { + [299] = { [ts_builtin_sym_end] = ACTIONS(1254), [sym_identifier] = ACTIONS(1256), [anon_sym_SEMI] = ACTIONS(1254), @@ -46198,7 +46728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1254), [sym_block_comment] = ACTIONS(3), }, - [295] = { + [300] = { [ts_builtin_sym_end] = ACTIONS(1258), [sym_identifier] = ACTIONS(1260), [anon_sym_SEMI] = ACTIONS(1258), @@ -46275,7 +46805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1258), [sym_block_comment] = ACTIONS(3), }, - [296] = { + [301] = { [ts_builtin_sym_end] = ACTIONS(1262), [sym_identifier] = ACTIONS(1264), [anon_sym_SEMI] = ACTIONS(1262), @@ -46352,7 +46882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1262), [sym_block_comment] = ACTIONS(3), }, - [297] = { + [302] = { [ts_builtin_sym_end] = ACTIONS(1266), [sym_identifier] = ACTIONS(1268), [anon_sym_SEMI] = ACTIONS(1266), @@ -46429,7 +46959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1266), [sym_block_comment] = ACTIONS(3), }, - [298] = { + [303] = { [ts_builtin_sym_end] = ACTIONS(1270), [sym_identifier] = ACTIONS(1272), [anon_sym_SEMI] = ACTIONS(1270), @@ -46506,7 +47036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1270), [sym_block_comment] = ACTIONS(3), }, - [299] = { + [304] = { [ts_builtin_sym_end] = ACTIONS(1274), [sym_identifier] = ACTIONS(1276), [anon_sym_SEMI] = ACTIONS(1274), @@ -46583,7 +47113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1274), [sym_block_comment] = ACTIONS(3), }, - [300] = { + [305] = { [ts_builtin_sym_end] = ACTIONS(1278), [sym_identifier] = ACTIONS(1280), [anon_sym_SEMI] = ACTIONS(1278), @@ -46660,7 +47190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1278), [sym_block_comment] = ACTIONS(3), }, - [301] = { + [306] = { [ts_builtin_sym_end] = ACTIONS(1282), [sym_identifier] = ACTIONS(1284), [anon_sym_SEMI] = ACTIONS(1282), @@ -46737,7 +47267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1282), [sym_block_comment] = ACTIONS(3), }, - [302] = { + [307] = { [ts_builtin_sym_end] = ACTIONS(1286), [sym_identifier] = ACTIONS(1288), [anon_sym_SEMI] = ACTIONS(1286), @@ -46814,7 +47344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1286), [sym_block_comment] = ACTIONS(3), }, - [303] = { + [308] = { [ts_builtin_sym_end] = ACTIONS(1290), [sym_identifier] = ACTIONS(1292), [anon_sym_SEMI] = ACTIONS(1290), @@ -46891,7 +47421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1290), [sym_block_comment] = ACTIONS(3), }, - [304] = { + [309] = { [ts_builtin_sym_end] = ACTIONS(1294), [sym_identifier] = ACTIONS(1296), [anon_sym_SEMI] = ACTIONS(1294), @@ -46968,7 +47498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1294), [sym_block_comment] = ACTIONS(3), }, - [305] = { + [310] = { [ts_builtin_sym_end] = ACTIONS(1298), [sym_identifier] = ACTIONS(1300), [anon_sym_SEMI] = ACTIONS(1298), @@ -47045,7 +47575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1298), [sym_block_comment] = ACTIONS(3), }, - [306] = { + [311] = { [ts_builtin_sym_end] = ACTIONS(1302), [sym_identifier] = ACTIONS(1304), [anon_sym_SEMI] = ACTIONS(1302), @@ -47122,7 +47652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1302), [sym_block_comment] = ACTIONS(3), }, - [307] = { + [312] = { [ts_builtin_sym_end] = ACTIONS(1306), [sym_identifier] = ACTIONS(1308), [anon_sym_SEMI] = ACTIONS(1306), @@ -47199,7 +47729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1306), [sym_block_comment] = ACTIONS(3), }, - [308] = { + [313] = { [ts_builtin_sym_end] = ACTIONS(1310), [sym_identifier] = ACTIONS(1312), [anon_sym_SEMI] = ACTIONS(1310), @@ -47276,7 +47806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1310), [sym_block_comment] = ACTIONS(3), }, - [309] = { + [314] = { [ts_builtin_sym_end] = ACTIONS(1314), [sym_identifier] = ACTIONS(1316), [anon_sym_SEMI] = ACTIONS(1314), @@ -47353,7 +47883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1314), [sym_block_comment] = ACTIONS(3), }, - [310] = { + [315] = { [ts_builtin_sym_end] = ACTIONS(1318), [sym_identifier] = ACTIONS(1320), [anon_sym_SEMI] = ACTIONS(1318), @@ -47430,7 +47960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1318), [sym_block_comment] = ACTIONS(3), }, - [311] = { + [316] = { [ts_builtin_sym_end] = ACTIONS(1322), [sym_identifier] = ACTIONS(1324), [anon_sym_SEMI] = ACTIONS(1322), @@ -47507,7 +48037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1322), [sym_block_comment] = ACTIONS(3), }, - [312] = { + [317] = { [ts_builtin_sym_end] = ACTIONS(1326), [sym_identifier] = ACTIONS(1328), [anon_sym_SEMI] = ACTIONS(1326), @@ -47584,7 +48114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1326), [sym_block_comment] = ACTIONS(3), }, - [313] = { + [318] = { [ts_builtin_sym_end] = ACTIONS(1330), [sym_identifier] = ACTIONS(1332), [anon_sym_SEMI] = ACTIONS(1330), @@ -47661,7 +48191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1330), [sym_block_comment] = ACTIONS(3), }, - [314] = { + [319] = { [ts_builtin_sym_end] = ACTIONS(1334), [sym_identifier] = ACTIONS(1336), [anon_sym_SEMI] = ACTIONS(1334), @@ -47738,7 +48268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1334), [sym_block_comment] = ACTIONS(3), }, - [315] = { + [320] = { [ts_builtin_sym_end] = ACTIONS(1338), [sym_identifier] = ACTIONS(1340), [anon_sym_SEMI] = ACTIONS(1338), @@ -47815,7 +48345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1338), [sym_block_comment] = ACTIONS(3), }, - [316] = { + [321] = { [ts_builtin_sym_end] = ACTIONS(1342), [sym_identifier] = ACTIONS(1344), [anon_sym_SEMI] = ACTIONS(1342), @@ -47892,7 +48422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1342), [sym_block_comment] = ACTIONS(3), }, - [317] = { + [322] = { [ts_builtin_sym_end] = ACTIONS(1346), [sym_identifier] = ACTIONS(1348), [anon_sym_SEMI] = ACTIONS(1346), @@ -47969,7 +48499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1346), [sym_block_comment] = ACTIONS(3), }, - [318] = { + [323] = { [ts_builtin_sym_end] = ACTIONS(1350), [sym_identifier] = ACTIONS(1352), [anon_sym_SEMI] = ACTIONS(1350), @@ -48046,7 +48576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1350), [sym_block_comment] = ACTIONS(3), }, - [319] = { + [324] = { [ts_builtin_sym_end] = ACTIONS(1354), [sym_identifier] = ACTIONS(1356), [anon_sym_SEMI] = ACTIONS(1354), @@ -48123,7 +48653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1354), [sym_block_comment] = ACTIONS(3), }, - [320] = { + [325] = { [ts_builtin_sym_end] = ACTIONS(1358), [sym_identifier] = ACTIONS(1360), [anon_sym_SEMI] = ACTIONS(1358), @@ -48200,7 +48730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1358), [sym_block_comment] = ACTIONS(3), }, - [321] = { + [326] = { [ts_builtin_sym_end] = ACTIONS(1362), [sym_identifier] = ACTIONS(1364), [anon_sym_SEMI] = ACTIONS(1362), @@ -48277,7 +48807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1362), [sym_block_comment] = ACTIONS(3), }, - [322] = { + [327] = { [ts_builtin_sym_end] = ACTIONS(1366), [sym_identifier] = ACTIONS(1368), [anon_sym_SEMI] = ACTIONS(1366), @@ -48354,7 +48884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1366), [sym_block_comment] = ACTIONS(3), }, - [323] = { + [328] = { [ts_builtin_sym_end] = ACTIONS(1370), [sym_identifier] = ACTIONS(1372), [anon_sym_SEMI] = ACTIONS(1370), @@ -48431,7 +48961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1370), [sym_block_comment] = ACTIONS(3), }, - [324] = { + [329] = { [ts_builtin_sym_end] = ACTIONS(1374), [sym_identifier] = ACTIONS(1376), [anon_sym_SEMI] = ACTIONS(1374), @@ -48508,7 +49038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1374), [sym_block_comment] = ACTIONS(3), }, - [325] = { + [330] = { [ts_builtin_sym_end] = ACTIONS(1378), [sym_identifier] = ACTIONS(1380), [anon_sym_SEMI] = ACTIONS(1378), @@ -48585,7 +49115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1378), [sym_block_comment] = ACTIONS(3), }, - [326] = { + [331] = { [ts_builtin_sym_end] = ACTIONS(1382), [sym_identifier] = ACTIONS(1384), [anon_sym_SEMI] = ACTIONS(1382), @@ -48662,7 +49192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1382), [sym_block_comment] = ACTIONS(3), }, - [327] = { + [332] = { [ts_builtin_sym_end] = ACTIONS(1386), [sym_identifier] = ACTIONS(1388), [anon_sym_SEMI] = ACTIONS(1386), @@ -48739,7 +49269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1386), [sym_block_comment] = ACTIONS(3), }, - [328] = { + [333] = { [ts_builtin_sym_end] = ACTIONS(1390), [sym_identifier] = ACTIONS(1392), [anon_sym_SEMI] = ACTIONS(1390), @@ -48816,7 +49346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1390), [sym_block_comment] = ACTIONS(3), }, - [329] = { + [334] = { [ts_builtin_sym_end] = ACTIONS(1394), [sym_identifier] = ACTIONS(1396), [anon_sym_SEMI] = ACTIONS(1394), @@ -48893,7 +49423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1394), [sym_block_comment] = ACTIONS(3), }, - [330] = { + [335] = { [ts_builtin_sym_end] = ACTIONS(1398), [sym_identifier] = ACTIONS(1400), [anon_sym_SEMI] = ACTIONS(1398), @@ -48970,7 +49500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1398), [sym_block_comment] = ACTIONS(3), }, - [331] = { + [336] = { [ts_builtin_sym_end] = ACTIONS(1402), [sym_identifier] = ACTIONS(1404), [anon_sym_SEMI] = ACTIONS(1402), @@ -49047,7 +49577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1402), [sym_block_comment] = ACTIONS(3), }, - [332] = { + [337] = { [ts_builtin_sym_end] = ACTIONS(1406), [sym_identifier] = ACTIONS(1408), [anon_sym_SEMI] = ACTIONS(1406), @@ -49124,7 +49654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1406), [sym_block_comment] = ACTIONS(3), }, - [333] = { + [338] = { [ts_builtin_sym_end] = ACTIONS(1410), [sym_identifier] = ACTIONS(1412), [anon_sym_SEMI] = ACTIONS(1410), @@ -49201,7 +49731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1410), [sym_block_comment] = ACTIONS(3), }, - [334] = { + [339] = { [ts_builtin_sym_end] = ACTIONS(1414), [sym_identifier] = ACTIONS(1416), [anon_sym_SEMI] = ACTIONS(1414), @@ -49278,7 +49808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1414), [sym_block_comment] = ACTIONS(3), }, - [335] = { + [340] = { [ts_builtin_sym_end] = ACTIONS(1418), [sym_identifier] = ACTIONS(1420), [anon_sym_SEMI] = ACTIONS(1418), @@ -49355,7 +49885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1418), [sym_block_comment] = ACTIONS(3), }, - [336] = { + [341] = { [ts_builtin_sym_end] = ACTIONS(1422), [sym_identifier] = ACTIONS(1424), [anon_sym_SEMI] = ACTIONS(1422), @@ -49432,7 +49962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1422), [sym_block_comment] = ACTIONS(3), }, - [337] = { + [342] = { [ts_builtin_sym_end] = ACTIONS(1426), [sym_identifier] = ACTIONS(1428), [anon_sym_SEMI] = ACTIONS(1426), @@ -49509,7 +50039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1426), [sym_block_comment] = ACTIONS(3), }, - [338] = { + [343] = { [ts_builtin_sym_end] = ACTIONS(1430), [sym_identifier] = ACTIONS(1432), [anon_sym_SEMI] = ACTIONS(1430), @@ -49586,7 +50116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1430), [sym_block_comment] = ACTIONS(3), }, - [339] = { + [344] = { [ts_builtin_sym_end] = ACTIONS(1434), [sym_identifier] = ACTIONS(1436), [anon_sym_SEMI] = ACTIONS(1434), @@ -49663,7 +50193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1434), [sym_block_comment] = ACTIONS(3), }, - [340] = { + [345] = { [ts_builtin_sym_end] = ACTIONS(1438), [sym_identifier] = ACTIONS(1440), [anon_sym_SEMI] = ACTIONS(1438), @@ -49740,7 +50270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1438), [sym_block_comment] = ACTIONS(3), }, - [341] = { + [346] = { [ts_builtin_sym_end] = ACTIONS(1442), [sym_identifier] = ACTIONS(1444), [anon_sym_SEMI] = ACTIONS(1442), @@ -49817,7 +50347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1442), [sym_block_comment] = ACTIONS(3), }, - [342] = { + [347] = { [ts_builtin_sym_end] = ACTIONS(1446), [sym_identifier] = ACTIONS(1448), [anon_sym_SEMI] = ACTIONS(1446), @@ -49894,7 +50424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1446), [sym_block_comment] = ACTIONS(3), }, - [343] = { + [348] = { [ts_builtin_sym_end] = ACTIONS(1450), [sym_identifier] = ACTIONS(1452), [anon_sym_SEMI] = ACTIONS(1450), @@ -49971,7 +50501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1450), [sym_block_comment] = ACTIONS(3), }, - [344] = { + [349] = { [ts_builtin_sym_end] = ACTIONS(1454), [sym_identifier] = ACTIONS(1456), [anon_sym_SEMI] = ACTIONS(1454), @@ -50048,7 +50578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1454), [sym_block_comment] = ACTIONS(3), }, - [345] = { + [350] = { [ts_builtin_sym_end] = ACTIONS(1458), [sym_identifier] = ACTIONS(1460), [anon_sym_SEMI] = ACTIONS(1458), @@ -50125,7 +50655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1458), [sym_block_comment] = ACTIONS(3), }, - [346] = { + [351] = { [ts_builtin_sym_end] = ACTIONS(1462), [sym_identifier] = ACTIONS(1464), [anon_sym_SEMI] = ACTIONS(1462), @@ -50202,7 +50732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1462), [sym_block_comment] = ACTIONS(3), }, - [347] = { + [352] = { [ts_builtin_sym_end] = ACTIONS(1466), [sym_identifier] = ACTIONS(1468), [anon_sym_SEMI] = ACTIONS(1466), @@ -50279,7 +50809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1466), [sym_block_comment] = ACTIONS(3), }, - [348] = { + [353] = { [ts_builtin_sym_end] = ACTIONS(1470), [sym_identifier] = ACTIONS(1472), [anon_sym_SEMI] = ACTIONS(1470), @@ -50356,7 +50886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1470), [sym_block_comment] = ACTIONS(3), }, - [349] = { + [354] = { [ts_builtin_sym_end] = ACTIONS(1474), [sym_identifier] = ACTIONS(1476), [anon_sym_SEMI] = ACTIONS(1474), @@ -50433,7 +50963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1474), [sym_block_comment] = ACTIONS(3), }, - [350] = { + [355] = { [ts_builtin_sym_end] = ACTIONS(1478), [sym_identifier] = ACTIONS(1480), [anon_sym_SEMI] = ACTIONS(1478), @@ -50510,7 +51040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1478), [sym_block_comment] = ACTIONS(3), }, - [351] = { + [356] = { [ts_builtin_sym_end] = ACTIONS(1482), [sym_identifier] = ACTIONS(1484), [anon_sym_SEMI] = ACTIONS(1482), @@ -50587,7 +51117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1482), [sym_block_comment] = ACTIONS(3), }, - [352] = { + [357] = { [ts_builtin_sym_end] = ACTIONS(1486), [sym_identifier] = ACTIONS(1488), [anon_sym_SEMI] = ACTIONS(1486), @@ -50664,7 +51194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1486), [sym_block_comment] = ACTIONS(3), }, - [353] = { + [358] = { [ts_builtin_sym_end] = ACTIONS(1490), [sym_identifier] = ACTIONS(1492), [anon_sym_SEMI] = ACTIONS(1490), @@ -50741,7 +51271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1490), [sym_block_comment] = ACTIONS(3), }, - [354] = { + [359] = { [ts_builtin_sym_end] = ACTIONS(1494), [sym_identifier] = ACTIONS(1496), [anon_sym_SEMI] = ACTIONS(1494), @@ -50818,7 +51348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1494), [sym_block_comment] = ACTIONS(3), }, - [355] = { + [360] = { [ts_builtin_sym_end] = ACTIONS(1498), [sym_identifier] = ACTIONS(1500), [anon_sym_SEMI] = ACTIONS(1498), @@ -50895,451 +51425,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [356] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_macro_rules_BANG] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_u8] = ACTIONS(1504), - [anon_sym_i8] = ACTIONS(1504), - [anon_sym_u16] = ACTIONS(1504), - [anon_sym_i16] = ACTIONS(1504), - [anon_sym_u32] = ACTIONS(1504), - [anon_sym_i32] = ACTIONS(1504), - [anon_sym_u64] = ACTIONS(1504), - [anon_sym_i64] = ACTIONS(1504), - [anon_sym_u128] = ACTIONS(1504), - [anon_sym_i128] = ACTIONS(1504), - [anon_sym_isize] = ACTIONS(1504), - [anon_sym_usize] = ACTIONS(1504), - [anon_sym_f32] = ACTIONS(1504), - [anon_sym_f64] = ACTIONS(1504), - [anon_sym_bool] = ACTIONS(1504), - [anon_sym_str] = ACTIONS(1504), - [anon_sym_char] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1504), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_fn] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_impl] = ACTIONS(1504), - [anon_sym_let] = ACTIONS(1504), - [anon_sym_loop] = ACTIONS(1504), - [anon_sym_match] = ACTIONS(1504), - [anon_sym_mod] = ACTIONS(1504), - [anon_sym_pub] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_trait] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_unsafe] = ACTIONS(1504), - [anon_sym_use] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_COLON_COLON] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_DOT_DOT] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_yield] = ACTIONS(1504), - [anon_sym_move] = ACTIONS(1504), - [sym_integer_literal] = ACTIONS(1502), - [aux_sym_string_literal_token1] = ACTIONS(1502), - [sym_char_literal] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1504), - [sym_super] = ACTIONS(1504), - [sym_crate] = ACTIONS(1504), - [sym_metavariable] = ACTIONS(1502), - [sym_raw_string_literal] = ACTIONS(1502), - [sym_float_literal] = ACTIONS(1502), - [sym_block_comment] = ACTIONS(3), - }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(1506), - [sym_identifier] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_macro_rules_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_u8] = ACTIONS(1508), - [anon_sym_i8] = ACTIONS(1508), - [anon_sym_u16] = ACTIONS(1508), - [anon_sym_i16] = ACTIONS(1508), - [anon_sym_u32] = ACTIONS(1508), - [anon_sym_i32] = ACTIONS(1508), - [anon_sym_u64] = ACTIONS(1508), - [anon_sym_i64] = ACTIONS(1508), - [anon_sym_u128] = ACTIONS(1508), - [anon_sym_i128] = ACTIONS(1508), - [anon_sym_isize] = ACTIONS(1508), - [anon_sym_usize] = ACTIONS(1508), - [anon_sym_f32] = ACTIONS(1508), - [anon_sym_f64] = ACTIONS(1508), - [anon_sym_bool] = ACTIONS(1508), - [anon_sym_str] = ACTIONS(1508), - [anon_sym_char] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_async] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_enum] = ACTIONS(1508), - [anon_sym_fn] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_impl] = ACTIONS(1508), - [anon_sym_let] = ACTIONS(1508), - [anon_sym_loop] = ACTIONS(1508), - [anon_sym_match] = ACTIONS(1508), - [anon_sym_mod] = ACTIONS(1508), - [anon_sym_pub] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_struct] = ACTIONS(1508), - [anon_sym_trait] = ACTIONS(1508), - [anon_sym_type] = ACTIONS(1508), - [anon_sym_union] = ACTIONS(1508), - [anon_sym_unsafe] = ACTIONS(1508), - [anon_sym_use] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_extern] = ACTIONS(1508), - [anon_sym_LT] = ACTIONS(1506), - [anon_sym_COLON_COLON] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_yield] = ACTIONS(1508), - [anon_sym_move] = ACTIONS(1508), - [sym_integer_literal] = ACTIONS(1506), - [aux_sym_string_literal_token1] = ACTIONS(1506), - [sym_char_literal] = ACTIONS(1506), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1508), - [sym_super] = ACTIONS(1508), - [sym_crate] = ACTIONS(1508), - [sym_metavariable] = ACTIONS(1506), - [sym_raw_string_literal] = ACTIONS(1506), - [sym_float_literal] = ACTIONS(1506), - [sym_block_comment] = ACTIONS(3), - }, - [358] = { - [ts_builtin_sym_end] = ACTIONS(1510), - [sym_identifier] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_macro_rules_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_u8] = ACTIONS(1512), - [anon_sym_i8] = ACTIONS(1512), - [anon_sym_u16] = ACTIONS(1512), - [anon_sym_i16] = ACTIONS(1512), - [anon_sym_u32] = ACTIONS(1512), - [anon_sym_i32] = ACTIONS(1512), - [anon_sym_u64] = ACTIONS(1512), - [anon_sym_i64] = ACTIONS(1512), - [anon_sym_u128] = ACTIONS(1512), - [anon_sym_i128] = ACTIONS(1512), - [anon_sym_isize] = ACTIONS(1512), - [anon_sym_usize] = ACTIONS(1512), - [anon_sym_f32] = ACTIONS(1512), - [anon_sym_f64] = ACTIONS(1512), - [anon_sym_bool] = ACTIONS(1512), - [anon_sym_str] = ACTIONS(1512), - [anon_sym_char] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_enum] = ACTIONS(1512), - [anon_sym_fn] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_impl] = ACTIONS(1512), - [anon_sym_let] = ACTIONS(1512), - [anon_sym_loop] = ACTIONS(1512), - [anon_sym_match] = ACTIONS(1512), - [anon_sym_mod] = ACTIONS(1512), - [anon_sym_pub] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_struct] = ACTIONS(1512), - [anon_sym_trait] = ACTIONS(1512), - [anon_sym_type] = ACTIONS(1512), - [anon_sym_union] = ACTIONS(1512), - [anon_sym_unsafe] = ACTIONS(1512), - [anon_sym_use] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1510), - [anon_sym_COLON_COLON] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_DOT_DOT] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_yield] = ACTIONS(1512), - [anon_sym_move] = ACTIONS(1512), - [sym_integer_literal] = ACTIONS(1510), - [aux_sym_string_literal_token1] = ACTIONS(1510), - [sym_char_literal] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1512), - [anon_sym_false] = ACTIONS(1512), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1512), - [sym_super] = ACTIONS(1512), - [sym_crate] = ACTIONS(1512), - [sym_metavariable] = ACTIONS(1510), - [sym_raw_string_literal] = ACTIONS(1510), - [sym_float_literal] = ACTIONS(1510), - [sym_block_comment] = ACTIONS(3), - }, - [359] = { - [ts_builtin_sym_end] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_macro_rules_BANG] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_u8] = ACTIONS(1516), - [anon_sym_i8] = ACTIONS(1516), - [anon_sym_u16] = ACTIONS(1516), - [anon_sym_i16] = ACTIONS(1516), - [anon_sym_u32] = ACTIONS(1516), - [anon_sym_i32] = ACTIONS(1516), - [anon_sym_u64] = ACTIONS(1516), - [anon_sym_i64] = ACTIONS(1516), - [anon_sym_u128] = ACTIONS(1516), - [anon_sym_i128] = ACTIONS(1516), - [anon_sym_isize] = ACTIONS(1516), - [anon_sym_usize] = ACTIONS(1516), - [anon_sym_f32] = ACTIONS(1516), - [anon_sym_f64] = ACTIONS(1516), - [anon_sym_bool] = ACTIONS(1516), - [anon_sym_str] = ACTIONS(1516), - [anon_sym_char] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_async] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_enum] = ACTIONS(1516), - [anon_sym_fn] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_impl] = ACTIONS(1516), - [anon_sym_let] = ACTIONS(1516), - [anon_sym_loop] = ACTIONS(1516), - [anon_sym_match] = ACTIONS(1516), - [anon_sym_mod] = ACTIONS(1516), - [anon_sym_pub] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_struct] = ACTIONS(1516), - [anon_sym_trait] = ACTIONS(1516), - [anon_sym_type] = ACTIONS(1516), - [anon_sym_union] = ACTIONS(1516), - [anon_sym_unsafe] = ACTIONS(1516), - [anon_sym_use] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_DOT_DOT] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_yield] = ACTIONS(1516), - [anon_sym_move] = ACTIONS(1516), - [sym_integer_literal] = ACTIONS(1514), - [aux_sym_string_literal_token1] = ACTIONS(1514), - [sym_char_literal] = ACTIONS(1514), - [anon_sym_true] = ACTIONS(1516), - [anon_sym_false] = ACTIONS(1516), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1516), - [sym_super] = ACTIONS(1516), - [sym_crate] = ACTIONS(1516), - [sym_metavariable] = ACTIONS(1514), - [sym_raw_string_literal] = ACTIONS(1514), - [sym_float_literal] = ACTIONS(1514), - [sym_block_comment] = ACTIONS(3), - }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(1518), - [sym_identifier] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_macro_rules_BANG] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_u8] = ACTIONS(1520), - [anon_sym_i8] = ACTIONS(1520), - [anon_sym_u16] = ACTIONS(1520), - [anon_sym_i16] = ACTIONS(1520), - [anon_sym_u32] = ACTIONS(1520), - [anon_sym_i32] = ACTIONS(1520), - [anon_sym_u64] = ACTIONS(1520), - [anon_sym_i64] = ACTIONS(1520), - [anon_sym_u128] = ACTIONS(1520), - [anon_sym_i128] = ACTIONS(1520), - [anon_sym_isize] = ACTIONS(1520), - [anon_sym_usize] = ACTIONS(1520), - [anon_sym_f32] = ACTIONS(1520), - [anon_sym_f64] = ACTIONS(1520), - [anon_sym_bool] = ACTIONS(1520), - [anon_sym_str] = ACTIONS(1520), - [anon_sym_char] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1520), - [anon_sym_enum] = ACTIONS(1520), - [anon_sym_fn] = ACTIONS(1520), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_impl] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1520), - [anon_sym_loop] = ACTIONS(1520), - [anon_sym_match] = ACTIONS(1520), - [anon_sym_mod] = ACTIONS(1520), - [anon_sym_pub] = ACTIONS(1520), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_struct] = ACTIONS(1520), - [anon_sym_trait] = ACTIONS(1520), - [anon_sym_type] = ACTIONS(1520), - [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1520), - [anon_sym_use] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_COLON_COLON] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1520), - [anon_sym_move] = ACTIONS(1520), - [sym_integer_literal] = ACTIONS(1518), - [aux_sym_string_literal_token1] = ACTIONS(1518), - [sym_char_literal] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1520), - [sym_super] = ACTIONS(1520), - [sym_crate] = ACTIONS(1520), - [sym_metavariable] = ACTIONS(1518), - [sym_raw_string_literal] = ACTIONS(1518), - [sym_float_literal] = ACTIONS(1518), - [sym_block_comment] = ACTIONS(3), - }, [361] = { - [sym_attribute_item] = STATE(554), + [sym_attribute_item] = STATE(558), [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2537), - [sym_scoped_identifier] = STATE(1584), - [sym_scoped_type_identifier] = STATE(1941), - [sym_match_arm] = STATE(491), - [sym_last_match_arm] = STATE(2414), - [sym_match_pattern] = STATE(2393), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1956), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_enum_variant_list_repeat1] = STATE(554), - [aux_sym_match_block_repeat1] = STATE(491), - [sym_identifier] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), + [sym_macro_invocation] = STATE(2581), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1919), + [sym_match_arm] = STATE(499), + [sym_last_match_arm] = STATE(2570), + [sym_match_pattern] = STATE(2569), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2123), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_match_block_repeat1] = STATE(499), + [sym_identifier] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1144), + [anon_sym_union] = ACTIONS(1144), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -51349,15 +51494,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [362] = { + [ts_builtin_sym_end] = ACTIONS(1504), + [sym_identifier] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_macro_rules_BANG] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [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_SQUOTE] = ACTIONS(1506), + [anon_sym_async] = 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_while] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_COLON_COLON] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_DOT_DOT] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_yield] = ACTIONS(1506), + [anon_sym_move] = ACTIONS(1506), + [sym_integer_literal] = ACTIONS(1504), + [aux_sym_string_literal_token1] = ACTIONS(1504), + [sym_char_literal] = ACTIONS(1504), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1506), + [sym_super] = ACTIONS(1506), + [sym_crate] = ACTIONS(1506), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1504), + [sym_float_literal] = ACTIONS(1504), + [sym_block_comment] = ACTIONS(3), + }, + [363] = { + [ts_builtin_sym_end] = ACTIONS(1508), + [sym_identifier] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_macro_rules_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_u8] = ACTIONS(1510), + [anon_sym_i8] = ACTIONS(1510), + [anon_sym_u16] = ACTIONS(1510), + [anon_sym_i16] = ACTIONS(1510), + [anon_sym_u32] = ACTIONS(1510), + [anon_sym_i32] = ACTIONS(1510), + [anon_sym_u64] = ACTIONS(1510), + [anon_sym_i64] = ACTIONS(1510), + [anon_sym_u128] = ACTIONS(1510), + [anon_sym_i128] = ACTIONS(1510), + [anon_sym_isize] = ACTIONS(1510), + [anon_sym_usize] = ACTIONS(1510), + [anon_sym_f32] = ACTIONS(1510), + [anon_sym_f64] = ACTIONS(1510), + [anon_sym_bool] = ACTIONS(1510), + [anon_sym_str] = ACTIONS(1510), + [anon_sym_char] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_async] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_fn] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_impl] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_mod] = ACTIONS(1510), + [anon_sym_pub] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_trait] = ACTIONS(1510), + [anon_sym_type] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_unsafe] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_COLON_COLON] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_move] = ACTIONS(1510), + [sym_integer_literal] = ACTIONS(1508), + [aux_sym_string_literal_token1] = ACTIONS(1508), + [sym_char_literal] = ACTIONS(1508), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1510), + [sym_super] = ACTIONS(1510), + [sym_crate] = ACTIONS(1510), + [sym_metavariable] = ACTIONS(1508), + [sym_raw_string_literal] = ACTIONS(1508), + [sym_float_literal] = ACTIONS(1508), + [sym_block_comment] = ACTIONS(3), + }, + [364] = { + [ts_builtin_sym_end] = ACTIONS(1512), + [sym_identifier] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_macro_rules_BANG] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_u8] = ACTIONS(1514), + [anon_sym_i8] = ACTIONS(1514), + [anon_sym_u16] = ACTIONS(1514), + [anon_sym_i16] = ACTIONS(1514), + [anon_sym_u32] = ACTIONS(1514), + [anon_sym_i32] = ACTIONS(1514), + [anon_sym_u64] = ACTIONS(1514), + [anon_sym_i64] = ACTIONS(1514), + [anon_sym_u128] = ACTIONS(1514), + [anon_sym_i128] = ACTIONS(1514), + [anon_sym_isize] = ACTIONS(1514), + [anon_sym_usize] = ACTIONS(1514), + [anon_sym_f32] = ACTIONS(1514), + [anon_sym_f64] = ACTIONS(1514), + [anon_sym_bool] = ACTIONS(1514), + [anon_sym_str] = ACTIONS(1514), + [anon_sym_char] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_async] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_fn] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_impl] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_pub] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_trait] = ACTIONS(1514), + [anon_sym_type] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_unsafe] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_COLON_COLON] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_yield] = ACTIONS(1514), + [anon_sym_move] = ACTIONS(1514), + [sym_integer_literal] = ACTIONS(1512), + [aux_sym_string_literal_token1] = ACTIONS(1512), + [sym_char_literal] = ACTIONS(1512), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1514), + [sym_super] = ACTIONS(1514), + [sym_crate] = ACTIONS(1514), + [sym_metavariable] = ACTIONS(1512), + [sym_raw_string_literal] = ACTIONS(1512), + [sym_float_literal] = ACTIONS(1512), + [sym_block_comment] = ACTIONS(3), + }, + [365] = { + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_macro_rules_BANG] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_fn] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_impl] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_mod] = ACTIONS(1518), + [anon_sym_pub] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_trait] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_unsafe] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_COLON_COLON] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_yield] = ACTIONS(1518), + [anon_sym_move] = ACTIONS(1518), + [sym_integer_literal] = ACTIONS(1516), + [aux_sym_string_literal_token1] = ACTIONS(1516), + [sym_char_literal] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1518), + [anon_sym_false] = ACTIONS(1518), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1518), + [sym_super] = ACTIONS(1518), + [sym_crate] = ACTIONS(1518), + [sym_metavariable] = ACTIONS(1516), + [sym_raw_string_literal] = ACTIONS(1516), + [sym_float_literal] = ACTIONS(1516), + [sym_block_comment] = ACTIONS(3), + }, + [366] = { + [ts_builtin_sym_end] = ACTIONS(1520), + [sym_identifier] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_macro_rules_BANG] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_async] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_fn] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_impl] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_mod] = ACTIONS(1522), + [anon_sym_pub] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_trait] = ACTIONS(1522), + [anon_sym_type] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_unsafe] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_COLON_COLON] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_yield] = ACTIONS(1522), + [anon_sym_move] = ACTIONS(1522), + [sym_integer_literal] = ACTIONS(1520), + [aux_sym_string_literal_token1] = ACTIONS(1520), + [sym_char_literal] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1522), + [anon_sym_false] = ACTIONS(1522), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1522), + [sym_super] = ACTIONS(1522), + [sym_crate] = ACTIONS(1522), + [sym_metavariable] = ACTIONS(1520), + [sym_raw_string_literal] = ACTIONS(1520), + [sym_float_literal] = ACTIONS(1520), + [sym_block_comment] = ACTIONS(3), + }, + [367] = { [ts_builtin_sym_end] = ACTIONS(1524), [sym_identifier] = ACTIONS(1526), [anon_sym_SEMI] = ACTIONS(1524), @@ -51434,7 +51964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1524), [sym_block_comment] = ACTIONS(3), }, - [363] = { + [368] = { [ts_builtin_sym_end] = ACTIONS(1528), [sym_identifier] = ACTIONS(1530), [anon_sym_SEMI] = ACTIONS(1528), @@ -51511,7 +52041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1528), [sym_block_comment] = ACTIONS(3), }, - [364] = { + [369] = { [ts_builtin_sym_end] = ACTIONS(1532), [sym_identifier] = ACTIONS(1534), [anon_sym_SEMI] = ACTIONS(1532), @@ -51588,7 +52118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1532), [sym_block_comment] = ACTIONS(3), }, - [365] = { + [370] = { [ts_builtin_sym_end] = ACTIONS(1536), [sym_identifier] = ACTIONS(1538), [anon_sym_SEMI] = ACTIONS(1536), @@ -51665,7 +52195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1536), [sym_block_comment] = ACTIONS(3), }, - [366] = { + [371] = { [ts_builtin_sym_end] = ACTIONS(1540), [sym_identifier] = ACTIONS(1542), [anon_sym_SEMI] = ACTIONS(1540), @@ -51742,7 +52272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1540), [sym_block_comment] = ACTIONS(3), }, - [367] = { + [372] = { [ts_builtin_sym_end] = ACTIONS(1544), [sym_identifier] = ACTIONS(1546), [anon_sym_SEMI] = ACTIONS(1544), @@ -51819,7 +52349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1544), [sym_block_comment] = ACTIONS(3), }, - [368] = { + [373] = { [ts_builtin_sym_end] = ACTIONS(1548), [sym_identifier] = ACTIONS(1550), [anon_sym_SEMI] = ACTIONS(1548), @@ -51896,7 +52426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1548), [sym_block_comment] = ACTIONS(3), }, - [369] = { + [374] = { [ts_builtin_sym_end] = ACTIONS(1552), [sym_identifier] = ACTIONS(1554), [anon_sym_SEMI] = ACTIONS(1552), @@ -51973,7 +52503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1552), [sym_block_comment] = ACTIONS(3), }, - [370] = { + [375] = { [ts_builtin_sym_end] = ACTIONS(1556), [sym_identifier] = ACTIONS(1558), [anon_sym_SEMI] = ACTIONS(1556), @@ -52050,7 +52580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1556), [sym_block_comment] = ACTIONS(3), }, - [371] = { + [376] = { [ts_builtin_sym_end] = ACTIONS(1560), [sym_identifier] = ACTIONS(1562), [anon_sym_SEMI] = ACTIONS(1560), @@ -52127,7 +52657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1560), [sym_block_comment] = ACTIONS(3), }, - [372] = { + [377] = { [ts_builtin_sym_end] = ACTIONS(1564), [sym_identifier] = ACTIONS(1566), [anon_sym_SEMI] = ACTIONS(1564), @@ -52204,7 +52734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1564), [sym_block_comment] = ACTIONS(3), }, - [373] = { + [378] = { [ts_builtin_sym_end] = ACTIONS(1568), [sym_identifier] = ACTIONS(1570), [anon_sym_SEMI] = ACTIONS(1568), @@ -52281,7 +52811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1568), [sym_block_comment] = ACTIONS(3), }, - [374] = { + [379] = { [ts_builtin_sym_end] = ACTIONS(1572), [sym_identifier] = ACTIONS(1574), [anon_sym_SEMI] = ACTIONS(1572), @@ -52358,7 +52888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1572), [sym_block_comment] = ACTIONS(3), }, - [375] = { + [380] = { [ts_builtin_sym_end] = ACTIONS(1576), [sym_identifier] = ACTIONS(1578), [anon_sym_SEMI] = ACTIONS(1576), @@ -52435,451 +52965,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1576), [sym_block_comment] = ACTIONS(3), }, - [376] = { - [ts_builtin_sym_end] = ACTIONS(1580), - [sym_identifier] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_macro_rules_BANG] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1580), - [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_SQUOTE] = ACTIONS(1582), - [anon_sym_async] = 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_while] = ACTIONS(1582), - [anon_sym_POUND] = ACTIONS(1580), - [anon_sym_BANG] = ACTIONS(1580), - [anon_sym_extern] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_COLON_COLON] = ACTIONS(1580), - [anon_sym_AMP] = ACTIONS(1580), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_yield] = ACTIONS(1582), - [anon_sym_move] = ACTIONS(1582), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1580), - [sym_char_literal] = ACTIONS(1580), - [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(1580), - [sym_raw_string_literal] = ACTIONS(1580), - [sym_float_literal] = ACTIONS(1580), - [sym_block_comment] = ACTIONS(3), - }, - [377] = { - [ts_builtin_sym_end] = ACTIONS(1584), - [sym_identifier] = ACTIONS(1586), - [anon_sym_SEMI] = ACTIONS(1584), - [anon_sym_macro_rules_BANG] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1584), - [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_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = 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_while] = ACTIONS(1586), - [anon_sym_POUND] = ACTIONS(1584), - [anon_sym_BANG] = ACTIONS(1584), - [anon_sym_extern] = ACTIONS(1586), - [anon_sym_LT] = ACTIONS(1584), - [anon_sym_COLON_COLON] = ACTIONS(1584), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_DOT_DOT] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1584), - [anon_sym_yield] = ACTIONS(1586), - [anon_sym_move] = ACTIONS(1586), - [sym_integer_literal] = ACTIONS(1584), - [aux_sym_string_literal_token1] = ACTIONS(1584), - [sym_char_literal] = ACTIONS(1584), - [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(1584), - [sym_raw_string_literal] = ACTIONS(1584), - [sym_float_literal] = ACTIONS(1584), - [sym_block_comment] = ACTIONS(3), - }, - [378] = { - [ts_builtin_sym_end] = ACTIONS(1588), - [sym_identifier] = ACTIONS(1590), - [anon_sym_SEMI] = ACTIONS(1588), - [anon_sym_macro_rules_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_RBRACE] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1588), - [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_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = 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_while] = ACTIONS(1590), - [anon_sym_POUND] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_extern] = ACTIONS(1590), - [anon_sym_LT] = ACTIONS(1588), - [anon_sym_COLON_COLON] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_DOT_DOT] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_move] = ACTIONS(1590), - [sym_integer_literal] = ACTIONS(1588), - [aux_sym_string_literal_token1] = ACTIONS(1588), - [sym_char_literal] = ACTIONS(1588), - [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(1588), - [sym_raw_string_literal] = ACTIONS(1588), - [sym_float_literal] = ACTIONS(1588), - [sym_block_comment] = ACTIONS(3), - }, - [379] = { - [ts_builtin_sym_end] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1594), - [anon_sym_SEMI] = ACTIONS(1592), - [anon_sym_macro_rules_BANG] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_RBRACE] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1592), - [anon_sym_u8] = ACTIONS(1594), - [anon_sym_i8] = ACTIONS(1594), - [anon_sym_u16] = ACTIONS(1594), - [anon_sym_i16] = ACTIONS(1594), - [anon_sym_u32] = ACTIONS(1594), - [anon_sym_i32] = ACTIONS(1594), - [anon_sym_u64] = ACTIONS(1594), - [anon_sym_i64] = ACTIONS(1594), - [anon_sym_u128] = ACTIONS(1594), - [anon_sym_i128] = ACTIONS(1594), - [anon_sym_isize] = ACTIONS(1594), - [anon_sym_usize] = ACTIONS(1594), - [anon_sym_f32] = ACTIONS(1594), - [anon_sym_f64] = ACTIONS(1594), - [anon_sym_bool] = ACTIONS(1594), - [anon_sym_str] = ACTIONS(1594), - [anon_sym_char] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1594), - [anon_sym_async] = ACTIONS(1594), - [anon_sym_break] = ACTIONS(1594), - [anon_sym_const] = ACTIONS(1594), - [anon_sym_continue] = ACTIONS(1594), - [anon_sym_default] = ACTIONS(1594), - [anon_sym_enum] = ACTIONS(1594), - [anon_sym_fn] = ACTIONS(1594), - [anon_sym_for] = ACTIONS(1594), - [anon_sym_if] = ACTIONS(1594), - [anon_sym_impl] = ACTIONS(1594), - [anon_sym_let] = ACTIONS(1594), - [anon_sym_loop] = ACTIONS(1594), - [anon_sym_match] = ACTIONS(1594), - [anon_sym_mod] = ACTIONS(1594), - [anon_sym_pub] = ACTIONS(1594), - [anon_sym_return] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_struct] = ACTIONS(1594), - [anon_sym_trait] = ACTIONS(1594), - [anon_sym_type] = ACTIONS(1594), - [anon_sym_union] = ACTIONS(1594), - [anon_sym_unsafe] = ACTIONS(1594), - [anon_sym_use] = ACTIONS(1594), - [anon_sym_while] = ACTIONS(1594), - [anon_sym_POUND] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1592), - [anon_sym_extern] = ACTIONS(1594), - [anon_sym_LT] = ACTIONS(1592), - [anon_sym_COLON_COLON] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_DOT_DOT] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(1592), - [anon_sym_yield] = ACTIONS(1594), - [anon_sym_move] = ACTIONS(1594), - [sym_integer_literal] = ACTIONS(1592), - [aux_sym_string_literal_token1] = ACTIONS(1592), - [sym_char_literal] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1594), - [anon_sym_false] = ACTIONS(1594), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1594), - [sym_super] = ACTIONS(1594), - [sym_crate] = ACTIONS(1594), - [sym_metavariable] = ACTIONS(1592), - [sym_raw_string_literal] = ACTIONS(1592), - [sym_float_literal] = ACTIONS(1592), - [sym_block_comment] = ACTIONS(3), - }, - [380] = { - [ts_builtin_sym_end] = ACTIONS(1596), - [sym_identifier] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_macro_rules_BANG] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1596), - [anon_sym_u8] = ACTIONS(1598), - [anon_sym_i8] = ACTIONS(1598), - [anon_sym_u16] = ACTIONS(1598), - [anon_sym_i16] = ACTIONS(1598), - [anon_sym_u32] = ACTIONS(1598), - [anon_sym_i32] = ACTIONS(1598), - [anon_sym_u64] = ACTIONS(1598), - [anon_sym_i64] = ACTIONS(1598), - [anon_sym_u128] = ACTIONS(1598), - [anon_sym_i128] = ACTIONS(1598), - [anon_sym_isize] = ACTIONS(1598), - [anon_sym_usize] = ACTIONS(1598), - [anon_sym_f32] = ACTIONS(1598), - [anon_sym_f64] = ACTIONS(1598), - [anon_sym_bool] = ACTIONS(1598), - [anon_sym_str] = ACTIONS(1598), - [anon_sym_char] = ACTIONS(1598), - [anon_sym_SQUOTE] = ACTIONS(1598), - [anon_sym_async] = ACTIONS(1598), - [anon_sym_break] = ACTIONS(1598), - [anon_sym_const] = ACTIONS(1598), - [anon_sym_continue] = ACTIONS(1598), - [anon_sym_default] = ACTIONS(1598), - [anon_sym_enum] = ACTIONS(1598), - [anon_sym_fn] = ACTIONS(1598), - [anon_sym_for] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_impl] = ACTIONS(1598), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_loop] = ACTIONS(1598), - [anon_sym_match] = ACTIONS(1598), - [anon_sym_mod] = ACTIONS(1598), - [anon_sym_pub] = ACTIONS(1598), - [anon_sym_return] = ACTIONS(1598), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_struct] = ACTIONS(1598), - [anon_sym_trait] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_union] = ACTIONS(1598), - [anon_sym_unsafe] = ACTIONS(1598), - [anon_sym_use] = ACTIONS(1598), - [anon_sym_while] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1598), - [anon_sym_LT] = ACTIONS(1596), - [anon_sym_COLON_COLON] = ACTIONS(1596), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_DOT_DOT] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_yield] = ACTIONS(1598), - [anon_sym_move] = ACTIONS(1598), - [sym_integer_literal] = ACTIONS(1596), - [aux_sym_string_literal_token1] = ACTIONS(1596), - [sym_char_literal] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1598), - [sym_super] = ACTIONS(1598), - [sym_crate] = ACTIONS(1598), - [sym_metavariable] = ACTIONS(1596), - [sym_raw_string_literal] = ACTIONS(1596), - [sym_float_literal] = ACTIONS(1596), - [sym_block_comment] = ACTIONS(3), - }, [381] = { - [sym_attribute_item] = STATE(554), + [sym_attribute_item] = STATE(558), [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2537), - [sym_scoped_identifier] = STATE(1584), - [sym_scoped_type_identifier] = STATE(1941), - [sym_match_arm] = STATE(504), - [sym_last_match_arm] = STATE(2528), - [sym_match_pattern] = STATE(2393), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1956), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_enum_variant_list_repeat1] = STATE(554), - [aux_sym_match_block_repeat1] = STATE(504), - [sym_identifier] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), + [sym_macro_invocation] = STATE(2581), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1919), + [sym_match_arm] = STATE(495), + [sym_last_match_arm] = STATE(2532), + [sym_match_pattern] = STATE(2569), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2123), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_match_block_repeat1] = STATE(495), + [sym_identifier] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1144), + [anon_sym_union] = ACTIONS(1144), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -52889,15 +53034,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [382] = { + [ts_builtin_sym_end] = ACTIONS(1582), + [sym_identifier] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_macro_rules_BANG] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_u8] = ACTIONS(1584), + [anon_sym_i8] = ACTIONS(1584), + [anon_sym_u16] = ACTIONS(1584), + [anon_sym_i16] = ACTIONS(1584), + [anon_sym_u32] = ACTIONS(1584), + [anon_sym_i32] = ACTIONS(1584), + [anon_sym_u64] = ACTIONS(1584), + [anon_sym_i64] = ACTIONS(1584), + [anon_sym_u128] = ACTIONS(1584), + [anon_sym_i128] = ACTIONS(1584), + [anon_sym_isize] = ACTIONS(1584), + [anon_sym_usize] = ACTIONS(1584), + [anon_sym_f32] = ACTIONS(1584), + [anon_sym_f64] = ACTIONS(1584), + [anon_sym_bool] = ACTIONS(1584), + [anon_sym_str] = ACTIONS(1584), + [anon_sym_char] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1584), + [anon_sym_async] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_const] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_default] = ACTIONS(1584), + [anon_sym_enum] = ACTIONS(1584), + [anon_sym_fn] = ACTIONS(1584), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_impl] = ACTIONS(1584), + [anon_sym_let] = ACTIONS(1584), + [anon_sym_loop] = ACTIONS(1584), + [anon_sym_match] = ACTIONS(1584), + [anon_sym_mod] = ACTIONS(1584), + [anon_sym_pub] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_static] = ACTIONS(1584), + [anon_sym_struct] = ACTIONS(1584), + [anon_sym_trait] = ACTIONS(1584), + [anon_sym_type] = ACTIONS(1584), + [anon_sym_union] = ACTIONS(1584), + [anon_sym_unsafe] = ACTIONS(1584), + [anon_sym_use] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_extern] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_COLON_COLON] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_yield] = ACTIONS(1584), + [anon_sym_move] = ACTIONS(1584), + [sym_integer_literal] = ACTIONS(1582), + [aux_sym_string_literal_token1] = ACTIONS(1582), + [sym_char_literal] = ACTIONS(1582), + [anon_sym_true] = ACTIONS(1584), + [anon_sym_false] = ACTIONS(1584), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1584), + [sym_super] = ACTIONS(1584), + [sym_crate] = ACTIONS(1584), + [sym_metavariable] = ACTIONS(1582), + [sym_raw_string_literal] = ACTIONS(1582), + [sym_float_literal] = ACTIONS(1582), + [sym_block_comment] = ACTIONS(3), + }, + [383] = { + [ts_builtin_sym_end] = ACTIONS(1586), + [sym_identifier] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_macro_rules_BANG] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(1586), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [anon_sym_async] = ACTIONS(1588), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_const] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1588), + [anon_sym_default] = ACTIONS(1588), + [anon_sym_enum] = ACTIONS(1588), + [anon_sym_fn] = ACTIONS(1588), + [anon_sym_for] = ACTIONS(1588), + [anon_sym_if] = ACTIONS(1588), + [anon_sym_impl] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1588), + [anon_sym_loop] = ACTIONS(1588), + [anon_sym_match] = ACTIONS(1588), + [anon_sym_mod] = ACTIONS(1588), + [anon_sym_pub] = ACTIONS(1588), + [anon_sym_return] = ACTIONS(1588), + [anon_sym_static] = ACTIONS(1588), + [anon_sym_struct] = ACTIONS(1588), + [anon_sym_trait] = ACTIONS(1588), + [anon_sym_type] = ACTIONS(1588), + [anon_sym_union] = ACTIONS(1588), + [anon_sym_unsafe] = ACTIONS(1588), + [anon_sym_use] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(1586), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_extern] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1586), + [anon_sym_COLON_COLON] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_yield] = ACTIONS(1588), + [anon_sym_move] = ACTIONS(1588), + [sym_integer_literal] = ACTIONS(1586), + [aux_sym_string_literal_token1] = ACTIONS(1586), + [sym_char_literal] = ACTIONS(1586), + [anon_sym_true] = ACTIONS(1588), + [anon_sym_false] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1588), + [sym_super] = ACTIONS(1588), + [sym_crate] = ACTIONS(1588), + [sym_metavariable] = ACTIONS(1586), + [sym_raw_string_literal] = ACTIONS(1586), + [sym_float_literal] = ACTIONS(1586), + [sym_block_comment] = ACTIONS(3), + }, + [384] = { + [ts_builtin_sym_end] = ACTIONS(1590), + [sym_identifier] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_macro_rules_BANG] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1590), + [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_SQUOTE] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_break] = ACTIONS(1592), + [anon_sym_const] = ACTIONS(1592), + [anon_sym_continue] = ACTIONS(1592), + [anon_sym_default] = ACTIONS(1592), + [anon_sym_enum] = ACTIONS(1592), + [anon_sym_fn] = ACTIONS(1592), + [anon_sym_for] = ACTIONS(1592), + [anon_sym_if] = ACTIONS(1592), + [anon_sym_impl] = ACTIONS(1592), + [anon_sym_let] = ACTIONS(1592), + [anon_sym_loop] = ACTIONS(1592), + [anon_sym_match] = ACTIONS(1592), + [anon_sym_mod] = ACTIONS(1592), + [anon_sym_pub] = ACTIONS(1592), + [anon_sym_return] = ACTIONS(1592), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_struct] = ACTIONS(1592), + [anon_sym_trait] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_union] = ACTIONS(1592), + [anon_sym_unsafe] = ACTIONS(1592), + [anon_sym_use] = ACTIONS(1592), + [anon_sym_while] = ACTIONS(1592), + [anon_sym_POUND] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_extern] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_COLON_COLON] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_DOT_DOT] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_move] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(1590), + [aux_sym_string_literal_token1] = ACTIONS(1590), + [sym_char_literal] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1592), + [anon_sym_false] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1592), + [sym_super] = ACTIONS(1592), + [sym_crate] = ACTIONS(1592), + [sym_metavariable] = ACTIONS(1590), + [sym_raw_string_literal] = ACTIONS(1590), + [sym_float_literal] = ACTIONS(1590), + [sym_block_comment] = ACTIONS(3), + }, + [385] = { + [ts_builtin_sym_end] = ACTIONS(1594), + [sym_identifier] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_macro_rules_BANG] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_STAR] = ACTIONS(1594), + [anon_sym_u8] = ACTIONS(1596), + [anon_sym_i8] = ACTIONS(1596), + [anon_sym_u16] = ACTIONS(1596), + [anon_sym_i16] = ACTIONS(1596), + [anon_sym_u32] = ACTIONS(1596), + [anon_sym_i32] = ACTIONS(1596), + [anon_sym_u64] = ACTIONS(1596), + [anon_sym_i64] = ACTIONS(1596), + [anon_sym_u128] = ACTIONS(1596), + [anon_sym_i128] = ACTIONS(1596), + [anon_sym_isize] = ACTIONS(1596), + [anon_sym_usize] = ACTIONS(1596), + [anon_sym_f32] = ACTIONS(1596), + [anon_sym_f64] = ACTIONS(1596), + [anon_sym_bool] = ACTIONS(1596), + [anon_sym_str] = ACTIONS(1596), + [anon_sym_char] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_const] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1596), + [anon_sym_default] = ACTIONS(1596), + [anon_sym_enum] = ACTIONS(1596), + [anon_sym_fn] = ACTIONS(1596), + [anon_sym_for] = ACTIONS(1596), + [anon_sym_if] = ACTIONS(1596), + [anon_sym_impl] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1596), + [anon_sym_loop] = ACTIONS(1596), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_mod] = ACTIONS(1596), + [anon_sym_pub] = ACTIONS(1596), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1596), + [anon_sym_struct] = ACTIONS(1596), + [anon_sym_trait] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1596), + [anon_sym_union] = ACTIONS(1596), + [anon_sym_unsafe] = ACTIONS(1596), + [anon_sym_use] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1594), + [anon_sym_extern] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1594), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1594), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_DASH] = ACTIONS(1594), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_yield] = ACTIONS(1596), + [anon_sym_move] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(1594), + [aux_sym_string_literal_token1] = ACTIONS(1594), + [sym_char_literal] = ACTIONS(1594), + [anon_sym_true] = ACTIONS(1596), + [anon_sym_false] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1596), + [sym_super] = ACTIONS(1596), + [sym_crate] = ACTIONS(1596), + [sym_metavariable] = ACTIONS(1594), + [sym_raw_string_literal] = ACTIONS(1594), + [sym_float_literal] = ACTIONS(1594), + [sym_block_comment] = ACTIONS(3), + }, + [386] = { + [ts_builtin_sym_end] = ACTIONS(1598), + [sym_identifier] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_macro_rules_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_STAR] = ACTIONS(1598), + [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_SQUOTE] = ACTIONS(1600), + [anon_sym_async] = 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_while] = ACTIONS(1600), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_extern] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_COLON_COLON] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_DOT_DOT] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_yield] = ACTIONS(1600), + [anon_sym_move] = ACTIONS(1600), + [sym_integer_literal] = ACTIONS(1598), + [aux_sym_string_literal_token1] = ACTIONS(1598), + [sym_char_literal] = ACTIONS(1598), + [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(1598), + [sym_raw_string_literal] = ACTIONS(1598), + [sym_float_literal] = ACTIONS(1598), + [sym_block_comment] = ACTIONS(3), + }, + [387] = { [ts_builtin_sym_end] = ACTIONS(1602), [sym_identifier] = ACTIONS(1604), [anon_sym_SEMI] = ACTIONS(1602), @@ -52974,7 +53504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1602), [sym_block_comment] = ACTIONS(3), }, - [383] = { + [388] = { [ts_builtin_sym_end] = ACTIONS(1606), [sym_identifier] = ACTIONS(1608), [anon_sym_SEMI] = ACTIONS(1606), @@ -53051,7 +53581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1606), [sym_block_comment] = ACTIONS(3), }, - [384] = { + [389] = { [ts_builtin_sym_end] = ACTIONS(1610), [sym_identifier] = ACTIONS(1612), [anon_sym_SEMI] = ACTIONS(1610), @@ -53128,7 +53658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1610), [sym_block_comment] = ACTIONS(3), }, - [385] = { + [390] = { [ts_builtin_sym_end] = ACTIONS(1614), [sym_identifier] = ACTIONS(1616), [anon_sym_SEMI] = ACTIONS(1614), @@ -53205,7 +53735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1614), [sym_block_comment] = ACTIONS(3), }, - [386] = { + [391] = { [ts_builtin_sym_end] = ACTIONS(1618), [sym_identifier] = ACTIONS(1620), [anon_sym_SEMI] = ACTIONS(1618), @@ -53282,7 +53812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1618), [sym_block_comment] = ACTIONS(3), }, - [387] = { + [392] = { [ts_builtin_sym_end] = ACTIONS(1622), [sym_identifier] = ACTIONS(1624), [anon_sym_SEMI] = ACTIONS(1622), @@ -53359,7 +53889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1622), [sym_block_comment] = ACTIONS(3), }, - [388] = { + [393] = { [ts_builtin_sym_end] = ACTIONS(1626), [sym_identifier] = ACTIONS(1628), [anon_sym_SEMI] = ACTIONS(1626), @@ -53436,7 +53966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1626), [sym_block_comment] = ACTIONS(3), }, - [389] = { + [394] = { [ts_builtin_sym_end] = ACTIONS(1630), [sym_identifier] = ACTIONS(1632), [anon_sym_SEMI] = ACTIONS(1630), @@ -53513,7 +54043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1630), [sym_block_comment] = ACTIONS(3), }, - [390] = { + [395] = { [ts_builtin_sym_end] = ACTIONS(1634), [sym_identifier] = ACTIONS(1636), [anon_sym_SEMI] = ACTIONS(1634), @@ -53590,7 +54120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1634), [sym_block_comment] = ACTIONS(3), }, - [391] = { + [396] = { [ts_builtin_sym_end] = ACTIONS(1638), [sym_identifier] = ACTIONS(1640), [anon_sym_SEMI] = ACTIONS(1638), @@ -53667,7 +54197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1638), [sym_block_comment] = ACTIONS(3), }, - [392] = { + [397] = { [ts_builtin_sym_end] = ACTIONS(1642), [sym_identifier] = ACTIONS(1644), [anon_sym_SEMI] = ACTIONS(1642), @@ -53744,7 +54274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1642), [sym_block_comment] = ACTIONS(3), }, - [393] = { + [398] = { [ts_builtin_sym_end] = ACTIONS(1646), [sym_identifier] = ACTIONS(1648), [anon_sym_SEMI] = ACTIONS(1646), @@ -53821,7 +54351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1646), [sym_block_comment] = ACTIONS(3), }, - [394] = { + [399] = { [ts_builtin_sym_end] = ACTIONS(1650), [sym_identifier] = ACTIONS(1652), [anon_sym_SEMI] = ACTIONS(1650), @@ -53898,7 +54428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1650), [sym_block_comment] = ACTIONS(3), }, - [395] = { + [400] = { [ts_builtin_sym_end] = ACTIONS(1654), [sym_identifier] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(1654), @@ -53975,7 +54505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1654), [sym_block_comment] = ACTIONS(3), }, - [396] = { + [401] = { [ts_builtin_sym_end] = ACTIONS(1658), [sym_identifier] = ACTIONS(1660), [anon_sym_SEMI] = ACTIONS(1658), @@ -54052,7 +54582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1658), [sym_block_comment] = ACTIONS(3), }, - [397] = { + [402] = { [ts_builtin_sym_end] = ACTIONS(1662), [sym_identifier] = ACTIONS(1664), [anon_sym_SEMI] = ACTIONS(1662), @@ -54129,7 +54659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1662), [sym_block_comment] = ACTIONS(3), }, - [398] = { + [403] = { [ts_builtin_sym_end] = ACTIONS(1666), [sym_identifier] = ACTIONS(1668), [anon_sym_SEMI] = ACTIONS(1666), @@ -54206,7 +54736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1666), [sym_block_comment] = ACTIONS(3), }, - [399] = { + [404] = { [ts_builtin_sym_end] = ACTIONS(1670), [sym_identifier] = ACTIONS(1672), [anon_sym_SEMI] = ACTIONS(1670), @@ -54283,7 +54813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1670), [sym_block_comment] = ACTIONS(3), }, - [400] = { + [405] = { [ts_builtin_sym_end] = ACTIONS(1674), [sym_identifier] = ACTIONS(1676), [anon_sym_SEMI] = ACTIONS(1674), @@ -54360,7 +54890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1674), [sym_block_comment] = ACTIONS(3), }, - [401] = { + [406] = { [ts_builtin_sym_end] = ACTIONS(1678), [sym_identifier] = ACTIONS(1680), [anon_sym_SEMI] = ACTIONS(1678), @@ -54437,7 +54967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1678), [sym_block_comment] = ACTIONS(3), }, - [402] = { + [407] = { [ts_builtin_sym_end] = ACTIONS(1682), [sym_identifier] = ACTIONS(1684), [anon_sym_SEMI] = ACTIONS(1682), @@ -54514,7 +55044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1682), [sym_block_comment] = ACTIONS(3), }, - [403] = { + [408] = { [ts_builtin_sym_end] = ACTIONS(1686), [sym_identifier] = ACTIONS(1688), [anon_sym_SEMI] = ACTIONS(1686), @@ -54591,7 +55121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1686), [sym_block_comment] = ACTIONS(3), }, - [404] = { + [409] = { [ts_builtin_sym_end] = ACTIONS(1690), [sym_identifier] = ACTIONS(1692), [anon_sym_SEMI] = ACTIONS(1690), @@ -54668,7 +55198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1690), [sym_block_comment] = ACTIONS(3), }, - [405] = { + [410] = { [ts_builtin_sym_end] = ACTIONS(1694), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1694), @@ -54745,7 +55275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1694), [sym_block_comment] = ACTIONS(3), }, - [406] = { + [411] = { [ts_builtin_sym_end] = ACTIONS(1698), [sym_identifier] = ACTIONS(1700), [anon_sym_SEMI] = ACTIONS(1698), @@ -54822,7 +55352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1698), [sym_block_comment] = ACTIONS(3), }, - [407] = { + [412] = { [ts_builtin_sym_end] = ACTIONS(1702), [sym_identifier] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1702), @@ -54899,7 +55429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1702), [sym_block_comment] = ACTIONS(3), }, - [408] = { + [413] = { [ts_builtin_sym_end] = ACTIONS(1706), [sym_identifier] = ACTIONS(1708), [anon_sym_SEMI] = ACTIONS(1706), @@ -54976,7 +55506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1706), [sym_block_comment] = ACTIONS(3), }, - [409] = { + [414] = { [ts_builtin_sym_end] = ACTIONS(1710), [sym_identifier] = ACTIONS(1712), [anon_sym_SEMI] = ACTIONS(1710), @@ -55053,7 +55583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1710), [sym_block_comment] = ACTIONS(3), }, - [410] = { + [415] = { [ts_builtin_sym_end] = ACTIONS(1714), [sym_identifier] = ACTIONS(1716), [anon_sym_SEMI] = ACTIONS(1714), @@ -55130,7 +55660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1714), [sym_block_comment] = ACTIONS(3), }, - [411] = { + [416] = { [ts_builtin_sym_end] = ACTIONS(1718), [sym_identifier] = ACTIONS(1720), [anon_sym_SEMI] = ACTIONS(1718), @@ -55207,7 +55737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1718), [sym_block_comment] = ACTIONS(3), }, - [412] = { + [417] = { [ts_builtin_sym_end] = ACTIONS(1722), [sym_identifier] = ACTIONS(1724), [anon_sym_SEMI] = ACTIONS(1722), @@ -55284,7 +55814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1722), [sym_block_comment] = ACTIONS(3), }, - [413] = { + [418] = { [ts_builtin_sym_end] = ACTIONS(1726), [sym_identifier] = ACTIONS(1728), [anon_sym_SEMI] = ACTIONS(1726), @@ -55361,7 +55891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1726), [sym_block_comment] = ACTIONS(3), }, - [414] = { + [419] = { [ts_builtin_sym_end] = ACTIONS(1730), [sym_identifier] = ACTIONS(1732), [anon_sym_SEMI] = ACTIONS(1730), @@ -55438,7 +55968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1730), [sym_block_comment] = ACTIONS(3), }, - [415] = { + [420] = { [ts_builtin_sym_end] = ACTIONS(1734), [sym_identifier] = ACTIONS(1736), [anon_sym_SEMI] = ACTIONS(1734), @@ -55515,7 +56045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1734), [sym_block_comment] = ACTIONS(3), }, - [416] = { + [421] = { [ts_builtin_sym_end] = ACTIONS(1738), [sym_identifier] = ACTIONS(1740), [anon_sym_SEMI] = ACTIONS(1738), @@ -55592,7 +56122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1738), [sym_block_comment] = ACTIONS(3), }, - [417] = { + [422] = { [ts_builtin_sym_end] = ACTIONS(1742), [sym_identifier] = ACTIONS(1744), [anon_sym_SEMI] = ACTIONS(1742), @@ -55669,7 +56199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1742), [sym_block_comment] = ACTIONS(3), }, - [418] = { + [423] = { [ts_builtin_sym_end] = ACTIONS(1746), [sym_identifier] = ACTIONS(1748), [anon_sym_SEMI] = ACTIONS(1746), @@ -55746,7 +56276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1746), [sym_block_comment] = ACTIONS(3), }, - [419] = { + [424] = { [ts_builtin_sym_end] = ACTIONS(1750), [sym_identifier] = ACTIONS(1752), [anon_sym_SEMI] = ACTIONS(1750), @@ -55823,7 +56353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1750), [sym_block_comment] = ACTIONS(3), }, - [420] = { + [425] = { [ts_builtin_sym_end] = ACTIONS(1754), [sym_identifier] = ACTIONS(1756), [anon_sym_SEMI] = ACTIONS(1754), @@ -55900,7 +56430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1754), [sym_block_comment] = ACTIONS(3), }, - [421] = { + [426] = { [ts_builtin_sym_end] = ACTIONS(1758), [sym_identifier] = ACTIONS(1760), [anon_sym_SEMI] = ACTIONS(1758), @@ -55977,7 +56507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1758), [sym_block_comment] = ACTIONS(3), }, - [422] = { + [427] = { [ts_builtin_sym_end] = ACTIONS(1762), [sym_identifier] = ACTIONS(1764), [anon_sym_SEMI] = ACTIONS(1762), @@ -56054,7 +56584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1762), [sym_block_comment] = ACTIONS(3), }, - [423] = { + [428] = { [ts_builtin_sym_end] = ACTIONS(1766), [sym_identifier] = ACTIONS(1768), [anon_sym_SEMI] = ACTIONS(1766), @@ -56131,7 +56661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1766), [sym_block_comment] = ACTIONS(3), }, - [424] = { + [429] = { [ts_builtin_sym_end] = ACTIONS(1770), [sym_identifier] = ACTIONS(1772), [anon_sym_SEMI] = ACTIONS(1770), @@ -56208,7 +56738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1770), [sym_block_comment] = ACTIONS(3), }, - [425] = { + [430] = { [ts_builtin_sym_end] = ACTIONS(1774), [sym_identifier] = ACTIONS(1776), [anon_sym_SEMI] = ACTIONS(1774), @@ -56285,7 +56815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1774), [sym_block_comment] = ACTIONS(3), }, - [426] = { + [431] = { [ts_builtin_sym_end] = ACTIONS(1778), [sym_identifier] = ACTIONS(1780), [anon_sym_SEMI] = ACTIONS(1778), @@ -56362,7 +56892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1778), [sym_block_comment] = ACTIONS(3), }, - [427] = { + [432] = { [ts_builtin_sym_end] = ACTIONS(1782), [sym_identifier] = ACTIONS(1784), [anon_sym_SEMI] = ACTIONS(1782), @@ -56439,7 +56969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1782), [sym_block_comment] = ACTIONS(3), }, - [428] = { + [433] = { [ts_builtin_sym_end] = ACTIONS(1786), [sym_identifier] = ACTIONS(1788), [anon_sym_SEMI] = ACTIONS(1786), @@ -56516,7 +57046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1786), [sym_block_comment] = ACTIONS(3), }, - [429] = { + [434] = { [ts_builtin_sym_end] = ACTIONS(1790), [sym_identifier] = ACTIONS(1792), [anon_sym_SEMI] = ACTIONS(1790), @@ -56593,7 +57123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1790), [sym_block_comment] = ACTIONS(3), }, - [430] = { + [435] = { [ts_builtin_sym_end] = ACTIONS(1794), [sym_identifier] = ACTIONS(1796), [anon_sym_SEMI] = ACTIONS(1794), @@ -56670,7 +57200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1794), [sym_block_comment] = ACTIONS(3), }, - [431] = { + [436] = { [ts_builtin_sym_end] = ACTIONS(1798), [sym_identifier] = ACTIONS(1800), [anon_sym_SEMI] = ACTIONS(1798), @@ -56747,7 +57277,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1798), [sym_block_comment] = ACTIONS(3), }, - [432] = { + [437] = { + [ts_builtin_sym_end] = ACTIONS(526), + [sym_identifier] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_macro_rules_BANG] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(526), + [anon_sym_LBRACE] = ACTIONS(526), + [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_u8] = ACTIONS(528), + [anon_sym_i8] = ACTIONS(528), + [anon_sym_u16] = ACTIONS(528), + [anon_sym_i16] = ACTIONS(528), + [anon_sym_u32] = ACTIONS(528), + [anon_sym_i32] = ACTIONS(528), + [anon_sym_u64] = ACTIONS(528), + [anon_sym_i64] = ACTIONS(528), + [anon_sym_u128] = ACTIONS(528), + [anon_sym_i128] = ACTIONS(528), + [anon_sym_isize] = ACTIONS(528), + [anon_sym_usize] = ACTIONS(528), + [anon_sym_f32] = ACTIONS(528), + [anon_sym_f64] = ACTIONS(528), + [anon_sym_bool] = ACTIONS(528), + [anon_sym_str] = ACTIONS(528), + [anon_sym_char] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(528), + [anon_sym_async] = ACTIONS(528), + [anon_sym_break] = ACTIONS(528), + [anon_sym_const] = ACTIONS(528), + [anon_sym_continue] = ACTIONS(528), + [anon_sym_default] = ACTIONS(528), + [anon_sym_enum] = ACTIONS(528), + [anon_sym_fn] = ACTIONS(528), + [anon_sym_for] = ACTIONS(528), + [anon_sym_if] = ACTIONS(528), + [anon_sym_impl] = ACTIONS(528), + [anon_sym_let] = ACTIONS(528), + [anon_sym_loop] = ACTIONS(528), + [anon_sym_match] = ACTIONS(528), + [anon_sym_mod] = ACTIONS(528), + [anon_sym_pub] = ACTIONS(528), + [anon_sym_return] = ACTIONS(528), + [anon_sym_static] = ACTIONS(528), + [anon_sym_struct] = ACTIONS(528), + [anon_sym_trait] = ACTIONS(528), + [anon_sym_type] = ACTIONS(528), + [anon_sym_union] = ACTIONS(528), + [anon_sym_unsafe] = ACTIONS(528), + [anon_sym_use] = ACTIONS(528), + [anon_sym_while] = ACTIONS(528), + [anon_sym_POUND] = ACTIONS(526), + [anon_sym_BANG] = ACTIONS(526), + [anon_sym_extern] = ACTIONS(528), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_AMP] = ACTIONS(526), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(526), + [anon_sym_yield] = ACTIONS(528), + [anon_sym_move] = ACTIONS(528), + [sym_integer_literal] = ACTIONS(526), + [aux_sym_string_literal_token1] = ACTIONS(526), + [sym_char_literal] = ACTIONS(526), + [anon_sym_true] = ACTIONS(528), + [anon_sym_false] = ACTIONS(528), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(528), + [sym_super] = ACTIONS(528), + [sym_crate] = ACTIONS(528), + [sym_metavariable] = ACTIONS(526), + [sym_raw_string_literal] = ACTIONS(526), + [sym_float_literal] = ACTIONS(526), + [sym_block_comment] = ACTIONS(3), + }, + [438] = { [ts_builtin_sym_end] = ACTIONS(1802), [sym_identifier] = ACTIONS(1804), [anon_sym_SEMI] = ACTIONS(1802), @@ -56824,7 +57431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1802), [sym_block_comment] = ACTIONS(3), }, - [433] = { + [439] = { [ts_builtin_sym_end] = ACTIONS(1806), [sym_identifier] = ACTIONS(1808), [anon_sym_SEMI] = ACTIONS(1806), @@ -56901,7 +57508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1806), [sym_block_comment] = ACTIONS(3), }, - [434] = { + [440] = { [ts_builtin_sym_end] = ACTIONS(1810), [sym_identifier] = ACTIONS(1812), [anon_sym_SEMI] = ACTIONS(1810), @@ -56978,7 +57585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1810), [sym_block_comment] = ACTIONS(3), }, - [435] = { + [441] = { [ts_builtin_sym_end] = ACTIONS(1814), [sym_identifier] = ACTIONS(1816), [anon_sym_SEMI] = ACTIONS(1814), @@ -57055,7 +57662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1814), [sym_block_comment] = ACTIONS(3), }, - [436] = { + [442] = { [ts_builtin_sym_end] = ACTIONS(1818), [sym_identifier] = ACTIONS(1820), [anon_sym_SEMI] = ACTIONS(1818), @@ -57132,84 +57739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1818), [sym_block_comment] = ACTIONS(3), }, - [437] = { - [ts_builtin_sym_end] = ACTIONS(536), - [sym_identifier] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_macro_rules_BANG] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_STAR] = ACTIONS(536), - [anon_sym_u8] = ACTIONS(538), - [anon_sym_i8] = ACTIONS(538), - [anon_sym_u16] = ACTIONS(538), - [anon_sym_i16] = ACTIONS(538), - [anon_sym_u32] = ACTIONS(538), - [anon_sym_i32] = ACTIONS(538), - [anon_sym_u64] = ACTIONS(538), - [anon_sym_i64] = ACTIONS(538), - [anon_sym_u128] = ACTIONS(538), - [anon_sym_i128] = ACTIONS(538), - [anon_sym_isize] = ACTIONS(538), - [anon_sym_usize] = ACTIONS(538), - [anon_sym_f32] = ACTIONS(538), - [anon_sym_f64] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(538), - [anon_sym_str] = ACTIONS(538), - [anon_sym_char] = ACTIONS(538), - [anon_sym_SQUOTE] = ACTIONS(538), - [anon_sym_async] = ACTIONS(538), - [anon_sym_break] = ACTIONS(538), - [anon_sym_const] = ACTIONS(538), - [anon_sym_continue] = ACTIONS(538), - [anon_sym_default] = ACTIONS(538), - [anon_sym_enum] = ACTIONS(538), - [anon_sym_fn] = ACTIONS(538), - [anon_sym_for] = ACTIONS(538), - [anon_sym_if] = ACTIONS(538), - [anon_sym_impl] = ACTIONS(538), - [anon_sym_let] = ACTIONS(538), - [anon_sym_loop] = ACTIONS(538), - [anon_sym_match] = ACTIONS(538), - [anon_sym_mod] = ACTIONS(538), - [anon_sym_pub] = ACTIONS(538), - [anon_sym_return] = ACTIONS(538), - [anon_sym_static] = ACTIONS(538), - [anon_sym_struct] = ACTIONS(538), - [anon_sym_trait] = ACTIONS(538), - [anon_sym_type] = ACTIONS(538), - [anon_sym_union] = ACTIONS(538), - [anon_sym_unsafe] = ACTIONS(538), - [anon_sym_use] = ACTIONS(538), - [anon_sym_while] = ACTIONS(538), - [anon_sym_POUND] = ACTIONS(536), - [anon_sym_BANG] = ACTIONS(536), - [anon_sym_extern] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(536), - [anon_sym_COLON_COLON] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(536), - [anon_sym_DASH] = ACTIONS(536), - [anon_sym_PIPE] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(538), - [anon_sym_move] = ACTIONS(538), - [sym_integer_literal] = ACTIONS(536), - [aux_sym_string_literal_token1] = ACTIONS(536), - [sym_char_literal] = ACTIONS(536), - [anon_sym_true] = ACTIONS(538), - [anon_sym_false] = ACTIONS(538), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(538), - [sym_super] = ACTIONS(538), - [sym_crate] = ACTIONS(538), - [sym_metavariable] = ACTIONS(536), - [sym_raw_string_literal] = ACTIONS(536), - [sym_float_literal] = ACTIONS(536), - [sym_block_comment] = ACTIONS(3), - }, - [438] = { + [443] = { [ts_builtin_sym_end] = ACTIONS(1822), [sym_identifier] = ACTIONS(1824), [anon_sym_SEMI] = ACTIONS(1822), @@ -57286,7 +57816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1822), [sym_block_comment] = ACTIONS(3), }, - [439] = { + [444] = { [ts_builtin_sym_end] = ACTIONS(1826), [sym_identifier] = ACTIONS(1828), [anon_sym_SEMI] = ACTIONS(1826), @@ -57363,7 +57893,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1826), [sym_block_comment] = ACTIONS(3), }, - [440] = { + [445] = { + [ts_builtin_sym_end] = ACTIONS(550), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_macro_rules_BANG] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [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_SQUOTE] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [anon_sym_POUND] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_extern] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_COLON_COLON] = ACTIONS(550), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_DOT_DOT] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_yield] = ACTIONS(552), + [anon_sym_move] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(550), + [aux_sym_string_literal_token1] = ACTIONS(550), + [sym_char_literal] = ACTIONS(550), + [anon_sym_true] = ACTIONS(552), + [anon_sym_false] = ACTIONS(552), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(550), + [sym_raw_string_literal] = ACTIONS(550), + [sym_float_literal] = ACTIONS(550), + [sym_block_comment] = ACTIONS(3), + }, + [446] = { [ts_builtin_sym_end] = ACTIONS(1830), [sym_identifier] = ACTIONS(1832), [anon_sym_SEMI] = ACTIONS(1830), @@ -57440,7 +58047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1830), [sym_block_comment] = ACTIONS(3), }, - [441] = { + [447] = { [ts_builtin_sym_end] = ACTIONS(1834), [sym_identifier] = ACTIONS(1836), [anon_sym_SEMI] = ACTIONS(1834), @@ -57517,7 +58124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1834), [sym_block_comment] = ACTIONS(3), }, - [442] = { + [448] = { [ts_builtin_sym_end] = ACTIONS(1838), [sym_identifier] = ACTIONS(1840), [anon_sym_SEMI] = ACTIONS(1838), @@ -57594,7 +58201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1838), [sym_block_comment] = ACTIONS(3), }, - [443] = { + [449] = { [ts_builtin_sym_end] = ACTIONS(1842), [sym_identifier] = ACTIONS(1844), [anon_sym_SEMI] = ACTIONS(1842), @@ -57671,7 +58278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1842), [sym_block_comment] = ACTIONS(3), }, - [444] = { + [450] = { [ts_builtin_sym_end] = ACTIONS(1846), [sym_identifier] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(1846), @@ -57748,84 +58355,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1846), [sym_block_comment] = ACTIONS(3), }, - [445] = { - [ts_builtin_sym_end] = ACTIONS(554), - [sym_identifier] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_macro_rules_BANG] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_SQUOTE] = ACTIONS(556), - [anon_sym_async] = ACTIONS(556), - [anon_sym_break] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_continue] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_enum] = ACTIONS(556), - [anon_sym_fn] = ACTIONS(556), - [anon_sym_for] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_impl] = ACTIONS(556), - [anon_sym_let] = ACTIONS(556), - [anon_sym_loop] = ACTIONS(556), - [anon_sym_match] = ACTIONS(556), - [anon_sym_mod] = ACTIONS(556), - [anon_sym_pub] = ACTIONS(556), - [anon_sym_return] = ACTIONS(556), - [anon_sym_static] = ACTIONS(556), - [anon_sym_struct] = ACTIONS(556), - [anon_sym_trait] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_unsafe] = ACTIONS(556), - [anon_sym_use] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_BANG] = ACTIONS(554), - [anon_sym_extern] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(554), - [anon_sym_DOT_DOT] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(554), - [anon_sym_yield] = ACTIONS(556), - [anon_sym_move] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), + [451] = { + [ts_builtin_sym_end] = ACTIONS(536), + [sym_identifier] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_macro_rules_BANG] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_STAR] = ACTIONS(536), + [anon_sym_u8] = ACTIONS(538), + [anon_sym_i8] = ACTIONS(538), + [anon_sym_u16] = ACTIONS(538), + [anon_sym_i16] = ACTIONS(538), + [anon_sym_u32] = ACTIONS(538), + [anon_sym_i32] = ACTIONS(538), + [anon_sym_u64] = ACTIONS(538), + [anon_sym_i64] = ACTIONS(538), + [anon_sym_u128] = ACTIONS(538), + [anon_sym_i128] = ACTIONS(538), + [anon_sym_isize] = ACTIONS(538), + [anon_sym_usize] = ACTIONS(538), + [anon_sym_f32] = ACTIONS(538), + [anon_sym_f64] = ACTIONS(538), + [anon_sym_bool] = ACTIONS(538), + [anon_sym_str] = ACTIONS(538), + [anon_sym_char] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(538), + [anon_sym_async] = ACTIONS(538), + [anon_sym_break] = ACTIONS(538), + [anon_sym_const] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(538), + [anon_sym_default] = ACTIONS(538), + [anon_sym_enum] = ACTIONS(538), + [anon_sym_fn] = ACTIONS(538), + [anon_sym_for] = ACTIONS(538), + [anon_sym_if] = ACTIONS(538), + [anon_sym_impl] = ACTIONS(538), + [anon_sym_let] = ACTIONS(538), + [anon_sym_loop] = ACTIONS(538), + [anon_sym_match] = ACTIONS(538), + [anon_sym_mod] = ACTIONS(538), + [anon_sym_pub] = ACTIONS(538), + [anon_sym_return] = ACTIONS(538), + [anon_sym_static] = ACTIONS(538), + [anon_sym_struct] = ACTIONS(538), + [anon_sym_trait] = ACTIONS(538), + [anon_sym_type] = ACTIONS(538), + [anon_sym_union] = ACTIONS(538), + [anon_sym_unsafe] = ACTIONS(538), + [anon_sym_use] = ACTIONS(538), + [anon_sym_while] = ACTIONS(538), + [anon_sym_POUND] = ACTIONS(536), + [anon_sym_BANG] = ACTIONS(536), + [anon_sym_extern] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_COLON_COLON] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(536), + [anon_sym_DOT_DOT] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(536), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_yield] = ACTIONS(538), + [anon_sym_move] = ACTIONS(538), + [sym_integer_literal] = ACTIONS(536), + [aux_sym_string_literal_token1] = ACTIONS(536), + [sym_char_literal] = ACTIONS(536), + [anon_sym_true] = ACTIONS(538), + [anon_sym_false] = ACTIONS(538), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(538), + [sym_super] = ACTIONS(538), + [sym_crate] = ACTIONS(538), + [sym_metavariable] = ACTIONS(536), + [sym_raw_string_literal] = ACTIONS(536), + [sym_float_literal] = ACTIONS(536), [sym_block_comment] = ACTIONS(3), }, - [446] = { + [452] = { [ts_builtin_sym_end] = ACTIONS(1850), [sym_identifier] = ACTIONS(1852), [anon_sym_SEMI] = ACTIONS(1850), @@ -57902,7 +58509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1850), [sym_block_comment] = ACTIONS(3), }, - [447] = { + [453] = { [ts_builtin_sym_end] = ACTIONS(1854), [sym_identifier] = ACTIONS(1856), [anon_sym_SEMI] = ACTIONS(1854), @@ -57979,7 +58586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1854), [sym_block_comment] = ACTIONS(3), }, - [448] = { + [454] = { [ts_builtin_sym_end] = ACTIONS(1858), [sym_identifier] = ACTIONS(1860), [anon_sym_SEMI] = ACTIONS(1858), @@ -58056,7 +58663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1858), [sym_block_comment] = ACTIONS(3), }, - [449] = { + [455] = { [ts_builtin_sym_end] = ACTIONS(1862), [sym_identifier] = ACTIONS(1864), [anon_sym_SEMI] = ACTIONS(1862), @@ -58133,7 +58740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1862), [sym_block_comment] = ACTIONS(3), }, - [450] = { + [456] = { [ts_builtin_sym_end] = ACTIONS(1866), [sym_identifier] = ACTIONS(1868), [anon_sym_SEMI] = ACTIONS(1866), @@ -58210,84 +58817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1866), [sym_block_comment] = ACTIONS(3), }, - [451] = { - [ts_builtin_sym_end] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_macro_rules_BANG] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(550), - [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_SQUOTE] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_POUND] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(550), - [anon_sym_extern] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_COLON_COLON] = ACTIONS(550), - [anon_sym_AMP] = ACTIONS(550), - [anon_sym_DOT_DOT] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_move] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(550), - [aux_sym_string_literal_token1] = ACTIONS(550), - [sym_char_literal] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(550), - [sym_raw_string_literal] = ACTIONS(550), - [sym_float_literal] = ACTIONS(550), - [sym_block_comment] = ACTIONS(3), - }, - [452] = { + [457] = { [ts_builtin_sym_end] = ACTIONS(1870), [sym_identifier] = ACTIONS(1872), [anon_sym_SEMI] = ACTIONS(1870), @@ -58364,7 +58894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1870), [sym_block_comment] = ACTIONS(3), }, - [453] = { + [458] = { [ts_builtin_sym_end] = ACTIONS(1874), [sym_identifier] = ACTIONS(1876), [anon_sym_SEMI] = ACTIONS(1874), @@ -58441,7 +58971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1874), [sym_block_comment] = ACTIONS(3), }, - [454] = { + [459] = { [ts_builtin_sym_end] = ACTIONS(1878), [sym_identifier] = ACTIONS(1880), [anon_sym_SEMI] = ACTIONS(1878), @@ -58518,7 +59048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1878), [sym_block_comment] = ACTIONS(3), }, - [455] = { + [460] = { [ts_builtin_sym_end] = ACTIONS(1882), [sym_identifier] = ACTIONS(1884), [anon_sym_SEMI] = ACTIONS(1882), @@ -58595,7 +59125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1882), [sym_block_comment] = ACTIONS(3), }, - [456] = { + [461] = { [ts_builtin_sym_end] = ACTIONS(1886), [sym_identifier] = ACTIONS(1888), [anon_sym_SEMI] = ACTIONS(1886), @@ -58672,7 +59202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1886), [sym_block_comment] = ACTIONS(3), }, - [457] = { + [462] = { [ts_builtin_sym_end] = ACTIONS(1890), [sym_identifier] = ACTIONS(1892), [anon_sym_SEMI] = ACTIONS(1890), @@ -58749,7 +59279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1890), [sym_block_comment] = ACTIONS(3), }, - [458] = { + [463] = { [ts_builtin_sym_end] = ACTIONS(1894), [sym_identifier] = ACTIONS(1896), [anon_sym_SEMI] = ACTIONS(1894), @@ -58826,7 +59356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1894), [sym_block_comment] = ACTIONS(3), }, - [459] = { + [464] = { [ts_builtin_sym_end] = ACTIONS(1898), [sym_identifier] = ACTIONS(1900), [anon_sym_SEMI] = ACTIONS(1898), @@ -58903,7 +59433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1898), [sym_block_comment] = ACTIONS(3), }, - [460] = { + [465] = { [ts_builtin_sym_end] = ACTIONS(1902), [sym_identifier] = ACTIONS(1904), [anon_sym_SEMI] = ACTIONS(1902), @@ -58980,7 +59510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1902), [sym_block_comment] = ACTIONS(3), }, - [461] = { + [466] = { [ts_builtin_sym_end] = ACTIONS(1906), [sym_identifier] = ACTIONS(1908), [anon_sym_SEMI] = ACTIONS(1906), @@ -59057,7 +59587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1906), [sym_block_comment] = ACTIONS(3), }, - [462] = { + [467] = { [ts_builtin_sym_end] = ACTIONS(1910), [sym_identifier] = ACTIONS(1912), [anon_sym_SEMI] = ACTIONS(1910), @@ -59134,7 +59664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1910), [sym_block_comment] = ACTIONS(3), }, - [463] = { + [468] = { [ts_builtin_sym_end] = ACTIONS(1914), [sym_identifier] = ACTIONS(1916), [anon_sym_SEMI] = ACTIONS(1914), @@ -59211,7 +59741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1914), [sym_block_comment] = ACTIONS(3), }, - [464] = { + [469] = { [ts_builtin_sym_end] = ACTIONS(1918), [sym_identifier] = ACTIONS(1920), [anon_sym_SEMI] = ACTIONS(1918), @@ -59288,7 +59818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1918), [sym_block_comment] = ACTIONS(3), }, - [465] = { + [470] = { [ts_builtin_sym_end] = ACTIONS(1922), [sym_identifier] = ACTIONS(1924), [anon_sym_SEMI] = ACTIONS(1922), @@ -59365,7 +59895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1922), [sym_block_comment] = ACTIONS(3), }, - [466] = { + [471] = { [ts_builtin_sym_end] = ACTIONS(1926), [sym_identifier] = ACTIONS(1928), [anon_sym_SEMI] = ACTIONS(1926), @@ -59442,7 +59972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1926), [sym_block_comment] = ACTIONS(3), }, - [467] = { + [472] = { [ts_builtin_sym_end] = ACTIONS(1930), [sym_identifier] = ACTIONS(1932), [anon_sym_SEMI] = ACTIONS(1930), @@ -59519,7 +60049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1930), [sym_block_comment] = ACTIONS(3), }, - [468] = { + [473] = { [ts_builtin_sym_end] = ACTIONS(1934), [sym_identifier] = ACTIONS(1936), [anon_sym_SEMI] = ACTIONS(1934), @@ -59596,7 +60126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1934), [sym_block_comment] = ACTIONS(3), }, - [469] = { + [474] = { [ts_builtin_sym_end] = ACTIONS(1938), [sym_identifier] = ACTIONS(1940), [anon_sym_SEMI] = ACTIONS(1938), @@ -59673,7 +60203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1938), [sym_block_comment] = ACTIONS(3), }, - [470] = { + [475] = { [ts_builtin_sym_end] = ACTIONS(1942), [sym_identifier] = ACTIONS(1944), [anon_sym_SEMI] = ACTIONS(1942), @@ -59750,7 +60280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1942), [sym_block_comment] = ACTIONS(3), }, - [471] = { + [476] = { [ts_builtin_sym_end] = ACTIONS(1946), [sym_identifier] = ACTIONS(1948), [anon_sym_SEMI] = ACTIONS(1946), @@ -59827,7 +60357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1946), [sym_block_comment] = ACTIONS(3), }, - [472] = { + [477] = { [ts_builtin_sym_end] = ACTIONS(1950), [sym_identifier] = ACTIONS(1952), [anon_sym_SEMI] = ACTIONS(1950), @@ -59904,7 +60434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1950), [sym_block_comment] = ACTIONS(3), }, - [473] = { + [478] = { [ts_builtin_sym_end] = ACTIONS(1954), [sym_identifier] = ACTIONS(1956), [anon_sym_SEMI] = ACTIONS(1954), @@ -59981,7 +60511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1954), [sym_block_comment] = ACTIONS(3), }, - [474] = { + [479] = { [ts_builtin_sym_end] = ACTIONS(1958), [sym_identifier] = ACTIONS(1960), [anon_sym_SEMI] = ACTIONS(1958), @@ -60058,7 +60588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1958), [sym_block_comment] = ACTIONS(3), }, - [475] = { + [480] = { [ts_builtin_sym_end] = ACTIONS(1962), [sym_identifier] = ACTIONS(1964), [anon_sym_SEMI] = ACTIONS(1962), @@ -60135,7 +60665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1962), [sym_block_comment] = ACTIONS(3), }, - [476] = { + [481] = { [ts_builtin_sym_end] = ACTIONS(1966), [sym_identifier] = ACTIONS(1968), [anon_sym_SEMI] = ACTIONS(1966), @@ -60212,7 +60742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1966), [sym_block_comment] = ACTIONS(3), }, - [477] = { + [482] = { [ts_builtin_sym_end] = ACTIONS(1970), [sym_identifier] = ACTIONS(1972), [anon_sym_SEMI] = ACTIONS(1970), @@ -60289,7 +60819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1970), [sym_block_comment] = ACTIONS(3), }, - [478] = { + [483] = { [ts_builtin_sym_end] = ACTIONS(1974), [sym_identifier] = ACTIONS(1976), [anon_sym_SEMI] = ACTIONS(1974), @@ -60366,7 +60896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1974), [sym_block_comment] = ACTIONS(3), }, - [479] = { + [484] = { [ts_builtin_sym_end] = ACTIONS(1978), [sym_identifier] = ACTIONS(1980), [anon_sym_SEMI] = ACTIONS(1978), @@ -60443,7 +60973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1978), [sym_block_comment] = ACTIONS(3), }, - [480] = { + [485] = { [ts_builtin_sym_end] = ACTIONS(1982), [sym_identifier] = ACTIONS(1984), [anon_sym_SEMI] = ACTIONS(1982), @@ -60520,7 +61050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1982), [sym_block_comment] = ACTIONS(3), }, - [481] = { + [486] = { [ts_builtin_sym_end] = ACTIONS(1986), [sym_identifier] = ACTIONS(1988), [anon_sym_SEMI] = ACTIONS(1986), @@ -60597,7 +61127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1986), [sym_block_comment] = ACTIONS(3), }, - [482] = { + [487] = { [ts_builtin_sym_end] = ACTIONS(1990), [sym_identifier] = ACTIONS(1992), [anon_sym_SEMI] = ACTIONS(1990), @@ -60674,7 +61204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1990), [sym_block_comment] = ACTIONS(3), }, - [483] = { + [488] = { [ts_builtin_sym_end] = ACTIONS(1994), [sym_identifier] = ACTIONS(1996), [anon_sym_SEMI] = ACTIONS(1994), @@ -60751,7 +61281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1994), [sym_block_comment] = ACTIONS(3), }, - [484] = { + [489] = { [ts_builtin_sym_end] = ACTIONS(1998), [sym_identifier] = ACTIONS(2000), [anon_sym_SEMI] = ACTIONS(1998), @@ -60828,7 +61358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1998), [sym_block_comment] = ACTIONS(3), }, - [485] = { + [490] = { [ts_builtin_sym_end] = ACTIONS(2002), [sym_identifier] = ACTIONS(2004), [anon_sym_SEMI] = ACTIONS(2002), @@ -60905,7 +61435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2002), [sym_block_comment] = ACTIONS(3), }, - [486] = { + [491] = { [ts_builtin_sym_end] = ACTIONS(2006), [sym_identifier] = ACTIONS(2008), [anon_sym_SEMI] = ACTIONS(2006), @@ -60982,7 +61512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2006), [sym_block_comment] = ACTIONS(3), }, - [487] = { + [492] = { [ts_builtin_sym_end] = ACTIONS(2010), [sym_identifier] = ACTIONS(2012), [anon_sym_SEMI] = ACTIONS(2010), @@ -61059,7 +61589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2010), [sym_block_comment] = ACTIONS(3), }, - [488] = { + [493] = { [ts_builtin_sym_end] = ACTIONS(2014), [sym_identifier] = ACTIONS(2016), [anon_sym_SEMI] = ACTIONS(2014), @@ -61136,19 +61666,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [489] = { - [sym__token_pattern] = STATE(502), - [sym_token_tree_pattern] = STATE(502), - [sym_token_binding_pattern] = STATE(502), - [sym_token_repetition_pattern] = STATE(502), - [sym__literal] = STATE(502), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(502), + [494] = { + [sym__token_pattern] = STATE(264), + [sym_token_tree_pattern] = STATE(264), + [sym_token_binding_pattern] = STATE(264), + [sym_token_repetition_pattern] = STATE(264), + [sym__literal] = STATE(264), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_pattern_repeat1] = STATE(264), [sym_identifier] = ACTIONS(2018), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2024), [anon_sym_LBRACK] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(2028), [anon_sym_u8] = ACTIONS(2018), @@ -61203,7 +61733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2018), [sym_super] = ACTIONS(2018), [sym_crate] = ACTIONS(2018), @@ -61212,21 +61742,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [490] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(490), + [495] = { + [sym_attribute_item] = STATE(558), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_macro_invocation] = STATE(2581), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1919), + [sym_match_arm] = STATE(513), + [sym_last_match_arm] = STATE(2560), + [sym_match_pattern] = STATE(2569), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2123), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_match_block_repeat1] = STATE(513), + [sym_identifier] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1144), + [anon_sym_union] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1146), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1148), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [496] = { + [sym__token_pattern] = STATE(511), + [sym_token_tree_pattern] = STATE(511), + [sym_token_binding_pattern] = STATE(511), + [sym_token_repetition_pattern] = STATE(511), + [sym__literal] = STATE(511), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_pattern_repeat1] = STATE(511), [sym_identifier] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_RPAREN] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(2049), - [anon_sym_RBRACK] = ACTIONS(2044), - [anon_sym_DOLLAR] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_RPAREN] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2028), [anon_sym_u8] = ACTIONS(2038), [anon_sym_i8] = ACTIONS(2038), [anon_sym_u16] = ACTIONS(2038), @@ -61274,1173 +61880,1173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2038), [anon_sym_while] = ACTIONS(2038), [sym_mutable_specifier] = ACTIONS(2038), - [sym_integer_literal] = ACTIONS(2055), - [aux_sym_string_literal_token1] = ACTIONS(2058), - [sym_char_literal] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2061), - [anon_sym_false] = ACTIONS(2061), - [sym_line_comment] = ACTIONS(1099), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2038), [sym_super] = ACTIONS(2038), [sym_crate] = ACTIONS(2038), - [sym_metavariable] = ACTIONS(2064), - [sym_raw_string_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - [sym_block_comment] = ACTIONS(3), - }, - [491] = { - [sym_attribute_item] = STATE(554), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2537), - [sym_scoped_identifier] = STATE(1584), - [sym_scoped_type_identifier] = STATE(1941), - [sym_match_arm] = STATE(508), - [sym_last_match_arm] = STATE(2482), - [sym_match_pattern] = STATE(2393), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1956), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_enum_variant_list_repeat1] = STATE(554), - [aux_sym_match_block_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [492] = { - [sym__token_pattern] = STATE(260), - [sym_token_tree_pattern] = STATE(260), - [sym_token_binding_pattern] = STATE(260), - [sym_token_repetition_pattern] = STATE(260), - [sym__literal] = STATE(260), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2067), + [497] = { + [sym__token_pattern] = STATE(494), + [sym_token_tree_pattern] = STATE(494), + [sym_token_binding_pattern] = STATE(494), + [sym_token_repetition_pattern] = STATE(494), + [sym__literal] = STATE(494), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_pattern_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(2042), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2040), [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_RBRACK] = ACTIONS(2069), [anon_sym_DOLLAR] = ACTIONS(2028), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_await] = 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_where] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [sym_mutable_specifier] = ACTIONS(2067), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2042), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_as] = ACTIONS(2042), + [anon_sym_async] = ACTIONS(2042), + [anon_sym_await] = 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_where] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [sym_mutable_specifier] = ACTIONS(2042), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_crate] = ACTIONS(2067), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2042), + [sym_super] = ACTIONS(2042), + [sym_crate] = ACTIONS(2042), [sym_metavariable] = ACTIONS(2036), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [493] = { - [sym__token_pattern] = STATE(260), - [sym_token_tree_pattern] = STATE(260), - [sym_token_binding_pattern] = STATE(260), - [sym_token_repetition_pattern] = STATE(260), - [sym__literal] = STATE(260), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2067), + [498] = { + [sym__token_pattern] = STATE(508), + [sym_token_tree_pattern] = STATE(508), + [sym_token_binding_pattern] = STATE(508), + [sym_token_repetition_pattern] = STATE(508), + [sym__literal] = STATE(508), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_pattern_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(2044), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2022), [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2040), [anon_sym_DOLLAR] = ACTIONS(2028), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_await] = 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_where] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [sym_mutable_specifier] = ACTIONS(2067), + [anon_sym_u8] = ACTIONS(2044), + [anon_sym_i8] = ACTIONS(2044), + [anon_sym_u16] = ACTIONS(2044), + [anon_sym_i16] = ACTIONS(2044), + [anon_sym_u32] = ACTIONS(2044), + [anon_sym_i32] = ACTIONS(2044), + [anon_sym_u64] = ACTIONS(2044), + [anon_sym_i64] = ACTIONS(2044), + [anon_sym_u128] = ACTIONS(2044), + [anon_sym_i128] = ACTIONS(2044), + [anon_sym_isize] = ACTIONS(2044), + [anon_sym_usize] = ACTIONS(2044), + [anon_sym_f32] = ACTIONS(2044), + [anon_sym_f64] = ACTIONS(2044), + [anon_sym_bool] = ACTIONS(2044), + [anon_sym_str] = ACTIONS(2044), + [anon_sym_char] = ACTIONS(2044), + [aux_sym__non_special_token_token1] = ACTIONS(2044), + [anon_sym_SQUOTE] = ACTIONS(2044), + [anon_sym_as] = ACTIONS(2044), + [anon_sym_async] = ACTIONS(2044), + [anon_sym_await] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_fn] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_impl] = ACTIONS(2044), + [anon_sym_let] = ACTIONS(2044), + [anon_sym_loop] = ACTIONS(2044), + [anon_sym_match] = ACTIONS(2044), + [anon_sym_mod] = ACTIONS(2044), + [anon_sym_pub] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_trait] = ACTIONS(2044), + [anon_sym_type] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_unsafe] = ACTIONS(2044), + [anon_sym_use] = ACTIONS(2044), + [anon_sym_where] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [sym_mutable_specifier] = ACTIONS(2044), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_crate] = ACTIONS(2067), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_crate] = ACTIONS(2044), [sym_metavariable] = ACTIONS(2036), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [494] = { - [sym__token_pattern] = STATE(260), - [sym_token_tree_pattern] = STATE(260), - [sym_token_binding_pattern] = STATE(260), - [sym_token_repetition_pattern] = STATE(260), - [sym__literal] = STATE(260), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2067), + [499] = { + [sym_attribute_item] = STATE(558), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_macro_invocation] = STATE(2581), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1919), + [sym_match_arm] = STATE(513), + [sym_last_match_arm] = STATE(2494), + [sym_match_pattern] = STATE(2569), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2123), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_match_block_repeat1] = STATE(513), + [sym_identifier] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1144), + [anon_sym_union] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1146), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1148), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [500] = { + [sym__token_pattern] = STATE(503), + [sym_token_tree_pattern] = STATE(503), + [sym_token_binding_pattern] = STATE(503), + [sym_token_repetition_pattern] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_pattern_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2046), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2024), - [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2022), [anon_sym_LBRACK] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(2028), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_await] = 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_where] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [sym_mutable_specifier] = ACTIONS(2067), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_as] = ACTIONS(2046), + [anon_sym_async] = ACTIONS(2046), + [anon_sym_await] = 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_where] = ACTIONS(2046), + [anon_sym_while] = ACTIONS(2046), + [sym_mutable_specifier] = ACTIONS(2046), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_crate] = ACTIONS(2067), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2046), + [sym_super] = ACTIONS(2046), + [sym_crate] = ACTIONS(2046), [sym_metavariable] = ACTIONS(2036), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [495] = { - [sym__token_pattern] = STATE(493), - [sym_token_tree_pattern] = STATE(493), - [sym_token_binding_pattern] = STATE(493), - [sym_token_repetition_pattern] = STATE(493), - [sym__literal] = STATE(493), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(2073), + [501] = { + [sym__token_pattern] = STATE(264), + [sym_token_tree_pattern] = STATE(264), + [sym_token_binding_pattern] = STATE(264), + [sym_token_repetition_pattern] = STATE(264), + [sym__literal] = STATE(264), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(2018), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(2022), [anon_sym_LBRACK] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(2028), - [anon_sym_u8] = ACTIONS(2073), - [anon_sym_i8] = ACTIONS(2073), - [anon_sym_u16] = ACTIONS(2073), - [anon_sym_i16] = ACTIONS(2073), - [anon_sym_u32] = ACTIONS(2073), - [anon_sym_i32] = ACTIONS(2073), - [anon_sym_u64] = ACTIONS(2073), - [anon_sym_i64] = ACTIONS(2073), - [anon_sym_u128] = ACTIONS(2073), - [anon_sym_i128] = ACTIONS(2073), - [anon_sym_isize] = ACTIONS(2073), - [anon_sym_usize] = ACTIONS(2073), - [anon_sym_f32] = ACTIONS(2073), - [anon_sym_f64] = ACTIONS(2073), - [anon_sym_bool] = ACTIONS(2073), - [anon_sym_str] = ACTIONS(2073), - [anon_sym_char] = ACTIONS(2073), - [aux_sym__non_special_token_token1] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2073), - [anon_sym_as] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2073), - [anon_sym_await] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_default] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_fn] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_impl] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2073), - [anon_sym_loop] = ACTIONS(2073), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_mod] = ACTIONS(2073), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_struct] = ACTIONS(2073), - [anon_sym_trait] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_union] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_where] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [sym_mutable_specifier] = ACTIONS(2073), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_async] = ACTIONS(2018), + [anon_sym_await] = 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_where] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [sym_mutable_specifier] = ACTIONS(2018), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2073), - [sym_super] = ACTIONS(2073), - [sym_crate] = ACTIONS(2073), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2018), + [sym_super] = ACTIONS(2018), + [sym_crate] = ACTIONS(2018), [sym_metavariable] = ACTIONS(2036), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [496] = { - [sym__token_pattern] = STATE(260), - [sym_token_tree_pattern] = STATE(260), - [sym_token_binding_pattern] = STATE(260), - [sym_token_repetition_pattern] = STATE(260), - [sym__literal] = STATE(260), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2067), + [502] = { + [sym__token_pattern] = STATE(505), + [sym_token_tree_pattern] = STATE(505), + [sym_token_binding_pattern] = STATE(505), + [sym_token_repetition_pattern] = STATE(505), + [sym__literal] = STATE(505), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_pattern_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(2052), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2022), [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2048), [anon_sym_DOLLAR] = ACTIONS(2028), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_await] = 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_where] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [sym_mutable_specifier] = ACTIONS(2067), + [anon_sym_u8] = ACTIONS(2052), + [anon_sym_i8] = ACTIONS(2052), + [anon_sym_u16] = ACTIONS(2052), + [anon_sym_i16] = ACTIONS(2052), + [anon_sym_u32] = ACTIONS(2052), + [anon_sym_i32] = ACTIONS(2052), + [anon_sym_u64] = ACTIONS(2052), + [anon_sym_i64] = ACTIONS(2052), + [anon_sym_u128] = ACTIONS(2052), + [anon_sym_i128] = ACTIONS(2052), + [anon_sym_isize] = ACTIONS(2052), + [anon_sym_usize] = ACTIONS(2052), + [anon_sym_f32] = ACTIONS(2052), + [anon_sym_f64] = ACTIONS(2052), + [anon_sym_bool] = ACTIONS(2052), + [anon_sym_str] = ACTIONS(2052), + [anon_sym_char] = ACTIONS(2052), + [aux_sym__non_special_token_token1] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2052), + [anon_sym_as] = ACTIONS(2052), + [anon_sym_async] = ACTIONS(2052), + [anon_sym_await] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_default] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_fn] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_impl] = ACTIONS(2052), + [anon_sym_let] = ACTIONS(2052), + [anon_sym_loop] = ACTIONS(2052), + [anon_sym_match] = ACTIONS(2052), + [anon_sym_mod] = ACTIONS(2052), + [anon_sym_pub] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_trait] = ACTIONS(2052), + [anon_sym_type] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_unsafe] = ACTIONS(2052), + [anon_sym_use] = ACTIONS(2052), + [anon_sym_where] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [sym_mutable_specifier] = ACTIONS(2052), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_crate] = ACTIONS(2067), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2052), + [sym_super] = ACTIONS(2052), + [sym_crate] = ACTIONS(2052), [sym_metavariable] = ACTIONS(2036), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [497] = { - [sym__token_pattern] = STATE(496), - [sym_token_tree_pattern] = STATE(496), - [sym_token_binding_pattern] = STATE(496), - [sym_token_repetition_pattern] = STATE(496), - [sym__literal] = STATE(496), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(496), - [sym_identifier] = ACTIONS(2077), + [503] = { + [sym__token_pattern] = STATE(264), + [sym_token_tree_pattern] = STATE(264), + [sym_token_binding_pattern] = STATE(264), + [sym_token_repetition_pattern] = STATE(264), + [sym__literal] = STATE(264), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(2018), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(2022), [anon_sym_LBRACK] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(2028), - [anon_sym_u8] = ACTIONS(2077), - [anon_sym_i8] = ACTIONS(2077), - [anon_sym_u16] = ACTIONS(2077), - [anon_sym_i16] = ACTIONS(2077), - [anon_sym_u32] = ACTIONS(2077), - [anon_sym_i32] = ACTIONS(2077), - [anon_sym_u64] = ACTIONS(2077), - [anon_sym_i64] = ACTIONS(2077), - [anon_sym_u128] = ACTIONS(2077), - [anon_sym_i128] = ACTIONS(2077), - [anon_sym_isize] = ACTIONS(2077), - [anon_sym_usize] = ACTIONS(2077), - [anon_sym_f32] = ACTIONS(2077), - [anon_sym_f64] = ACTIONS(2077), - [anon_sym_bool] = ACTIONS(2077), - [anon_sym_str] = ACTIONS(2077), - [anon_sym_char] = ACTIONS(2077), - [aux_sym__non_special_token_token1] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_as] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_default] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [anon_sym_fn] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_impl] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_loop] = ACTIONS(2077), - [anon_sym_match] = ACTIONS(2077), - [anon_sym_mod] = ACTIONS(2077), - [anon_sym_pub] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(2077), - [anon_sym_trait] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_union] = ACTIONS(2077), - [anon_sym_unsafe] = ACTIONS(2077), - [anon_sym_use] = ACTIONS(2077), - [anon_sym_where] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [sym_mutable_specifier] = ACTIONS(2077), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_async] = ACTIONS(2018), + [anon_sym_await] = 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_where] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [sym_mutable_specifier] = ACTIONS(2018), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_crate] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2018), + [sym_super] = ACTIONS(2018), + [sym_crate] = ACTIONS(2018), [sym_metavariable] = ACTIONS(2036), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [498] = { - [sym__token_pattern] = STATE(260), - [sym_token_tree_pattern] = STATE(260), - [sym_token_binding_pattern] = STATE(260), - [sym_token_repetition_pattern] = STATE(260), - [sym__literal] = STATE(260), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2067), + [504] = { + [sym__token_pattern] = STATE(264), + [sym_token_tree_pattern] = STATE(264), + [sym_token_binding_pattern] = STATE(264), + [sym_token_repetition_pattern] = STATE(264), + [sym__literal] = STATE(264), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(2018), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2054), [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_RBRACK] = ACTIONS(2081), [anon_sym_DOLLAR] = ACTIONS(2028), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_await] = 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_where] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [sym_mutable_specifier] = ACTIONS(2067), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_async] = ACTIONS(2018), + [anon_sym_await] = 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_where] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [sym_mutable_specifier] = ACTIONS(2018), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_crate] = ACTIONS(2067), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2018), + [sym_super] = ACTIONS(2018), + [sym_crate] = ACTIONS(2018), [sym_metavariable] = ACTIONS(2036), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [499] = { - [sym__token_pattern] = STATE(494), - [sym_token_tree_pattern] = STATE(494), - [sym_token_binding_pattern] = STATE(494), - [sym_token_repetition_pattern] = STATE(494), - [sym__literal] = STATE(494), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(2083), + [505] = { + [sym__token_pattern] = STATE(264), + [sym_token_tree_pattern] = STATE(264), + [sym_token_binding_pattern] = STATE(264), + [sym_token_repetition_pattern] = STATE(264), + [sym__literal] = STATE(264), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(2018), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2024), - [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2022), [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2054), [anon_sym_DOLLAR] = ACTIONS(2028), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2083), - [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_as] = ACTIONS(2083), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_await] = 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_where] = ACTIONS(2083), - [anon_sym_while] = ACTIONS(2083), - [sym_mutable_specifier] = ACTIONS(2083), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_async] = ACTIONS(2018), + [anon_sym_await] = 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_where] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [sym_mutable_specifier] = ACTIONS(2018), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2083), - [sym_super] = ACTIONS(2083), - [sym_crate] = ACTIONS(2083), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2018), + [sym_super] = ACTIONS(2018), + [sym_crate] = ACTIONS(2018), [sym_metavariable] = ACTIONS(2036), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [500] = { - [sym__token_pattern] = STATE(492), - [sym_token_tree_pattern] = STATE(492), - [sym_token_binding_pattern] = STATE(492), - [sym_token_repetition_pattern] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2085), + [506] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2056), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_RBRACK] = ACTIONS(2062), + [anon_sym_DOLLAR] = ACTIONS(2070), + [anon_sym_u8] = ACTIONS(2056), + [anon_sym_i8] = ACTIONS(2056), + [anon_sym_u16] = ACTIONS(2056), + [anon_sym_i16] = ACTIONS(2056), + [anon_sym_u32] = ACTIONS(2056), + [anon_sym_i32] = ACTIONS(2056), + [anon_sym_u64] = ACTIONS(2056), + [anon_sym_i64] = ACTIONS(2056), + [anon_sym_u128] = ACTIONS(2056), + [anon_sym_i128] = ACTIONS(2056), + [anon_sym_isize] = ACTIONS(2056), + [anon_sym_usize] = ACTIONS(2056), + [anon_sym_f32] = ACTIONS(2056), + [anon_sym_f64] = ACTIONS(2056), + [anon_sym_bool] = ACTIONS(2056), + [anon_sym_str] = ACTIONS(2056), + [anon_sym_char] = ACTIONS(2056), + [aux_sym__non_special_token_token1] = ACTIONS(2056), + [anon_sym_SQUOTE] = ACTIONS(2056), + [anon_sym_as] = ACTIONS(2056), + [anon_sym_async] = ACTIONS(2056), + [anon_sym_await] = ACTIONS(2056), + [anon_sym_break] = ACTIONS(2056), + [anon_sym_const] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2056), + [anon_sym_default] = ACTIONS(2056), + [anon_sym_enum] = ACTIONS(2056), + [anon_sym_fn] = ACTIONS(2056), + [anon_sym_for] = ACTIONS(2056), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_impl] = ACTIONS(2056), + [anon_sym_let] = ACTIONS(2056), + [anon_sym_loop] = ACTIONS(2056), + [anon_sym_match] = ACTIONS(2056), + [anon_sym_mod] = ACTIONS(2056), + [anon_sym_pub] = ACTIONS(2056), + [anon_sym_return] = ACTIONS(2056), + [anon_sym_static] = ACTIONS(2056), + [anon_sym_struct] = ACTIONS(2056), + [anon_sym_trait] = ACTIONS(2056), + [anon_sym_type] = ACTIONS(2056), + [anon_sym_union] = ACTIONS(2056), + [anon_sym_unsafe] = ACTIONS(2056), + [anon_sym_use] = ACTIONS(2056), + [anon_sym_where] = ACTIONS(2056), + [anon_sym_while] = ACTIONS(2056), + [sym_mutable_specifier] = ACTIONS(2056), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2076), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2056), + [sym_super] = ACTIONS(2056), + [sym_crate] = ACTIONS(2056), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), + [sym_block_comment] = ACTIONS(3), + }, + [507] = { + [sym_attribute_item] = STATE(558), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_macro_invocation] = STATE(2581), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1919), + [sym_match_arm] = STATE(513), + [sym_last_match_arm] = STATE(2421), + [sym_match_pattern] = STATE(2569), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2123), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_match_block_repeat1] = STATE(513), + [sym_identifier] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1144), + [anon_sym_union] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1146), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1148), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [508] = { + [sym__token_pattern] = STATE(264), + [sym_token_tree_pattern] = STATE(264), + [sym_token_binding_pattern] = STATE(264), + [sym_token_repetition_pattern] = STATE(264), + [sym__literal] = STATE(264), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(2018), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2022), [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_RBRACK] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2024), [anon_sym_DOLLAR] = ACTIONS(2028), - [anon_sym_u8] = ACTIONS(2085), - [anon_sym_i8] = ACTIONS(2085), - [anon_sym_u16] = ACTIONS(2085), - [anon_sym_i16] = ACTIONS(2085), - [anon_sym_u32] = ACTIONS(2085), - [anon_sym_i32] = ACTIONS(2085), - [anon_sym_u64] = ACTIONS(2085), - [anon_sym_i64] = ACTIONS(2085), - [anon_sym_u128] = ACTIONS(2085), - [anon_sym_i128] = ACTIONS(2085), - [anon_sym_isize] = ACTIONS(2085), - [anon_sym_usize] = ACTIONS(2085), - [anon_sym_f32] = ACTIONS(2085), - [anon_sym_f64] = ACTIONS(2085), - [anon_sym_bool] = ACTIONS(2085), - [anon_sym_str] = ACTIONS(2085), - [anon_sym_char] = ACTIONS(2085), - [aux_sym__non_special_token_token1] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_as] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [anon_sym_fn] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_impl] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_loop] = ACTIONS(2085), - [anon_sym_match] = ACTIONS(2085), - [anon_sym_mod] = ACTIONS(2085), - [anon_sym_pub] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_struct] = ACTIONS(2085), - [anon_sym_trait] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_union] = ACTIONS(2085), - [anon_sym_unsafe] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_where] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [sym_mutable_specifier] = ACTIONS(2085), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_async] = ACTIONS(2018), + [anon_sym_await] = 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_where] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [sym_mutable_specifier] = ACTIONS(2018), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_crate] = ACTIONS(2085), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2018), + [sym_super] = ACTIONS(2018), + [sym_crate] = ACTIONS(2018), [sym_metavariable] = ACTIONS(2036), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [501] = { - [sym__token_pattern] = STATE(260), - [sym_token_tree_pattern] = STATE(260), - [sym_token_binding_pattern] = STATE(260), - [sym_token_repetition_pattern] = STATE(260), - [sym__literal] = STATE(260), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2067), + [509] = { + [sym__token_pattern] = STATE(504), + [sym_token_tree_pattern] = STATE(504), + [sym_token_binding_pattern] = STATE(504), + [sym_token_repetition_pattern] = STATE(504), + [sym__literal] = STATE(504), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_pattern_repeat1] = STATE(504), + [sym_identifier] = ACTIONS(2082), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2024), - [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2048), [anon_sym_LBRACK] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(2028), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_await] = 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_where] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [sym_mutable_specifier] = ACTIONS(2067), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2082), + [anon_sym_as] = ACTIONS(2082), + [anon_sym_async] = ACTIONS(2082), + [anon_sym_await] = 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_where] = ACTIONS(2082), + [anon_sym_while] = ACTIONS(2082), + [sym_mutable_specifier] = ACTIONS(2082), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_crate] = ACTIONS(2067), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2082), + [sym_super] = ACTIONS(2082), + [sym_crate] = ACTIONS(2082), [sym_metavariable] = ACTIONS(2036), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [502] = { - [sym__token_pattern] = STATE(260), - [sym_token_tree_pattern] = STATE(260), - [sym_token_binding_pattern] = STATE(260), - [sym_token_repetition_pattern] = STATE(260), - [sym__literal] = STATE(260), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(2067), + [510] = { + [sym_token_tree] = STATE(510), + [sym_token_repetition] = STATE(510), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_RPAREN] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_RBRACK] = ACTIONS(2090), + [anon_sym_DOLLAR] = ACTIONS(2098), + [anon_sym_u8] = ACTIONS(2084), + [anon_sym_i8] = ACTIONS(2084), + [anon_sym_u16] = ACTIONS(2084), + [anon_sym_i16] = ACTIONS(2084), + [anon_sym_u32] = ACTIONS(2084), + [anon_sym_i32] = ACTIONS(2084), + [anon_sym_u64] = ACTIONS(2084), + [anon_sym_i64] = ACTIONS(2084), + [anon_sym_u128] = ACTIONS(2084), + [anon_sym_i128] = ACTIONS(2084), + [anon_sym_isize] = ACTIONS(2084), + [anon_sym_usize] = ACTIONS(2084), + [anon_sym_f32] = ACTIONS(2084), + [anon_sym_f64] = ACTIONS(2084), + [anon_sym_bool] = ACTIONS(2084), + [anon_sym_str] = ACTIONS(2084), + [anon_sym_char] = ACTIONS(2084), + [aux_sym__non_special_token_token1] = ACTIONS(2084), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_as] = ACTIONS(2084), + [anon_sym_async] = ACTIONS(2084), + [anon_sym_await] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_fn] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_impl] = ACTIONS(2084), + [anon_sym_let] = ACTIONS(2084), + [anon_sym_loop] = ACTIONS(2084), + [anon_sym_match] = ACTIONS(2084), + [anon_sym_mod] = ACTIONS(2084), + [anon_sym_pub] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_trait] = ACTIONS(2084), + [anon_sym_type] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_unsafe] = ACTIONS(2084), + [anon_sym_use] = ACTIONS(2084), + [anon_sym_where] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [sym_mutable_specifier] = ACTIONS(2084), + [sym_integer_literal] = ACTIONS(2101), + [aux_sym_string_literal_token1] = ACTIONS(2104), + [sym_char_literal] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(2107), + [anon_sym_false] = ACTIONS(2107), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_crate] = ACTIONS(2084), + [sym_metavariable] = ACTIONS(2110), + [sym_raw_string_literal] = ACTIONS(2101), + [sym_float_literal] = ACTIONS(2101), + [sym_block_comment] = ACTIONS(3), + }, + [511] = { + [sym__token_pattern] = STATE(264), + [sym_token_tree_pattern] = STATE(264), + [sym_token_binding_pattern] = STATE(264), + [sym_token_repetition_pattern] = STATE(264), + [sym__literal] = STATE(264), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(2018), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2022), [anon_sym_LBRACK] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(2028), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_await] = 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_where] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [sym_mutable_specifier] = ACTIONS(2067), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_async] = ACTIONS(2018), + [anon_sym_await] = 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_where] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [sym_mutable_specifier] = ACTIONS(2018), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_crate] = ACTIONS(2067), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2018), + [sym_super] = ACTIONS(2018), + [sym_crate] = ACTIONS(2018), [sym_metavariable] = ACTIONS(2036), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [503] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), - [sym_identifier] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_RPAREN] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_RBRACK] = ACTIONS(2093), - [anon_sym_DOLLAR] = ACTIONS(2101), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2087), - [anon_sym_SQUOTE] = ACTIONS(2087), - [anon_sym_as] = ACTIONS(2087), - [anon_sym_async] = ACTIONS(2087), - [anon_sym_await] = 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_where] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [sym_mutable_specifier] = ACTIONS(2087), - [sym_integer_literal] = ACTIONS(2104), - [aux_sym_string_literal_token1] = ACTIONS(2107), - [sym_char_literal] = ACTIONS(2104), - [anon_sym_true] = ACTIONS(2110), - [anon_sym_false] = ACTIONS(2110), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2087), - [sym_super] = ACTIONS(2087), - [sym_crate] = ACTIONS(2087), - [sym_raw_string_literal] = ACTIONS(2104), - [sym_float_literal] = ACTIONS(2104), - [sym_block_comment] = ACTIONS(3), - }, - [504] = { - [sym_attribute_item] = STATE(554), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2537), - [sym_scoped_identifier] = STATE(1584), - [sym_scoped_type_identifier] = STATE(1941), - [sym_match_arm] = STATE(508), - [sym_last_match_arm] = STATE(2560), - [sym_match_pattern] = STATE(2393), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1956), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_enum_variant_list_repeat1] = STATE(554), - [aux_sym_match_block_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [505] = { - [sym_attribute_item] = STATE(554), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2537), - [sym_scoped_identifier] = STATE(1584), - [sym_scoped_type_identifier] = STATE(1941), - [sym_match_arm] = STATE(508), - [sym_last_match_arm] = STATE(2435), - [sym_match_pattern] = STATE(2393), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1956), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_enum_variant_list_repeat1] = STATE(554), - [aux_sym_match_block_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [506] = { + [512] = { [sym__token_pattern] = STATE(501), [sym_token_tree_pattern] = STATE(501), [sym_token_binding_pattern] = STATE(501), [sym_token_repetition_pattern] = STATE(501), [sym__literal] = STATE(501), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), [aux_sym_token_tree_pattern_repeat1] = STATE(501), [sym_identifier] = ACTIONS(2113), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2024), - [anon_sym_RBRACE] = ACTIONS(2022), + [anon_sym_RPAREN] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2022), [anon_sym_LBRACK] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(2028), [anon_sym_u8] = ACTIONS(2113), @@ -62495,7 +63101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2113), [sym_super] = ACTIONS(2113), [sym_crate] = ACTIONS(2113), @@ -62504,111 +63110,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [507] = { - [sym__token_pattern] = STATE(498), - [sym_token_tree_pattern] = STATE(498), - [sym_token_binding_pattern] = STATE(498), - [sym_token_repetition_pattern] = STATE(498), - [sym__literal] = STATE(498), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2024), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_RBRACK] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(2028), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2115), - [anon_sym_as] = ACTIONS(2115), - [anon_sym_async] = ACTIONS(2115), - [anon_sym_await] = 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_where] = ACTIONS(2115), - [anon_sym_while] = ACTIONS(2115), - [sym_mutable_specifier] = ACTIONS(2115), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2115), - [sym_super] = ACTIONS(2115), - [sym_crate] = ACTIONS(2115), - [sym_metavariable] = ACTIONS(2036), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [508] = { - [sym_attribute_item] = STATE(553), + [513] = { + [sym_attribute_item] = STATE(560), [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2537), - [sym_scoped_identifier] = STATE(1584), - [sym_scoped_type_identifier] = STATE(1941), - [sym_match_arm] = STATE(508), - [sym_match_pattern] = STATE(2537), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1956), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_enum_variant_list_repeat1] = STATE(553), - [aux_sym_match_block_repeat1] = STATE(508), + [sym_macro_invocation] = STATE(2581), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1919), + [sym_match_arm] = STATE(513), + [sym_match_pattern] = STATE(2581), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2123), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_enum_variant_list_repeat1] = STATE(560), + [aux_sym_match_block_repeat1] = STATE(513), [sym_identifier] = ACTIONS(2117), [anon_sym_LPAREN] = ACTIONS(2120), [anon_sym_LBRACK] = ACTIONS(2123), @@ -62655,14 +63185,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2162), [sym_block_comment] = ACTIONS(3), }, - [509] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), + [514] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), [sym_identifier] = ACTIONS(2177), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), @@ -62721,7 +63251,821 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [515] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2195), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [516] = { + [sym_token_tree] = STATE(510), + [sym_token_repetition] = STATE(510), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_await] = 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_where] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [sym_mutable_specifier] = ACTIONS(2197), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_crate] = ACTIONS(2197), + [sym_metavariable] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [517] = { + [sym_token_tree] = STATE(510), + [sym_token_repetition] = STATE(510), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_await] = 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_where] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [sym_mutable_specifier] = ACTIONS(2197), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_crate] = ACTIONS(2197), + [sym_metavariable] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [518] = { + [sym_token_tree] = STATE(541), + [sym_token_repetition] = STATE(541), + [sym__literal] = STATE(541), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_repeat1] = STATE(541), + [sym_identifier] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_RBRACK] = ACTIONS(2213), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2211), + [anon_sym_i8] = ACTIONS(2211), + [anon_sym_u16] = ACTIONS(2211), + [anon_sym_i16] = ACTIONS(2211), + [anon_sym_u32] = ACTIONS(2211), + [anon_sym_i32] = ACTIONS(2211), + [anon_sym_u64] = ACTIONS(2211), + [anon_sym_i64] = ACTIONS(2211), + [anon_sym_u128] = ACTIONS(2211), + [anon_sym_i128] = ACTIONS(2211), + [anon_sym_isize] = ACTIONS(2211), + [anon_sym_usize] = ACTIONS(2211), + [anon_sym_f32] = ACTIONS(2211), + [anon_sym_f64] = ACTIONS(2211), + [anon_sym_bool] = ACTIONS(2211), + [anon_sym_str] = ACTIONS(2211), + [anon_sym_char] = ACTIONS(2211), + [aux_sym__non_special_token_token1] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2211), + [anon_sym_as] = ACTIONS(2211), + [anon_sym_async] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_const] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_default] = ACTIONS(2211), + [anon_sym_enum] = ACTIONS(2211), + [anon_sym_fn] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_impl] = ACTIONS(2211), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_loop] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_mod] = ACTIONS(2211), + [anon_sym_pub] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_static] = ACTIONS(2211), + [anon_sym_struct] = ACTIONS(2211), + [anon_sym_trait] = ACTIONS(2211), + [anon_sym_type] = ACTIONS(2211), + [anon_sym_union] = ACTIONS(2211), + [anon_sym_unsafe] = ACTIONS(2211), + [anon_sym_use] = ACTIONS(2211), + [anon_sym_where] = ACTIONS(2211), + [anon_sym_while] = ACTIONS(2211), + [sym_mutable_specifier] = ACTIONS(2211), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2211), + [sym_super] = ACTIONS(2211), + [sym_crate] = ACTIONS(2211), + [sym_metavariable] = ACTIONS(2215), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [519] = { + [sym_token_tree] = STATE(516), + [sym_token_repetition] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_as] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_await] = 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_where] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [sym_mutable_specifier] = ACTIONS(2217), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2217), + [sym_super] = ACTIONS(2217), + [sym_crate] = ACTIONS(2217), + [sym_metavariable] = ACTIONS(2219), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [520] = { + [sym_token_tree] = STATE(517), + [sym_token_repetition] = STATE(517), + [sym__literal] = STATE(517), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_repeat1] = STATE(517), + [sym_identifier] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_as] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_await] = 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_where] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [sym_mutable_specifier] = ACTIONS(2221), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_crate] = ACTIONS(2221), + [sym_metavariable] = ACTIONS(2223), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [521] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [522] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(514), + [sym__non_delim_token] = STATE(514), + [sym__literal] = STATE(514), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(514), + [sym_identifier] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_u8] = ACTIONS(2227), + [anon_sym_i8] = ACTIONS(2227), + [anon_sym_u16] = ACTIONS(2227), + [anon_sym_i16] = ACTIONS(2227), + [anon_sym_u32] = ACTIONS(2227), + [anon_sym_i32] = ACTIONS(2227), + [anon_sym_u64] = ACTIONS(2227), + [anon_sym_i64] = ACTIONS(2227), + [anon_sym_u128] = ACTIONS(2227), + [anon_sym_i128] = ACTIONS(2227), + [anon_sym_isize] = ACTIONS(2227), + [anon_sym_usize] = ACTIONS(2227), + [anon_sym_f32] = ACTIONS(2227), + [anon_sym_f64] = ACTIONS(2227), + [anon_sym_bool] = ACTIONS(2227), + [anon_sym_str] = ACTIONS(2227), + [anon_sym_char] = ACTIONS(2227), + [aux_sym__non_special_token_token1] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_as] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), + [anon_sym_fn] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_impl] = ACTIONS(2227), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_loop] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(2227), + [anon_sym_mod] = ACTIONS(2227), + [anon_sym_pub] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2227), + [anon_sym_trait] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_unsafe] = ACTIONS(2227), + [anon_sym_use] = ACTIONS(2227), + [anon_sym_where] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [sym_mutable_specifier] = ACTIONS(2227), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_crate] = ACTIONS(2227), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [523] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(535), + [sym__non_delim_token] = STATE(535), + [sym__literal] = STATE(535), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(535), + [sym_identifier] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2237), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_as] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_await] = 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_where] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [sym_mutable_specifier] = ACTIONS(2233), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_crate] = ACTIONS(2233), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [524] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(540), + [sym__non_delim_token] = STATE(540), + [sym__literal] = STATE(540), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(540), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2239), + [anon_sym_i8] = ACTIONS(2239), + [anon_sym_u16] = ACTIONS(2239), + [anon_sym_i16] = ACTIONS(2239), + [anon_sym_u32] = ACTIONS(2239), + [anon_sym_i32] = ACTIONS(2239), + [anon_sym_u64] = ACTIONS(2239), + [anon_sym_i64] = ACTIONS(2239), + [anon_sym_u128] = ACTIONS(2239), + [anon_sym_i128] = ACTIONS(2239), + [anon_sym_isize] = ACTIONS(2239), + [anon_sym_usize] = ACTIONS(2239), + [anon_sym_f32] = ACTIONS(2239), + [anon_sym_f64] = ACTIONS(2239), + [anon_sym_bool] = ACTIONS(2239), + [anon_sym_str] = ACTIONS(2239), + [anon_sym_char] = ACTIONS(2239), + [aux_sym__non_special_token_token1] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [anon_sym_fn] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_impl] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_loop] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_mod] = ACTIONS(2239), + [anon_sym_pub] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2239), + [anon_sym_trait] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_union] = ACTIONS(2239), + [anon_sym_unsafe] = ACTIONS(2239), + [anon_sym_use] = ACTIONS(2239), + [anon_sym_where] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [sym_mutable_specifier] = ACTIONS(2239), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_crate] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [525] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2225), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [aux_sym__non_special_token_token1] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_where] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [sym_mutable_specifier] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(2177), [sym_crate] = ACTIONS(2177), @@ -62729,91 +64073,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [510] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(539), - [sym__non_delim_token] = STATE(539), - [sym__literal] = STATE(539), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(539), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [526] = { + [sym_token_tree] = STATE(552), + [sym_token_repetition] = STATE(552), + [sym__literal] = STATE(552), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_repeat1] = STATE(552), + [sym_identifier] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_as] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_await] = 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_where] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [sym_mutable_specifier] = ACTIONS(2243), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2243), + [sym_super] = ACTIONS(2243), + [sym_crate] = ACTIONS(2243), + [sym_metavariable] = ACTIONS(2247), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [527] = { + [sym_token_tree] = STATE(551), + [sym_token_repetition] = STATE(551), + [sym__literal] = STATE(551), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_repeat1] = STATE(551), + [sym_identifier] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2249), + [anon_sym_i8] = ACTIONS(2249), + [anon_sym_u16] = ACTIONS(2249), + [anon_sym_i16] = ACTIONS(2249), + [anon_sym_u32] = ACTIONS(2249), + [anon_sym_i32] = ACTIONS(2249), + [anon_sym_u64] = ACTIONS(2249), + [anon_sym_i64] = ACTIONS(2249), + [anon_sym_u128] = ACTIONS(2249), + [anon_sym_i128] = ACTIONS(2249), + [anon_sym_isize] = ACTIONS(2249), + [anon_sym_usize] = ACTIONS(2249), + [anon_sym_f32] = ACTIONS(2249), + [anon_sym_f64] = ACTIONS(2249), + [anon_sym_bool] = ACTIONS(2249), + [anon_sym_str] = ACTIONS(2249), + [anon_sym_char] = ACTIONS(2249), + [aux_sym__non_special_token_token1] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_as] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_impl] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_loop] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_mod] = ACTIONS(2249), + [anon_sym_pub] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_trait] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_unsafe] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_where] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [sym_mutable_specifier] = ACTIONS(2249), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_crate] = ACTIONS(2249), + [sym_metavariable] = ACTIONS(2251), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [528] = { + [sym_token_tree] = STATE(550), + [sym_token_repetition] = STATE(550), + [sym__literal] = STATE(550), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_repeat1] = STATE(550), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_RBRACK] = ACTIONS(2245), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2253), + [anon_sym_i8] = ACTIONS(2253), + [anon_sym_u16] = ACTIONS(2253), + [anon_sym_i16] = ACTIONS(2253), + [anon_sym_u32] = ACTIONS(2253), + [anon_sym_i32] = ACTIONS(2253), + [anon_sym_u64] = ACTIONS(2253), + [anon_sym_i64] = ACTIONS(2253), + [anon_sym_u128] = ACTIONS(2253), + [anon_sym_i128] = ACTIONS(2253), + [anon_sym_isize] = ACTIONS(2253), + [anon_sym_usize] = ACTIONS(2253), + [anon_sym_f32] = ACTIONS(2253), + [anon_sym_f64] = ACTIONS(2253), + [anon_sym_bool] = ACTIONS(2253), + [anon_sym_str] = ACTIONS(2253), + [anon_sym_char] = ACTIONS(2253), + [aux_sym__non_special_token_token1] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_as] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_default] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_impl] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_loop] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_mod] = ACTIONS(2253), + [anon_sym_pub] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_struct] = ACTIONS(2253), + [anon_sym_trait] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(2253), + [anon_sym_unsafe] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_where] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [sym_mutable_specifier] = ACTIONS(2253), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(2255), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [511] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), + [529] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), [sym_identifier] = ACTIONS(2177), [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2201), + [anon_sym_RPAREN] = ACTIONS(2225), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), [anon_sym_DOLLAR] = ACTIONS(2187), @@ -62869,7 +64361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(2177), [sym_crate] = ACTIONS(2177), @@ -62877,315 +64369,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [512] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2209), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_u8] = ACTIONS(2203), - [anon_sym_i8] = ACTIONS(2203), - [anon_sym_u16] = ACTIONS(2203), - [anon_sym_i16] = ACTIONS(2203), - [anon_sym_u32] = ACTIONS(2203), - [anon_sym_i32] = ACTIONS(2203), - [anon_sym_u64] = ACTIONS(2203), - [anon_sym_i64] = ACTIONS(2203), - [anon_sym_u128] = ACTIONS(2203), - [anon_sym_i128] = ACTIONS(2203), - [anon_sym_isize] = ACTIONS(2203), - [anon_sym_usize] = ACTIONS(2203), - [anon_sym_f32] = ACTIONS(2203), - [anon_sym_f64] = ACTIONS(2203), - [anon_sym_bool] = ACTIONS(2203), - [anon_sym_str] = ACTIONS(2203), - [anon_sym_char] = ACTIONS(2203), - [aux_sym__non_special_token_token1] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [anon_sym_fn] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_impl] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_loop] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_mod] = ACTIONS(2203), - [anon_sym_pub] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2203), - [anon_sym_trait] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(2203), - [anon_sym_use] = ACTIONS(2203), - [anon_sym_where] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [sym_mutable_specifier] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_crate] = ACTIONS(2203), - [sym_metavariable] = ACTIONS(2215), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [513] = { - [sym_token_tree] = STATE(514), - [sym_token_repetition] = STATE(514), - [sym__literal] = STATE(514), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(514), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2213), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2217), - [anon_sym_SQUOTE] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_async] = ACTIONS(2217), - [anon_sym_await] = 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_where] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [sym_mutable_specifier] = ACTIONS(2217), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2217), - [sym_super] = ACTIONS(2217), - [sym_crate] = ACTIONS(2217), - [sym_metavariable] = ACTIONS(2221), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [514] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_RPAREN] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_u8] = ACTIONS(2203), - [anon_sym_i8] = ACTIONS(2203), - [anon_sym_u16] = ACTIONS(2203), - [anon_sym_i16] = ACTIONS(2203), - [anon_sym_u32] = ACTIONS(2203), - [anon_sym_i32] = ACTIONS(2203), - [anon_sym_u64] = ACTIONS(2203), - [anon_sym_i64] = ACTIONS(2203), - [anon_sym_u128] = ACTIONS(2203), - [anon_sym_i128] = ACTIONS(2203), - [anon_sym_isize] = ACTIONS(2203), - [anon_sym_usize] = ACTIONS(2203), - [anon_sym_f32] = ACTIONS(2203), - [anon_sym_f64] = ACTIONS(2203), - [anon_sym_bool] = ACTIONS(2203), - [anon_sym_str] = ACTIONS(2203), - [anon_sym_char] = ACTIONS(2203), - [aux_sym__non_special_token_token1] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [anon_sym_fn] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_impl] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_loop] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_mod] = ACTIONS(2203), - [anon_sym_pub] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2203), - [anon_sym_trait] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(2203), - [anon_sym_use] = ACTIONS(2203), - [anon_sym_where] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [sym_mutable_specifier] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_crate] = ACTIONS(2203), - [sym_metavariable] = ACTIONS(2215), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [515] = { - [sym_token_tree] = STATE(512), - [sym_token_repetition] = STATE(512), - [sym__literal] = STATE(512), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(512), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_u8] = ACTIONS(2223), - [anon_sym_i8] = ACTIONS(2223), - [anon_sym_u16] = ACTIONS(2223), - [anon_sym_i16] = ACTIONS(2223), - [anon_sym_u32] = ACTIONS(2223), - [anon_sym_i32] = ACTIONS(2223), - [anon_sym_u64] = ACTIONS(2223), - [anon_sym_i64] = ACTIONS(2223), - [anon_sym_u128] = ACTIONS(2223), - [anon_sym_i128] = ACTIONS(2223), - [anon_sym_isize] = ACTIONS(2223), - [anon_sym_usize] = ACTIONS(2223), - [anon_sym_f32] = ACTIONS(2223), - [anon_sym_f64] = ACTIONS(2223), - [anon_sym_bool] = ACTIONS(2223), - [anon_sym_str] = ACTIONS(2223), - [anon_sym_char] = ACTIONS(2223), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_break] = ACTIONS(2223), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_continue] = ACTIONS(2223), - [anon_sym_default] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_fn] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_impl] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_loop] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_mod] = ACTIONS(2223), - [anon_sym_pub] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_trait] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_union] = ACTIONS(2223), - [anon_sym_unsafe] = ACTIONS(2223), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_metavariable] = ACTIONS(2225), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [516] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), + [530] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), [sym_identifier] = ACTIONS(2177), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2227), + [anon_sym_RBRACK] = ACTIONS(2257), [anon_sym_DOLLAR] = ACTIONS(2187), [anon_sym_u8] = ACTIONS(2177), [anon_sym_i8] = ACTIONS(2177), @@ -63239,7 +64435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(2177), [sym_crate] = ACTIONS(2177), @@ -63247,18 +64443,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [517] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), + [531] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), [sym_identifier] = ACTIONS(2177), [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2183), [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2227), [anon_sym_LBRACK] = ACTIONS(2185), [anon_sym_DOLLAR] = ACTIONS(2187), [anon_sym_u8] = ACTIONS(2177), @@ -63313,7 +64509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(2177), [sym_crate] = ACTIONS(2177), @@ -63321,19 +64517,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [518] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), + [532] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), [sym_identifier] = ACTIONS(2177), [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2227), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2183), [anon_sym_DOLLAR] = ACTIONS(2187), [anon_sym_u8] = ACTIONS(2177), [anon_sym_i8] = ACTIONS(2177), @@ -63387,7 +64583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(2177), [sym_crate] = ACTIONS(2177), @@ -63395,462 +64591,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [519] = { - [sym_delim_token_tree] = STATE(587), + [533] = { + [sym_delim_token_tree] = STATE(607), [sym__delim_tokens] = STATE(531), [sym__non_delim_token] = STATE(531), [sym__literal] = STATE(531), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), [aux_sym_delim_token_tree_repeat1] = STATE(531), - [sym_identifier] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2233), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_await] = 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_where] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [sym_mutable_specifier] = ACTIONS(2229), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_crate] = ACTIONS(2229), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [520] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(516), - [sym__non_delim_token] = STATE(516), - [sym__literal] = STATE(516), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(516), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2239), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [521] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(518), - [sym__non_delim_token] = STATE(518), - [sym__literal] = STATE(518), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(518), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2243), - [anon_sym_u8] = ACTIONS(2241), - [anon_sym_i8] = ACTIONS(2241), - [anon_sym_u16] = ACTIONS(2241), - [anon_sym_i16] = ACTIONS(2241), - [anon_sym_u32] = ACTIONS(2241), - [anon_sym_i32] = ACTIONS(2241), - [anon_sym_u64] = ACTIONS(2241), - [anon_sym_i64] = ACTIONS(2241), - [anon_sym_u128] = ACTIONS(2241), - [anon_sym_i128] = ACTIONS(2241), - [anon_sym_isize] = ACTIONS(2241), - [anon_sym_usize] = ACTIONS(2241), - [anon_sym_f32] = ACTIONS(2241), - [anon_sym_f64] = ACTIONS(2241), - [anon_sym_bool] = ACTIONS(2241), - [anon_sym_str] = ACTIONS(2241), - [anon_sym_char] = ACTIONS(2241), - [aux_sym__non_special_token_token1] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_default] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [anon_sym_fn] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_impl] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_loop] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_mod] = ACTIONS(2241), - [anon_sym_pub] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(2241), - [anon_sym_trait] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_union] = ACTIONS(2241), - [anon_sym_unsafe] = ACTIONS(2241), - [anon_sym_use] = ACTIONS(2241), - [anon_sym_where] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [sym_mutable_specifier] = ACTIONS(2241), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2241), - [sym_super] = ACTIONS(2241), - [sym_crate] = ACTIONS(2241), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [522] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(532), - [sym__non_delim_token] = STATE(532), - [sym__literal] = STATE(532), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(532), - [sym_identifier] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2247), - [anon_sym_u8] = ACTIONS(2245), - [anon_sym_i8] = ACTIONS(2245), - [anon_sym_u16] = ACTIONS(2245), - [anon_sym_i16] = ACTIONS(2245), - [anon_sym_u32] = ACTIONS(2245), - [anon_sym_i32] = ACTIONS(2245), - [anon_sym_u64] = ACTIONS(2245), - [anon_sym_i64] = ACTIONS(2245), - [anon_sym_u128] = ACTIONS(2245), - [anon_sym_i128] = ACTIONS(2245), - [anon_sym_isize] = ACTIONS(2245), - [anon_sym_usize] = ACTIONS(2245), - [anon_sym_f32] = ACTIONS(2245), - [anon_sym_f64] = ACTIONS(2245), - [anon_sym_bool] = ACTIONS(2245), - [anon_sym_str] = ACTIONS(2245), - [anon_sym_char] = ACTIONS(2245), - [aux_sym__non_special_token_token1] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_fn] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_impl] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_loop] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_mod] = ACTIONS(2245), - [anon_sym_pub] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_struct] = ACTIONS(2245), - [anon_sym_trait] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_union] = ACTIONS(2245), - [anon_sym_unsafe] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_where] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [sym_mutable_specifier] = ACTIONS(2245), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2245), - [sym_super] = ACTIONS(2245), - [sym_crate] = ACTIONS(2245), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [523] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(533), - [sym__non_delim_token] = STATE(533), - [sym__literal] = STATE(533), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(533), - [sym_identifier] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2231), - [anon_sym_DOLLAR] = ACTIONS(2251), - [anon_sym_u8] = ACTIONS(2249), - [anon_sym_i8] = ACTIONS(2249), - [anon_sym_u16] = ACTIONS(2249), - [anon_sym_i16] = ACTIONS(2249), - [anon_sym_u32] = ACTIONS(2249), - [anon_sym_i32] = ACTIONS(2249), - [anon_sym_u64] = ACTIONS(2249), - [anon_sym_i64] = ACTIONS(2249), - [anon_sym_u128] = ACTIONS(2249), - [anon_sym_i128] = ACTIONS(2249), - [anon_sym_isize] = ACTIONS(2249), - [anon_sym_usize] = ACTIONS(2249), - [anon_sym_f32] = ACTIONS(2249), - [anon_sym_f64] = ACTIONS(2249), - [anon_sym_bool] = ACTIONS(2249), - [anon_sym_str] = ACTIONS(2249), - [anon_sym_char] = ACTIONS(2249), - [aux_sym__non_special_token_token1] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_as] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_fn] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_impl] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_loop] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_mod] = ACTIONS(2249), - [anon_sym_pub] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_struct] = ACTIONS(2249), - [anon_sym_trait] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_union] = ACTIONS(2249), - [anon_sym_unsafe] = ACTIONS(2249), - [anon_sym_use] = ACTIONS(2249), - [anon_sym_where] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [sym_mutable_specifier] = ACTIONS(2249), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_crate] = ACTIONS(2249), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [524] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(535), - [sym__non_delim_token] = STATE(535), - [sym__literal] = STATE(535), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(535), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2257), - [anon_sym_u8] = ACTIONS(2253), - [anon_sym_i8] = ACTIONS(2253), - [anon_sym_u16] = ACTIONS(2253), - [anon_sym_i16] = ACTIONS(2253), - [anon_sym_u32] = ACTIONS(2253), - [anon_sym_i32] = ACTIONS(2253), - [anon_sym_u64] = ACTIONS(2253), - [anon_sym_i64] = ACTIONS(2253), - [anon_sym_u128] = ACTIONS(2253), - [anon_sym_i128] = ACTIONS(2253), - [anon_sym_isize] = ACTIONS(2253), - [anon_sym_usize] = ACTIONS(2253), - [anon_sym_f32] = ACTIONS(2253), - [anon_sym_f64] = ACTIONS(2253), - [anon_sym_bool] = ACTIONS(2253), - [anon_sym_str] = ACTIONS(2253), - [anon_sym_char] = ACTIONS(2253), - [aux_sym__non_special_token_token1] = ACTIONS(2253), - [anon_sym_SQUOTE] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2253), - [anon_sym_await] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_default] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_impl] = ACTIONS(2253), - [anon_sym_let] = ACTIONS(2253), - [anon_sym_loop] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_mod] = ACTIONS(2253), - [anon_sym_pub] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_static] = ACTIONS(2253), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_trait] = ACTIONS(2253), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_union] = ACTIONS(2253), - [anon_sym_unsafe] = ACTIONS(2253), - [anon_sym_use] = ACTIONS(2253), - [anon_sym_where] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [sym_mutable_specifier] = ACTIONS(2253), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2253), - [sym_super] = ACTIONS(2253), - [sym_crate] = ACTIONS(2253), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [525] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(509), - [sym__non_delim_token] = STATE(509), - [sym__literal] = STATE(509), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(509), [sym_identifier] = ACTIONS(2259), [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2229), [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2255), [anon_sym_LBRACK] = ACTIONS(2185), [anon_sym_DOLLAR] = ACTIONS(2261), [anon_sym_u8] = ACTIONS(2259), @@ -63905,7 +64657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2259), [sym_super] = ACTIONS(2259), [sym_crate] = ACTIONS(2259), @@ -63913,93 +64665,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [526] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_RBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_u8] = ACTIONS(2203), - [anon_sym_i8] = ACTIONS(2203), - [anon_sym_u16] = ACTIONS(2203), - [anon_sym_i16] = ACTIONS(2203), - [anon_sym_u32] = ACTIONS(2203), - [anon_sym_i32] = ACTIONS(2203), - [anon_sym_u64] = ACTIONS(2203), - [anon_sym_i64] = ACTIONS(2203), - [anon_sym_u128] = ACTIONS(2203), - [anon_sym_i128] = ACTIONS(2203), - [anon_sym_isize] = ACTIONS(2203), - [anon_sym_usize] = ACTIONS(2203), - [anon_sym_f32] = ACTIONS(2203), - [anon_sym_f64] = ACTIONS(2203), - [anon_sym_bool] = ACTIONS(2203), - [anon_sym_str] = ACTIONS(2203), - [anon_sym_char] = ACTIONS(2203), - [aux_sym__non_special_token_token1] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [anon_sym_fn] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_impl] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_loop] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_mod] = ACTIONS(2203), - [anon_sym_pub] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2203), - [anon_sym_trait] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(2203), - [anon_sym_use] = ACTIONS(2203), - [anon_sym_where] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [sym_mutable_specifier] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_crate] = ACTIONS(2203), - [sym_metavariable] = ACTIONS(2215), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [527] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(538), - [sym__non_delim_token] = STATE(538), - [sym__literal] = STATE(538), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(538), + [534] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(515), + [sym__non_delim_token] = STATE(515), + [sym__literal] = STATE(515), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(515), [sym_identifier] = ACTIONS(2263), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2255), + [anon_sym_RBRACK] = ACTIONS(2235), [anon_sym_DOLLAR] = ACTIONS(2265), [anon_sym_u8] = ACTIONS(2263), [anon_sym_i8] = ACTIONS(2263), @@ -64053,7 +64731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2263), [sym_super] = ACTIONS(2263), [sym_crate] = ACTIONS(2263), @@ -64061,19 +64739,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [528] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), + [535] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), [sym_identifier] = ACTIONS(2177), [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2195), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2267), [anon_sym_DOLLAR] = ACTIONS(2187), [anon_sym_u8] = ACTIONS(2177), [anon_sym_i8] = ACTIONS(2177), @@ -64127,7 +64805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(2177), [sym_crate] = ACTIONS(2177), @@ -64135,92 +64813,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [529] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(547), - [sym__non_delim_token] = STATE(547), - [sym__literal] = STATE(547), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(547), - [sym_identifier] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2271), - [anon_sym_DOLLAR] = ACTIONS(2273), - [anon_sym_u8] = ACTIONS(2269), - [anon_sym_i8] = ACTIONS(2269), - [anon_sym_u16] = ACTIONS(2269), - [anon_sym_i16] = ACTIONS(2269), - [anon_sym_u32] = ACTIONS(2269), - [anon_sym_i32] = ACTIONS(2269), - [anon_sym_u64] = ACTIONS(2269), - [anon_sym_i64] = ACTIONS(2269), - [anon_sym_u128] = ACTIONS(2269), - [anon_sym_i128] = ACTIONS(2269), - [anon_sym_isize] = ACTIONS(2269), - [anon_sym_usize] = ACTIONS(2269), - [anon_sym_f32] = ACTIONS(2269), - [anon_sym_f64] = ACTIONS(2269), - [anon_sym_bool] = ACTIONS(2269), - [anon_sym_str] = ACTIONS(2269), - [anon_sym_char] = ACTIONS(2269), - [aux_sym__non_special_token_token1] = ACTIONS(2269), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_as] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2269), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_default] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_impl] = ACTIONS(2269), - [anon_sym_let] = ACTIONS(2269), - [anon_sym_loop] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_mod] = ACTIONS(2269), - [anon_sym_pub] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_static] = ACTIONS(2269), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_trait] = ACTIONS(2269), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(2269), - [anon_sym_unsafe] = ACTIONS(2269), - [anon_sym_use] = ACTIONS(2269), - [anon_sym_where] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [sym_mutable_specifier] = ACTIONS(2269), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2269), - [sym_super] = ACTIONS(2269), - [sym_crate] = ACTIONS(2269), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [530] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), + [536] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), [sym_identifier] = ACTIONS(2177), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_RBRACE] = ACTIONS(2257), [anon_sym_LBRACK] = ACTIONS(2185), [anon_sym_DOLLAR] = ACTIONS(2187), [anon_sym_u8] = ACTIONS(2177), @@ -64275,7 +64879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(2177), [sym_crate] = ACTIONS(2177), @@ -64283,19 +64887,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [531] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), + [537] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), [sym_identifier] = ACTIONS(2177), [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2275), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2267), [anon_sym_DOLLAR] = ACTIONS(2187), [anon_sym_u8] = ACTIONS(2177), [anon_sym_i8] = ACTIONS(2177), @@ -64349,7 +64953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(2177), [sym_crate] = ACTIONS(2177), @@ -64357,93 +64961,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [532] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [538] = { + [sym_token_tree] = STATE(510), + [sym_token_repetition] = STATE(510), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_await] = 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_where] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [sym_mutable_specifier] = ACTIONS(2197), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_crate] = ACTIONS(2197), + [sym_metavariable] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [533] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), + [539] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), [sym_identifier] = ACTIONS(2177), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2267), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2275), [anon_sym_DOLLAR] = ACTIONS(2187), [anon_sym_u8] = ACTIONS(2177), [anon_sym_i8] = ACTIONS(2177), @@ -64497,7 +65101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(2177), [sym_crate] = ACTIONS(2177), @@ -64505,92 +65109,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [534] = { - [sym_token_tree] = STATE(526), - [sym_token_repetition] = STATE(526), - [sym__literal] = STATE(526), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(526), - [sym_identifier] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_RBRACK] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_u8] = ACTIONS(2277), - [anon_sym_i8] = ACTIONS(2277), - [anon_sym_u16] = ACTIONS(2277), - [anon_sym_i16] = ACTIONS(2277), - [anon_sym_u32] = ACTIONS(2277), - [anon_sym_i32] = ACTIONS(2277), - [anon_sym_u64] = ACTIONS(2277), - [anon_sym_i64] = ACTIONS(2277), - [anon_sym_u128] = ACTIONS(2277), - [anon_sym_i128] = ACTIONS(2277), - [anon_sym_isize] = ACTIONS(2277), - [anon_sym_usize] = ACTIONS(2277), - [anon_sym_f32] = ACTIONS(2277), - [anon_sym_f64] = ACTIONS(2277), - [anon_sym_bool] = ACTIONS(2277), - [anon_sym_str] = ACTIONS(2277), - [anon_sym_char] = ACTIONS(2277), - [aux_sym__non_special_token_token1] = ACTIONS(2277), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_as] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2277), - [anon_sym_await] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_default] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_fn] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_impl] = ACTIONS(2277), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_loop] = ACTIONS(2277), - [anon_sym_match] = ACTIONS(2277), - [anon_sym_mod] = ACTIONS(2277), - [anon_sym_pub] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_struct] = ACTIONS(2277), - [anon_sym_trait] = ACTIONS(2277), - [anon_sym_type] = ACTIONS(2277), - [anon_sym_union] = ACTIONS(2277), - [anon_sym_unsafe] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_where] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [sym_mutable_specifier] = ACTIONS(2277), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2277), - [sym_super] = ACTIONS(2277), - [sym_crate] = ACTIONS(2277), - [sym_metavariable] = ACTIONS(2279), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [535] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), + [540] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), [sym_identifier] = ACTIONS(2177), [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2183), [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2195), [anon_sym_LBRACK] = ACTIONS(2185), [anon_sym_DOLLAR] = ACTIONS(2187), [anon_sym_u8] = ACTIONS(2177), @@ -64645,7 +65175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(2177), [sym_crate] = ACTIONS(2177), @@ -64653,167 +65183,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [536] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_RBRACK] = ACTIONS(2281), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_u8] = ACTIONS(2203), - [anon_sym_i8] = ACTIONS(2203), - [anon_sym_u16] = ACTIONS(2203), - [anon_sym_i16] = ACTIONS(2203), - [anon_sym_u32] = ACTIONS(2203), - [anon_sym_i32] = ACTIONS(2203), - [anon_sym_u64] = ACTIONS(2203), - [anon_sym_i64] = ACTIONS(2203), - [anon_sym_u128] = ACTIONS(2203), - [anon_sym_i128] = ACTIONS(2203), - [anon_sym_isize] = ACTIONS(2203), - [anon_sym_usize] = ACTIONS(2203), - [anon_sym_f32] = ACTIONS(2203), - [anon_sym_f64] = ACTIONS(2203), - [anon_sym_bool] = ACTIONS(2203), - [anon_sym_str] = ACTIONS(2203), - [anon_sym_char] = ACTIONS(2203), - [aux_sym__non_special_token_token1] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [anon_sym_fn] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_impl] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_loop] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_mod] = ACTIONS(2203), - [anon_sym_pub] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2203), - [anon_sym_trait] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(2203), - [anon_sym_use] = ACTIONS(2203), - [anon_sym_where] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [sym_mutable_specifier] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_crate] = ACTIONS(2203), - [sym_metavariable] = ACTIONS(2215), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [537] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_u8] = ACTIONS(2203), - [anon_sym_i8] = ACTIONS(2203), - [anon_sym_u16] = ACTIONS(2203), - [anon_sym_i16] = ACTIONS(2203), - [anon_sym_u32] = ACTIONS(2203), - [anon_sym_i32] = ACTIONS(2203), - [anon_sym_u64] = ACTIONS(2203), - [anon_sym_i64] = ACTIONS(2203), - [anon_sym_u128] = ACTIONS(2203), - [anon_sym_i128] = ACTIONS(2203), - [anon_sym_isize] = ACTIONS(2203), - [anon_sym_usize] = ACTIONS(2203), - [anon_sym_f32] = ACTIONS(2203), - [anon_sym_f64] = ACTIONS(2203), - [anon_sym_bool] = ACTIONS(2203), - [anon_sym_str] = ACTIONS(2203), - [anon_sym_char] = ACTIONS(2203), - [aux_sym__non_special_token_token1] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [anon_sym_fn] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_impl] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_loop] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_mod] = ACTIONS(2203), - [anon_sym_pub] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2203), - [anon_sym_trait] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(2203), - [anon_sym_use] = ACTIONS(2203), - [anon_sym_where] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [sym_mutable_specifier] = ACTIONS(2203), + [541] = { + [sym_token_tree] = STATE(510), + [sym_token_repetition] = STATE(510), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_RBRACK] = ACTIONS(2203), + [anon_sym_DOLLAR] = ACTIONS(2207), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_await] = 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_where] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [sym_mutable_specifier] = ACTIONS(2197), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_crate] = ACTIONS(2203), - [sym_metavariable] = ACTIONS(2215), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_crate] = ACTIONS(2197), + [sym_metavariable] = ACTIONS(2209), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [538] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), + [542] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), [sym_identifier] = ACTIONS(2177), [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2267), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2183), [anon_sym_DOLLAR] = ACTIONS(2187), [anon_sym_u8] = ACTIONS(2177), [anon_sym_i8] = ACTIONS(2177), @@ -64867,7 +65323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(2177), [sym_crate] = ACTIONS(2177), @@ -64875,241 +65331,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [539] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), - [sym_identifier] = ACTIONS(2177), + [543] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(532), + [sym__non_delim_token] = STATE(532), + [sym__literal] = STATE(532), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(532), + [sym_identifier] = ACTIONS(2271), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2267), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), + [anon_sym_RBRACK] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2273), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2271), + [anon_sym_as] = ACTIONS(2271), + [anon_sym_async] = ACTIONS(2271), + [anon_sym_await] = 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_where] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2271), + [sym_mutable_specifier] = ACTIONS(2271), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2271), + [sym_super] = ACTIONS(2271), + [sym_crate] = ACTIONS(2271), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [540] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [544] = { + [sym_token_tree] = STATE(538), + [sym_token_repetition] = STATE(538), + [sym__literal] = STATE(538), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2275), + [anon_sym_as] = ACTIONS(2275), + [anon_sym_async] = ACTIONS(2275), + [anon_sym_await] = 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_where] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2275), + [sym_mutable_specifier] = ACTIONS(2275), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2275), + [sym_super] = ACTIONS(2275), + [sym_crate] = ACTIONS(2275), + [sym_metavariable] = ACTIONS(2279), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [541] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(528), - [sym__non_delim_token] = STATE(528), - [sym__literal] = STATE(528), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(528), - [sym_identifier] = ACTIONS(2283), + [545] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(542), + [sym__non_delim_token] = STATE(542), + [sym__literal] = STATE(542), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(542), + [sym_identifier] = ACTIONS(2281), [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2283), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2197), [anon_sym_DOLLAR] = ACTIONS(2285), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2283), - [anon_sym_SQUOTE] = ACTIONS(2283), - [anon_sym_as] = ACTIONS(2283), - [anon_sym_async] = ACTIONS(2283), - [anon_sym_await] = 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_where] = ACTIONS(2283), - [anon_sym_while] = ACTIONS(2283), - [sym_mutable_specifier] = ACTIONS(2283), + [anon_sym_u8] = ACTIONS(2281), + [anon_sym_i8] = ACTIONS(2281), + [anon_sym_u16] = ACTIONS(2281), + [anon_sym_i16] = ACTIONS(2281), + [anon_sym_u32] = ACTIONS(2281), + [anon_sym_i32] = ACTIONS(2281), + [anon_sym_u64] = ACTIONS(2281), + [anon_sym_i64] = ACTIONS(2281), + [anon_sym_u128] = ACTIONS(2281), + [anon_sym_i128] = ACTIONS(2281), + [anon_sym_isize] = ACTIONS(2281), + [anon_sym_usize] = ACTIONS(2281), + [anon_sym_f32] = ACTIONS(2281), + [anon_sym_f64] = ACTIONS(2281), + [anon_sym_bool] = ACTIONS(2281), + [anon_sym_str] = ACTIONS(2281), + [anon_sym_char] = ACTIONS(2281), + [aux_sym__non_special_token_token1] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_fn] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_impl] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_mod] = ACTIONS(2281), + [anon_sym_pub] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_struct] = ACTIONS(2281), + [anon_sym_trait] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), + [anon_sym_unsafe] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_where] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [sym_mutable_specifier] = ACTIONS(2281), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2283), - [sym_super] = ACTIONS(2283), - [sym_crate] = ACTIONS(2283), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_crate] = ACTIONS(2281), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [542] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(530), - [sym__non_delim_token] = STATE(530), - [sym__literal] = STATE(530), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(530), + [546] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(537), + [sym__non_delim_token] = STATE(537), + [sym__literal] = STATE(537), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(537), [sym_identifier] = ACTIONS(2287), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2271), [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2283), [anon_sym_DOLLAR] = ACTIONS(2289), [anon_sym_u8] = ACTIONS(2287), [anon_sym_i8] = ACTIONS(2287), @@ -65163,7 +65619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2287), [sym_super] = ACTIONS(2287), [sym_crate] = ACTIONS(2287), @@ -65171,18 +65627,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [543] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(511), - [sym__non_delim_token] = STATE(511), - [sym__literal] = STATE(511), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(511), + [547] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(539), + [sym__non_delim_token] = STATE(539), + [sym__literal] = STATE(539), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(539), [sym_identifier] = ACTIONS(2291), [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2271), [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2283), [anon_sym_LBRACK] = ACTIONS(2185), [anon_sym_DOLLAR] = ACTIONS(2293), [anon_sym_u8] = ACTIONS(2291), @@ -65237,7 +65693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2291), [sym_super] = ACTIONS(2291), [sym_crate] = ACTIONS(2291), @@ -65245,93 +65701,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [544] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_RPAREN] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_u8] = ACTIONS(2203), - [anon_sym_i8] = ACTIONS(2203), - [anon_sym_u16] = ACTIONS(2203), - [anon_sym_i16] = ACTIONS(2203), - [anon_sym_u32] = ACTIONS(2203), - [anon_sym_i32] = ACTIONS(2203), - [anon_sym_u64] = ACTIONS(2203), - [anon_sym_i64] = ACTIONS(2203), - [anon_sym_u128] = ACTIONS(2203), - [anon_sym_i128] = ACTIONS(2203), - [anon_sym_isize] = ACTIONS(2203), - [anon_sym_usize] = ACTIONS(2203), - [anon_sym_f32] = ACTIONS(2203), - [anon_sym_f64] = ACTIONS(2203), - [anon_sym_bool] = ACTIONS(2203), - [anon_sym_str] = ACTIONS(2203), - [anon_sym_char] = ACTIONS(2203), - [aux_sym__non_special_token_token1] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [anon_sym_fn] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_impl] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_loop] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_mod] = ACTIONS(2203), - [anon_sym_pub] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2203), - [anon_sym_trait] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(2203), - [anon_sym_use] = ACTIONS(2203), - [anon_sym_where] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [sym_mutable_specifier] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_crate] = ACTIONS(2203), - [sym_metavariable] = ACTIONS(2215), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [545] = { - [sym_token_tree] = STATE(536), - [sym_token_repetition] = STATE(536), - [sym__literal] = STATE(536), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(536), + [548] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(554), + [sym__non_delim_token] = STATE(554), + [sym__literal] = STATE(554), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(554), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_RBRACK] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2299), [anon_sym_u8] = ACTIONS(2295), [anon_sym_i8] = ACTIONS(2295), [anon_sym_u16] = ACTIONS(2295), @@ -65379,32 +65762,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2295), [anon_sym_while] = ACTIONS(2295), [sym_mutable_specifier] = ACTIONS(2295), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2295), [sym_super] = ACTIONS(2295), [sym_crate] = ACTIONS(2295), - [sym_metavariable] = ACTIONS(2299), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [546] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(517), - [sym__non_delim_token] = STATE(517), - [sym__literal] = STATE(517), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(517), + [549] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(536), + [sym__non_delim_token] = STATE(536), + [sym__literal] = STATE(536), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(536), [sym_identifier] = ACTIONS(2301), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2297), [anon_sym_LBRACK] = ACTIONS(2185), [anon_sym_DOLLAR] = ACTIONS(2303), [anon_sym_u8] = ACTIONS(2301), @@ -65459,7 +65841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2301), [sym_super] = ACTIONS(2301), [sym_crate] = ACTIONS(2301), @@ -65467,19 +65849,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [547] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(503), + [550] = { + [sym_token_tree] = STATE(510), + [sym_token_repetition] = STATE(510), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_RBRACK] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2207), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_await] = 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_where] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [sym_mutable_specifier] = ACTIONS(2197), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_crate] = ACTIONS(2197), + [sym_metavariable] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [551] = { + [sym_token_tree] = STATE(510), + [sym_token_repetition] = STATE(510), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_await] = 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_where] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [sym_mutable_specifier] = ACTIONS(2197), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_crate] = ACTIONS(2197), + [sym_metavariable] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [552] = { + [sym_token_tree] = STATE(510), + [sym_token_repetition] = STATE(510), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(574), + [sym_boolean_literal] = STATE(574), + [aux_sym_token_tree_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_await] = 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_where] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [sym_mutable_specifier] = ACTIONS(2197), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_crate] = ACTIONS(2197), + [sym_metavariable] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [553] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(530), + [sym__non_delim_token] = STATE(530), + [sym__literal] = STATE(530), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(530), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2297), + [anon_sym_DOLLAR] = ACTIONS(2309), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_as] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_await] = 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_where] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [sym_mutable_specifier] = ACTIONS(2307), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_crate] = ACTIONS(2307), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [554] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(506), [sym_identifier] = ACTIONS(2177), [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2257), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2201), [anon_sym_DOLLAR] = ACTIONS(2187), [anon_sym_u8] = ACTIONS(2177), [anon_sym_i8] = ACTIONS(2177), @@ -65533,7 +66211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(2177), [sym_crate] = ACTIONS(2177), @@ -65541,93 +66219,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [548] = { - [sym_token_tree] = STATE(550), - [sym_token_repetition] = STATE(550), - [sym__literal] = STATE(550), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(550), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_RPAREN] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_u8] = ACTIONS(2305), - [anon_sym_i8] = ACTIONS(2305), - [anon_sym_u16] = ACTIONS(2305), - [anon_sym_i16] = ACTIONS(2305), - [anon_sym_u32] = ACTIONS(2305), - [anon_sym_i32] = ACTIONS(2305), - [anon_sym_u64] = ACTIONS(2305), - [anon_sym_i64] = ACTIONS(2305), - [anon_sym_u128] = ACTIONS(2305), - [anon_sym_i128] = ACTIONS(2305), - [anon_sym_isize] = ACTIONS(2305), - [anon_sym_usize] = ACTIONS(2305), - [anon_sym_f32] = ACTIONS(2305), - [anon_sym_f64] = ACTIONS(2305), - [anon_sym_bool] = ACTIONS(2305), - [anon_sym_str] = ACTIONS(2305), - [anon_sym_char] = ACTIONS(2305), - [aux_sym__non_special_token_token1] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), - [anon_sym_fn] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_impl] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_loop] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_mod] = ACTIONS(2305), - [anon_sym_pub] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_static] = ACTIONS(2305), - [anon_sym_struct] = ACTIONS(2305), - [anon_sym_trait] = ACTIONS(2305), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_union] = ACTIONS(2305), - [anon_sym_unsafe] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_where] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [sym_mutable_specifier] = ACTIONS(2305), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2305), - [sym_super] = ACTIONS(2305), - [sym_crate] = ACTIONS(2305), - [sym_metavariable] = ACTIONS(2309), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [549] = { - [sym_token_tree] = STATE(537), - [sym_token_repetition] = STATE(537), - [sym__literal] = STATE(537), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(537), + [555] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(529), + [sym__non_delim_token] = STATE(529), + [sym__literal] = STATE(529), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(529), [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2315), [anon_sym_u8] = ACTIONS(2311), [anon_sym_i8] = ACTIONS(2311), [anon_sym_u16] = ACTIONS(2311), @@ -65675,106 +66280,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2311), [anon_sym_while] = ACTIONS(2311), [sym_mutable_specifier] = ACTIONS(2311), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2311), [sym_super] = ACTIONS(2311), [sym_crate] = ACTIONS(2311), - [sym_metavariable] = ACTIONS(2313), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [550] = { - [sym_token_tree] = STATE(490), - [sym_token_repetition] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_RPAREN] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_u8] = ACTIONS(2203), - [anon_sym_i8] = ACTIONS(2203), - [anon_sym_u16] = ACTIONS(2203), - [anon_sym_i16] = ACTIONS(2203), - [anon_sym_u32] = ACTIONS(2203), - [anon_sym_i32] = ACTIONS(2203), - [anon_sym_u64] = ACTIONS(2203), - [anon_sym_i64] = ACTIONS(2203), - [anon_sym_u128] = ACTIONS(2203), - [anon_sym_i128] = ACTIONS(2203), - [anon_sym_isize] = ACTIONS(2203), - [anon_sym_usize] = ACTIONS(2203), - [anon_sym_f32] = ACTIONS(2203), - [anon_sym_f64] = ACTIONS(2203), - [anon_sym_bool] = ACTIONS(2203), - [anon_sym_str] = ACTIONS(2203), - [anon_sym_char] = ACTIONS(2203), - [aux_sym__non_special_token_token1] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [anon_sym_fn] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_impl] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_loop] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_mod] = ACTIONS(2203), - [anon_sym_pub] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2203), - [anon_sym_trait] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(2203), - [anon_sym_use] = ACTIONS(2203), - [anon_sym_where] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [sym_mutable_specifier] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_crate] = ACTIONS(2203), - [sym_metavariable] = ACTIONS(2215), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [551] = { - [sym_delim_token_tree] = STATE(587), - [sym__delim_tokens] = STATE(540), - [sym__non_delim_token] = STATE(540), - [sym__literal] = STATE(540), - [sym_string_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [aux_sym_delim_token_tree_repeat1] = STATE(540), + [556] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(521), + [sym__non_delim_token] = STATE(521), + [sym__literal] = STATE(521), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(521), [sym_identifier] = ACTIONS(2317), [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2197), [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2313), [anon_sym_LBRACK] = ACTIONS(2185), [anon_sym_DOLLAR] = ACTIONS(2319), [anon_sym_u8] = ACTIONS(2317), @@ -65829,7 +66359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2317), [sym_super] = ACTIONS(2317), [sym_crate] = ACTIONS(2317), @@ -65837,19 +66367,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [552] = { - [sym_token_tree] = STATE(544), - [sym_token_repetition] = STATE(544), - [sym__literal] = STATE(544), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(544), + [557] = { + [sym_delim_token_tree] = STATE(607), + [sym__delim_tokens] = STATE(525), + [sym__non_delim_token] = STATE(525), + [sym__literal] = STATE(525), + [sym_string_literal] = STATE(608), + [sym_boolean_literal] = STATE(608), + [aux_sym_delim_token_tree_repeat1] = STATE(525), [sym_identifier] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_RPAREN] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2323), [anon_sym_u8] = ACTIONS(2321), [anon_sym_i8] = ACTIONS(2321), [anon_sym_u16] = ACTIONS(2321), @@ -65897,149 +66428,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2321), [anon_sym_while] = ACTIONS(2321), [sym_mutable_specifier] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1099), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2321), [sym_super] = ACTIONS(2321), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(2323), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [553] = { - [sym_attribute_item] = STATE(613), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2477), - [sym_scoped_identifier] = STATE(1584), - [sym_scoped_type_identifier] = STATE(1941), - [sym_match_pattern] = STATE(2477), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1956), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_enum_variant_list_repeat1] = STATE(613), - [sym_identifier] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [554] = { - [sym_attribute_item] = STATE(613), + [558] = { + [sym_attribute_item] = STATE(644), [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2477), - [sym_scoped_identifier] = STATE(1584), - [sym_scoped_type_identifier] = STATE(1941), - [sym_match_pattern] = STATE(2478), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1956), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [aux_sym_enum_variant_list_repeat1] = STATE(613), - [sym_identifier] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), + [sym_macro_invocation] = STATE(2450), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1919), + [sym_match_pattern] = STATE(2490), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2123), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_enum_variant_list_repeat1] = STATE(644), + [sym_identifier] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1144), + [anon_sym_union] = ACTIONS(1144), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -66049,40 +66506,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [555] = { - [sym_attribute_item] = STATE(563), + [559] = { + [sym_attribute_item] = STATE(568), [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(689), - [sym__type] = STATE(1811), - [sym_bracketed_type] = STATE(2395), + [sym_extern_modifier] = STATE(1594), + [sym_visibility_modifier] = STATE(688), + [sym__type] = STATE(1822), + [sym_bracketed_type] = STATE(2386), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_enum_variant_list_repeat1] = STATE(563), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_enum_variant_list_repeat1] = STATE(568), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_RPAREN] = ACTIONS(2327), @@ -66130,32 +66587,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [556] = { - [sym_attribute_item] = STATE(562), + [560] = { + [sym_attribute_item] = STATE(644), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_macro_invocation] = STATE(2450), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1919), + [sym_match_pattern] = STATE(2450), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2123), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [aux_sym_enum_variant_list_repeat1] = STATE(644), + [sym_identifier] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1144), + [anon_sym_union] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1146), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1148), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [561] = { + [sym_attribute_item] = STATE(567), [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(687), - [sym__type] = STATE(1991), - [sym_bracketed_type] = STATE(2395), + [sym_extern_modifier] = STATE(1594), + [sym_visibility_modifier] = STATE(670), + [sym__type] = STATE(1937), + [sym_bracketed_type] = STATE(2386), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_enum_variant_list_repeat1] = STATE(562), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_RPAREN] = ACTIONS(2339), @@ -66202,32 +66732,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [557] = { - [sym_attribute_item] = STATE(562), + [562] = { + [sym_attribute_item] = STATE(567), [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(687), - [sym__type] = STATE(1991), - [sym_bracketed_type] = STATE(2395), + [sym_extern_modifier] = STATE(1594), + [sym_visibility_modifier] = STATE(670), + [sym__type] = STATE(1937), + [sym_bracketed_type] = STATE(2386), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_enum_variant_list_repeat1] = STATE(562), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_RPAREN] = ACTIONS(2341), @@ -66274,32 +66804,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [558] = { - [sym_attribute_item] = STATE(562), + [563] = { + [sym_attribute_item] = STATE(567), [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(687), - [sym__type] = STATE(1991), - [sym_bracketed_type] = STATE(2395), + [sym_extern_modifier] = STATE(1594), + [sym_visibility_modifier] = STATE(670), + [sym__type] = STATE(1937), + [sym_bracketed_type] = STATE(2386), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_enum_variant_list_repeat1] = STATE(562), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_RPAREN] = ACTIONS(2343), @@ -66346,32 +66876,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [559] = { - [sym_attribute_item] = STATE(562), + [564] = { + [sym_attribute_item] = STATE(567), [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(687), - [sym__type] = STATE(1991), - [sym_bracketed_type] = STATE(2395), + [sym_extern_modifier] = STATE(1594), + [sym_visibility_modifier] = STATE(670), + [sym__type] = STATE(1937), + [sym_bracketed_type] = STATE(2386), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_enum_variant_list_repeat1] = STATE(562), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_RPAREN] = ACTIONS(2345), @@ -66418,32 +66948,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [560] = { - [sym_attribute_item] = STATE(562), + [565] = { + [sym_attribute_item] = STATE(567), [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(687), - [sym__type] = STATE(1991), - [sym_bracketed_type] = STATE(2395), + [sym_extern_modifier] = STATE(1594), + [sym_visibility_modifier] = STATE(670), + [sym__type] = STATE(1937), + [sym_bracketed_type] = STATE(2386), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_enum_variant_list_repeat1] = STATE(562), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_RPAREN] = ACTIONS(2347), @@ -66490,32 +67020,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [561] = { - [sym_attribute_item] = STATE(562), + [566] = { + [sym_attribute_item] = STATE(567), [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(687), - [sym__type] = STATE(1991), - [sym_bracketed_type] = STATE(2395), + [sym_extern_modifier] = STATE(1594), + [sym_visibility_modifier] = STATE(670), + [sym__type] = STATE(1937), + [sym_bracketed_type] = STATE(2386), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_enum_variant_list_repeat1] = STATE(562), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_RPAREN] = ACTIONS(2349), @@ -66562,103 +67092,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [562] = { - [sym_attribute_item] = STATE(1138), - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(677), - [sym__type] = STATE(1911), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_enum_variant_list_repeat1] = STATE(1138), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [563] = { - [sym_attribute_item] = STATE(1138), + [567] = { + [sym_attribute_item] = STATE(1147), [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(678), - [sym__type] = STATE(1851), - [sym_bracketed_type] = STATE(2395), + [sym_extern_modifier] = STATE(1594), + [sym_visibility_modifier] = STATE(750), + [sym__type] = STATE(2025), + [sym_bracketed_type] = STATE(2386), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_enum_variant_list_repeat1] = STATE(1138), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_enum_variant_list_repeat1] = STATE(1147), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(902), @@ -66704,32 +67163,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [564] = { - [sym_attribute_item] = STATE(562), + [568] = { + [sym_attribute_item] = STATE(1147), [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym_visibility_modifier] = STATE(687), - [sym__type] = STATE(1991), - [sym_bracketed_type] = STATE(2395), + [sym_extern_modifier] = STATE(1594), + [sym_visibility_modifier] = STATE(762), + [sym__type] = STATE(1814), + [sym_bracketed_type] = STATE(2386), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_enum_variant_list_repeat1] = STATE(562), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_enum_variant_list_repeat1] = STATE(1147), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(902), @@ -66775,7 +67234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [565] = { + [569] = { [sym_identifier] = ACTIONS(2351), [anon_sym_LPAREN] = ACTIONS(2353), [anon_sym_RPAREN] = ACTIONS(2353), @@ -66837,7 +67296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2353), [anon_sym_true] = ACTIONS(2351), [anon_sym_false] = ACTIONS(2351), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2351), [sym_super] = ACTIONS(2351), [sym_crate] = ACTIONS(2351), @@ -66846,77 +67305,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2353), [sym_block_comment] = ACTIONS(3), }, - [566] = { + [570] = { + [sym_attribute_item] = STATE(567), + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1594), + [sym_visibility_modifier] = STATE(670), + [sym__type] = STATE(1937), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(688), + [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_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(920), + [sym_block_comment] = ACTIONS(3), + }, + [571] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1832), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_RBRACK] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2357), - [anon_sym_u8] = ACTIONS(2357), - [anon_sym_i8] = ACTIONS(2357), - [anon_sym_u16] = ACTIONS(2357), - [anon_sym_i16] = ACTIONS(2357), - [anon_sym_u32] = ACTIONS(2357), - [anon_sym_i32] = ACTIONS(2357), - [anon_sym_u64] = ACTIONS(2357), - [anon_sym_i64] = ACTIONS(2357), - [anon_sym_u128] = ACTIONS(2357), - [anon_sym_i128] = ACTIONS(2357), - [anon_sym_isize] = ACTIONS(2357), - [anon_sym_usize] = ACTIONS(2357), - [anon_sym_f32] = ACTIONS(2357), - [anon_sym_f64] = ACTIONS(2357), - [anon_sym_bool] = ACTIONS(2357), - [anon_sym_str] = ACTIONS(2357), - [anon_sym_char] = ACTIONS(2357), - [aux_sym__non_special_token_token1] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_as] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2357), - [anon_sym_await] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_default] = ACTIONS(2357), - [anon_sym_enum] = ACTIONS(2357), - [anon_sym_fn] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_impl] = ACTIONS(2357), - [anon_sym_let] = ACTIONS(2357), - [anon_sym_loop] = ACTIONS(2357), - [anon_sym_match] = ACTIONS(2357), - [anon_sym_mod] = ACTIONS(2357), - [anon_sym_pub] = ACTIONS(2357), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_static] = ACTIONS(2357), - [anon_sym_struct] = ACTIONS(2357), - [anon_sym_trait] = ACTIONS(2357), - [anon_sym_type] = ACTIONS(2357), - [anon_sym_union] = ACTIONS(2357), - [anon_sym_unsafe] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2357), - [anon_sym_where] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [sym_mutable_specifier] = ACTIONS(2357), - [sym_integer_literal] = ACTIONS(2359), - [aux_sym_string_literal_token1] = ACTIONS(2359), - [sym_char_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2357), - [anon_sym_false] = ACTIONS(2357), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2357), - [sym_super] = ACTIONS(2357), - [sym_crate] = ACTIONS(2357), - [sym_metavariable] = ACTIONS(2359), - [sym_raw_string_literal] = ACTIONS(2359), - [sym_float_literal] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_RBRACK] = ACTIONS(830), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), + [anon_sym_COMMA] = ACTIONS(838), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1146), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1148), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [567] = { + [572] = { [sym_identifier] = ACTIONS(2361), [anon_sym_LPAREN] = ACTIONS(2363), [anon_sym_RPAREN] = ACTIONS(2363), @@ -66977,7 +67507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2363), [anon_sym_true] = ACTIONS(2361), [anon_sym_false] = ACTIONS(2361), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2361), [sym_super] = ACTIONS(2361), [sym_crate] = ACTIONS(2361), @@ -66986,7 +67516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2363), [sym_block_comment] = ACTIONS(3), }, - [568] = { + [573] = { [sym_identifier] = ACTIONS(2365), [anon_sym_LPAREN] = ACTIONS(2367), [anon_sym_RPAREN] = ACTIONS(2367), @@ -67047,7 +67577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2367), [anon_sym_true] = ACTIONS(2365), [anon_sym_false] = ACTIONS(2365), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2365), [sym_super] = ACTIONS(2365), [sym_crate] = ACTIONS(2365), @@ -67056,7 +67586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2367), [sym_block_comment] = ACTIONS(3), }, - [569] = { + [574] = { [sym_identifier] = ACTIONS(2369), [anon_sym_LPAREN] = ACTIONS(2371), [anon_sym_RPAREN] = ACTIONS(2371), @@ -67117,7 +67647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2371), [anon_sym_true] = ACTIONS(2369), [anon_sym_false] = ACTIONS(2369), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2369), [sym_super] = ACTIONS(2369), [sym_crate] = ACTIONS(2369), @@ -67126,129 +67656,829 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2371), [sym_block_comment] = ACTIONS(3), }, - [570] = { - [sym_parameter] = STATE(1990), + [575] = { + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_RPAREN] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_RBRACK] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_u8] = ACTIONS(2373), + [anon_sym_i8] = ACTIONS(2373), + [anon_sym_u16] = ACTIONS(2373), + [anon_sym_i16] = ACTIONS(2373), + [anon_sym_u32] = ACTIONS(2373), + [anon_sym_i32] = ACTIONS(2373), + [anon_sym_u64] = ACTIONS(2373), + [anon_sym_i64] = ACTIONS(2373), + [anon_sym_u128] = ACTIONS(2373), + [anon_sym_i128] = ACTIONS(2373), + [anon_sym_isize] = ACTIONS(2373), + [anon_sym_usize] = ACTIONS(2373), + [anon_sym_f32] = ACTIONS(2373), + [anon_sym_f64] = ACTIONS(2373), + [anon_sym_bool] = ACTIONS(2373), + [anon_sym_str] = ACTIONS(2373), + [anon_sym_char] = ACTIONS(2373), + [aux_sym__non_special_token_token1] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_async] = ACTIONS(2373), + [anon_sym_await] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_impl] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_loop] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_mod] = ACTIONS(2373), + [anon_sym_pub] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_trait] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_where] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [sym_mutable_specifier] = ACTIONS(2373), + [sym_integer_literal] = ACTIONS(2375), + [aux_sym_string_literal_token1] = ACTIONS(2375), + [sym_char_literal] = ACTIONS(2375), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2373), + [sym_super] = ACTIONS(2373), + [sym_crate] = ACTIONS(2373), + [sym_metavariable] = ACTIONS(2375), + [sym_raw_string_literal] = ACTIONS(2375), + [sym_float_literal] = ACTIONS(2375), + [sym_block_comment] = ACTIONS(3), + }, + [576] = { + [sym_identifier] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_RPAREN] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_RBRACK] = ACTIONS(2379), + [anon_sym_DOLLAR] = ACTIONS(2377), + [anon_sym_u8] = ACTIONS(2377), + [anon_sym_i8] = ACTIONS(2377), + [anon_sym_u16] = ACTIONS(2377), + [anon_sym_i16] = ACTIONS(2377), + [anon_sym_u32] = ACTIONS(2377), + [anon_sym_i32] = ACTIONS(2377), + [anon_sym_u64] = ACTIONS(2377), + [anon_sym_i64] = ACTIONS(2377), + [anon_sym_u128] = ACTIONS(2377), + [anon_sym_i128] = ACTIONS(2377), + [anon_sym_isize] = ACTIONS(2377), + [anon_sym_usize] = ACTIONS(2377), + [anon_sym_f32] = ACTIONS(2377), + [anon_sym_f64] = ACTIONS(2377), + [anon_sym_bool] = ACTIONS(2377), + [anon_sym_str] = ACTIONS(2377), + [anon_sym_char] = ACTIONS(2377), + [aux_sym__non_special_token_token1] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2377), + [anon_sym_as] = ACTIONS(2377), + [anon_sym_async] = ACTIONS(2377), + [anon_sym_await] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_default] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_fn] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_impl] = ACTIONS(2377), + [anon_sym_let] = ACTIONS(2377), + [anon_sym_loop] = ACTIONS(2377), + [anon_sym_match] = ACTIONS(2377), + [anon_sym_mod] = ACTIONS(2377), + [anon_sym_pub] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_trait] = ACTIONS(2377), + [anon_sym_type] = ACTIONS(2377), + [anon_sym_union] = ACTIONS(2377), + [anon_sym_unsafe] = ACTIONS(2377), + [anon_sym_use] = ACTIONS(2377), + [anon_sym_where] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [sym_mutable_specifier] = ACTIONS(2377), + [sym_integer_literal] = ACTIONS(2379), + [aux_sym_string_literal_token1] = ACTIONS(2379), + [sym_char_literal] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2377), + [sym_super] = ACTIONS(2377), + [sym_crate] = ACTIONS(2377), + [sym_metavariable] = ACTIONS(2379), + [sym_raw_string_literal] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2379), + [sym_block_comment] = ACTIONS(3), + }, + [577] = { + [sym_identifier] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_RPAREN] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_RBRACK] = ACTIONS(2383), + [anon_sym_DOLLAR] = ACTIONS(2381), + [anon_sym_u8] = ACTIONS(2381), + [anon_sym_i8] = ACTIONS(2381), + [anon_sym_u16] = ACTIONS(2381), + [anon_sym_i16] = ACTIONS(2381), + [anon_sym_u32] = ACTIONS(2381), + [anon_sym_i32] = ACTIONS(2381), + [anon_sym_u64] = ACTIONS(2381), + [anon_sym_i64] = ACTIONS(2381), + [anon_sym_u128] = ACTIONS(2381), + [anon_sym_i128] = ACTIONS(2381), + [anon_sym_isize] = ACTIONS(2381), + [anon_sym_usize] = ACTIONS(2381), + [anon_sym_f32] = ACTIONS(2381), + [anon_sym_f64] = ACTIONS(2381), + [anon_sym_bool] = ACTIONS(2381), + [anon_sym_str] = ACTIONS(2381), + [anon_sym_char] = ACTIONS(2381), + [aux_sym__non_special_token_token1] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2381), + [anon_sym_as] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_await] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_impl] = ACTIONS(2381), + [anon_sym_let] = ACTIONS(2381), + [anon_sym_loop] = ACTIONS(2381), + [anon_sym_match] = ACTIONS(2381), + [anon_sym_mod] = ACTIONS(2381), + [anon_sym_pub] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2381), + [anon_sym_trait] = ACTIONS(2381), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_union] = ACTIONS(2381), + [anon_sym_unsafe] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_where] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [sym_mutable_specifier] = ACTIONS(2381), + [sym_integer_literal] = ACTIONS(2383), + [aux_sym_string_literal_token1] = ACTIONS(2383), + [sym_char_literal] = ACTIONS(2383), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2381), + [sym_super] = ACTIONS(2381), + [sym_crate] = ACTIONS(2381), + [sym_metavariable] = ACTIONS(2383), + [sym_raw_string_literal] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2383), + [sym_block_comment] = ACTIONS(3), + }, + [578] = { + [sym_identifier] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_RPAREN] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_LBRACK] = ACTIONS(2387), + [anon_sym_RBRACK] = ACTIONS(2387), + [anon_sym_DOLLAR] = ACTIONS(2385), + [anon_sym_u8] = ACTIONS(2385), + [anon_sym_i8] = ACTIONS(2385), + [anon_sym_u16] = ACTIONS(2385), + [anon_sym_i16] = ACTIONS(2385), + [anon_sym_u32] = ACTIONS(2385), + [anon_sym_i32] = ACTIONS(2385), + [anon_sym_u64] = ACTIONS(2385), + [anon_sym_i64] = ACTIONS(2385), + [anon_sym_u128] = ACTIONS(2385), + [anon_sym_i128] = ACTIONS(2385), + [anon_sym_isize] = ACTIONS(2385), + [anon_sym_usize] = ACTIONS(2385), + [anon_sym_f32] = ACTIONS(2385), + [anon_sym_f64] = ACTIONS(2385), + [anon_sym_bool] = ACTIONS(2385), + [anon_sym_str] = ACTIONS(2385), + [anon_sym_char] = ACTIONS(2385), + [aux_sym__non_special_token_token1] = ACTIONS(2385), + [anon_sym_SQUOTE] = ACTIONS(2385), + [anon_sym_as] = ACTIONS(2385), + [anon_sym_async] = ACTIONS(2385), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_fn] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_let] = ACTIONS(2385), + [anon_sym_loop] = ACTIONS(2385), + [anon_sym_match] = ACTIONS(2385), + [anon_sym_mod] = ACTIONS(2385), + [anon_sym_pub] = ACTIONS(2385), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_struct] = ACTIONS(2385), + [anon_sym_trait] = ACTIONS(2385), + [anon_sym_type] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_unsafe] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_where] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [sym_mutable_specifier] = ACTIONS(2385), + [sym_integer_literal] = ACTIONS(2387), + [aux_sym_string_literal_token1] = ACTIONS(2387), + [sym_char_literal] = ACTIONS(2387), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2385), + [sym_super] = ACTIONS(2385), + [sym_crate] = ACTIONS(2385), + [sym_metavariable] = ACTIONS(2387), + [sym_raw_string_literal] = ACTIONS(2387), + [sym_float_literal] = ACTIONS(2387), + [sym_block_comment] = ACTIONS(3), + }, + [579] = { + [sym_identifier] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_RPAREN] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_RBRACK] = ACTIONS(2391), + [anon_sym_DOLLAR] = ACTIONS(2389), + [anon_sym_u8] = ACTIONS(2389), + [anon_sym_i8] = ACTIONS(2389), + [anon_sym_u16] = ACTIONS(2389), + [anon_sym_i16] = ACTIONS(2389), + [anon_sym_u32] = ACTIONS(2389), + [anon_sym_i32] = ACTIONS(2389), + [anon_sym_u64] = ACTIONS(2389), + [anon_sym_i64] = ACTIONS(2389), + [anon_sym_u128] = ACTIONS(2389), + [anon_sym_i128] = ACTIONS(2389), + [anon_sym_isize] = ACTIONS(2389), + [anon_sym_usize] = ACTIONS(2389), + [anon_sym_f32] = ACTIONS(2389), + [anon_sym_f64] = ACTIONS(2389), + [anon_sym_bool] = ACTIONS(2389), + [anon_sym_str] = ACTIONS(2389), + [anon_sym_char] = ACTIONS(2389), + [aux_sym__non_special_token_token1] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(2389), + [anon_sym_as] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2389), + [anon_sym_await] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_default] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_fn] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_impl] = ACTIONS(2389), + [anon_sym_let] = ACTIONS(2389), + [anon_sym_loop] = ACTIONS(2389), + [anon_sym_match] = ACTIONS(2389), + [anon_sym_mod] = ACTIONS(2389), + [anon_sym_pub] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_struct] = ACTIONS(2389), + [anon_sym_trait] = ACTIONS(2389), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_union] = ACTIONS(2389), + [anon_sym_unsafe] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_where] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [sym_mutable_specifier] = ACTIONS(2389), + [sym_integer_literal] = ACTIONS(2391), + [aux_sym_string_literal_token1] = ACTIONS(2391), + [sym_char_literal] = ACTIONS(2391), + [anon_sym_true] = ACTIONS(2389), + [anon_sym_false] = ACTIONS(2389), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2389), + [sym_super] = ACTIONS(2389), + [sym_crate] = ACTIONS(2389), + [sym_metavariable] = ACTIONS(2391), + [sym_raw_string_literal] = ACTIONS(2391), + [sym_float_literal] = ACTIONS(2391), + [sym_block_comment] = ACTIONS(3), + }, + [580] = { + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_RPAREN] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_RBRACK] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_u8] = ACTIONS(2393), + [anon_sym_i8] = ACTIONS(2393), + [anon_sym_u16] = ACTIONS(2393), + [anon_sym_i16] = ACTIONS(2393), + [anon_sym_u32] = ACTIONS(2393), + [anon_sym_i32] = ACTIONS(2393), + [anon_sym_u64] = ACTIONS(2393), + [anon_sym_i64] = ACTIONS(2393), + [anon_sym_u128] = ACTIONS(2393), + [anon_sym_i128] = ACTIONS(2393), + [anon_sym_isize] = ACTIONS(2393), + [anon_sym_usize] = ACTIONS(2393), + [anon_sym_f32] = ACTIONS(2393), + [anon_sym_f64] = ACTIONS(2393), + [anon_sym_bool] = ACTIONS(2393), + [anon_sym_str] = ACTIONS(2393), + [anon_sym_char] = ACTIONS(2393), + [aux_sym__non_special_token_token1] = ACTIONS(2393), + [anon_sym_SQUOTE] = ACTIONS(2393), + [anon_sym_as] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_await] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_default] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_fn] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_impl] = ACTIONS(2393), + [anon_sym_let] = ACTIONS(2393), + [anon_sym_loop] = ACTIONS(2393), + [anon_sym_match] = ACTIONS(2393), + [anon_sym_mod] = ACTIONS(2393), + [anon_sym_pub] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2393), + [anon_sym_trait] = ACTIONS(2393), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_union] = ACTIONS(2393), + [anon_sym_unsafe] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_where] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [sym_mutable_specifier] = ACTIONS(2393), + [sym_integer_literal] = ACTIONS(2395), + [aux_sym_string_literal_token1] = ACTIONS(2395), + [sym_char_literal] = ACTIONS(2395), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2393), + [sym_super] = ACTIONS(2393), + [sym_crate] = ACTIONS(2393), + [sym_metavariable] = ACTIONS(2395), + [sym_raw_string_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), + [sym_block_comment] = ACTIONS(3), + }, + [581] = { + [sym_identifier] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_RPAREN] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_RBRACK] = ACTIONS(2399), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_u8] = ACTIONS(2397), + [anon_sym_i8] = ACTIONS(2397), + [anon_sym_u16] = ACTIONS(2397), + [anon_sym_i16] = ACTIONS(2397), + [anon_sym_u32] = ACTIONS(2397), + [anon_sym_i32] = ACTIONS(2397), + [anon_sym_u64] = ACTIONS(2397), + [anon_sym_i64] = ACTIONS(2397), + [anon_sym_u128] = ACTIONS(2397), + [anon_sym_i128] = ACTIONS(2397), + [anon_sym_isize] = ACTIONS(2397), + [anon_sym_usize] = ACTIONS(2397), + [anon_sym_f32] = ACTIONS(2397), + [anon_sym_f64] = ACTIONS(2397), + [anon_sym_bool] = ACTIONS(2397), + [anon_sym_str] = ACTIONS(2397), + [anon_sym_char] = ACTIONS(2397), + [aux_sym__non_special_token_token1] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_await] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_fn] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_impl] = ACTIONS(2397), + [anon_sym_let] = ACTIONS(2397), + [anon_sym_loop] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_mod] = ACTIONS(2397), + [anon_sym_pub] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_trait] = ACTIONS(2397), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_unsafe] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_where] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [sym_mutable_specifier] = ACTIONS(2397), + [sym_integer_literal] = ACTIONS(2399), + [aux_sym_string_literal_token1] = ACTIONS(2399), + [sym_char_literal] = ACTIONS(2399), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2397), + [sym_super] = ACTIONS(2397), + [sym_crate] = ACTIONS(2397), + [sym_metavariable] = ACTIONS(2399), + [sym_raw_string_literal] = ACTIONS(2399), + [sym_float_literal] = ACTIONS(2399), + [sym_block_comment] = ACTIONS(3), + }, + [582] = { + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_RBRACK] = ACTIONS(2403), + [anon_sym_DOLLAR] = ACTIONS(2401), + [anon_sym_u8] = ACTIONS(2401), + [anon_sym_i8] = ACTIONS(2401), + [anon_sym_u16] = ACTIONS(2401), + [anon_sym_i16] = ACTIONS(2401), + [anon_sym_u32] = ACTIONS(2401), + [anon_sym_i32] = ACTIONS(2401), + [anon_sym_u64] = ACTIONS(2401), + [anon_sym_i64] = ACTIONS(2401), + [anon_sym_u128] = ACTIONS(2401), + [anon_sym_i128] = ACTIONS(2401), + [anon_sym_isize] = ACTIONS(2401), + [anon_sym_usize] = ACTIONS(2401), + [anon_sym_f32] = ACTIONS(2401), + [anon_sym_f64] = ACTIONS(2401), + [anon_sym_bool] = ACTIONS(2401), + [anon_sym_str] = ACTIONS(2401), + [anon_sym_char] = ACTIONS(2401), + [aux_sym__non_special_token_token1] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_default] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_impl] = ACTIONS(2401), + [anon_sym_let] = ACTIONS(2401), + [anon_sym_loop] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_mod] = ACTIONS(2401), + [anon_sym_pub] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_trait] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_where] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [sym_mutable_specifier] = ACTIONS(2401), + [sym_integer_literal] = ACTIONS(2403), + [aux_sym_string_literal_token1] = ACTIONS(2403), + [sym_char_literal] = ACTIONS(2403), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2401), + [sym_super] = ACTIONS(2401), + [sym_crate] = ACTIONS(2401), + [sym_metavariable] = ACTIONS(2403), + [sym_raw_string_literal] = ACTIONS(2403), + [sym_float_literal] = ACTIONS(2403), + [sym_block_comment] = ACTIONS(3), + }, + [583] = { + [sym_function_modifiers] = STATE(2427), + [sym_const_parameter] = STATE(2153), + [sym_constrained_type_parameter] = STATE(1797), + [sym_optional_type_parameter] = STATE(2153), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1941), + [sym_bracketed_type] = STATE(2386), + [sym_qualified_type] = STATE(2362), + [sym_lifetime] = STATE(1703), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(688), + [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_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(2407), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(2409), + [sym_block_comment] = ACTIONS(3), + }, + [584] = { + [sym_identifier] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_RPAREN] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_RBRACK] = ACTIONS(2413), + [anon_sym_DOLLAR] = ACTIONS(2411), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2411), + [anon_sym_SQUOTE] = ACTIONS(2411), + [anon_sym_as] = ACTIONS(2411), + [anon_sym_async] = ACTIONS(2411), + [anon_sym_await] = 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_where] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [sym_mutable_specifier] = ACTIONS(2411), + [sym_integer_literal] = ACTIONS(2413), + [aux_sym_string_literal_token1] = ACTIONS(2413), + [sym_char_literal] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(2411), + [anon_sym_false] = ACTIONS(2411), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2411), + [sym_super] = ACTIONS(2411), + [sym_crate] = ACTIONS(2411), + [sym_metavariable] = ACTIONS(2413), + [sym_raw_string_literal] = ACTIONS(2413), + [sym_float_literal] = ACTIONS(2413), + [sym_block_comment] = ACTIONS(3), + }, + [585] = { + [sym_parameter] = STATE(1952), [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1810), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2375), - [anon_sym_union] = ACTIONS(2375), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1864), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2415), + [anon_sym_union] = ACTIONS(2415), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), - [sym_mutable_specifier] = ACTIONS(2377), + [anon_sym_AMP] = ACTIONS(1148), + [sym_mutable_specifier] = ACTIONS(2417), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2419), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2381), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(2421), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [571] = { + [586] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1822), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RPAREN] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_COMMA] = ACTIONS(812), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1835), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_RPAREN] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), + [anon_sym_COMMA] = ACTIONS(2425), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -67258,277 +68488,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [572] = { - [sym_identifier] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_RPAREN] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2389), - [anon_sym_RBRACE] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2389), - [anon_sym_RBRACK] = ACTIONS(2389), - [anon_sym_DOLLAR] = ACTIONS(2387), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_await] = 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_where] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [sym_mutable_specifier] = ACTIONS(2387), - [sym_integer_literal] = ACTIONS(2389), - [aux_sym_string_literal_token1] = ACTIONS(2389), - [sym_char_literal] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(2387), - [anon_sym_false] = ACTIONS(2387), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2387), - [sym_super] = ACTIONS(2387), - [sym_crate] = ACTIONS(2387), - [sym_metavariable] = ACTIONS(2389), - [sym_raw_string_literal] = ACTIONS(2389), - [sym_float_literal] = ACTIONS(2389), + [587] = { + [sym_identifier] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_RPAREN] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(2429), + [anon_sym_RBRACK] = ACTIONS(2429), + [anon_sym_DOLLAR] = ACTIONS(2427), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_as] = ACTIONS(2427), + [anon_sym_async] = ACTIONS(2427), + [anon_sym_await] = 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_where] = ACTIONS(2427), + [anon_sym_while] = ACTIONS(2427), + [sym_mutable_specifier] = ACTIONS(2427), + [sym_integer_literal] = ACTIONS(2429), + [aux_sym_string_literal_token1] = ACTIONS(2429), + [sym_char_literal] = ACTIONS(2429), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2427), + [sym_super] = ACTIONS(2427), + [sym_crate] = ACTIONS(2427), + [sym_metavariable] = ACTIONS(2429), + [sym_raw_string_literal] = ACTIONS(2429), + [sym_float_literal] = ACTIONS(2429), [sym_block_comment] = ACTIONS(3), }, - [573] = { - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym_RPAREN] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2393), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_LBRACK] = ACTIONS(2393), - [anon_sym_RBRACK] = ACTIONS(2393), - [anon_sym_DOLLAR] = ACTIONS(2391), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2391), - [anon_sym_SQUOTE] = ACTIONS(2391), - [anon_sym_as] = ACTIONS(2391), - [anon_sym_async] = ACTIONS(2391), - [anon_sym_await] = 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_where] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(2391), - [sym_mutable_specifier] = ACTIONS(2391), - [sym_integer_literal] = ACTIONS(2393), - [aux_sym_string_literal_token1] = ACTIONS(2393), - [sym_char_literal] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(2391), - [anon_sym_false] = ACTIONS(2391), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2391), - [sym_super] = ACTIONS(2391), - [sym_crate] = ACTIONS(2391), - [sym_metavariable] = ACTIONS(2393), - [sym_raw_string_literal] = ACTIONS(2393), - [sym_float_literal] = ACTIONS(2393), + [588] = { + [sym_identifier] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_RPAREN] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_RBRACK] = ACTIONS(2433), + [anon_sym_DOLLAR] = ACTIONS(2431), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2431), + [anon_sym_as] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_await] = 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_where] = ACTIONS(2431), + [anon_sym_while] = ACTIONS(2431), + [sym_mutable_specifier] = ACTIONS(2431), + [sym_integer_literal] = ACTIONS(2433), + [aux_sym_string_literal_token1] = ACTIONS(2433), + [sym_char_literal] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(2431), + [anon_sym_false] = ACTIONS(2431), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2431), + [sym_super] = ACTIONS(2431), + [sym_crate] = ACTIONS(2431), + [sym_metavariable] = ACTIONS(2433), + [sym_raw_string_literal] = ACTIONS(2433), + [sym_float_literal] = ACTIONS(2433), [sym_block_comment] = ACTIONS(3), }, - [574] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1825), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_RBRACK] = ACTIONS(830), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_COMMA] = ACTIONS(838), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [589] = { + [sym_identifier] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_RPAREN] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2437), + [anon_sym_RBRACK] = ACTIONS(2437), + [anon_sym_DOLLAR] = ACTIONS(2435), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_as] = ACTIONS(2435), + [anon_sym_async] = ACTIONS(2435), + [anon_sym_await] = 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_where] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2435), + [sym_mutable_specifier] = ACTIONS(2435), + [sym_integer_literal] = ACTIONS(2437), + [aux_sym_string_literal_token1] = ACTIONS(2437), + [sym_char_literal] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(2435), + [anon_sym_false] = ACTIONS(2435), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2435), + [sym_super] = ACTIONS(2435), + [sym_crate] = ACTIONS(2435), + [sym_metavariable] = ACTIONS(2437), + [sym_raw_string_literal] = ACTIONS(2437), + [sym_float_literal] = ACTIONS(2437), [sym_block_comment] = ACTIONS(3), }, - [575] = { + [590] = { + [sym_identifier] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_RPAREN] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_RBRACK] = ACTIONS(2441), + [anon_sym_DOLLAR] = ACTIONS(2439), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_as] = ACTIONS(2439), + [anon_sym_async] = ACTIONS(2439), + [anon_sym_await] = 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_where] = ACTIONS(2439), + [anon_sym_while] = ACTIONS(2439), + [sym_mutable_specifier] = ACTIONS(2439), + [sym_integer_literal] = ACTIONS(2441), + [aux_sym_string_literal_token1] = ACTIONS(2441), + [sym_char_literal] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(2439), + [anon_sym_false] = ACTIONS(2439), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2439), + [sym_super] = ACTIONS(2439), + [sym_crate] = ACTIONS(2439), + [sym_metavariable] = ACTIONS(2441), + [sym_raw_string_literal] = ACTIONS(2441), + [sym_float_literal] = ACTIONS(2441), + [sym_block_comment] = ACTIONS(3), + }, + [591] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1835), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RPAREN] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_COMMA] = ACTIONS(2397), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1838), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), + [anon_sym_COMMA] = ACTIONS(812), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -67538,225 +68838,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [576] = { - [sym_identifier] = ACTIONS(2399), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_RPAREN] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2401), - [anon_sym_RBRACE] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(2401), - [anon_sym_RBRACK] = ACTIONS(2401), - [anon_sym_DOLLAR] = ACTIONS(2399), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2399), - [anon_sym_as] = ACTIONS(2399), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_await] = 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_where] = ACTIONS(2399), - [anon_sym_while] = ACTIONS(2399), - [sym_mutable_specifier] = ACTIONS(2399), - [sym_integer_literal] = ACTIONS(2401), - [aux_sym_string_literal_token1] = ACTIONS(2401), - [sym_char_literal] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(2399), - [anon_sym_false] = ACTIONS(2399), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2399), - [sym_super] = ACTIONS(2399), - [sym_crate] = ACTIONS(2399), - [sym_metavariable] = ACTIONS(2401), - [sym_raw_string_literal] = ACTIONS(2401), - [sym_float_literal] = ACTIONS(2401), - [sym_block_comment] = ACTIONS(3), - }, - [577] = { - [sym_identifier] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_RBRACE] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_RBRACK] = ACTIONS(2405), - [anon_sym_DOLLAR] = ACTIONS(2403), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_as] = ACTIONS(2403), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_await] = 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_where] = ACTIONS(2403), - [anon_sym_while] = ACTIONS(2403), - [sym_mutable_specifier] = ACTIONS(2403), - [sym_integer_literal] = ACTIONS(2405), - [aux_sym_string_literal_token1] = ACTIONS(2405), - [sym_char_literal] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2403), - [anon_sym_false] = ACTIONS(2403), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2403), - [sym_super] = ACTIONS(2403), - [sym_crate] = ACTIONS(2403), - [sym_metavariable] = ACTIONS(2405), - [sym_raw_string_literal] = ACTIONS(2405), - [sym_float_literal] = ACTIONS(2405), - [sym_block_comment] = ACTIONS(3), - }, - [578] = { - [sym_identifier] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_RPAREN] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2409), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_RBRACK] = ACTIONS(2409), - [anon_sym_DOLLAR] = ACTIONS(2407), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_as] = ACTIONS(2407), - [anon_sym_async] = ACTIONS(2407), - [anon_sym_await] = 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_where] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [sym_mutable_specifier] = ACTIONS(2407), - [sym_integer_literal] = ACTIONS(2409), - [aux_sym_string_literal_token1] = ACTIONS(2409), - [sym_char_literal] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2407), - [anon_sym_false] = ACTIONS(2407), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2407), - [sym_super] = ACTIONS(2407), - [sym_crate] = ACTIONS(2407), - [sym_metavariable] = ACTIONS(2409), - [sym_raw_string_literal] = ACTIONS(2409), - [sym_float_literal] = ACTIONS(2409), - [sym_block_comment] = ACTIONS(3), - }, - [579] = { + [592] = { [sym_identifier] = ACTIONS(2411), [anon_sym_LPAREN] = ACTIONS(2413), [anon_sym_RPAREN] = ACTIONS(2413), @@ -67764,7 +68854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(2413), [anon_sym_LBRACK] = ACTIONS(2413), [anon_sym_RBRACK] = ACTIONS(2413), - [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2413), [anon_sym_u8] = ACTIONS(2411), [anon_sym_i8] = ACTIONS(2411), [anon_sym_u16] = ACTIONS(2411), @@ -67817,626 +68907,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2413), [anon_sym_true] = ACTIONS(2411), [anon_sym_false] = ACTIONS(2411), - [sym_line_comment] = ACTIONS(1099), + [sym_line_comment] = ACTIONS(1016), [sym_self] = ACTIONS(2411), [sym_super] = ACTIONS(2411), [sym_crate] = ACTIONS(2411), - [sym_metavariable] = ACTIONS(2413), [sym_raw_string_literal] = ACTIONS(2413), [sym_float_literal] = ACTIONS(2413), [sym_block_comment] = ACTIONS(3), }, - [580] = { - [sym_identifier] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_RPAREN] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2417), - [anon_sym_RBRACE] = ACTIONS(2417), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_RBRACK] = ACTIONS(2417), - [anon_sym_DOLLAR] = ACTIONS(2415), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2415), - [anon_sym_SQUOTE] = ACTIONS(2415), - [anon_sym_as] = ACTIONS(2415), - [anon_sym_async] = ACTIONS(2415), - [anon_sym_await] = 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_where] = ACTIONS(2415), - [anon_sym_while] = ACTIONS(2415), - [sym_mutable_specifier] = ACTIONS(2415), - [sym_integer_literal] = ACTIONS(2417), - [aux_sym_string_literal_token1] = ACTIONS(2417), - [sym_char_literal] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2415), - [anon_sym_false] = ACTIONS(2415), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2415), - [sym_super] = ACTIONS(2415), - [sym_crate] = ACTIONS(2415), - [sym_metavariable] = ACTIONS(2417), - [sym_raw_string_literal] = ACTIONS(2417), - [sym_float_literal] = ACTIONS(2417), - [sym_block_comment] = ACTIONS(3), - }, - [581] = { - [sym_identifier] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_RPAREN] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_RBRACK] = ACTIONS(2421), - [anon_sym_DOLLAR] = ACTIONS(2419), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_as] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_await] = 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_where] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [sym_mutable_specifier] = ACTIONS(2419), - [sym_integer_literal] = ACTIONS(2421), - [aux_sym_string_literal_token1] = ACTIONS(2421), - [sym_char_literal] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2419), - [anon_sym_false] = ACTIONS(2419), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2419), - [sym_super] = ACTIONS(2419), - [sym_crate] = ACTIONS(2419), - [sym_metavariable] = ACTIONS(2421), - [sym_raw_string_literal] = ACTIONS(2421), - [sym_float_literal] = ACTIONS(2421), - [sym_block_comment] = ACTIONS(3), - }, - [582] = { - [sym_identifier] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_RPAREN] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(2425), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_RBRACK] = ACTIONS(2425), - [anon_sym_DOLLAR] = ACTIONS(2423), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_as] = ACTIONS(2423), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_await] = 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_where] = ACTIONS(2423), - [anon_sym_while] = ACTIONS(2423), - [sym_mutable_specifier] = ACTIONS(2423), - [sym_integer_literal] = ACTIONS(2425), - [aux_sym_string_literal_token1] = ACTIONS(2425), - [sym_char_literal] = ACTIONS(2425), - [anon_sym_true] = ACTIONS(2423), - [anon_sym_false] = ACTIONS(2423), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2423), - [sym_super] = ACTIONS(2423), - [sym_crate] = ACTIONS(2423), - [sym_metavariable] = ACTIONS(2425), - [sym_raw_string_literal] = ACTIONS(2425), - [sym_float_literal] = ACTIONS(2425), - [sym_block_comment] = ACTIONS(3), - }, - [583] = { - [sym_function_modifiers] = STATE(2427), - [sym_const_parameter] = STATE(2140), - [sym_constrained_type_parameter] = STATE(1833), - [sym_optional_type_parameter] = STATE(2140), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1985), - [sym_bracketed_type] = STATE(2395), - [sym_qualified_type] = STATE(2379), - [sym_lifetime] = STATE(1733), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(2429), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(2431), - [sym_block_comment] = ACTIONS(3), - }, - [584] = { - [sym_identifier] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_DOLLAR] = ACTIONS(2433), - [anon_sym_u8] = ACTIONS(2433), - [anon_sym_i8] = ACTIONS(2433), - [anon_sym_u16] = ACTIONS(2433), - [anon_sym_i16] = ACTIONS(2433), - [anon_sym_u32] = ACTIONS(2433), - [anon_sym_i32] = ACTIONS(2433), - [anon_sym_u64] = ACTIONS(2433), - [anon_sym_i64] = ACTIONS(2433), - [anon_sym_u128] = ACTIONS(2433), - [anon_sym_i128] = ACTIONS(2433), - [anon_sym_isize] = ACTIONS(2433), - [anon_sym_usize] = ACTIONS(2433), - [anon_sym_f32] = ACTIONS(2433), - [anon_sym_f64] = ACTIONS(2433), - [anon_sym_bool] = ACTIONS(2433), - [anon_sym_str] = ACTIONS(2433), - [anon_sym_char] = ACTIONS(2433), - [aux_sym__non_special_token_token1] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_await] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_fn] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_impl] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_loop] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_mod] = ACTIONS(2433), - [anon_sym_pub] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_trait] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_unsafe] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_where] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [sym_mutable_specifier] = ACTIONS(2433), - [sym_integer_literal] = ACTIONS(2435), - [aux_sym_string_literal_token1] = ACTIONS(2435), - [sym_char_literal] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2433), - [anon_sym_false] = ACTIONS(2433), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2433), - [sym_super] = ACTIONS(2433), - [sym_crate] = ACTIONS(2433), - [sym_metavariable] = ACTIONS(2435), - [sym_raw_string_literal] = ACTIONS(2435), - [sym_float_literal] = ACTIONS(2435), - [sym_block_comment] = ACTIONS(3), - }, - [585] = { - [sym_identifier] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_RPAREN] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2439), - [anon_sym_RBRACK] = ACTIONS(2439), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(2437), - [anon_sym_i8] = ACTIONS(2437), - [anon_sym_u16] = ACTIONS(2437), - [anon_sym_i16] = ACTIONS(2437), - [anon_sym_u32] = ACTIONS(2437), - [anon_sym_i32] = ACTIONS(2437), - [anon_sym_u64] = ACTIONS(2437), - [anon_sym_i64] = ACTIONS(2437), - [anon_sym_u128] = ACTIONS(2437), - [anon_sym_i128] = ACTIONS(2437), - [anon_sym_isize] = ACTIONS(2437), - [anon_sym_usize] = ACTIONS(2437), - [anon_sym_f32] = ACTIONS(2437), - [anon_sym_f64] = ACTIONS(2437), - [anon_sym_bool] = ACTIONS(2437), - [anon_sym_str] = ACTIONS(2437), - [anon_sym_char] = ACTIONS(2437), - [aux_sym__non_special_token_token1] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_default] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_fn] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_impl] = ACTIONS(2437), - [anon_sym_let] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_mod] = ACTIONS(2437), - [anon_sym_pub] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_trait] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_union] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(2437), - [anon_sym_use] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [sym_mutable_specifier] = ACTIONS(2437), - [sym_integer_literal] = ACTIONS(2439), - [aux_sym_string_literal_token1] = ACTIONS(2439), - [sym_char_literal] = ACTIONS(2439), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2437), - [sym_super] = ACTIONS(2437), - [sym_crate] = ACTIONS(2437), - [sym_metavariable] = ACTIONS(2439), - [sym_raw_string_literal] = ACTIONS(2439), - [sym_float_literal] = ACTIONS(2439), - [sym_block_comment] = ACTIONS(3), - }, - [586] = { - [sym_identifier] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_DOLLAR] = ACTIONS(2441), - [anon_sym_u8] = ACTIONS(2441), - [anon_sym_i8] = ACTIONS(2441), - [anon_sym_u16] = ACTIONS(2441), - [anon_sym_i16] = ACTIONS(2441), - [anon_sym_u32] = ACTIONS(2441), - [anon_sym_i32] = ACTIONS(2441), - [anon_sym_u64] = ACTIONS(2441), - [anon_sym_i64] = ACTIONS(2441), - [anon_sym_u128] = ACTIONS(2441), - [anon_sym_i128] = ACTIONS(2441), - [anon_sym_isize] = ACTIONS(2441), - [anon_sym_usize] = ACTIONS(2441), - [anon_sym_f32] = ACTIONS(2441), - [anon_sym_f64] = ACTIONS(2441), - [anon_sym_bool] = ACTIONS(2441), - [anon_sym_str] = ACTIONS(2441), - [anon_sym_char] = ACTIONS(2441), - [aux_sym__non_special_token_token1] = ACTIONS(2441), - [anon_sym_SQUOTE] = ACTIONS(2441), - [anon_sym_as] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_await] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_const] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_default] = ACTIONS(2441), - [anon_sym_enum] = ACTIONS(2441), - [anon_sym_fn] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_impl] = ACTIONS(2441), - [anon_sym_let] = ACTIONS(2441), - [anon_sym_loop] = ACTIONS(2441), - [anon_sym_match] = ACTIONS(2441), - [anon_sym_mod] = ACTIONS(2441), - [anon_sym_pub] = ACTIONS(2441), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_struct] = ACTIONS(2441), - [anon_sym_trait] = ACTIONS(2441), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_union] = ACTIONS(2441), - [anon_sym_unsafe] = ACTIONS(2441), - [anon_sym_use] = ACTIONS(2441), - [anon_sym_where] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [sym_mutable_specifier] = ACTIONS(2441), - [sym_integer_literal] = ACTIONS(2443), - [aux_sym_string_literal_token1] = ACTIONS(2443), - [sym_char_literal] = ACTIONS(2443), - [anon_sym_true] = ACTIONS(2441), - [anon_sym_false] = ACTIONS(2441), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2441), - [sym_super] = ACTIONS(2441), - [sym_crate] = ACTIONS(2441), - [sym_metavariable] = ACTIONS(2443), - [sym_raw_string_literal] = ACTIONS(2443), - [sym_float_literal] = ACTIONS(2443), - [sym_block_comment] = ACTIONS(3), - }, - [587] = { - [sym_identifier] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_RBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2447), - [anon_sym_u8] = ACTIONS(2445), - [anon_sym_i8] = ACTIONS(2445), - [anon_sym_u16] = ACTIONS(2445), - [anon_sym_i16] = ACTIONS(2445), - [anon_sym_u32] = ACTIONS(2445), - [anon_sym_i32] = ACTIONS(2445), - [anon_sym_u64] = ACTIONS(2445), - [anon_sym_i64] = ACTIONS(2445), - [anon_sym_u128] = ACTIONS(2445), - [anon_sym_i128] = ACTIONS(2445), - [anon_sym_isize] = ACTIONS(2445), - [anon_sym_usize] = ACTIONS(2445), - [anon_sym_f32] = ACTIONS(2445), - [anon_sym_f64] = ACTIONS(2445), - [anon_sym_bool] = ACTIONS(2445), - [anon_sym_str] = ACTIONS(2445), - [anon_sym_char] = ACTIONS(2445), - [aux_sym__non_special_token_token1] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2445), - [anon_sym_as] = ACTIONS(2445), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_await] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_default] = ACTIONS(2445), - [anon_sym_enum] = ACTIONS(2445), - [anon_sym_fn] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_impl] = ACTIONS(2445), - [anon_sym_let] = ACTIONS(2445), - [anon_sym_loop] = ACTIONS(2445), - [anon_sym_match] = ACTIONS(2445), - [anon_sym_mod] = ACTIONS(2445), - [anon_sym_pub] = ACTIONS(2445), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_struct] = ACTIONS(2445), - [anon_sym_trait] = ACTIONS(2445), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_union] = ACTIONS(2445), - [anon_sym_unsafe] = ACTIONS(2445), - [anon_sym_use] = ACTIONS(2445), - [anon_sym_where] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [sym_mutable_specifier] = ACTIONS(2445), - [sym_integer_literal] = ACTIONS(2447), - [aux_sym_string_literal_token1] = ACTIONS(2447), - [sym_char_literal] = ACTIONS(2447), - [anon_sym_true] = ACTIONS(2445), - [anon_sym_false] = ACTIONS(2445), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2445), - [sym_super] = ACTIONS(2445), - [sym_crate] = ACTIONS(2445), - [sym_raw_string_literal] = ACTIONS(2447), - [sym_float_literal] = ACTIONS(2447), - [sym_block_comment] = ACTIONS(3), - }, - [588] = { + [593] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1870), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1847), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_RBRACK] = ACTIONS(2445), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -68446,389 +68976,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [589] = { - [sym_identifier] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_RPAREN] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_RBRACE] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(590), - [anon_sym_RBRACK] = ACTIONS(590), - [anon_sym_DOLLAR] = ACTIONS(590), - [anon_sym_u8] = ACTIONS(592), - [anon_sym_i8] = ACTIONS(592), - [anon_sym_u16] = ACTIONS(592), - [anon_sym_i16] = ACTIONS(592), - [anon_sym_u32] = ACTIONS(592), - [anon_sym_i32] = ACTIONS(592), - [anon_sym_u64] = ACTIONS(592), - [anon_sym_i64] = ACTIONS(592), - [anon_sym_u128] = ACTIONS(592), - [anon_sym_i128] = ACTIONS(592), - [anon_sym_isize] = ACTIONS(592), - [anon_sym_usize] = ACTIONS(592), - [anon_sym_f32] = ACTIONS(592), - [anon_sym_f64] = ACTIONS(592), - [anon_sym_bool] = ACTIONS(592), - [anon_sym_str] = ACTIONS(592), - [anon_sym_char] = ACTIONS(592), - [aux_sym__non_special_token_token1] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_as] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_await] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_const] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_enum] = ACTIONS(592), - [anon_sym_fn] = ACTIONS(592), - [anon_sym_for] = ACTIONS(592), - [anon_sym_if] = ACTIONS(592), - [anon_sym_impl] = ACTIONS(592), - [anon_sym_let] = ACTIONS(592), - [anon_sym_loop] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_mod] = ACTIONS(592), - [anon_sym_pub] = ACTIONS(592), - [anon_sym_return] = ACTIONS(592), - [anon_sym_static] = ACTIONS(592), - [anon_sym_struct] = ACTIONS(592), - [anon_sym_trait] = ACTIONS(592), - [anon_sym_type] = ACTIONS(592), - [anon_sym_union] = ACTIONS(592), - [anon_sym_unsafe] = ACTIONS(592), - [anon_sym_use] = ACTIONS(592), - [anon_sym_where] = ACTIONS(592), - [anon_sym_while] = ACTIONS(592), - [sym_mutable_specifier] = ACTIONS(592), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(590), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(592), - [sym_super] = ACTIONS(592), - [sym_crate] = ACTIONS(592), - [sym_raw_string_literal] = ACTIONS(590), - [sym_float_literal] = ACTIONS(590), - [sym_block_comment] = ACTIONS(3), - }, - [590] = { - [sym_identifier] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_DOLLAR] = ACTIONS(2435), - [anon_sym_u8] = ACTIONS(2433), - [anon_sym_i8] = ACTIONS(2433), - [anon_sym_u16] = ACTIONS(2433), - [anon_sym_i16] = ACTIONS(2433), - [anon_sym_u32] = ACTIONS(2433), - [anon_sym_i32] = ACTIONS(2433), - [anon_sym_u64] = ACTIONS(2433), - [anon_sym_i64] = ACTIONS(2433), - [anon_sym_u128] = ACTIONS(2433), - [anon_sym_i128] = ACTIONS(2433), - [anon_sym_isize] = ACTIONS(2433), - [anon_sym_usize] = ACTIONS(2433), - [anon_sym_f32] = ACTIONS(2433), - [anon_sym_f64] = ACTIONS(2433), - [anon_sym_bool] = ACTIONS(2433), - [anon_sym_str] = ACTIONS(2433), - [anon_sym_char] = ACTIONS(2433), - [aux_sym__non_special_token_token1] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_await] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_fn] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_impl] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_loop] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_mod] = ACTIONS(2433), - [anon_sym_pub] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_trait] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_unsafe] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_where] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [sym_mutable_specifier] = ACTIONS(2433), - [sym_integer_literal] = ACTIONS(2435), - [aux_sym_string_literal_token1] = ACTIONS(2435), - [sym_char_literal] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2433), - [anon_sym_false] = ACTIONS(2433), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2433), - [sym_super] = ACTIONS(2433), - [sym_crate] = ACTIONS(2433), - [sym_raw_string_literal] = ACTIONS(2435), - [sym_float_literal] = ACTIONS(2435), - [sym_block_comment] = ACTIONS(3), - }, - [591] = { - [sym_identifier] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_RPAREN] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2439), - [anon_sym_RBRACK] = ACTIONS(2439), - [anon_sym_DOLLAR] = ACTIONS(2439), - [anon_sym_u8] = ACTIONS(2437), - [anon_sym_i8] = ACTIONS(2437), - [anon_sym_u16] = ACTIONS(2437), - [anon_sym_i16] = ACTIONS(2437), - [anon_sym_u32] = ACTIONS(2437), - [anon_sym_i32] = ACTIONS(2437), - [anon_sym_u64] = ACTIONS(2437), - [anon_sym_i64] = ACTIONS(2437), - [anon_sym_u128] = ACTIONS(2437), - [anon_sym_i128] = ACTIONS(2437), - [anon_sym_isize] = ACTIONS(2437), - [anon_sym_usize] = ACTIONS(2437), - [anon_sym_f32] = ACTIONS(2437), - [anon_sym_f64] = ACTIONS(2437), - [anon_sym_bool] = ACTIONS(2437), - [anon_sym_str] = ACTIONS(2437), - [anon_sym_char] = ACTIONS(2437), - [aux_sym__non_special_token_token1] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_default] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_fn] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_impl] = ACTIONS(2437), - [anon_sym_let] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_mod] = ACTIONS(2437), - [anon_sym_pub] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_trait] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_union] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(2437), - [anon_sym_use] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [sym_mutable_specifier] = ACTIONS(2437), - [sym_integer_literal] = ACTIONS(2439), - [aux_sym_string_literal_token1] = ACTIONS(2439), - [sym_char_literal] = ACTIONS(2439), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2437), - [sym_super] = ACTIONS(2437), - [sym_crate] = ACTIONS(2437), - [sym_raw_string_literal] = ACTIONS(2439), - [sym_float_literal] = ACTIONS(2439), - [sym_block_comment] = ACTIONS(3), - }, - [592] = { - [sym_function_modifiers] = STATE(2427), - [sym_higher_ranked_trait_bound] = STATE(1608), - [sym_removed_trait_bound] = STATE(1608), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1607), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(1606), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2451), - [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_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [594] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1847), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_RPAREN] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1146), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1148), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [593] = { - [sym_identifier] = ACTIONS(630), - [anon_sym_LPAREN] = ACTIONS(628), - [anon_sym_RPAREN] = ACTIONS(628), - [anon_sym_LBRACE] = ACTIONS(628), - [anon_sym_RBRACE] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(628), - [anon_sym_DOLLAR] = ACTIONS(628), - [anon_sym_u8] = ACTIONS(630), - [anon_sym_i8] = ACTIONS(630), - [anon_sym_u16] = ACTIONS(630), - [anon_sym_i16] = ACTIONS(630), - [anon_sym_u32] = ACTIONS(630), - [anon_sym_i32] = ACTIONS(630), - [anon_sym_u64] = ACTIONS(630), - [anon_sym_i64] = ACTIONS(630), - [anon_sym_u128] = ACTIONS(630), - [anon_sym_i128] = ACTIONS(630), - [anon_sym_isize] = ACTIONS(630), - [anon_sym_usize] = ACTIONS(630), - [anon_sym_f32] = ACTIONS(630), - [anon_sym_f64] = ACTIONS(630), - [anon_sym_bool] = ACTIONS(630), - [anon_sym_str] = ACTIONS(630), - [anon_sym_char] = ACTIONS(630), - [aux_sym__non_special_token_token1] = ACTIONS(630), - [anon_sym_SQUOTE] = ACTIONS(630), - [anon_sym_as] = ACTIONS(630), - [anon_sym_async] = ACTIONS(630), - [anon_sym_await] = ACTIONS(630), - [anon_sym_break] = ACTIONS(630), - [anon_sym_const] = ACTIONS(630), - [anon_sym_continue] = ACTIONS(630), - [anon_sym_default] = ACTIONS(630), - [anon_sym_enum] = ACTIONS(630), - [anon_sym_fn] = ACTIONS(630), - [anon_sym_for] = ACTIONS(630), - [anon_sym_if] = ACTIONS(630), - [anon_sym_impl] = ACTIONS(630), - [anon_sym_let] = ACTIONS(630), - [anon_sym_loop] = ACTIONS(630), - [anon_sym_match] = ACTIONS(630), - [anon_sym_mod] = ACTIONS(630), - [anon_sym_pub] = ACTIONS(630), - [anon_sym_return] = ACTIONS(630), - [anon_sym_static] = ACTIONS(630), - [anon_sym_struct] = ACTIONS(630), - [anon_sym_trait] = ACTIONS(630), - [anon_sym_type] = ACTIONS(630), - [anon_sym_union] = ACTIONS(630), - [anon_sym_unsafe] = ACTIONS(630), - [anon_sym_use] = ACTIONS(630), - [anon_sym_where] = ACTIONS(630), - [anon_sym_while] = ACTIONS(630), - [sym_mutable_specifier] = ACTIONS(630), - [sym_integer_literal] = ACTIONS(628), - [aux_sym_string_literal_token1] = ACTIONS(628), - [sym_char_literal] = ACTIONS(628), - [anon_sym_true] = ACTIONS(630), - [anon_sym_false] = ACTIONS(630), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(630), - [sym_super] = ACTIONS(630), - [sym_crate] = ACTIONS(630), - [sym_raw_string_literal] = ACTIONS(628), - [sym_float_literal] = ACTIONS(628), + [595] = { + [sym_identifier] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_RPAREN] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_RBRACK] = ACTIONS(2379), + [anon_sym_DOLLAR] = ACTIONS(2379), + [anon_sym_u8] = ACTIONS(2377), + [anon_sym_i8] = ACTIONS(2377), + [anon_sym_u16] = ACTIONS(2377), + [anon_sym_i16] = ACTIONS(2377), + [anon_sym_u32] = ACTIONS(2377), + [anon_sym_i32] = ACTIONS(2377), + [anon_sym_u64] = ACTIONS(2377), + [anon_sym_i64] = ACTIONS(2377), + [anon_sym_u128] = ACTIONS(2377), + [anon_sym_i128] = ACTIONS(2377), + [anon_sym_isize] = ACTIONS(2377), + [anon_sym_usize] = ACTIONS(2377), + [anon_sym_f32] = ACTIONS(2377), + [anon_sym_f64] = ACTIONS(2377), + [anon_sym_bool] = ACTIONS(2377), + [anon_sym_str] = ACTIONS(2377), + [anon_sym_char] = ACTIONS(2377), + [aux_sym__non_special_token_token1] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2377), + [anon_sym_as] = ACTIONS(2377), + [anon_sym_async] = ACTIONS(2377), + [anon_sym_await] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_default] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_fn] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_impl] = ACTIONS(2377), + [anon_sym_let] = ACTIONS(2377), + [anon_sym_loop] = ACTIONS(2377), + [anon_sym_match] = ACTIONS(2377), + [anon_sym_mod] = ACTIONS(2377), + [anon_sym_pub] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_trait] = ACTIONS(2377), + [anon_sym_type] = ACTIONS(2377), + [anon_sym_union] = ACTIONS(2377), + [anon_sym_unsafe] = ACTIONS(2377), + [anon_sym_use] = ACTIONS(2377), + [anon_sym_where] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [sym_mutable_specifier] = ACTIONS(2377), + [sym_integer_literal] = ACTIONS(2379), + [aux_sym_string_literal_token1] = ACTIONS(2379), + [sym_char_literal] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2377), + [sym_super] = ACTIONS(2377), + [sym_crate] = ACTIONS(2377), + [sym_raw_string_literal] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2379), [sym_block_comment] = ACTIONS(3), }, - [594] = { + [596] = { [sym_function_modifiers] = STATE(2427), - [sym_higher_ranked_trait_bound] = STATE(1608), - [sym_removed_trait_bound] = STATE(1608), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1602), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(1601), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_higher_ranked_trait_bound] = STATE(1631), + [sym_removed_trait_bound] = STATE(1631), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1599), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(1625), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2451), + [anon_sym_QMARK] = ACTIONS(2449), [anon_sym_u8] = ACTIONS(904), [anon_sym_i8] = ACTIONS(904), [anon_sym_u16] = ACTIONS(904), @@ -68851,7 +69174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2451), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), @@ -68868,128 +69191,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [595] = { - [sym_identifier] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_DOLLAR] = ACTIONS(2443), - [anon_sym_u8] = ACTIONS(2441), - [anon_sym_i8] = ACTIONS(2441), - [anon_sym_u16] = ACTIONS(2441), - [anon_sym_i16] = ACTIONS(2441), - [anon_sym_u32] = ACTIONS(2441), - [anon_sym_i32] = ACTIONS(2441), - [anon_sym_u64] = ACTIONS(2441), - [anon_sym_i64] = ACTIONS(2441), - [anon_sym_u128] = ACTIONS(2441), - [anon_sym_i128] = ACTIONS(2441), - [anon_sym_isize] = ACTIONS(2441), - [anon_sym_usize] = ACTIONS(2441), - [anon_sym_f32] = ACTIONS(2441), - [anon_sym_f64] = ACTIONS(2441), - [anon_sym_bool] = ACTIONS(2441), - [anon_sym_str] = ACTIONS(2441), - [anon_sym_char] = ACTIONS(2441), - [aux_sym__non_special_token_token1] = ACTIONS(2441), - [anon_sym_SQUOTE] = ACTIONS(2441), - [anon_sym_as] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_await] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_const] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_default] = ACTIONS(2441), - [anon_sym_enum] = ACTIONS(2441), - [anon_sym_fn] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_impl] = ACTIONS(2441), - [anon_sym_let] = ACTIONS(2441), - [anon_sym_loop] = ACTIONS(2441), - [anon_sym_match] = ACTIONS(2441), - [anon_sym_mod] = ACTIONS(2441), - [anon_sym_pub] = ACTIONS(2441), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_struct] = ACTIONS(2441), - [anon_sym_trait] = ACTIONS(2441), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_union] = ACTIONS(2441), - [anon_sym_unsafe] = ACTIONS(2441), - [anon_sym_use] = ACTIONS(2441), - [anon_sym_where] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [sym_mutable_specifier] = ACTIONS(2441), - [sym_integer_literal] = ACTIONS(2443), - [aux_sym_string_literal_token1] = ACTIONS(2443), - [sym_char_literal] = ACTIONS(2443), - [anon_sym_true] = ACTIONS(2441), - [anon_sym_false] = ACTIONS(2441), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2441), - [sym_super] = ACTIONS(2441), - [sym_crate] = ACTIONS(2441), - [sym_raw_string_literal] = ACTIONS(2443), - [sym_float_literal] = ACTIONS(2443), + [597] = { + [sym_identifier] = ACTIONS(618), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_RPAREN] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(616), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_RBRACK] = ACTIONS(616), + [anon_sym_DOLLAR] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(618), + [anon_sym_i8] = ACTIONS(618), + [anon_sym_u16] = ACTIONS(618), + [anon_sym_i16] = ACTIONS(618), + [anon_sym_u32] = ACTIONS(618), + [anon_sym_i32] = ACTIONS(618), + [anon_sym_u64] = ACTIONS(618), + [anon_sym_i64] = ACTIONS(618), + [anon_sym_u128] = ACTIONS(618), + [anon_sym_i128] = ACTIONS(618), + [anon_sym_isize] = ACTIONS(618), + [anon_sym_usize] = ACTIONS(618), + [anon_sym_f32] = ACTIONS(618), + [anon_sym_f64] = ACTIONS(618), + [anon_sym_bool] = ACTIONS(618), + [anon_sym_str] = ACTIONS(618), + [anon_sym_char] = ACTIONS(618), + [aux_sym__non_special_token_token1] = ACTIONS(618), + [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_as] = ACTIONS(618), + [anon_sym_async] = ACTIONS(618), + [anon_sym_await] = ACTIONS(618), + [anon_sym_break] = ACTIONS(618), + [anon_sym_const] = ACTIONS(618), + [anon_sym_continue] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_enum] = ACTIONS(618), + [anon_sym_fn] = ACTIONS(618), + [anon_sym_for] = ACTIONS(618), + [anon_sym_if] = ACTIONS(618), + [anon_sym_impl] = ACTIONS(618), + [anon_sym_let] = ACTIONS(618), + [anon_sym_loop] = ACTIONS(618), + [anon_sym_match] = ACTIONS(618), + [anon_sym_mod] = ACTIONS(618), + [anon_sym_pub] = ACTIONS(618), + [anon_sym_return] = ACTIONS(618), + [anon_sym_static] = ACTIONS(618), + [anon_sym_struct] = ACTIONS(618), + [anon_sym_trait] = ACTIONS(618), + [anon_sym_type] = ACTIONS(618), + [anon_sym_union] = ACTIONS(618), + [anon_sym_unsafe] = ACTIONS(618), + [anon_sym_use] = ACTIONS(618), + [anon_sym_where] = ACTIONS(618), + [anon_sym_while] = ACTIONS(618), + [sym_mutable_specifier] = ACTIONS(618), + [sym_integer_literal] = ACTIONS(616), + [aux_sym_string_literal_token1] = ACTIONS(616), + [sym_char_literal] = ACTIONS(616), + [anon_sym_true] = ACTIONS(618), + [anon_sym_false] = ACTIONS(618), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(618), + [sym_super] = ACTIONS(618), + [sym_crate] = ACTIONS(618), + [sym_raw_string_literal] = ACTIONS(616), + [sym_float_literal] = ACTIONS(616), [sym_block_comment] = ACTIONS(3), }, - [596] = { - [sym_parameter] = STATE(2295), + [598] = { + [sym_parameter] = STATE(2292), [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1943), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2375), - [anon_sym_union] = ACTIONS(2375), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1895), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2415), + [anon_sym_union] = ACTIONS(2415), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), - [sym_mutable_specifier] = ACTIONS(2377), + [anon_sym_AMP] = ACTIONS(1148), + [sym_mutable_specifier] = ACTIONS(2417), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -68998,66 +69321,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2381), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(2421), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [597] = { + [599] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1870), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_RBRACK] = ACTIONS(2455), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1847), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_RPAREN] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -69067,66 +69390,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [598] = { + [600] = { + [sym_identifier] = ACTIONS(674), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RPAREN] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_RBRACK] = ACTIONS(672), + [anon_sym_DOLLAR] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(674), + [anon_sym_i8] = ACTIONS(674), + [anon_sym_u16] = ACTIONS(674), + [anon_sym_i16] = ACTIONS(674), + [anon_sym_u32] = ACTIONS(674), + [anon_sym_i32] = ACTIONS(674), + [anon_sym_u64] = ACTIONS(674), + [anon_sym_i64] = ACTIONS(674), + [anon_sym_u128] = ACTIONS(674), + [anon_sym_i128] = ACTIONS(674), + [anon_sym_isize] = ACTIONS(674), + [anon_sym_usize] = ACTIONS(674), + [anon_sym_f32] = ACTIONS(674), + [anon_sym_f64] = ACTIONS(674), + [anon_sym_bool] = ACTIONS(674), + [anon_sym_str] = ACTIONS(674), + [anon_sym_char] = ACTIONS(674), + [aux_sym__non_special_token_token1] = ACTIONS(674), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_as] = ACTIONS(674), + [anon_sym_async] = ACTIONS(674), + [anon_sym_await] = ACTIONS(674), + [anon_sym_break] = ACTIONS(674), + [anon_sym_const] = ACTIONS(674), + [anon_sym_continue] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_enum] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(674), + [anon_sym_for] = ACTIONS(674), + [anon_sym_if] = ACTIONS(674), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_let] = ACTIONS(674), + [anon_sym_loop] = ACTIONS(674), + [anon_sym_match] = ACTIONS(674), + [anon_sym_mod] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(674), + [anon_sym_return] = ACTIONS(674), + [anon_sym_static] = ACTIONS(674), + [anon_sym_struct] = ACTIONS(674), + [anon_sym_trait] = ACTIONS(674), + [anon_sym_type] = ACTIONS(674), + [anon_sym_union] = ACTIONS(674), + [anon_sym_unsafe] = ACTIONS(674), + [anon_sym_use] = ACTIONS(674), + [anon_sym_where] = ACTIONS(674), + [anon_sym_while] = ACTIONS(674), + [sym_mutable_specifier] = ACTIONS(674), + [sym_integer_literal] = ACTIONS(672), + [aux_sym_string_literal_token1] = ACTIONS(672), + [sym_char_literal] = ACTIONS(672), + [anon_sym_true] = ACTIONS(674), + [anon_sym_false] = ACTIONS(674), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_raw_string_literal] = ACTIONS(672), + [sym_float_literal] = ACTIONS(672), + [sym_block_comment] = ACTIONS(3), + }, + [601] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1870), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RPAREN] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1847), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_RPAREN] = ACTIONS(2455), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -69136,66 +69528,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [599] = { + [602] = { + [sym_function_modifiers] = STATE(2427), + [sym_higher_ranked_trait_bound] = STATE(1631), + [sym_removed_trait_bound] = STATE(1631), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1599), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(1619), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2449), + [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_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2451), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_block_comment] = ACTIONS(3), + }, + [603] = { + [sym_identifier] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_RPAREN] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_LBRACK] = ACTIONS(2387), + [anon_sym_RBRACK] = ACTIONS(2387), + [anon_sym_DOLLAR] = ACTIONS(2387), + [anon_sym_u8] = ACTIONS(2385), + [anon_sym_i8] = ACTIONS(2385), + [anon_sym_u16] = ACTIONS(2385), + [anon_sym_i16] = ACTIONS(2385), + [anon_sym_u32] = ACTIONS(2385), + [anon_sym_i32] = ACTIONS(2385), + [anon_sym_u64] = ACTIONS(2385), + [anon_sym_i64] = ACTIONS(2385), + [anon_sym_u128] = ACTIONS(2385), + [anon_sym_i128] = ACTIONS(2385), + [anon_sym_isize] = ACTIONS(2385), + [anon_sym_usize] = ACTIONS(2385), + [anon_sym_f32] = ACTIONS(2385), + [anon_sym_f64] = ACTIONS(2385), + [anon_sym_bool] = ACTIONS(2385), + [anon_sym_str] = ACTIONS(2385), + [anon_sym_char] = ACTIONS(2385), + [aux_sym__non_special_token_token1] = ACTIONS(2385), + [anon_sym_SQUOTE] = ACTIONS(2385), + [anon_sym_as] = ACTIONS(2385), + [anon_sym_async] = ACTIONS(2385), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_fn] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_let] = ACTIONS(2385), + [anon_sym_loop] = ACTIONS(2385), + [anon_sym_match] = ACTIONS(2385), + [anon_sym_mod] = ACTIONS(2385), + [anon_sym_pub] = ACTIONS(2385), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_struct] = ACTIONS(2385), + [anon_sym_trait] = ACTIONS(2385), + [anon_sym_type] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_unsafe] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_where] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [sym_mutable_specifier] = ACTIONS(2385), + [sym_integer_literal] = ACTIONS(2387), + [aux_sym_string_literal_token1] = ACTIONS(2387), + [sym_char_literal] = ACTIONS(2387), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2385), + [sym_super] = ACTIONS(2385), + [sym_crate] = ACTIONS(2385), + [sym_raw_string_literal] = ACTIONS(2387), + [sym_float_literal] = ACTIONS(2387), + [sym_block_comment] = ACTIONS(3), + }, + [604] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1870), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RPAREN] = ACTIONS(2459), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1847), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_RBRACK] = ACTIONS(2457), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -69205,66 +69735,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [600] = { + [605] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1870), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_RBRACK] = ACTIONS(2461), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1847), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_RPAREN] = ACTIONS(2459), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -69274,113 +69804,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [601] = { - [sym_identifier] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_RPAREN] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_LBRACK] = ACTIONS(2363), - [anon_sym_RBRACK] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2363), - [anon_sym_u8] = ACTIONS(2361), - [anon_sym_i8] = ACTIONS(2361), - [anon_sym_u16] = ACTIONS(2361), - [anon_sym_i16] = ACTIONS(2361), - [anon_sym_u32] = ACTIONS(2361), - [anon_sym_i32] = ACTIONS(2361), - [anon_sym_u64] = ACTIONS(2361), - [anon_sym_i64] = ACTIONS(2361), - [anon_sym_u128] = ACTIONS(2361), - [anon_sym_i128] = ACTIONS(2361), - [anon_sym_isize] = ACTIONS(2361), - [anon_sym_usize] = ACTIONS(2361), - [anon_sym_f32] = ACTIONS(2361), - [anon_sym_f64] = ACTIONS(2361), - [anon_sym_bool] = ACTIONS(2361), - [anon_sym_str] = ACTIONS(2361), - [anon_sym_char] = ACTIONS(2361), - [aux_sym__non_special_token_token1] = ACTIONS(2361), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_as] = ACTIONS(2361), - [anon_sym_async] = ACTIONS(2361), - [anon_sym_await] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_default] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_fn] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_impl] = ACTIONS(2361), - [anon_sym_let] = ACTIONS(2361), - [anon_sym_loop] = ACTIONS(2361), - [anon_sym_match] = ACTIONS(2361), - [anon_sym_mod] = ACTIONS(2361), - [anon_sym_pub] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_struct] = ACTIONS(2361), - [anon_sym_trait] = ACTIONS(2361), - [anon_sym_type] = ACTIONS(2361), - [anon_sym_union] = ACTIONS(2361), - [anon_sym_unsafe] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_where] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [sym_mutable_specifier] = ACTIONS(2361), - [sym_integer_literal] = ACTIONS(2363), - [aux_sym_string_literal_token1] = ACTIONS(2363), - [sym_char_literal] = ACTIONS(2363), - [anon_sym_true] = ACTIONS(2361), - [anon_sym_false] = ACTIONS(2361), - [sym_line_comment] = ACTIONS(1099), - [sym_self] = ACTIONS(2361), - [sym_super] = ACTIONS(2361), - [sym_crate] = ACTIONS(2361), - [sym_raw_string_literal] = ACTIONS(2363), - [sym_float_literal] = ACTIONS(2363), + [606] = { + [sym_function_modifiers] = STATE(2427), + [sym_higher_ranked_trait_bound] = STATE(1631), + [sym_removed_trait_bound] = STATE(1631), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1628), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(1625), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2449), + [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_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2451), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [602] = { + [607] = { + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_RPAREN] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_RBRACK] = ACTIONS(2463), + [anon_sym_DOLLAR] = ACTIONS(2463), + [anon_sym_u8] = ACTIONS(2461), + [anon_sym_i8] = ACTIONS(2461), + [anon_sym_u16] = ACTIONS(2461), + [anon_sym_i16] = ACTIONS(2461), + [anon_sym_u32] = ACTIONS(2461), + [anon_sym_i32] = ACTIONS(2461), + [anon_sym_u64] = ACTIONS(2461), + [anon_sym_i64] = ACTIONS(2461), + [anon_sym_u128] = ACTIONS(2461), + [anon_sym_i128] = ACTIONS(2461), + [anon_sym_isize] = ACTIONS(2461), + [anon_sym_usize] = ACTIONS(2461), + [anon_sym_f32] = ACTIONS(2461), + [anon_sym_f64] = ACTIONS(2461), + [anon_sym_bool] = ACTIONS(2461), + [anon_sym_str] = ACTIONS(2461), + [anon_sym_char] = ACTIONS(2461), + [aux_sym__non_special_token_token1] = ACTIONS(2461), + [anon_sym_SQUOTE] = ACTIONS(2461), + [anon_sym_as] = ACTIONS(2461), + [anon_sym_async] = ACTIONS(2461), + [anon_sym_await] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_default] = ACTIONS(2461), + [anon_sym_enum] = ACTIONS(2461), + [anon_sym_fn] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_impl] = ACTIONS(2461), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_loop] = ACTIONS(2461), + [anon_sym_match] = ACTIONS(2461), + [anon_sym_mod] = ACTIONS(2461), + [anon_sym_pub] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_static] = ACTIONS(2461), + [anon_sym_struct] = ACTIONS(2461), + [anon_sym_trait] = ACTIONS(2461), + [anon_sym_type] = ACTIONS(2461), + [anon_sym_union] = ACTIONS(2461), + [anon_sym_unsafe] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_where] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [sym_mutable_specifier] = ACTIONS(2461), + [sym_integer_literal] = ACTIONS(2463), + [aux_sym_string_literal_token1] = ACTIONS(2463), + [sym_char_literal] = ACTIONS(2463), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2461), + [sym_super] = ACTIONS(2461), + [sym_crate] = ACTIONS(2461), + [sym_raw_string_literal] = ACTIONS(2463), + [sym_float_literal] = ACTIONS(2463), + [sym_block_comment] = ACTIONS(3), + }, + [608] = { + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_RBRACK] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(2371), + [anon_sym_u8] = ACTIONS(2369), + [anon_sym_i8] = ACTIONS(2369), + [anon_sym_u16] = ACTIONS(2369), + [anon_sym_i16] = ACTIONS(2369), + [anon_sym_u32] = ACTIONS(2369), + [anon_sym_i32] = ACTIONS(2369), + [anon_sym_u64] = ACTIONS(2369), + [anon_sym_i64] = ACTIONS(2369), + [anon_sym_u128] = ACTIONS(2369), + [anon_sym_i128] = ACTIONS(2369), + [anon_sym_isize] = ACTIONS(2369), + [anon_sym_usize] = ACTIONS(2369), + [anon_sym_f32] = ACTIONS(2369), + [anon_sym_f64] = ACTIONS(2369), + [anon_sym_bool] = ACTIONS(2369), + [anon_sym_str] = ACTIONS(2369), + [anon_sym_char] = ACTIONS(2369), + [aux_sym__non_special_token_token1] = ACTIONS(2369), + [anon_sym_SQUOTE] = ACTIONS(2369), + [anon_sym_as] = ACTIONS(2369), + [anon_sym_async] = ACTIONS(2369), + [anon_sym_await] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_fn] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_impl] = ACTIONS(2369), + [anon_sym_let] = ACTIONS(2369), + [anon_sym_loop] = ACTIONS(2369), + [anon_sym_match] = ACTIONS(2369), + [anon_sym_mod] = ACTIONS(2369), + [anon_sym_pub] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2369), + [anon_sym_trait] = ACTIONS(2369), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_union] = ACTIONS(2369), + [anon_sym_unsafe] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_where] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [sym_mutable_specifier] = ACTIONS(2369), + [sym_integer_literal] = ACTIONS(2371), + [aux_sym_string_literal_token1] = ACTIONS(2371), + [sym_char_literal] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [sym_line_comment] = ACTIONS(1016), + [sym_self] = ACTIONS(2369), + [sym_super] = ACTIONS(2369), + [sym_crate] = ACTIONS(2369), + [sym_raw_string_literal] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2371), + [sym_block_comment] = ACTIONS(3), + }, + [609] = { [sym_function_modifiers] = STATE(2427), - [sym_higher_ranked_trait_bound] = STATE(1559), - [sym_removed_trait_bound] = STATE(1559), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1560), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(1561), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_higher_ranked_trait_bound] = STATE(1592), + [sym_removed_trait_bound] = STATE(1592), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1583), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(1582), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2451), + [anon_sym_QMARK] = ACTIONS(2449), [anon_sym_u8] = ACTIONS(904), [anon_sym_i8] = ACTIONS(904), [anon_sym_u16] = ACTIONS(904), @@ -69403,7 +70071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2451), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), @@ -69420,58 +70088,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [603] = { + [610] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1870), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RPAREN] = ACTIONS(2463), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1810), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -69481,44 +70148,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [604] = { + [611] = { [sym_function_modifiers] = STATE(2427), - [sym_higher_ranked_trait_bound] = STATE(1608), - [sym_removed_trait_bound] = STATE(1608), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1602), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(1606), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1405), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(2465), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2451), [anon_sym_u8] = ACTIONS(904), [anon_sym_i8] = ACTIONS(904), [anon_sym_u16] = ACTIONS(904), @@ -69541,7 +70206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(906), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), @@ -69551,64 +70216,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(912), [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2467), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), + [sym_self] = ACTIONS(2469), [sym_super] = ACTIONS(918), [sym_crate] = ACTIONS(918), [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [605] = { + [612] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2212), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2210), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -69618,133 +70284,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [606] = { - [sym_function_modifiers] = STATE(2398), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1116), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(2373), - [sym_array_type] = STATE(1113), - [sym_for_lifetimes] = STATE(1212), - [sym_function_type] = STATE(1113), - [sym_tuple_type] = STATE(1113), - [sym_unit_type] = STATE(1113), - [sym_generic_type] = STATE(854), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1113), - [sym_reference_type] = STATE(1113), - [sym_pointer_type] = STATE(1113), - [sym_empty_type] = STATE(1113), - [sym_abstract_type] = STATE(1113), - [sym_dynamic_type] = STATE(1113), - [sym_macro_invocation] = STATE(1113), - [sym_scoped_identifier] = STATE(2331), - [sym_scoped_type_identifier] = STATE(773), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_PLUS] = ACTIONS(2471), - [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), + [613] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2441), + [sym_generic_type_with_turbofish] = STATE(2454), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1874), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2471), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1146), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1148), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2473), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [614] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(2304), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(688), + [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_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(2479), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2481), - [anon_sym_union] = ACTIONS(2483), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_dyn] = ACTIONS(2491), - [sym_mutable_specifier] = ACTIONS(2493), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2475), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2495), - [sym_super] = ACTIONS(2495), - [sym_crate] = ACTIONS(2495), - [sym_metavariable] = ACTIONS(2497), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [607] = { + [615] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2184), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1490), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -69754,65 +70488,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [608] = { + [616] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1921), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2334), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -69822,65 +70556,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [609] = { + [617] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2178), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2208), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -69890,66 +70624,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [610] = { + [618] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2185), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1492), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), - [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(1148), + [sym_mutable_specifier] = ACTIONS(2477), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -69958,65 +70692,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [611] = { + [619] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2293), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2188), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70026,65 +70760,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [612] = { + [620] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1870), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2226), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70094,134 +70828,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [613] = { - [sym_attribute_item] = STATE(613), - [aux_sym_enum_variant_list_repeat1] = STATE(613), - [sym_identifier] = ACTIONS(2499), - [anon_sym_LPAREN] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_RBRACK] = ACTIONS(2501), - [anon_sym_STAR] = ACTIONS(2501), - [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_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_for] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2499), - [anon_sym_loop] = ACTIONS(2499), - [anon_sym_match] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2499), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_unsafe] = ACTIONS(2499), - [anon_sym_while] = ACTIONS(2499), - [anon_sym_POUND] = ACTIONS(2503), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_COMMA] = ACTIONS(2501), - [anon_sym_ref] = ACTIONS(2499), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_COLON_COLON] = ACTIONS(2501), - [anon_sym__] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2501), - [sym_mutable_specifier] = ACTIONS(2499), - [anon_sym_DOT_DOT] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_yield] = ACTIONS(2499), - [anon_sym_move] = ACTIONS(2499), - [sym_integer_literal] = ACTIONS(2501), - [aux_sym_string_literal_token1] = ACTIONS(2501), - [sym_char_literal] = ACTIONS(2501), - [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(2501), - [sym_raw_string_literal] = ACTIONS(2501), - [sym_float_literal] = ACTIONS(2501), - [sym_block_comment] = ACTIONS(3), - }, - [614] = { + [621] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1803), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1888), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), - [sym_mutable_specifier] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(1148), + [sym_mutable_specifier] = ACTIONS(2479), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -70230,65 +70896,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [615] = { + [622] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2189), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1874), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2471), + [anon_sym_union] = ACTIONS(2471), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70298,65 +70964,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(2481), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [616] = { + [623] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1461), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70366,65 +71032,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [617] = { + [624] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2206), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2282), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70434,134 +71100,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [618] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1395), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(2508), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2510), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2512), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [619] = { + [625] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1462), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1998), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), - [sym_mutable_specifier] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(1148), + [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -70570,133 +71168,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [620] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2210), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(2508), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2516), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [621] = { + [626] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2222), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2174), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70706,65 +71236,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [622] = { + [627] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2196), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2185), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70774,65 +71304,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [623] = { + [628] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2181), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2184), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70842,65 +71372,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [624] = { + [629] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2180), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70910,65 +71440,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [625] = { + [630] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2057), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2215), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -70978,65 +71508,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [626] = { + [631] = { + [sym_function_modifiers] = STATE(2392), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1126), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(2424), + [sym_array_type] = STATE(1074), + [sym_for_lifetimes] = STATE(1213), + [sym_function_type] = STATE(1074), + [sym_tuple_type] = STATE(1074), + [sym_unit_type] = STATE(1074), + [sym_generic_type] = STATE(827), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1074), + [sym_reference_type] = STATE(1074), + [sym_pointer_type] = STATE(1074), + [sym_empty_type] = STATE(1074), + [sym_abstract_type] = STATE(1074), + [sym_dynamic_type] = STATE(1074), + [sym_macro_invocation] = STATE(1074), + [sym_scoped_identifier] = STATE(2346), + [sym_scoped_type_identifier] = STATE(782), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_u8] = ACTIONS(2493), + [anon_sym_i8] = ACTIONS(2493), + [anon_sym_u16] = ACTIONS(2493), + [anon_sym_i16] = ACTIONS(2493), + [anon_sym_u32] = ACTIONS(2493), + [anon_sym_i32] = ACTIONS(2493), + [anon_sym_u64] = ACTIONS(2493), + [anon_sym_i64] = ACTIONS(2493), + [anon_sym_u128] = ACTIONS(2493), + [anon_sym_i128] = ACTIONS(2493), + [anon_sym_isize] = ACTIONS(2493), + [anon_sym_usize] = ACTIONS(2493), + [anon_sym_f32] = ACTIONS(2493), + [anon_sym_f64] = ACTIONS(2493), + [anon_sym_bool] = ACTIONS(2493), + [anon_sym_str] = ACTIONS(2493), + [anon_sym_char] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_fn] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2501), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_dyn] = ACTIONS(2509), + [sym_mutable_specifier] = ACTIONS(2511), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2513), + [sym_super] = ACTIONS(2513), + [sym_crate] = ACTIONS(2513), + [sym_metavariable] = ACTIONS(2515), + [sym_block_comment] = ACTIONS(3), + }, + [632] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1478), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2181), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71046,65 +71644,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [627] = { + [633] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1847), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2180), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71114,65 +71712,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [628] = { + [634] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1490), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1461), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71182,41 +71780,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [629] = { + [635] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1395), - [sym_bracketed_type] = STATE(2395), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1405), + [sym_bracketed_type] = STATE(2386), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2465), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(904), [anon_sym_i8] = ACTIONS(904), @@ -71247,204 +71845,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2518), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [630] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1882), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_union] = ACTIONS(2520), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2522), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [631] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1485), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2517), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [632] = { + [636] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1907), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2090), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71454,65 +71916,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [633] = { + [637] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1470), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1483), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71522,65 +71984,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [634] = { + [638] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1882), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_union] = ACTIONS(2520), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1494), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71590,66 +72052,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2524), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [635] = { + [639] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1867), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1847), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), - [sym_mutable_specifier] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(1148), + [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -71658,65 +72120,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [636] = { + [640] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2226), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1468), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71726,65 +72188,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [637] = { + [641] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2179), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2008), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71794,65 +72256,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [638] = { + [642] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2178), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71862,65 +72324,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [639] = { + [643] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(1857), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(2318), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1148), [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), @@ -71930,66 +72392,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [640] = { + [644] = { + [sym_attribute_item] = STATE(644), + [aux_sym_enum_variant_list_repeat1] = STATE(644), + [sym_identifier] = ACTIONS(2519), + [anon_sym_LPAREN] = ACTIONS(2521), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(2521), + [anon_sym_RBRACK] = ACTIONS(2521), + [anon_sym_STAR] = ACTIONS(2521), + [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_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_for] = ACTIONS(2519), + [anon_sym_if] = ACTIONS(2519), + [anon_sym_loop] = ACTIONS(2519), + [anon_sym_match] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2519), + [anon_sym_union] = ACTIONS(2519), + [anon_sym_unsafe] = ACTIONS(2519), + [anon_sym_while] = ACTIONS(2519), + [anon_sym_POUND] = ACTIONS(2523), + [anon_sym_BANG] = ACTIONS(2521), + [anon_sym_COMMA] = ACTIONS(2521), + [anon_sym_ref] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_COLON_COLON] = ACTIONS(2521), + [anon_sym__] = ACTIONS(2519), + [anon_sym_AMP] = ACTIONS(2521), + [sym_mutable_specifier] = ACTIONS(2519), + [anon_sym_DOT_DOT] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_yield] = ACTIONS(2519), + [anon_sym_move] = ACTIONS(2519), + [sym_integer_literal] = ACTIONS(2521), + [aux_sym_string_literal_token1] = ACTIONS(2521), + [sym_char_literal] = ACTIONS(2521), + [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(2521), + [sym_raw_string_literal] = ACTIONS(2521), + [sym_float_literal] = ACTIONS(2521), + [sym_block_comment] = ACTIONS(3), + }, + [645] = { [sym_bracketed_type] = STATE(2456), [sym_generic_type] = STATE(2441), [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1361), - [sym_scoped_type_identifier] = STATE(1941), - [sym_const_block] = STATE(1455), - [sym__pattern] = STATE(2276), - [sym_tuple_pattern] = STATE(1455), - [sym_slice_pattern] = STATE(1455), - [sym_tuple_struct_pattern] = STATE(1455), - [sym_struct_pattern] = STATE(1455), - [sym_remaining_field_pattern] = STATE(1455), - [sym_mut_pattern] = STATE(1455), - [sym_range_pattern] = STATE(1455), - [sym_ref_pattern] = STATE(1455), - [sym_captured_pattern] = STATE(1455), - [sym_reference_pattern] = STATE(1455), - [sym_or_pattern] = STATE(1455), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1419), - [sym_string_literal] = STATE(1419), - [sym_boolean_literal] = STATE(1419), - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), + [sym_scoped_identifier] = STATE(1383), + [sym_scoped_type_identifier] = STATE(1919), + [sym_const_block] = STATE(1471), + [sym__pattern] = STATE(1848), + [sym_tuple_pattern] = STATE(1471), + [sym_slice_pattern] = STATE(1471), + [sym_tuple_struct_pattern] = STATE(1471), + [sym_struct_pattern] = STATE(1471), + [sym_remaining_field_pattern] = STATE(1471), + [sym_mut_pattern] = STATE(1471), + [sym_range_pattern] = STATE(1471), + [sym_ref_pattern] = STATE(1471), + [sym_captured_pattern] = STATE(1471), + [sym_reference_pattern] = STATE(1471), + [sym_or_pattern] = STATE(1471), + [sym__literal_pattern] = STATE(1433), + [sym_negative_literal] = STATE(1428), + [sym_string_literal] = STATE(1428), + [sym_boolean_literal] = STATE(1428), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1146), [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1168), - [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(1148), + [sym_mutable_specifier] = ACTIONS(2526), [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -71998,375 +72528,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1172), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1152), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [641] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1985), - [sym_bracketed_type] = STATE(2395), - [sym_qualified_type] = STATE(2379), - [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [642] = { - [sym_function_modifiers] = STATE(2427), - [sym_type_parameters] = STATE(732), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1655), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1656), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1531), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [643] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2013), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [644] = { - [sym_function_modifiers] = STATE(2427), - [sym_type_parameters] = STATE(693), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1663), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1665), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1513), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2534), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [645] = { - [sym_function_modifiers] = STATE(2398), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1108), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(606), - [sym_array_type] = STATE(1113), - [sym_for_lifetimes] = STATE(1212), - [sym_function_type] = STATE(1113), - [sym_tuple_type] = STATE(1113), - [sym_unit_type] = STATE(1113), - [sym_generic_type] = STATE(854), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1113), - [sym_reference_type] = STATE(1113), - [sym_pointer_type] = STATE(1113), - [sym_empty_type] = STATE(1113), - [sym_abstract_type] = STATE(1113), - [sym_dynamic_type] = STATE(1113), - [sym_macro_invocation] = STATE(1113), - [sym_scoped_identifier] = STATE(2331), - [sym_scoped_type_identifier] = STATE(773), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_LBRACK] = ACTIONS(2469), - [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_SQUOTE] = ACTIONS(2536), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2481), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_dyn] = ACTIONS(2491), - [sym_mutable_specifier] = ACTIONS(2538), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2495), - [sym_super] = ACTIONS(2495), - [sym_crate] = ACTIONS(2495), - [sym_metavariable] = ACTIONS(2497), - [sym_block_comment] = ACTIONS(3), - }, [646] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1829), - [sym_bracketed_type] = STATE(2395), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1831), + [sym_bracketed_type] = STATE(2386), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(2540), + [anon_sym_RPAREN] = ACTIONS(2528), [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(904), @@ -72410,30 +72605,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [647] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2013), - [sym_bracketed_type] = STATE(2395), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1941), + [sym_bracketed_type] = STATE(2386), + [sym_qualified_type] = STATE(2362), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(2542), [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(904), @@ -72477,30 +72672,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [648] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2013), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(2283), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(614), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(2544), [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(904), @@ -72520,7 +72714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(904), [anon_sym_str] = ACTIONS(904), [anon_sym_char] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2530), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(906), @@ -72535,6 +72729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(912), [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2532), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(918), [sym_super] = ACTIONS(918), @@ -72544,30 +72739,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [649] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1862), - [sym_bracketed_type] = STATE(2395), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(2018), + [sym_bracketed_type] = STATE(2386), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(2546), + [anon_sym_RPAREN] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(904), @@ -72611,29 +72806,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [650] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2321), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(620), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(2018), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2536), [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(904), @@ -72653,7 +72849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(904), [anon_sym_str] = ACTIONS(904), [anon_sym_char] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(2536), + [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(906), @@ -72668,7 +72864,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(912), [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2548), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(918), [sym_super] = ACTIONS(918), @@ -72678,28 +72873,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [651] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1398), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(629), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2325), + [sym_type_parameters] = STATE(703), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1674), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1663), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1555), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(2538), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), @@ -72720,7 +72916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(904), [anon_sym_str] = ACTIONS(904), [anon_sym_char] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(2536), + [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(906), @@ -72731,11 +72927,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(2540), [anon_sym_COLON_COLON] = ACTIONS(912), [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2550), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(918), [sym_super] = ACTIONS(918), @@ -72745,30 +72940,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [652] = { [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(2013), - [sym_bracketed_type] = STATE(2395), - [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1382), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1356), - [aux_sym_function_modifiers_repeat1] = STATE(1563), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1422), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(635), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(2552), [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(904), @@ -72788,7 +72982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(904), [anon_sym_str] = ACTIONS(904), [anon_sym_char] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2530), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(906), @@ -72803,6 +72997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(912), [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2542), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(918), [sym_super] = ACTIONS(918), @@ -72812,29 +73007,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [653] = { [sym_function_modifiers] = STATE(2427), - [sym_type_parameters] = STATE(664), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1646), - [sym_bracketed_type] = STATE(2395), + [sym_type_parameters] = STATE(693), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1660), + [sym_bracketed_type] = STATE(2386), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1657), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1539), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2554), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1661), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1544), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(2544), [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), @@ -72866,7 +73061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2530), + [anon_sym_LT] = ACTIONS(2540), [anon_sym_COLON_COLON] = ACTIONS(912), [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), @@ -72879,30 +73074,365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [654] = { [sym_function_modifiers] = STATE(2427), - [sym_type_parameters] = STATE(671), - [sym_extern_modifier] = STATE(1563), - [sym__type] = STATE(1722), - [sym_bracketed_type] = STATE(2395), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(2018), + [sym_bracketed_type] = STATE(2386), [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1211), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1717), - [sym_generic_type_with_turbofish] = STATE(2396), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1527), - [aux_sym_function_modifiers_repeat1] = STATE(1563), - [sym_identifier] = ACTIONS(2556), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(688), + [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_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_block_comment] = ACTIONS(3), + }, + [655] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1808), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(688), + [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_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_block_comment] = ACTIONS(3), + }, + [656] = { + [sym_function_modifiers] = STATE(2427), + [sym_type_parameters] = STATE(734), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1682), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1536), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(2550), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(688), + [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_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_block_comment] = ACTIONS(3), + }, + [657] = { + [sym_function_modifiers] = STATE(2427), + [sym_type_parameters] = STATE(735), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1654), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1656), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1529), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(2552), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(688), + [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_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(906), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(908), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_block_comment] = ACTIONS(3), + }, + [658] = { + [sym_function_modifiers] = STATE(2392), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(1117), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(631), + [sym_array_type] = STATE(1074), + [sym_for_lifetimes] = STATE(1213), + [sym_function_type] = STATE(1074), + [sym_tuple_type] = STATE(1074), + [sym_unit_type] = STATE(1074), + [sym_generic_type] = STATE(827), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1074), + [sym_reference_type] = STATE(1074), + [sym_pointer_type] = STATE(1074), + [sym_empty_type] = STATE(1074), + [sym_abstract_type] = STATE(1074), + [sym_dynamic_type] = STATE(1074), + [sym_macro_invocation] = STATE(1074), + [sym_scoped_identifier] = STATE(2346), + [sym_scoped_type_identifier] = STATE(782), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_u8] = ACTIONS(2493), + [anon_sym_i8] = ACTIONS(2493), + [anon_sym_u16] = ACTIONS(2493), + [anon_sym_i16] = ACTIONS(2493), + [anon_sym_u32] = ACTIONS(2493), + [anon_sym_i32] = ACTIONS(2493), + [anon_sym_u64] = ACTIONS(2493), + [anon_sym_i64] = ACTIONS(2493), + [anon_sym_u128] = ACTIONS(2493), + [anon_sym_i128] = ACTIONS(2493), + [anon_sym_isize] = ACTIONS(2493), + [anon_sym_usize] = ACTIONS(2493), + [anon_sym_f32] = ACTIONS(2493), + [anon_sym_f64] = ACTIONS(2493), + [anon_sym_bool] = ACTIONS(2493), + [anon_sym_str] = ACTIONS(2493), + [anon_sym_char] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2530), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_fn] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2501), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_dyn] = ACTIONS(2509), + [sym_mutable_specifier] = ACTIONS(2554), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2513), + [sym_super] = ACTIONS(2513), + [sym_crate] = ACTIONS(2513), + [sym_metavariable] = ACTIONS(2515), + [sym_block_comment] = ACTIONS(3), + }, + [659] = { + [sym_function_modifiers] = STATE(2427), + [sym_extern_modifier] = STATE(1594), + [sym__type] = STATE(2018), + [sym_bracketed_type] = STATE(2386), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1396), + [sym_generic_type_with_turbofish] = STATE(2387), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2306), + [sym_scoped_type_identifier] = STATE(1366), + [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_identifier] = ACTIONS(2325), [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(2556), [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(904), @@ -72933,7 +73463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2530), + [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(912), [anon_sym_AMP] = ACTIONS(914), [anon_sym_dyn] = ACTIONS(726), @@ -72982,19 +73512,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2210), 1, - sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2312), 1, + sym__type, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -73003,7 +73533,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73014,7 +73544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73079,19 +73609,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2013), 1, + STATE(1795), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -73100,7 +73630,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73111,7 +73641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73176,19 +73706,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1413), 1, + STATE(1418), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -73197,7 +73727,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73208,7 +73738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73273,19 +73803,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1932), 1, + STATE(2049), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -73294,7 +73824,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73305,7 +73835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73370,19 +73900,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1407), 1, + STATE(2068), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -73391,7 +73921,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73402,7 +73932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73467,19 +73997,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1679), 1, + STATE(1651), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -73488,7 +74018,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73499,7 +74029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73564,19 +74094,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1649), 1, + STATE(1731), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -73585,7 +74115,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73596,7 +74126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73661,19 +74191,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1410), 1, + STATE(1728), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -73682,7 +74212,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73693,7 +74223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73758,19 +74288,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, STATE(1648), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -73779,7 +74309,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73790,7 +74320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73851,23 +74381,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(920), 1, sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2558), 1, - sym_identifier, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1546), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1650), 1, + STATE(1396), 1, sym_generic_type, - STATE(1701), 1, + STATE(1405), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -73876,7 +74406,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73887,7 +74417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73952,19 +74482,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1829), 1, + STATE(2025), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -73973,7 +74503,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73984,7 +74514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74049,19 +74579,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1658), 1, + STATE(1911), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -74070,7 +74600,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74081,7 +74611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74120,46 +74650,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2465), 1, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2467), 1, + ACTIONS(2485), 1, anon_sym_LPAREN, - ACTIONS(2469), 1, + ACTIONS(2487), 1, anon_sym_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2491), 1, anon_sym_STAR, - ACTIONS(2477), 1, + ACTIONS(2495), 1, anon_sym_default, - ACTIONS(2479), 1, + ACTIONS(2497), 1, anon_sym_fn, - ACTIONS(2481), 1, + ACTIONS(2499), 1, anon_sym_impl, - ACTIONS(2483), 1, + ACTIONS(2501), 1, anon_sym_union, - ACTIONS(2485), 1, + ACTIONS(2503), 1, anon_sym_BANG, - ACTIONS(2487), 1, + ACTIONS(2505), 1, anon_sym_COLON_COLON, - ACTIONS(2489), 1, + ACTIONS(2507), 1, anon_sym_AMP, - ACTIONS(2491), 1, + ACTIONS(2509), 1, anon_sym_dyn, - ACTIONS(2497), 1, + ACTIONS(2515), 1, sym_metavariable, - STATE(773), 1, + STATE(782), 1, sym_scoped_type_identifier, - STATE(854), 1, + STATE(827), 1, sym_generic_type, - STATE(1136), 1, + STATE(1092), 1, sym__type, - STATE(1212), 1, + STATE(1213), 1, sym_for_lifetimes, - STATE(2331), 1, + STATE(2346), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_lifetime, - STATE(2398), 1, + STATE(2392), 1, sym_function_modifiers, + STATE(2424), 1, + sym_lifetime, STATE(2495), 1, sym_bracketed_type, STATE(2496), 1, @@ -74167,18 +74697,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2495), 3, + ACTIONS(2513), 3, sym_self, sym_super, sym_crate, - STATE(1113), 11, + STATE(1074), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74190,7 +74720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2475), 17, + ACTIONS(2493), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74243,19 +74773,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1406), 1, + STATE(1723), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -74264,7 +74794,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74275,7 +74805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74308,71 +74838,71 @@ static const uint16_t ts_small_parse_table[] = { [1806] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2465), 1, - sym_identifier, - ACTIONS(2467), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2469), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2473), 1, - anon_sym_STAR, - ACTIONS(2477), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2479), 1, - anon_sym_fn, - ACTIONS(2481), 1, - anon_sym_impl, - ACTIONS(2483), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(2485), 1, - anon_sym_BANG, - ACTIONS(2487), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2489), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2491), 1, - anon_sym_dyn, - ACTIONS(2497), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(773), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(854), 1, + STATE(1396), 1, sym_generic_type, - STATE(1119), 1, + STATE(2105), 1, sym__type, - STATE(1212), 1, - sym_for_lifetimes, - STATE(2331), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_lifetime, - STATE(2398), 1, - sym_function_modifiers, - STATE(2495), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2495), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1113), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74384,7 +74914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2475), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74437,19 +74967,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2056), 1, + STATE(2061), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -74458,7 +74988,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74469,7 +74999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74530,23 +75060,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(920), 1, sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2560), 1, - sym_identifier, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1552), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1714), 1, + STATE(1396), 1, sym_generic_type, - STATE(1718), 1, + STATE(1634), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -74555,7 +75085,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74566,7 +75096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74631,19 +75161,116 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2190), 1, + STATE(1412), 1, + sym_lifetime, + STATE(1415), 1, + sym__type, + STATE(2306), 1, + sym_scoped_identifier, + STATE(2386), 1, + sym_bracketed_type, + STATE(2387), 1, + sym_generic_type_with_turbofish, + STATE(2427), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1594), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + STATE(1432), 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(904), 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(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, + anon_sym_LPAREN, + ACTIONS(902), 1, + anon_sym_LBRACK, + ACTIONS(906), 1, + anon_sym_default, + ACTIONS(908), 1, + anon_sym_union, + ACTIONS(912), 1, + anon_sym_COLON_COLON, + ACTIONS(914), 1, + anon_sym_AMP, + ACTIONS(920), 1, + sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1366), 1, + sym_scoped_type_identifier, + STATE(1396), 1, + sym_generic_type, + STATE(1908), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -74652,7 +75279,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74663,7 +75290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74693,7 +75320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2322] = 32, + [2451] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, @@ -74702,46 +75329,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2465), 1, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2467), 1, + ACTIONS(2485), 1, anon_sym_LPAREN, - ACTIONS(2469), 1, + ACTIONS(2487), 1, anon_sym_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2491), 1, anon_sym_STAR, - ACTIONS(2477), 1, + ACTIONS(2495), 1, anon_sym_default, - ACTIONS(2479), 1, + ACTIONS(2497), 1, anon_sym_fn, - ACTIONS(2481), 1, + ACTIONS(2499), 1, anon_sym_impl, - ACTIONS(2483), 1, + ACTIONS(2501), 1, anon_sym_union, - ACTIONS(2485), 1, + ACTIONS(2503), 1, anon_sym_BANG, - ACTIONS(2487), 1, + ACTIONS(2505), 1, anon_sym_COLON_COLON, - ACTIONS(2489), 1, + ACTIONS(2507), 1, anon_sym_AMP, - ACTIONS(2491), 1, + ACTIONS(2509), 1, anon_sym_dyn, - ACTIONS(2497), 1, + ACTIONS(2515), 1, sym_metavariable, - STATE(773), 1, + STATE(782), 1, sym_scoped_type_identifier, - STATE(854), 1, + STATE(827), 1, sym_generic_type, - STATE(1128), 1, + STATE(1073), 1, sym__type, - STATE(1212), 1, + STATE(1213), 1, sym_for_lifetimes, - STATE(2331), 1, + STATE(2346), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_lifetime, - STATE(2398), 1, + STATE(2392), 1, sym_function_modifiers, + STATE(2424), 1, + sym_lifetime, STATE(2495), 1, sym_bracketed_type, STATE(2496), 1, @@ -74749,18 +75376,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2495), 3, + ACTIONS(2513), 3, sym_self, sym_super, sym_crate, - STATE(1113), 11, + STATE(1074), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74772,7 +75399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2475), 17, + ACTIONS(2493), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74790,7 +75417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2451] = 32, + [2580] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74825,19 +75452,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2118), 1, + STATE(1415), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -74846,7 +75473,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74857,7 +75484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74887,74 +75514,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2580] = 32, + [2709] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2465), 1, - sym_identifier, - ACTIONS(2467), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2469), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2473), 1, - anon_sym_STAR, - ACTIONS(2477), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2479), 1, - anon_sym_fn, - ACTIONS(2481), 1, - anon_sym_impl, - ACTIONS(2483), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(2485), 1, - anon_sym_BANG, - ACTIONS(2487), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2489), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2491), 1, - anon_sym_dyn, - ACTIONS(2497), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(773), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(854), 1, + STATE(1396), 1, sym_generic_type, - STATE(1127), 1, + STATE(2250), 1, sym__type, - STATE(1212), 1, - sym_for_lifetimes, - STATE(2331), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_lifetime, - STATE(2398), 1, - sym_function_modifiers, - STATE(2495), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2495), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1113), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74966,7 +75593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2475), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74984,7 +75611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2709] = 32, + [2838] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75019,19 +75646,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1982), 1, + STATE(1732), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -75040,7 +75667,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75051,7 +75678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75081,7 +75708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2838] = 32, + [2967] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75116,19 +75743,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1913), 1, + STATE(2078), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -75137,7 +75764,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75148,7 +75775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75178,7 +75805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2967] = 32, + [3096] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75213,19 +75840,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1807), 1, + STATE(1693), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -75234,7 +75861,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75245,7 +75872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75275,7 +75902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3096] = 32, + [3225] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75310,19 +75937,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2110), 1, + STATE(1701), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -75331,7 +75958,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75342,7 +75969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75372,7 +75999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3225] = 32, + [3354] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75407,19 +76034,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1697), 1, + STATE(2125), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -75428,7 +76055,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75439,7 +76066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75469,7 +76096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3354] = 32, + [3483] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75504,19 +76131,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1696), 1, + STATE(1434), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -75525,7 +76152,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75536,7 +76163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75566,7 +76193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3483] = 32, + [3612] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75601,19 +76228,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1908), 1, + STATE(1814), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -75622,7 +76249,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75633,7 +76260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75663,7 +76290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3612] = 32, + [3741] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75698,19 +76325,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2051), 1, + STATE(2154), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -75719,7 +76346,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75730,7 +76357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75760,7 +76387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3741] = 32, + [3870] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75795,19 +76422,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2106), 1, + STATE(1650), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -75816,7 +76443,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75827,7 +76454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75857,103 +76484,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3870] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2465), 1, - sym_identifier, - ACTIONS(2467), 1, - anon_sym_LPAREN, - ACTIONS(2469), 1, - anon_sym_LBRACK, - ACTIONS(2473), 1, - anon_sym_STAR, - ACTIONS(2477), 1, - anon_sym_default, - ACTIONS(2479), 1, - anon_sym_fn, - ACTIONS(2481), 1, - anon_sym_impl, - ACTIONS(2483), 1, - anon_sym_union, - ACTIONS(2485), 1, - anon_sym_BANG, - ACTIONS(2487), 1, - anon_sym_COLON_COLON, - ACTIONS(2489), 1, - anon_sym_AMP, - ACTIONS(2491), 1, - anon_sym_dyn, - ACTIONS(2497), 1, - sym_metavariable, - STATE(773), 1, - sym_scoped_type_identifier, - STATE(854), 1, - sym_generic_type, - STATE(1091), 1, - sym__type, - STATE(1212), 1, - sym_for_lifetimes, - STATE(2331), 1, - sym_scoped_identifier, - STATE(2373), 1, - sym_lifetime, - STATE(2398), 1, - sym_function_modifiers, - STATE(2495), 1, - sym_bracketed_type, - STATE(2496), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2495), 3, - sym_self, - sym_super, - sym_crate, - STATE(1113), 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(2475), 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(77), 1, anon_sym_LT, @@ -75989,19 +76519,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2064), 1, + STATE(2236), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -76010,7 +76540,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76021,7 +76551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76086,19 +76616,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1911), 1, + STATE(2304), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -76107,7 +76637,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76118,7 +76648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76179,23 +76709,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(920), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + ACTIONS(2558), 1, + sym_identifier, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1551), 1, sym_scoped_type_identifier, - STATE(1382), 1, - sym_generic_type, - STATE(2077), 1, + STATE(1720), 1, sym__type, - STATE(2314), 1, + STATE(1727), 1, + sym_generic_type, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -76204,7 +76734,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76215,7 +76745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76280,19 +76810,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1851), 1, + STATE(2176), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -76301,7 +76831,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76312,7 +76842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76345,71 +76875,71 @@ static const uint16_t ts_small_parse_table[] = { [4515] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2483), 1, + sym_identifier, + ACTIONS(2485), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2487), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(2491), 1, + anon_sym_STAR, + ACTIONS(2495), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2497), 1, + anon_sym_fn, + ACTIONS(2499), 1, + anon_sym_impl, + ACTIONS(2501), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2503), 1, + anon_sym_BANG, + ACTIONS(2505), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2507), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2509), 1, + anon_sym_dyn, + ACTIONS(2515), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1211), 1, - sym_for_lifetimes, - STATE(1356), 1, + STATE(782), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(827), 1, sym_generic_type, - STATE(1687), 1, + STATE(1076), 1, sym__type, - STATE(2314), 1, + STATE(1213), 1, + sym_for_lifetimes, + STATE(2346), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2392), 1, + sym_function_modifiers, + STATE(2424), 1, + sym_lifetime, + STATE(2495), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2496), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2513), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1074), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76421,7 +76951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2493), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76448,46 +76978,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2465), 1, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2467), 1, + ACTIONS(2485), 1, anon_sym_LPAREN, - ACTIONS(2469), 1, + ACTIONS(2487), 1, anon_sym_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2491), 1, anon_sym_STAR, - ACTIONS(2477), 1, + ACTIONS(2495), 1, anon_sym_default, - ACTIONS(2479), 1, + ACTIONS(2497), 1, anon_sym_fn, - ACTIONS(2481), 1, + ACTIONS(2499), 1, anon_sym_impl, - ACTIONS(2483), 1, + ACTIONS(2501), 1, anon_sym_union, - ACTIONS(2485), 1, + ACTIONS(2503), 1, anon_sym_BANG, - ACTIONS(2487), 1, + ACTIONS(2505), 1, anon_sym_COLON_COLON, - ACTIONS(2489), 1, + ACTIONS(2507), 1, anon_sym_AMP, - ACTIONS(2491), 1, + ACTIONS(2509), 1, anon_sym_dyn, - ACTIONS(2497), 1, + ACTIONS(2515), 1, sym_metavariable, - STATE(773), 1, + STATE(782), 1, sym_scoped_type_identifier, - STATE(854), 1, + STATE(827), 1, sym_generic_type, - STATE(1117), 1, + STATE(1067), 1, sym__type, - STATE(1212), 1, + STATE(1213), 1, sym_for_lifetimes, - STATE(2331), 1, + STATE(2346), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_lifetime, - STATE(2398), 1, + STATE(2392), 1, sym_function_modifiers, + STATE(2424), 1, + sym_lifetime, STATE(2495), 1, sym_bracketed_type, STATE(2496), 1, @@ -76495,18 +77025,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2495), 3, + ACTIONS(2513), 3, sym_self, sym_super, sym_crate, - STATE(1113), 11, + STATE(1074), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76518,7 +77048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2475), 17, + ACTIONS(2493), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76571,19 +77101,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1671), 1, + STATE(2018), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -76592,7 +77122,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76603,7 +77133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76664,23 +77194,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(920), 1, sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2562), 1, - sym_identifier, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1520), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1652), 1, - sym__type, - STATE(1660), 1, + STATE(1396), 1, sym_generic_type, - STATE(2314), 1, + STATE(2302), 1, + sym__type, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -76689,7 +77219,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76700,7 +77230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76765,19 +77295,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1724), 1, + STATE(1409), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -76786,7 +77316,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76797,7 +77327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76862,19 +77392,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2116), 1, + STATE(2030), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -76883,7 +77413,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76894,7 +77424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76959,19 +77489,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2030), 1, + STATE(1664), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -76980,7 +77510,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76991,7 +77521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77056,19 +77586,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1408), 1, + STATE(2009), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -77077,7 +77607,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77088,7 +77618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77149,23 +77679,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(920), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + ACTIONS(2560), 1, + sym_identifier, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1534), 1, sym_scoped_type_identifier, - STATE(1382), 1, - sym_generic_type, - STATE(1906), 1, + STATE(1658), 1, sym__type, - STATE(2314), 1, + STATE(1662), 1, + sym_generic_type, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -77174,7 +77704,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77185,7 +77715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77250,19 +77780,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2047), 1, + STATE(1616), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -77271,7 +77801,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77282,7 +77812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77347,19 +77877,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1691), 1, + STATE(2077), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -77368,7 +77898,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77379,7 +77909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77444,19 +77974,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1692), 1, + STATE(1672), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -77465,7 +77995,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77476,7 +78006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77509,265 +78039,71 @@ static const uint16_t ts_small_parse_table[] = { [6063] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, - ACTIONS(902), 1, - anon_sym_LBRACK, - ACTIONS(906), 1, - anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, - ACTIONS(912), 1, - anon_sym_COLON_COLON, - ACTIONS(914), 1, - anon_sym_AMP, - ACTIONS(920), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, - sym_for_lifetimes, - STATE(1356), 1, - sym_scoped_type_identifier, - STATE(1382), 1, - sym_generic_type, - STATE(1416), 1, - sym__type, - STATE(2314), 1, - sym_scoped_identifier, - STATE(2395), 1, - sym_bracketed_type, - STATE(2396), 1, - sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(918), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 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(904), 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(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2483), 1, + sym_identifier, + ACTIONS(2485), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2487), 1, anon_sym_LBRACK, - ACTIONS(906), 1, - anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, - ACTIONS(912), 1, - anon_sym_COLON_COLON, - ACTIONS(914), 1, - anon_sym_AMP, - ACTIONS(920), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1211), 1, - sym_for_lifetimes, - STATE(1356), 1, - sym_scoped_type_identifier, - STATE(1382), 1, - sym_generic_type, - STATE(1415), 1, - sym__type, - STATE(2314), 1, - sym_scoped_identifier, - STATE(2395), 1, - sym_bracketed_type, - STATE(2396), 1, - sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(918), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 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(904), 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(77), 1, - anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(2491), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(2495), 1, + anon_sym_default, + ACTIONS(2497), 1, anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, + ACTIONS(2499), 1, anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, - ACTIONS(902), 1, - anon_sym_LBRACK, - ACTIONS(906), 1, - anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2501), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2503), 1, + anon_sym_BANG, + ACTIONS(2505), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2507), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2509), 1, + anon_sym_dyn, + ACTIONS(2515), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1211), 1, - sym_for_lifetimes, - STATE(1356), 1, + STATE(782), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(827), 1, sym_generic_type, - STATE(1613), 1, + STATE(1120), 1, sym__type, - STATE(2314), 1, + STATE(1213), 1, + sym_for_lifetimes, + STATE(2346), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2392), 1, + sym_function_modifiers, + STATE(2424), 1, + sym_lifetime, + STATE(2495), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2496), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2513), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1074), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77779,7 +78115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2493), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77797,7 +78133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6450] = 32, + [6192] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77832,19 +78168,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1902), 1, + STATE(2281), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -77853,7 +78189,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77864,7 +78200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77894,7 +78230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6579] = 32, + [6321] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77929,19 +78265,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2172), 1, + STATE(1411), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -77950,7 +78286,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77961,7 +78297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77991,7 +78327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6708] = 32, + [6450] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78026,19 +78362,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1414), 1, + STATE(1991), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -78047,7 +78383,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78058,7 +78394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78088,7 +78424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6837] = 32, + [6579] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78123,19 +78459,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1892), 1, + STATE(2048), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -78144,7 +78480,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78155,7 +78491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78185,7 +78521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6966] = 32, + [6708] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78220,19 +78556,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2135), 1, + STATE(1726), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -78241,7 +78577,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78252,7 +78588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78282,7 +78618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7095] = 32, + [6837] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78317,19 +78653,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1725), 1, + STATE(1970), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -78338,7 +78674,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78349,7 +78685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78379,74 +78715,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7224] = 32, + [6966] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2483), 1, + sym_identifier, + ACTIONS(2485), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2487), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(2491), 1, + anon_sym_STAR, + ACTIONS(2495), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2497), 1, + anon_sym_fn, + ACTIONS(2499), 1, + anon_sym_impl, + ACTIONS(2501), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2503), 1, + anon_sym_BANG, + ACTIONS(2505), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2507), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2509), 1, + anon_sym_dyn, + ACTIONS(2515), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1211), 1, - sym_for_lifetimes, - STATE(1356), 1, + STATE(782), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(827), 1, sym_generic_type, - STATE(1395), 1, + STATE(1126), 1, sym__type, - STATE(2314), 1, + STATE(1213), 1, + sym_for_lifetimes, + STATE(2346), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2392), 1, + sym_function_modifiers, + STATE(2424), 1, + sym_lifetime, + STATE(2495), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2496), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2513), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1074), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78458,7 +78794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2493), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78476,7 +78812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7353] = 32, + [7095] = 33, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78511,19 +78847,21 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + ACTIONS(2562), 1, + sym_self, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1698), 1, + STATE(1409), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -78532,18 +78870,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + ACTIONS(918), 2, + sym_super, + sym_crate, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78573,86 +78910,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7482] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + [7226] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1338), 20, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(902), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(906), 1, - anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, - ACTIONS(912), 1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(920), 1, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1211), 1, - sym_for_lifetimes, - STATE(1356), 1, - sym_scoped_type_identifier, - STATE(1382), 1, - sym_generic_type, - STATE(2124), 1, - sym__type, - STATE(2314), 1, - sym_scoped_identifier, - STATE(2395), 1, - sym_bracketed_type, - STATE(2396), 1, - sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1563), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(918), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 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(904), 17, + ACTIONS(1340), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78670,7 +78953,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7611] = 32, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7297] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78705,19 +79013,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2022), 1, + STATE(1891), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -78726,7 +79034,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78737,7 +79045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78767,75 +79075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7740] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1498), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1500), 42, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7811] = 32, + [7426] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78870,19 +79110,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1879), 1, + STATE(2222), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -78891,7 +79131,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78902,7 +79142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78932,7 +79172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7940] = 32, + [7555] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78967,19 +79207,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2018), 1, + STATE(2140), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -78988,7 +79228,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78999,7 +79239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79029,7 +79269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8069] = 32, + [7684] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79064,19 +79304,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2232), 1, + STATE(1893), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -79085,7 +79325,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79096,7 +79336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79126,7 +79366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8198] = 32, + [7813] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, @@ -79135,46 +79375,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2465), 1, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2467), 1, + ACTIONS(2485), 1, anon_sym_LPAREN, - ACTIONS(2469), 1, + ACTIONS(2487), 1, anon_sym_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2491), 1, anon_sym_STAR, - ACTIONS(2477), 1, + ACTIONS(2495), 1, anon_sym_default, - ACTIONS(2479), 1, + ACTIONS(2497), 1, anon_sym_fn, - ACTIONS(2481), 1, + ACTIONS(2499), 1, anon_sym_impl, - ACTIONS(2483), 1, + ACTIONS(2501), 1, anon_sym_union, - ACTIONS(2485), 1, + ACTIONS(2503), 1, anon_sym_BANG, - ACTIONS(2487), 1, + ACTIONS(2505), 1, anon_sym_COLON_COLON, - ACTIONS(2489), 1, + ACTIONS(2507), 1, anon_sym_AMP, - ACTIONS(2491), 1, + ACTIONS(2509), 1, anon_sym_dyn, - ACTIONS(2497), 1, + ACTIONS(2515), 1, sym_metavariable, - STATE(773), 1, + STATE(782), 1, sym_scoped_type_identifier, - STATE(854), 1, + STATE(827), 1, sym_generic_type, - STATE(1116), 1, + STATE(1135), 1, sym__type, - STATE(1212), 1, + STATE(1213), 1, sym_for_lifetimes, - STATE(2331), 1, + STATE(2346), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_lifetime, - STATE(2398), 1, + STATE(2392), 1, sym_function_modifiers, + STATE(2424), 1, + sym_lifetime, STATE(2495), 1, sym_bracketed_type, STATE(2496), 1, @@ -79182,18 +79422,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2495), 3, + ACTIONS(2513), 3, sym_self, sym_super, sym_crate, - STATE(1113), 11, + STATE(1074), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79205,7 +79445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2475), 17, + ACTIONS(2493), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79223,7 +79463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8327] = 32, + [7942] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79258,19 +79498,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1878), 1, + STATE(1410), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -79279,7 +79519,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79290,7 +79530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79320,7 +79560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8456] = 32, + [8071] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79355,19 +79595,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1720), 1, + STATE(1683), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -79376,7 +79616,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79387,7 +79627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79417,7 +79657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8585] = 32, + [8200] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79452,19 +79692,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1417), 1, + STATE(1899), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -79473,7 +79713,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79484,7 +79724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79514,7 +79754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8714] = 32, + [8329] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79549,19 +79789,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, STATE(1686), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -79570,7 +79810,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79581,7 +79821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79611,7 +79851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8843] = 32, + [8458] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79646,19 +79886,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2314), 1, - sym_scoped_identifier, - STATE(2316), 1, + STATE(1687), 1, sym__type, - STATE(2395), 1, + STATE(2306), 1, + sym_scoped_identifier, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -79667,7 +79907,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79678,7 +79918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79708,74 +79948,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8972] = 32, + [8587] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2483), 1, + sym_identifier, + ACTIONS(2485), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2487), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(2491), 1, + anon_sym_STAR, + ACTIONS(2495), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2497), 1, + anon_sym_fn, + ACTIONS(2499), 1, + anon_sym_impl, + ACTIONS(2501), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2503), 1, + anon_sym_BANG, + ACTIONS(2505), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2507), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2509), 1, + anon_sym_dyn, + ACTIONS(2515), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1211), 1, - sym_for_lifetimes, - STATE(1356), 1, + STATE(782), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(827), 1, sym_generic_type, - STATE(1732), 1, + STATE(1122), 1, sym__type, - STATE(2314), 1, + STATE(1213), 1, + sym_for_lifetimes, + STATE(2346), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2392), 1, + sym_function_modifiers, + STATE(2424), 1, + sym_lifetime, + STATE(2495), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2496), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2513), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1074), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79787,7 +80027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2493), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79805,7 +80045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9101] = 32, + [8716] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79840,19 +80080,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2039), 1, + STATE(2110), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -79861,7 +80101,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79872,7 +80112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79902,74 +80142,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9230] = 32, + [8845] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2465), 1, - sym_identifier, - ACTIONS(2467), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2469), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2473), 1, - anon_sym_STAR, - ACTIONS(2477), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2479), 1, - anon_sym_fn, - ACTIONS(2481), 1, - anon_sym_impl, - ACTIONS(2483), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(2485), 1, - anon_sym_BANG, - ACTIONS(2487), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2489), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2491), 1, - anon_sym_dyn, - ACTIONS(2497), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(773), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(854), 1, + STATE(1396), 1, sym_generic_type, - STATE(1069), 1, + STATE(1417), 1, sym__type, - STATE(1212), 1, - sym_for_lifetimes, - STATE(2331), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_lifetime, - STATE(2398), 1, - sym_function_modifiers, - STATE(2495), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2495), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1113), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79981,7 +80221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2475), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79999,7 +80239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9359] = 32, + [8974] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80034,19 +80274,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1626), 1, + STATE(2118), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -80055,7 +80295,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80066,7 +80306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80096,7 +80336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9488] = 32, + [9103] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80131,19 +80371,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2239), 1, + STATE(1684), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -80152,7 +80392,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80163,7 +80403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80193,7 +80433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9617] = 32, + [9232] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80228,19 +80468,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2149), 1, + STATE(2187), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -80249,7 +80489,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80260,7 +80500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80290,7 +80530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9746] = 32, + [9361] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80325,19 +80565,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1688), 1, + STATE(1420), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -80346,7 +80586,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80357,7 +80597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80387,7 +80627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9875] = 32, + [9490] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80422,19 +80662,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2564), 1, sym_identifier, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1551), 1, + STATE(1523), 1, sym_scoped_type_identifier, - STATE(1680), 1, - sym__type, - STATE(1682), 1, + STATE(1697), 1, sym_generic_type, - STATE(2314), 1, + STATE(1698), 1, + sym__type, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -80443,7 +80683,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80454,7 +80694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80484,7 +80724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10004] = 33, + [9619] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80515,25 +80755,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(920), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, ACTIONS(2566), 1, - sym_self, - STATE(1211), 1, + sym_identifier, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1528), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1647), 1, sym_generic_type, - STATE(1413), 1, + STATE(1689), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -80542,17 +80780,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(918), 2, - sym_super, - sym_crate, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - STATE(1421), 11, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80582,7 +80821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10135] = 32, + [9748] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80617,19 +80856,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1695), 1, + STATE(1423), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -80638,7 +80877,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80649,7 +80888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80679,7 +80918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10264] = 32, + [9877] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80714,19 +80953,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1916), 1, + STATE(1670), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -80735,7 +80974,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80746,7 +80985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80776,7 +81015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10393] = 32, + [10006] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80811,19 +81050,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1713), 1, + STATE(2300), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -80832,7 +81071,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80843,7 +81082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80873,7 +81112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10522] = 32, + [10135] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80908,19 +81147,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1721), 1, + STATE(1705), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -80929,7 +81168,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80940,7 +81179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80970,7 +81209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10651] = 32, + [10264] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81005,19 +81244,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1669), 1, + STATE(1706), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -81026,7 +81265,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81037,7 +81276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81067,7 +81306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10780] = 32, + [10393] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81102,19 +81341,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2209), 1, + STATE(2135), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -81123,7 +81362,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81134,7 +81373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81164,7 +81403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10909] = 32, + [10522] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81199,19 +81438,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1673), 1, + STATE(2108), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -81220,7 +81459,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81231,7 +81470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81261,7 +81500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11038] = 32, + [10651] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81296,28 +81535,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1399), 1, + STATE(2132), 1, sym__type, - STATE(1401), 1, - sym_lifetime, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, STATE(2427), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81328,7 +81567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81358,7 +81597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11167] = 32, + [10780] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81393,19 +81632,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1674), 1, + STATE(2239), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -81414,7 +81653,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81425,7 +81664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81455,7 +81694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11296] = 32, + [10909] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81490,19 +81729,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2308), 1, + STATE(1685), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -81511,7 +81750,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81522,7 +81761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81552,7 +81791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11425] = 32, + [11038] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81587,19 +81826,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1726), 1, + STATE(2159), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -81608,7 +81847,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81619,7 +81858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81649,7 +81888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11554] = 32, + [11167] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81684,19 +81923,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1651), 1, + STATE(2039), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -81705,7 +81944,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81716,7 +81955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81746,7 +81985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11683] = 32, + [11296] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81781,19 +82020,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1640), 1, + STATE(1708), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -81802,7 +82041,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -81813,7 +82052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81843,74 +82082,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11812] = 32, + [11425] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2465), 1, - sym_identifier, - ACTIONS(2467), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2469), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2473), 1, - anon_sym_STAR, - ACTIONS(2477), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2479), 1, + ACTIONS(908), 1, + anon_sym_union, + ACTIONS(912), 1, + anon_sym_COLON_COLON, + ACTIONS(914), 1, + anon_sym_AMP, + ACTIONS(920), 1, + sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1366), 1, + sym_scoped_type_identifier, + STATE(1396), 1, + sym_generic_type, + STATE(1710), 1, + sym__type, + STATE(2306), 1, + sym_scoped_identifier, + STATE(2386), 1, + sym_bracketed_type, + STATE(2387), 1, + sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1594), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + STATE(1432), 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(904), 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, + [11554] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(2481), 1, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(2483), 1, - anon_sym_union, - ACTIONS(2485), 1, + ACTIONS(710), 1, anon_sym_BANG, - ACTIONS(2487), 1, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, + anon_sym_LPAREN, + ACTIONS(902), 1, + anon_sym_LBRACK, + ACTIONS(906), 1, + anon_sym_default, + ACTIONS(908), 1, + anon_sym_union, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2489), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2491), 1, - anon_sym_dyn, - ACTIONS(2497), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(773), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(854), 1, + STATE(1396), 1, sym_generic_type, - STATE(1115), 1, + STATE(2052), 1, sym__type, - STATE(1212), 1, - sym_for_lifetimes, - STATE(2331), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2373), 1, + STATE(2386), 1, + sym_bracketed_type, + STATE(2387), 1, + sym_generic_type_with_turbofish, + STATE(2425), 1, sym_lifetime, - STATE(2398), 1, + STATE(2427), 1, sym_function_modifiers, - STATE(2495), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1594), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + STATE(1432), 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(904), 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, + [11683] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, + anon_sym_LPAREN, + ACTIONS(902), 1, + anon_sym_LBRACK, + ACTIONS(906), 1, + anon_sym_default, + ACTIONS(908), 1, + anon_sym_union, + ACTIONS(912), 1, + anon_sym_COLON_COLON, + ACTIONS(914), 1, + anon_sym_AMP, + ACTIONS(920), 1, + sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1366), 1, + sym_scoped_type_identifier, + STATE(1396), 1, + sym_generic_type, + STATE(2117), 1, + sym__type, + STATE(2306), 1, + sym_scoped_identifier, + STATE(2386), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2495), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1113), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81922,7 +82355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2475), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81940,7 +82373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11941] = 32, + [11812] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81975,19 +82408,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1837), 1, + STATE(2203), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -81996,7 +82429,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -82007,7 +82440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82037,7 +82470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12070] = 32, + [11941] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82072,19 +82505,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2311), 1, + STATE(1715), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -82093,7 +82526,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -82104,7 +82537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82134,7 +82567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12199] = 32, + [12070] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82169,19 +82602,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2187), 1, + STATE(1414), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -82190,7 +82623,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -82201,7 +82634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82231,7 +82664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12328] = 32, + [12199] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82266,19 +82699,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1983), 1, + STATE(2087), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -82287,7 +82720,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -82298,7 +82731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82328,74 +82761,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12457] = 32, + [12328] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2465), 1, - sym_identifier, - ACTIONS(2467), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2469), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2473), 1, - anon_sym_STAR, - ACTIONS(2477), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2479), 1, - anon_sym_fn, - ACTIONS(2481), 1, - anon_sym_impl, - ACTIONS(2483), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(2485), 1, - anon_sym_BANG, - ACTIONS(2487), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2489), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2491), 1, - anon_sym_dyn, - ACTIONS(2497), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(773), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(854), 1, + STATE(1396), 1, sym_generic_type, - STATE(1150), 1, + STATE(1721), 1, sym__type, - STATE(1212), 1, - sym_for_lifetimes, - STATE(2331), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_lifetime, - STATE(2398), 1, - sym_function_modifiers, - STATE(2495), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2495), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1113), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82407,7 +82840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2475), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82425,7 +82858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12586] = 32, + [12457] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82460,19 +82893,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2203), 1, + STATE(1722), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -82481,7 +82914,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -82492,7 +82925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82522,7 +82955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12715] = 32, + [12586] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82557,19 +82990,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1915), 1, + STATE(1694), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -82578,7 +83011,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -82589,7 +83022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82619,7 +83052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12844] = 32, + [12715] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82654,19 +83087,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2233), 1, + STATE(1955), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -82675,7 +83108,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -82686,7 +83119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82716,74 +83149,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12973] = 32, + [12844] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2465), 1, - sym_identifier, - ACTIONS(2467), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(2469), 1, + ACTIONS(902), 1, anon_sym_LBRACK, - ACTIONS(2473), 1, - anon_sym_STAR, - ACTIONS(2477), 1, + ACTIONS(906), 1, anon_sym_default, - ACTIONS(2479), 1, - anon_sym_fn, - ACTIONS(2481), 1, - anon_sym_impl, - ACTIONS(2483), 1, + ACTIONS(908), 1, anon_sym_union, - ACTIONS(2485), 1, - anon_sym_BANG, - ACTIONS(2487), 1, + ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2489), 1, + ACTIONS(914), 1, anon_sym_AMP, - ACTIONS(2491), 1, - anon_sym_dyn, - ACTIONS(2497), 1, + ACTIONS(920), 1, sym_metavariable, - STATE(773), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(854), 1, + STATE(1396), 1, sym_generic_type, - STATE(1151), 1, + STATE(1700), 1, sym__type, - STATE(1212), 1, - sym_for_lifetimes, - STATE(2331), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_lifetime, - STATE(2398), 1, - sym_function_modifiers, - STATE(2495), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_lifetime, + STATE(2427), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2495), 3, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(1113), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82795,7 +83228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2475), 17, + ACTIONS(904), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82813,7 +83246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13102] = 32, + [12973] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, @@ -82822,46 +83255,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2465), 1, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2467), 1, + ACTIONS(2485), 1, anon_sym_LPAREN, - ACTIONS(2469), 1, + ACTIONS(2487), 1, anon_sym_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2491), 1, anon_sym_STAR, - ACTIONS(2477), 1, + ACTIONS(2495), 1, anon_sym_default, - ACTIONS(2479), 1, + ACTIONS(2497), 1, anon_sym_fn, - ACTIONS(2481), 1, + ACTIONS(2499), 1, anon_sym_impl, - ACTIONS(2483), 1, + ACTIONS(2501), 1, anon_sym_union, - ACTIONS(2485), 1, + ACTIONS(2503), 1, anon_sym_BANG, - ACTIONS(2487), 1, + ACTIONS(2505), 1, anon_sym_COLON_COLON, - ACTIONS(2489), 1, + ACTIONS(2507), 1, anon_sym_AMP, - ACTIONS(2491), 1, + ACTIONS(2509), 1, anon_sym_dyn, - ACTIONS(2497), 1, + ACTIONS(2515), 1, sym_metavariable, - STATE(773), 1, + STATE(782), 1, sym_scoped_type_identifier, - STATE(854), 1, + STATE(827), 1, sym_generic_type, - STATE(1147), 1, + STATE(1095), 1, sym__type, - STATE(1212), 1, + STATE(1213), 1, sym_for_lifetimes, - STATE(2331), 1, + STATE(2346), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_lifetime, - STATE(2398), 1, + STATE(2392), 1, sym_function_modifiers, + STATE(2424), 1, + sym_lifetime, STATE(2495), 1, sym_bracketed_type, STATE(2496), 1, @@ -82869,18 +83302,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2495), 3, + ACTIONS(2513), 3, sym_self, sym_super, sym_crate, - STATE(1113), 11, + STATE(1074), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82892,7 +83325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2475), 17, + ACTIONS(2493), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82910,7 +83343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13231] = 32, + [13102] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82945,19 +83378,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2136), 1, + STATE(1883), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -82966,7 +83399,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -82977,7 +83410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83007,6 +83440,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [13231] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2483), 1, + sym_identifier, + ACTIONS(2485), 1, + anon_sym_LPAREN, + ACTIONS(2487), 1, + anon_sym_LBRACK, + ACTIONS(2491), 1, + anon_sym_STAR, + ACTIONS(2495), 1, + anon_sym_default, + ACTIONS(2497), 1, + anon_sym_fn, + ACTIONS(2499), 1, + anon_sym_impl, + ACTIONS(2501), 1, + anon_sym_union, + ACTIONS(2503), 1, + anon_sym_BANG, + ACTIONS(2505), 1, + anon_sym_COLON_COLON, + ACTIONS(2507), 1, + anon_sym_AMP, + ACTIONS(2509), 1, + anon_sym_dyn, + ACTIONS(2515), 1, + sym_metavariable, + STATE(782), 1, + sym_scoped_type_identifier, + STATE(827), 1, + sym_generic_type, + STATE(1116), 1, + sym__type, + STATE(1213), 1, + sym_for_lifetimes, + STATE(2346), 1, + sym_scoped_identifier, + STATE(2392), 1, + sym_function_modifiers, + STATE(2424), 1, + sym_lifetime, + STATE(2495), 1, + sym_bracketed_type, + STATE(2496), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1594), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2513), 3, + sym_self, + sym_super, + sym_crate, + STATE(1074), 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(2493), 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, [13360] = 32, ACTIONS(77), 1, anon_sym_LT, @@ -83042,19 +83572,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1654), 1, + STATE(1926), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -83063,7 +83593,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -83074,7 +83604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83139,19 +83669,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2069), 1, + STATE(1794), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -83160,7 +83690,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -83171,7 +83701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83236,19 +83766,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(2236), 1, + STATE(1724), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -83257,7 +83787,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -83268,7 +83798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83301,71 +83831,71 @@ static const uint16_t ts_small_parse_table[] = { [13747] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2483), 1, + sym_identifier, + ACTIONS(2485), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2487), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(2491), 1, + anon_sym_STAR, + ACTIONS(2495), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2497), 1, + anon_sym_fn, + ACTIONS(2499), 1, + anon_sym_impl, + ACTIONS(2501), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2503), 1, + anon_sym_BANG, + ACTIONS(2505), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2507), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2509), 1, + anon_sym_dyn, + ACTIONS(2515), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1211), 1, - sym_for_lifetimes, - STATE(1356), 1, + STATE(782), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(827), 1, sym_generic_type, - STATE(1399), 1, + STATE(1112), 1, sym__type, - STATE(2314), 1, + STATE(1213), 1, + sym_for_lifetimes, + STATE(2346), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2392), 1, + sym_function_modifiers, + STATE(2424), 1, + sym_lifetime, + STATE(2495), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2496), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2513), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1074), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83377,7 +83907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2493), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83398,71 +83928,71 @@ static const uint16_t ts_small_parse_table[] = { [13876] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2483), 1, + sym_identifier, + ACTIONS(2485), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2487), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(2491), 1, + anon_sym_STAR, + ACTIONS(2495), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2497), 1, + anon_sym_fn, + ACTIONS(2499), 1, + anon_sym_impl, + ACTIONS(2501), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2503), 1, + anon_sym_BANG, + ACTIONS(2505), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2507), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2509), 1, + anon_sym_dyn, + ACTIONS(2515), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1211), 1, - sym_for_lifetimes, - STATE(1356), 1, + STATE(782), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(827), 1, sym_generic_type, - STATE(1723), 1, + STATE(1107), 1, sym__type, - STATE(2314), 1, + STATE(1213), 1, + sym_for_lifetimes, + STATE(2346), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2392), 1, + sym_function_modifiers, + STATE(2424), 1, + sym_lifetime, + STATE(2495), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2496), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2513), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1074), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83474,7 +84004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2493), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83527,19 +84057,19 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1356), 1, + STATE(1366), 1, sym_scoped_type_identifier, - STATE(1382), 1, + STATE(1396), 1, sym_generic_type, - STATE(1838), 1, + STATE(1808), 1, sym__type, - STATE(2314), 1, + STATE(2306), 1, sym_scoped_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2425), 1, sym_lifetime, @@ -83548,7 +84078,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -83559,7 +84089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83656,7 +84186,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(406), 18, + ACTIONS(400), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -83845,7 +84375,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1498), 15, + ACTIONS(1338), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -83861,7 +84391,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1500), 38, + ACTIONS(1340), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83909,9 +84439,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2588), 1, anon_sym_LT2, - STATE(945), 1, + STATE(972), 1, sym_type_arguments, - STATE(1000), 1, + STATE(1009), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -83968,9 +84498,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2588), 1, anon_sym_LT2, - STATE(945), 1, + STATE(972), 1, sym_type_arguments, - STATE(1000), 1, + STATE(1009), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -84027,9 +84557,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2588), 1, anon_sym_LT2, - STATE(945), 1, + STATE(972), 1, sym_type_arguments, - STATE(1000), 1, + STATE(1009), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -84079,15 +84609,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14664] = 7, - ACTIONS(2580), 1, - anon_sym_LPAREN, - ACTIONS(2588), 1, - anon_sym_LT2, - STATE(958), 1, - sym_type_arguments, - STATE(1012), 1, - sym_parameters, + [14664] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1362), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1364), 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, + [14720] = 5, + ACTIONS(2602), 1, + anon_sym_BANG, + ACTIONS(2604), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -84109,8 +84688,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2598), 26, + ACTIONS(2598), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84121,6 +84701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84136,15 +84717,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14728] = 5, - ACTIONS(2606), 1, + [14780] = 5, + ACTIONS(2610), 1, anon_sym_BANG, - ACTIONS(2608), 1, + ACTIONS(2612), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 17, + ACTIONS(2608), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84162,7 +84743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2602), 28, + ACTIONS(2606), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84191,68 +84772,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14788] = 3, + [14840] = 5, + ACTIONS(2618), 1, + anon_sym_BANG, + ACTIONS(2620), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1894), 9, + ACTIONS(2616), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2614), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1896), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14844] = 5, - ACTIONS(2614), 1, - anon_sym_BANG, - ACTIONS(2616), 1, - anon_sym_COLON_COLON, + 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, + [14900] = 7, + ACTIONS(2580), 1, + anon_sym_LPAREN, + ACTIONS(2588), 1, + anon_sym_LT2, + STATE(973), 1, + sym_type_arguments, + STATE(1027), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 17, + ACTIONS(2624), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84270,9 +84857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2610), 28, + ACTIONS(2622), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84283,7 +84869,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84299,19 +84884,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14904] = 7, + [14964] = 7, ACTIONS(2580), 1, anon_sym_LPAREN, ACTIONS(2588), 1, anon_sym_LT2, - STATE(958), 1, + STATE(973), 1, sym_type_arguments, - STATE(1012), 1, + STATE(1027), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 17, + ACTIONS(2628), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84329,7 +84914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2618), 26, + ACTIONS(2626), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -84356,125 +84941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14968] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1954), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, + [15028] = 5, + ACTIONS(2634), 1, + anon_sym_BANG, + ACTIONS(2636), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1956), 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, - [15024] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1560), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1562), 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, - [15080] = 7, - ACTIONS(2580), 1, - anon_sym_LPAREN, - ACTIONS(2588), 1, - anon_sym_LT2, - STATE(958), 1, - sym_type_arguments, - STATE(1012), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2624), 17, + ACTIONS(2632), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84492,8 +84967,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2622), 26, + ACTIONS(2630), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84504,6 +84980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84519,19 +84996,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15144] = 7, - ACTIONS(2584), 1, - anon_sym_BANG, - ACTIONS(2626), 1, - anon_sym_LBRACE, - ACTIONS(2628), 1, - anon_sym_COLON_COLON, - STATE(1076), 1, - sym_field_initializer_list, + [15088] = 7, + ACTIONS(2580), 1, + anon_sym_LPAREN, + ACTIONS(2588), 1, + anon_sym_LT2, + STATE(973), 1, + sym_type_arguments, + STATE(1027), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, + ACTIONS(2640), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84542,15 +85019,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(564), 28, + ACTIONS(2638), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84564,7 +85043,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, @@ -84574,13 +85052,65 @@ 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, + [15152] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1794), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1796), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, [15208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1918), 9, + ACTIONS(1694), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84590,7 +85120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1920), 38, + ACTIONS(1696), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84633,7 +85163,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2014), 9, + ACTIONS(1166), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84643,7 +85173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2016), 38, + ACTIONS(1168), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84682,15 +85212,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15320] = 5, - ACTIONS(2634), 1, + [15320] = 7, + ACTIONS(2584), 1, anon_sym_BANG, - ACTIONS(2636), 1, + ACTIONS(2642), 1, + anon_sym_LBRACE, + ACTIONS(2644), 1, anon_sym_COLON_COLON, + STATE(1145), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2632), 17, + ACTIONS(564), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84701,18 +85235,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2630), 28, + ACTIONS(562), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84721,12 +85252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, 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, @@ -84736,23 +85267,77 @@ 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, - [15380] = 6, - ACTIONS(2644), 1, + [15384] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1766), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1768), 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, + [15440] = 6, + ACTIONS(2652), 1, anon_sym_BANG, - ACTIONS(2646), 1, + ACTIONS(2654), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(2650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - ACTIONS(2640), 16, + ACTIONS(2648), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_as, @@ -84769,7 +85354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 23, + ACTIONS(2646), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -84793,15 +85378,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15442] = 5, - ACTIONS(2652), 1, - anon_sym_BANG, - ACTIONS(2654), 1, - anon_sym_COLON_COLON, + [15502] = 5, + ACTIONS(2656), 1, + anon_sym_else, + STATE(1110), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 17, + ACTIONS(494), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84812,14 +85397,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2648), 28, + ACTIONS(492), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84832,12 +85415,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, 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, @@ -84847,14 +85430,15 @@ 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, - [15502] = 4, - ACTIONS(2656), 1, + [15561] = 4, + ACTIONS(2658), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 16, + ACTIONS(2634), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -84871,7 +85455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2616), 29, + ACTIONS(2636), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84901,15 +85485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15559] = 5, - ACTIONS(2658), 1, + [15618] = 5, + ACTIONS(2656), 1, anon_sym_else, - STATE(1103), 1, + STATE(1096), 1, sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(394), 15, + ACTIONS(500), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84925,7 +85509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(392), 29, + ACTIONS(498), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84955,16 +85539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15618] = 4, - ACTIONS(2660), 1, - anon_sym_LBRACE, + [15677] = 5, + ACTIONS(2664), 1, + anon_sym_SQUOTE, + STATE(1125), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 16, + ACTIONS(2662), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84978,10 +85563,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2636), 29, + ACTIONS(2660), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84989,7 +85575,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85008,13 +85593,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15675] = 4, - ACTIONS(2662), 1, + [15736] = 4, + ACTIONS(2666), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2652), 16, + ACTIONS(2610), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -85031,7 +85616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2654), 29, + ACTIONS(2612), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85061,11 +85646,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15732] = 3, + [15793] = 4, + ACTIONS(2668), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 16, + ACTIONS(2618), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -85082,11 +85669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2608), 30, + ACTIONS(2620), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85113,17 +85699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15787] = 5, - ACTIONS(2668), 1, - anon_sym_SQUOTE, - STATE(1067), 1, - sym_loop_label, + [15850] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2666), 15, + ACTIONS(2618), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85137,7 +85720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2664), 29, + ACTIONS(2620), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85149,6 +85732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85167,13 +85751,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15846] = 4, + [15905] = 4, ACTIONS(2670), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 16, + ACTIONS(2602), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -85190,7 +85774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2608), 29, + ACTIONS(2604), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85220,65 +85804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15903] = 5, - ACTIONS(2658), 1, - anon_sym_else, - STATE(1098), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(500), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(498), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, [15962] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1690), 7, + ACTIONS(1762), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85286,7 +85816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1692), 38, + ACTIONS(1764), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85329,7 +85859,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1314), 7, + ACTIONS(1504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85337,7 +85867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1316), 38, + ACTIONS(1506), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85380,7 +85910,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1564), 7, + ACTIONS(1918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85388,7 +85918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1566), 38, + ACTIONS(1920), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85431,7 +85961,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1576), 7, + ACTIONS(1906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85439,7 +85969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1578), 38, + ACTIONS(1908), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85482,62 +86012,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1580), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1582), 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, - [16232] = 5, - ACTIONS(2674), 1, - anon_sym_LPAREN, - STATE(1079), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2676), 15, + ACTIONS(538), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85553,8 +86028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2672), 28, + ACTIONS(536), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85582,11 +86058,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16290] = 3, + anon_sym_else, + [16232] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1634), 7, + ACTIONS(1726), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85594,7 +86071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1636), 38, + ACTIONS(1728), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85633,11 +86110,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16344] = 3, + [16286] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1638), 7, + ACTIONS(1898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85645,7 +86122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1640), 38, + ACTIONS(1900), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85684,13 +86161,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16398] = 4, - ACTIONS(2678), 1, + [16340] = 4, + ACTIONS(2672), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, + ACTIONS(2624), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85706,7 +86183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(564), 29, + ACTIONS(2622), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85736,15 +86213,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16454] = 5, - ACTIONS(2646), 1, + [16396] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1390), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1392), 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, + [16450] = 4, + ACTIONS(2674), 1, anon_sym_COLON_COLON, - ACTIONS(2680), 1, - anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(2624), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85760,10 +86286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 28, + ACTIONS(2622), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85789,11 +86316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16512] = 3, + [16506] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1870), 7, + ACTIONS(1862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85801,7 +86328,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1872), 38, + ACTIONS(1864), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16560] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1702), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1704), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85840,115 +86418,164 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16566] = 3, + [16614] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(848), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(850), 30, + ACTIONS(1686), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [16620] = 5, - ACTIONS(2584), 1, - anon_sym_BANG, - ACTIONS(2682), 1, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1688), 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, + [16668] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1798), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(564), 28, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1800), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16722] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1850), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [16678] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1852), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16776] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1120), 7, + ACTIONS(1834), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85956,7 +86583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1122), 38, + ACTIONS(1836), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85995,11 +86622,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16732] = 3, + [16830] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1886), 7, + ACTIONS(1670), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86007,7 +86634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1888), 38, + ACTIONS(1672), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86046,11 +86673,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16786] = 3, + [16884] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1194), 7, + ACTIONS(1666), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86058,7 +86685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1196), 38, + ACTIONS(1668), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86097,11 +86724,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16840] = 3, + [16938] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1136), 7, + ACTIONS(1662), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86109,7 +86736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1138), 38, + ACTIONS(1664), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86148,11 +86775,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16894] = 3, + [16992] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(536), 7, + ACTIONS(1618), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86160,7 +86787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(538), 38, + ACTIONS(1620), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86199,11 +86826,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16948] = 3, + [17046] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1970), 7, + ACTIONS(1572), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86211,7 +86838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1972), 38, + ACTIONS(1574), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86250,11 +86877,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17002] = 3, + [17100] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1982), 7, + ACTIONS(1822), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86262,7 +86889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1984), 38, + ACTIONS(1824), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86301,11 +86928,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17056] = 3, + [17154] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1116), 7, + ACTIONS(1802), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86313,7 +86940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1118), 38, + ACTIONS(1804), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86352,11 +86979,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17110] = 3, + [17208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1186), 7, + ACTIONS(1790), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86364,7 +86991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1188), 38, + ACTIONS(1792), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86403,11 +87030,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17164] = 3, + [17262] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1178), 7, + ACTIONS(1714), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86415,7 +87042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1180), 38, + ACTIONS(1716), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86454,11 +87081,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17218] = 3, + [17316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1112), 7, + ACTIONS(1678), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86466,7 +87093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1114), 38, + ACTIONS(1680), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86505,11 +87132,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17272] = 3, + [17370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1148), 7, + ACTIONS(1552), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86517,7 +87144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1150), 38, + ACTIONS(1554), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86556,11 +87183,114 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17326] = 3, + [17424] = 4, + ACTIONS(2676), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1998), 7, + ACTIONS(2624), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2622), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [17480] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2680), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2678), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_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, + 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, + [17534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86568,7 +87298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2000), 38, + ACTIONS(1312), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86607,11 +87337,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17380] = 3, + [17588] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1144), 7, + ACTIONS(1302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86619,7 +87349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1146), 38, + ACTIONS(1304), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86658,11 +87388,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17434] = 3, + [17642] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1978), 7, + ACTIONS(1986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86670,7 +87400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1980), 38, + ACTIONS(1988), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86709,11 +87439,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17488] = 3, + [17696] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(554), 7, + ACTIONS(1104), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86721,7 +87451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(556), 38, + ACTIONS(1106), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86760,11 +87490,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17542] = 3, + [17750] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(550), 7, + ACTIONS(1540), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86772,7 +87502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(552), 38, + ACTIONS(1542), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86811,11 +87541,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17596] = 3, + [17804] = 4, + ACTIONS(2682), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(628), 7, + ACTIONS(564), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(562), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [17860] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86823,7 +87605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(630), 38, + ACTIONS(1296), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86862,11 +87644,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17650] = 3, + [17914] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1922), 7, + ACTIONS(1290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86874,7 +87656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1924), 38, + ACTIONS(1292), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86913,11 +87695,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17704] = 3, + [17968] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1938), 7, + ACTIONS(1528), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86925,7 +87707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1940), 38, + ACTIONS(1530), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86964,11 +87746,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17758] = 3, + [18022] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(2010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86976,7 +87758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1912), 38, + ACTIONS(2012), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87015,11 +87797,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17812] = 3, + [18076] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(590), 7, + ACTIONS(1524), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87027,7 +87809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(592), 38, + ACTIONS(1526), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87066,11 +87848,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17866] = 3, + [18130] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1498), 7, + ACTIONS(1520), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87078,7 +87860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1500), 38, + ACTIONS(1522), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87117,11 +87899,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17920] = 3, + [18184] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1540), 7, + ACTIONS(1438), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87129,7 +87911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1542), 38, + ACTIONS(1440), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87168,11 +87950,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17974] = 3, + [18238] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(656), 7, + ACTIONS(1434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87180,7 +87962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(658), 38, + ACTIONS(1436), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87219,11 +88001,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18028] = 3, + [18292] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1544), 7, + ACTIONS(1430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87231,7 +88013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1546), 38, + ACTIONS(1432), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87270,11 +88052,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18082] = 3, + [18346] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1140), 7, + ACTIONS(1410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87282,7 +88064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1142), 38, + ACTIONS(1412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87321,11 +88103,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18136] = 3, + [18400] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(668), 7, + ACTIONS(1398), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87333,7 +88115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(670), 38, + ACTIONS(1400), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87372,62 +88154,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18190] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(552), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(550), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_else, - [18244] = 3, + [18454] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1548), 7, + ACTIONS(1630), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87435,7 +88166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1550), 38, + ACTIONS(1632), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87474,115 +88205,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18298] = 4, + [18508] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2686), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2688), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2684), 28, + ACTIONS(1610), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [18354] = 4, - ACTIONS(2690), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2600), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2598), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [18410] = 3, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1612), 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, + [18562] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1202), 7, + ACTIONS(1258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87590,7 +88268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1204), 38, + ACTIONS(1260), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87629,11 +88307,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18464] = 3, + [18616] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1206), 7, + ACTIONS(1606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87641,7 +88319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1208), 38, + ACTIONS(1608), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87680,11 +88358,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18518] = 3, + [18670] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1210), 7, + ACTIONS(1602), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87692,7 +88370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1212), 38, + ACTIONS(1604), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87731,11 +88409,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18572] = 3, + [18724] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1214), 7, + ACTIONS(2006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87743,7 +88421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1216), 38, + ACTIONS(2008), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87782,11 +88460,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18626] = 3, + [18778] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1226), 7, + ACTIONS(1462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87794,7 +88472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1228), 38, + ACTIONS(1464), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87833,13 +88511,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18680] = 4, - ACTIONS(2692), 1, - anon_sym_COLON_COLON, + [18832] = 4, + ACTIONS(2688), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 15, + ACTIONS(2686), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87855,7 +88533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2598), 29, + ACTIONS(2684), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87885,11 +88563,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18736] = 3, + [18888] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1882), 7, + ACTIONS(1246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87897,7 +88575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1884), 38, + ACTIONS(1248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87936,11 +88614,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18790] = 3, + [18942] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1866), 7, + ACTIONS(2002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87948,7 +88626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1868), 38, + ACTIONS(2004), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87987,11 +88665,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18844] = 3, + [18996] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1262), 7, + ACTIONS(1334), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87999,7 +88677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1264), 38, + ACTIONS(1336), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88038,63 +88716,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18898] = 4, - ACTIONS(2698), 1, - anon_sym_DASH_GT, + [19050] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2696), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2694), 29, + ACTIONS(1590), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [18954] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1592), 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, + [19104] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1270), 7, + ACTIONS(1108), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88102,7 +88779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1272), 38, + ACTIONS(1110), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88141,11 +88818,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19008] = 3, + [19158] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1818), 7, + ACTIONS(1170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88153,7 +88830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1820), 38, + ACTIONS(1172), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88192,11 +88869,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19062] = 3, + [19212] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1104), 7, + ACTIONS(1450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88204,7 +88881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1106), 38, + ACTIONS(1452), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88243,11 +88920,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19116] = 3, + [19266] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1802), 7, + ACTIONS(1682), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88255,7 +88932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1804), 38, + ACTIONS(1684), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88294,216 +88971,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19170] = 4, - ACTIONS(2700), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2600), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2598), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [19226] = 3, + [19320] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2704), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2702), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - 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, - [19280] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2708), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2706), 30, + ACTIONS(1998), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_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, - 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, - [19334] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2712), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2710), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_COLON_COLON, - 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, - [19388] = 3, + sym_metavariable, + ACTIONS(2000), 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, + [19374] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1798), 7, + ACTIONS(1544), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88511,7 +89034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1800), 38, + ACTIONS(1546), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88550,11 +89073,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19442] = 3, + [19428] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1362), 7, + ACTIONS(1218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88562,7 +89085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1364), 38, + ACTIONS(1220), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88601,14 +89124,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19496] = 4, + [19482] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2714), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2688), 15, + ACTIONS(2692), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88624,10 +89144,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2684), 28, + ACTIONS(2690), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -88635,6 +89156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -88653,11 +89175,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19552] = 3, + [19536] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1406), 7, + ACTIONS(1564), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88665,7 +89187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1408), 38, + ACTIONS(1566), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88704,11 +89226,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19606] = 3, + [19590] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1786), 7, + ACTIONS(1622), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88716,7 +89238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1788), 38, + ACTIONS(1624), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88755,11 +89277,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19660] = 3, + [19644] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1426), 7, + ACTIONS(1556), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88767,7 +89289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1428), 38, + ACTIONS(1558), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88806,11 +89328,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19714] = 3, + [19698] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1654), 7, + ACTIONS(1210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88818,7 +89340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1656), 38, + ACTIONS(1212), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88857,11 +89379,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19768] = 3, + [19752] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1450), 7, + ACTIONS(1206), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88869,7 +89391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1452), 38, + ACTIONS(1208), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88908,11 +89430,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19822] = 3, + [19806] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1658), 7, + ACTIONS(1128), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88920,7 +89442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1660), 38, + ACTIONS(1130), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88959,11 +89481,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19876] = 3, + [19860] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1646), 7, + ACTIONS(1186), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88971,7 +89493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1648), 38, + ACTIONS(1188), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89010,11 +89532,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19930] = 3, + [19914] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1650), 7, + ACTIONS(1174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89022,7 +89544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1652), 38, + ACTIONS(1176), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89061,11 +89583,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19984] = 3, + [19968] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1596), 7, + ACTIONS(1994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89073,7 +89595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1598), 38, + ACTIONS(1996), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89112,11 +89634,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20038] = 3, + [20022] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1462), 7, + ACTIONS(1112), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89124,7 +89646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1464), 38, + ACTIONS(1114), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89163,62 +89685,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20092] = 3, + [20076] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2716), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - 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, - [20146] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1614), 7, + ACTIONS(1634), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89226,7 +89697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1616), 38, + ACTIONS(1636), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89265,11 +89736,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20200] = 3, + [20130] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2722), 15, + ACTIONS(2696), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89285,7 +89756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2720), 30, + ACTIONS(2694), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89316,11 +89787,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20254] = 3, + [20184] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1434), 7, + ACTIONS(1642), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89328,7 +89799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1436), 38, + ACTIONS(1644), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89367,11 +89838,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20308] = 3, + [20238] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1610), 7, + ACTIONS(1754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89379,7 +89850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1612), 38, + ACTIONS(1756), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89418,11 +89889,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20362] = 3, + [20292] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1370), 7, + ACTIONS(1498), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89430,7 +89901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1372), 38, + ACTIONS(1500), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89469,11 +89940,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20416] = 3, + [20346] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1606), 7, + ACTIONS(1494), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89481,7 +89952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1608), 38, + ACTIONS(1496), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89520,11 +89991,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20470] = 3, + [20400] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1346), 7, + ACTIONS(1958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89532,7 +90003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1348), 38, + ACTIONS(1960), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89571,11 +90042,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20524] = 3, + [20454] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1518), 7, + ACTIONS(1486), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89583,7 +90054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1520), 38, + ACTIONS(1488), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89622,11 +90093,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20578] = 3, + [20508] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1584), 7, + ACTIONS(1470), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89634,7 +90105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1586), 38, + ACTIONS(1472), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89673,11 +90144,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20632] = 3, + [20562] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1642), 7, + ACTIONS(1870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89685,7 +90156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1644), 38, + ACTIONS(1872), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89724,11 +90195,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20686] = 3, + [20616] = 5, + ACTIONS(2700), 1, + anon_sym_LPAREN, + STATE(1129), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1298), 7, + ACTIONS(2702), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2698), 28, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [20674] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1810), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89736,7 +90260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1300), 38, + ACTIONS(1812), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89775,62 +90299,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20740] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2726), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2724), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_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, - 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, - [20794] = 3, + [20728] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 15, + ACTIONS(2706), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89846,7 +90319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2728), 30, + ACTIONS(2704), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89877,62 +90350,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20848] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1662), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1664), 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, - [20902] = 3, + [20782] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1514), 7, + ACTIONS(1930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89940,7 +90362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1516), 38, + ACTIONS(1932), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89979,11 +90401,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20956] = 3, + [20836] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1666), 7, + ACTIONS(1426), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89991,7 +90413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1668), 38, + ACTIONS(1428), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90030,11 +90452,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21010] = 3, + [20890] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1482), 7, + ACTIONS(1422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90042,7 +90464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1484), 38, + ACTIONS(1424), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90081,11 +90503,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21064] = 3, + [20944] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1286), 7, + ACTIONS(2014), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90093,7 +90515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1288), 38, + ACTIONS(2016), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90132,11 +90554,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21118] = 3, + [20998] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1470), 7, + ACTIONS(1178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90144,7 +90566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1472), 38, + ACTIONS(1180), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90183,11 +90605,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21172] = 3, + [21052] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1132), 7, + ACTIONS(1418), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90195,7 +90617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1134), 38, + ACTIONS(1420), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90234,11 +90656,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21226] = 3, + [21106] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1730), 7, + ACTIONS(1742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90246,7 +90668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1732), 38, + ACTIONS(1744), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90285,11 +90707,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21280] = 3, + [21160] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1250), 7, + ACTIONS(1406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90297,7 +90719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1252), 38, + ACTIONS(1408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90336,11 +90758,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21334] = 3, + [21214] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1738), 7, + ACTIONS(1182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90348,7 +90770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1740), 38, + ACTIONS(1184), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90387,11 +90809,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21388] = 3, + [21268] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1274), 7, + ACTIONS(1978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90399,7 +90821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1276), 38, + ACTIONS(1980), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90438,11 +90860,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21442] = 3, + [21322] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1198), 7, + ACTIONS(1402), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90450,7 +90872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1200), 38, + ACTIONS(1404), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90489,11 +90911,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21496] = 3, + [21376] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1174), 7, + ACTIONS(1894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90501,7 +90923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1176), 38, + ACTIONS(1896), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90540,11 +90962,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21550] = 3, + [21430] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1230), 7, + ACTIONS(1658), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90552,7 +90974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1232), 38, + ACTIONS(1660), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90591,11 +91013,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21604] = 3, + [21484] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1326), 7, + ACTIONS(1394), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90603,7 +91025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1328), 38, + ACTIONS(1396), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90642,11 +91064,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21658] = 3, + [21538] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1342), 7, + ACTIONS(1874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90654,7 +91076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1344), 38, + ACTIONS(1876), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90693,62 +91115,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21712] = 3, + [21592] = 5, + ACTIONS(2654), 1, + anon_sym_COLON_COLON, + ACTIONS(2708), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1382), 7, + ACTIONS(2648), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2646), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1384), 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, - [21766] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [21650] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1394), 7, + ACTIONS(1858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90756,7 +91180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1396), 38, + ACTIONS(1860), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90795,11 +91219,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21820] = 3, + [21704] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1974), 7, + ACTIONS(1386), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90807,7 +91231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1976), 38, + ACTIONS(1388), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90846,11 +91270,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21874] = 3, + [21758] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1266), 7, + ACTIONS(1378), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90858,7 +91282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1268), 38, + ACTIONS(1380), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90897,11 +91321,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21928] = 3, + [21812] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2002), 7, + ACTIONS(1854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90909,7 +91333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2004), 38, + ACTIONS(1856), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90948,11 +91372,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21982] = 3, + [21866] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1410), 7, + ACTIONS(1374), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90960,7 +91384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1412), 38, + ACTIONS(1376), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90999,11 +91423,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22036] = 3, + [21920] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1418), 7, + ACTIONS(1746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91011,7 +91435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1420), 38, + ACTIONS(1748), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91050,11 +91474,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22090] = 3, + [21974] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2006), 7, + ACTIONS(1370), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91062,7 +91486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2008), 38, + ACTIONS(1372), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91101,11 +91525,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22144] = 3, + [22028] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1438), 7, + ACTIONS(1366), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91113,7 +91537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1440), 38, + ACTIONS(1368), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91152,11 +91576,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22198] = 3, + [22082] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1278), 7, + ACTIONS(1230), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91164,7 +91588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1280), 38, + ACTIONS(1232), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91203,11 +91627,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22252] = 3, + [22136] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1446), 7, + ACTIONS(1358), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91215,7 +91639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1448), 38, + ACTIONS(1360), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91254,11 +91678,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22306] = 3, + [22190] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1486), 7, + ACTIONS(1974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91266,7 +91690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1488), 38, + ACTIONS(1976), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91305,62 +91729,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22360] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(556), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(554), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_else, - [22414] = 3, + [22244] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2010), 7, + ACTIONS(1350), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91368,7 +91741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2012), 38, + ACTIONS(1352), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91407,11 +91780,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22468] = 3, + [22298] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1330), 7, + ACTIONS(1234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91419,7 +91792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1332), 38, + ACTIONS(1236), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91458,11 +91831,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22522] = 3, + [22352] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1622), 7, + ACTIONS(1342), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91470,7 +91843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1624), 38, + ACTIONS(1344), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91509,11 +91882,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22576] = 3, + [22406] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1390), 7, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91521,7 +91894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1392), 38, + ACTIONS(1972), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91560,11 +91933,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22630] = 3, + [22460] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1674), 7, + ACTIONS(1298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91572,7 +91945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1676), 38, + ACTIONS(1300), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91611,11 +91984,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22684] = 3, + [22514] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1686), 7, + ACTIONS(1274), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91623,7 +91996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1688), 38, + ACTIONS(1276), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91662,11 +92035,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22738] = 3, + [22568] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1754), 7, + ACTIONS(1270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91674,7 +92047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1756), 38, + ACTIONS(1272), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91713,11 +92086,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22792] = 3, + [22622] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1758), 7, + ACTIONS(1262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91725,7 +92098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1760), 38, + ACTIONS(1264), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91764,11 +92137,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22846] = 3, + [22676] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1766), 7, + ACTIONS(1238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91776,7 +92149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1768), 38, + ACTIONS(1240), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91815,11 +92188,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22900] = 3, + [22730] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1778), 7, + ACTIONS(1250), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91827,7 +92200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1780), 38, + ACTIONS(1252), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91866,11 +92239,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22954] = 3, + [22784] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1182), 7, + ACTIONS(1242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91878,7 +92251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1184), 38, + ACTIONS(1244), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91917,11 +92290,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23008] = 3, + [22838] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1782), 7, + ACTIONS(1226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91929,7 +92302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1784), 38, + ACTIONS(1228), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91968,11 +92341,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23062] = 3, + [22892] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1790), 7, + ACTIONS(1846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91980,7 +92353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1792), 38, + ACTIONS(1848), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92019,11 +92392,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23116] = 3, + [22946] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1794), 7, + ACTIONS(1254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92031,7 +92404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1796), 38, + ACTIONS(1256), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92070,11 +92443,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23170] = 3, + [23000] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1990), 7, + ACTIONS(1222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92082,7 +92455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1992), 38, + ACTIONS(1224), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92121,11 +92494,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23224] = 3, + [23054] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1834), 7, + ACTIONS(1990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92133,7 +92506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1836), 38, + ACTIONS(1992), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92172,11 +92545,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23278] = 3, + [23108] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92184,7 +92557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1844), 38, + ACTIONS(1940), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92223,11 +92596,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23332] = 3, + [23162] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1846), 7, + ACTIONS(1116), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92235,7 +92608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1848), 38, + ACTIONS(1118), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92274,11 +92647,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23386] = 3, + [23216] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1806), 7, + ACTIONS(1838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92286,7 +92659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1808), 38, + ACTIONS(1840), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92325,11 +92698,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23440] = 3, + [23270] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1854), 7, + ACTIONS(1826), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92337,7 +92710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1856), 38, + ACTIONS(1828), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92376,11 +92749,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23494] = 3, + [23324] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1770), 7, + ACTIONS(1120), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92388,7 +92761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1772), 38, + ACTIONS(1122), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92427,11 +92800,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23548] = 3, + [23378] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1762), 7, + ACTIONS(1654), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92439,7 +92812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1764), 38, + ACTIONS(1656), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92478,11 +92851,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23602] = 3, + [23432] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1874), 7, + ACTIONS(1266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92490,7 +92863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1876), 38, + ACTIONS(1268), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92529,11 +92902,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23656] = 3, + [23486] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1750), 7, + ACTIONS(1922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92541,7 +92914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1752), 38, + ACTIONS(1924), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92580,11 +92953,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23710] = 3, + [23540] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1402), 7, + ACTIONS(1778), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92592,7 +92965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1404), 38, + ACTIONS(1780), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92631,11 +93004,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23764] = 3, + [23594] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1734), 7, + ACTIONS(1966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92643,7 +93016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1736), 38, + ACTIONS(1968), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92682,11 +93055,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23818] = 3, + [23648] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1722), 7, + ACTIONS(1124), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92694,7 +93067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1724), 38, + ACTIONS(1126), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92733,11 +93106,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23872] = 3, + [23702] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1714), 7, + ACTIONS(1154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92745,7 +93118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1716), 38, + ACTIONS(1156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92784,11 +93157,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23926] = 3, + [23756] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1706), 7, + ACTIONS(1158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92796,7 +93169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1708), 38, + ACTIONS(1160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92835,11 +93208,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23980] = 3, + [23810] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1626), 7, + ACTIONS(1698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92847,7 +93220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1628), 38, + ACTIONS(1700), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92886,11 +93259,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24034] = 3, + [23864] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1190), 7, + ACTIONS(1750), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92898,7 +93271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1192), 38, + ACTIONS(1752), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92937,11 +93310,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24088] = 3, + [23918] = 5, + ACTIONS(2584), 1, + anon_sym_BANG, + ACTIONS(2710), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, + ACTIONS(564), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92957,11 +93334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2732), 30, + ACTIONS(562), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -92969,7 +93345,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -92988,11 +93363,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24142] = 3, + [23976] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1682), 7, + ACTIONS(1710), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93000,7 +93375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1684), 38, + ACTIONS(1712), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93039,62 +93414,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24196] = 3, + [24030] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1678), 7, + ACTIONS(552), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(550), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1680), 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, - [24250] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + anon_sym_else, + [24084] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1746), 7, + ACTIONS(1706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93102,7 +93477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1748), 38, + ACTIONS(1708), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93141,11 +93516,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24304] = 3, + [24138] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1536), 7, + ACTIONS(1690), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93153,7 +93528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1538), 38, + ACTIONS(1692), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93192,11 +93567,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24358] = 3, + [24192] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1810), 7, + ACTIONS(1638), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93204,7 +93579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1812), 38, + ACTIONS(1640), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93243,11 +93618,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24412] = 3, + [24246] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1494), 7, + ACTIONS(1962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93255,7 +93630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1496), 38, + ACTIONS(1964), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93294,11 +93669,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24466] = 3, + [24300] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1442), 7, + ACTIONS(1278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93306,7 +93681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1444), 38, + ACTIONS(1280), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93345,11 +93720,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24520] = 3, + [24354] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1958), 7, + ACTIONS(1282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93357,7 +93732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1960), 38, + ACTIONS(1284), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93396,11 +93771,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24574] = 3, + [24408] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1430), 7, + ACTIONS(1576), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93408,7 +93783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1432), 38, + ACTIONS(1578), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93447,13 +93822,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24628] = 4, - ACTIONS(2740), 1, - anon_sym_DASH_GT, + [24462] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2738), 15, + ACTIONS(848), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93469,7 +93842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2736), 29, + ACTIONS(850), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93478,6 +93851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, @@ -93499,11 +93873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24684] = 3, + [24516] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1422), 7, + ACTIONS(1318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93511,7 +93885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1424), 38, + ACTIONS(1320), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93550,11 +93924,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24738] = 3, + [24570] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1814), 7, + ACTIONS(1954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93562,7 +93936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1816), 38, + ACTIONS(1956), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93601,62 +93975,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24792] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2744), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2742), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - 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, - [24846] = 3, + [24624] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1822), 7, + ACTIONS(1190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93664,7 +93987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1824), 38, + ACTIONS(1192), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93703,63 +94026,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24900] = 4, - ACTIONS(2750), 1, - anon_sym_DASH_GT, + [24678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2748), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2746), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [24956] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1398), 7, + ACTIONS(1442), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93767,7 +94038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1400), 38, + ACTIONS(1444), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93806,11 +94077,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25010] = 3, + [24732] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1386), 7, + ACTIONS(1382), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93818,7 +94089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1388), 38, + ACTIONS(1384), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93857,11 +94128,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25064] = 3, + [24786] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1942), 7, + ACTIONS(1950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93869,7 +94140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1944), 38, + ACTIONS(1952), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93908,62 +94179,115 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25118] = 3, + [24840] = 4, + ACTIONS(2716), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1914), 7, + ACTIONS(2714), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2712), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [24896] = 4, + ACTIONS(2722), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2720), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1916), 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, - [25172] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2718), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [24952] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1826), 7, + ACTIONS(1346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93971,7 +94295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1828), 38, + ACTIONS(1348), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94010,11 +94334,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25226] = 3, + [25006] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1378), 7, + ACTIONS(1194), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94022,7 +94346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1380), 38, + ACTIONS(1196), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94061,63 +94385,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25280] = 4, - ACTIONS(2756), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2754), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2752), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [25336] = 3, + [25060] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1374), 7, + ACTIONS(1982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94125,7 +94397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1376), 38, + ACTIONS(1984), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94164,11 +94436,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25390] = 3, + [25114] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1366), 7, + ACTIONS(1306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94176,7 +94448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1368), 38, + ACTIONS(1308), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94215,11 +94487,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25444] = 3, + [25168] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1350), 7, + ACTIONS(1162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94227,7 +94499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1352), 38, + ACTIONS(1164), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94266,11 +94538,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25498] = 3, + [25222] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1862), 7, + ACTIONS(1198), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94278,7 +94550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1864), 38, + ACTIONS(1200), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94317,64 +94589,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25552] = 3, + [25276] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1774), 7, + ACTIONS(2726), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2724), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1776), 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, - [25606] = 4, - ACTIONS(2762), 1, - anon_sym_DASH_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, + 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, + [25330] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2760), 15, + ACTIONS(2730), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94390,7 +94660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2758), 29, + ACTIONS(2728), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94402,6 +94672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -94420,11 +94691,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25662] = 3, + [25384] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1338), 7, + ACTIONS(1202), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94432,7 +94703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1340), 38, + ACTIONS(1204), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94471,11 +94742,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25716] = 3, + [25438] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1310), 7, + ACTIONS(1286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94483,7 +94754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1312), 38, + ACTIONS(1288), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94522,11 +94793,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25770] = 3, + [25492] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1306), 7, + ACTIONS(1322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94534,7 +94805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1308), 38, + ACTIONS(1324), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94573,11 +94844,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25824] = 3, + [25546] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1302), 7, + ACTIONS(1214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94585,7 +94856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1304), 38, + ACTIONS(1216), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94624,11 +94895,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25878] = 3, + [25600] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1986), 7, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94636,7 +94907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1988), 38, + ACTIONS(1948), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94675,11 +94946,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25932] = 3, + [25654] = 4, + ACTIONS(2736), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1702), 7, + ACTIONS(2734), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2732), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [25710] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94687,7 +95010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1704), 38, + ACTIONS(1944), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94726,11 +95049,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25986] = 3, + [25764] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, + ACTIONS(1326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94738,7 +95061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1256), 38, + ACTIONS(1328), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94777,11 +95100,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26040] = 3, + [25818] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1238), 7, + ACTIONS(1934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94789,7 +95112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1240), 38, + ACTIONS(1936), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94828,63 +95151,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26094] = 4, - ACTIONS(2700), 1, - anon_sym_COLON_COLON, + [25872] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2618), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [26150] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(526), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94892,7 +95163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1632), 38, + ACTIONS(528), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94931,11 +95202,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26204] = 3, + [25926] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1726), 7, + ACTIONS(1330), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94943,7 +95214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1728), 38, + ACTIONS(1332), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94982,11 +95253,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26258] = 3, + [25980] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1124), 7, + ACTIONS(1926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94994,7 +95265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1126), 38, + ACTIONS(1928), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95033,11 +95304,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26312] = 3, + [26034] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1218), 7, + ACTIONS(550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95045,7 +95316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1220), 38, + ACTIONS(552), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95084,11 +95355,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26366] = 3, + [26088] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1222), 7, + ACTIONS(536), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95096,7 +95367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1224), 38, + ACTIONS(538), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95135,11 +95406,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26420] = 3, + [26142] = 4, + ACTIONS(2742), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2766), 15, + ACTIONS(2740), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95155,7 +95428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2764), 30, + ACTIONS(2738), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95167,7 +95440,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -95186,11 +95458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26474] = 3, + [26198] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1506), 7, + ACTIONS(672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95198,7 +95470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1508), 38, + ACTIONS(674), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95237,11 +95509,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26528] = 3, + [26252] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1966), 7, + ACTIONS(1354), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95249,7 +95521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1968), 38, + ACTIONS(1356), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95288,11 +95560,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26582] = 3, + [26306] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1234), 7, + ACTIONS(1902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95300,7 +95572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1236), 38, + ACTIONS(1904), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95339,11 +95611,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26636] = 3, + [26360] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1858), 7, + ACTIONS(1806), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95351,7 +95623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1860), 38, + ACTIONS(1808), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95390,13 +95662,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26690] = 4, - ACTIONS(2700), 1, + [26414] = 4, + ACTIONS(2676), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 15, + ACTIONS(2640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95412,7 +95684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2622), 29, + ACTIONS(2638), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95442,11 +95714,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26746] = 3, + [26470] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1414), 7, + ACTIONS(1786), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95454,7 +95726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1416), 38, + ACTIONS(1788), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95493,11 +95765,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26800] = 3, + [26524] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(1890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95505,7 +95777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1594), 38, + ACTIONS(1892), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95544,11 +95816,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26854] = 3, + [26578] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1670), 7, + ACTIONS(1414), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95556,7 +95828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1672), 38, + ACTIONS(1416), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95595,11 +95867,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26908] = 3, + [26632] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1128), 7, + ACTIONS(1774), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95607,7 +95879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1130), 38, + ACTIONS(1776), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95646,11 +95918,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26962] = 3, + [26686] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1710), 7, + ACTIONS(1770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95658,7 +95930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1712), 38, + ACTIONS(1772), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95697,11 +95969,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27016] = 3, + [26740] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1742), 7, + ACTIONS(1458), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95709,7 +95981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1744), 38, + ACTIONS(1460), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95748,13 +96020,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27070] = 4, - ACTIONS(2772), 1, - anon_sym_DASH_GT, + [26794] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 15, + ACTIONS(2746), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2748), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95770,11 +96043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2768), 29, + ACTIONS(2744), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -95800,11 +96072,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27126] = 3, + [26850] = 4, + ACTIONS(2676), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 17, + ACTIONS(2628), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95815,14 +96089,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2602), 28, + ACTIONS(2626), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95835,12 +96107,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, 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, @@ -95850,12 +96122,13 @@ 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, - [27180] = 3, + [26906] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2776), 15, + ACTIONS(2752), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95871,7 +96144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2774), 30, + ACTIONS(2750), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95902,62 +96175,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27234] = 3, + [26960] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1466), 7, + ACTIONS(2756), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2754), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1468), 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, - [27288] = 3, + 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, + [27014] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1474), 7, + ACTIONS(1782), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95965,7 +96238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1476), 38, + ACTIONS(1784), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96004,11 +96277,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27342] = 3, + [27068] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1838), 7, + ACTIONS(616), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96016,7 +96289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1840), 38, + ACTIONS(618), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96055,11 +96328,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27396] = 3, + [27122] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1294), 7, + ACTIONS(1886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96067,7 +96340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1296), 38, + ACTIONS(1888), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96106,164 +96379,165 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27450] = 3, + [27176] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1354), 7, + ACTIONS(2616), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2614), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1356), 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, - [27504] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [27230] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1358), 7, + ACTIONS(2760), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2758), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1360), 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, - [27558] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_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, + 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, + [27284] = 4, + ACTIONS(2766), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1906), 7, + ACTIONS(2764), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2762), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1908), 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, - [27612] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [27340] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, + ACTIONS(1882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96271,7 +96545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1320), 38, + ACTIONS(1884), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96310,11 +96584,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27666] = 3, + [27394] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, + ACTIONS(1738), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96322,7 +96596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1324), 38, + ACTIONS(1740), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96361,114 +96635,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27720] = 4, - ACTIONS(2782), 1, - anon_sym_DASH_GT, + [27448] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2780), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2778), 29, + ACTIONS(1814), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [27776] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1816), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27502] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2786), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2784), 30, + ACTIONS(1734), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_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, - 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, - [27830] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1736), 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, + [27556] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1490), 7, + ACTIONS(1730), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96476,7 +96749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1492), 38, + ACTIONS(1732), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96515,11 +96788,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27884] = 3, + [27610] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1502), 7, + ACTIONS(1516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96527,7 +96800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1504), 38, + ACTIONS(1518), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96566,11 +96839,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27938] = 3, + [27664] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1572), 7, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96578,7 +96851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1574), 38, + ACTIONS(1880), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96617,11 +96890,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27992] = 3, + [27718] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1552), 7, + ACTIONS(1446), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96629,7 +96902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1554), 38, + ACTIONS(1448), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96668,11 +96941,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28046] = 3, + [27772] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(538), 15, + ACTIONS(2770), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96688,7 +96961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(536), 30, + ACTIONS(2768), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96700,6 +96973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -96718,12 +96992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_else, - [28100] = 3, + [27826] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1830), 7, + ACTIONS(1646), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96731,7 +97004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1832), 38, + ACTIONS(1648), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96770,11 +97043,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28154] = 3, + [27880] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1108), 7, + ACTIONS(1650), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96782,7 +97055,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1110), 38, + ACTIONS(1652), 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, + [27934] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1758), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1760), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96821,11 +97145,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28208] = 3, + [27988] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1510), 7, + ACTIONS(1722), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96833,7 +97157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1512), 38, + ACTIONS(1724), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96872,11 +97196,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28262] = 3, + [28042] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1528), 7, + ACTIONS(1454), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96884,7 +97208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1530), 38, + ACTIONS(1456), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96923,11 +97247,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28316] = 3, + [28096] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1878), 7, + ACTIONS(1466), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96935,7 +97259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1880), 38, + ACTIONS(1468), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96974,11 +97298,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28370] = 3, + [28150] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1698), 7, + ACTIONS(528), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(526), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + anon_sym_else, + [28204] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96986,7 +97361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1700), 38, + ACTIONS(1844), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97025,7 +97400,59 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28424] = 3, + [28258] = 4, + ACTIONS(2776), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2774), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2772), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [28314] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -97076,11 +97503,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28478] = 3, + [28368] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1946), 7, + ACTIONS(1490), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97088,7 +97515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1948), 38, + ACTIONS(1492), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97127,11 +97554,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28532] = 3, + [28422] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1950), 7, + ACTIONS(1866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97139,7 +97566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1952), 38, + ACTIONS(1868), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97178,11 +97605,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28586] = 3, + [28476] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1532), 7, + ACTIONS(1474), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97190,7 +97617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1534), 38, + ACTIONS(1476), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97229,11 +97656,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28640] = 3, + [28530] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1962), 7, + ACTIONS(1482), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97241,7 +97668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1964), 38, + ACTIONS(1484), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97280,11 +97707,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28694] = 3, + [28584] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1994), 7, + ACTIONS(1508), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97292,7 +97719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1996), 38, + ACTIONS(1510), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97331,11 +97758,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28748] = 3, + [28638] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1556), 7, + ACTIONS(1512), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97343,7 +97770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1558), 38, + ACTIONS(1514), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97382,11 +97809,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28802] = 3, + [28692] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1524), 7, + ACTIONS(1536), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97394,7 +97821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1526), 38, + ACTIONS(1538), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97433,11 +97860,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28856] = 3, + [28746] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1890), 7, + ACTIONS(1478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97445,7 +97872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1892), 38, + ACTIONS(1480), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97484,11 +97911,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28910] = 3, + [28800] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1568), 7, + ACTIONS(2780), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2778), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + 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, + [28854] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97496,7 +97974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1570), 38, + ACTIONS(1820), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97535,11 +98013,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28964] = 3, + [28908] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1588), 7, + ACTIONS(1548), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97547,7 +98025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1590), 38, + ACTIONS(1550), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97586,11 +98064,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29018] = 3, + [28962] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1898), 7, + ACTIONS(1568), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97598,7 +98076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1900), 38, + ACTIONS(1570), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97637,11 +98115,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29072] = 3, + [29016] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1242), 7, + ACTIONS(1582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97649,7 +98127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1244), 38, + ACTIONS(1584), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97688,11 +98166,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29126] = 3, + [29070] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1902), 7, + ACTIONS(1598), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97700,7 +98178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1904), 38, + ACTIONS(1600), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97739,11 +98217,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29180] = 3, + [29124] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1246), 7, + ACTIONS(1338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97751,7 +98229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1248), 38, + ACTIONS(1340), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97790,11 +98268,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29234] = 3, + [29178] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1602), 7, + ACTIONS(648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97802,7 +98280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1604), 38, + ACTIONS(650), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97841,11 +98319,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29288] = 3, + [29232] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1926), 7, + ACTIONS(604), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97853,7 +98331,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1928), 38, + ACTIONS(606), 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, + [29286] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1674), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1676), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97892,113 +98421,114 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29342] = 3, + [29340] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1618), 7, + ACTIONS(2784), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2782), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1620), 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, - [29396] = 3, + 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, + [29394] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1934), 7, + ACTIONS(2786), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2748), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2744), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1936), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - 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, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, [29450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1478), 7, + ACTIONS(1532), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98006,7 +98536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1480), 38, + ACTIONS(1534), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98049,7 +98579,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1930), 7, + ACTIONS(1626), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98057,7 +98587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1932), 38, + ACTIONS(1628), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98100,7 +98630,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1458), 7, + ACTIONS(1560), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98108,7 +98638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1460), 38, + ACTIONS(1562), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98151,7 +98681,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1694), 7, + ACTIONS(1614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98159,7 +98689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1696), 38, + ACTIONS(1616), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98202,7 +98732,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1258), 7, + ACTIONS(1586), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98210,7 +98740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1260), 38, + ACTIONS(1588), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98253,7 +98783,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1850), 7, + ACTIONS(1594), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98261,7 +98791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1852), 38, + ACTIONS(1596), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98304,7 +98834,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1282), 7, + ACTIONS(1830), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98312,7 +98842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1284), 38, + ACTIONS(1832), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98355,7 +98885,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1290), 7, + ACTIONS(1910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98363,7 +98893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1292), 38, + ACTIONS(1912), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98406,7 +98936,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1454), 7, + ACTIONS(1914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98414,7 +98944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1456), 38, + ACTIONS(1916), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98457,7 +98987,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(618), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98473,7 +99003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(616), 29, + ACTIONS(566), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98507,7 +99037,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(584), 15, + ACTIONS(2790), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98523,7 +99053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(582), 29, + ACTIONS(2788), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98557,7 +99087,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(658), 15, + ACTIONS(2794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98573,7 +99103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(656), 29, + ACTIONS(2792), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98603,62 +99133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30095] = 4, - ACTIONS(2646), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2640), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2638), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [30150] = 3, + [30095] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2361), 15, + ACTIONS(614), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98674,7 +99153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2363), 29, + ACTIONS(612), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98704,13 +99183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30203] = 4, - ACTIONS(2788), 1, - anon_sym_COLON_COLON, + [30148] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, + ACTIONS(622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98726,10 +99203,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(564), 28, + ACTIONS(620), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -98755,11 +99233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30258] = 3, + [30201] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(674), 15, + ACTIONS(650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98775,7 +99253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(672), 29, + ACTIONS(648), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98805,11 +99283,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30311] = 3, + [30254] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2792), 15, + ACTIONS(2798), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98825,7 +99303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2790), 29, + ACTIONS(2796), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98855,11 +99333,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30364] = 3, + [30307] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2796), 15, + ACTIONS(2802), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98875,7 +99353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2794), 29, + ACTIONS(2800), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98905,11 +99383,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30417] = 3, + [30360] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2676), 15, + ACTIONS(2806), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98925,7 +99403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2672), 29, + ACTIONS(2804), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98955,11 +99433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30470] = 3, + [30413] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2800), 15, + ACTIONS(2810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98975,7 +99453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2798), 29, + ACTIONS(2808), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99005,11 +99483,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30523] = 3, + [30466] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2804), 15, + ACTIONS(2814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99025,7 +99503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2802), 29, + ACTIONS(2812), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99055,11 +99533,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30576] = 3, + [30519] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2808), 15, + ACTIONS(2818), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99075,7 +99553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2806), 29, + ACTIONS(2816), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99105,11 +99583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30629] = 3, + [30572] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2812), 15, + ACTIONS(2822), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99125,7 +99603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2810), 29, + ACTIONS(2820), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99155,11 +99633,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30682] = 3, + [30625] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2816), 15, + ACTIONS(678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99175,7 +99653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2814), 29, + ACTIONS(676), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99205,11 +99683,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30735] = 3, + [30678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2437), 15, + ACTIONS(2377), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99225,7 +99703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2439), 29, + ACTIONS(2379), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99255,11 +99733,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30788] = 3, + [30731] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2820), 15, + ACTIONS(2826), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99275,7 +99753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2818), 29, + ACTIONS(2824), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99305,62 +99783,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30841] = 4, - ACTIONS(2826), 1, - anon_sym_RBRACE, + [30784] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2824), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2822), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30896] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2830), 15, + ACTIONS(2624), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99376,7 +99803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2828), 29, + ACTIONS(2622), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99406,62 +99833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30949] = 4, - ACTIONS(2836), 1, - anon_sym_RBRACE, + [30837] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2834), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2832), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31004] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(318), 15, + ACTIONS(654), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99477,7 +99853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(316), 29, + ACTIONS(652), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99507,11 +99883,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31057] = 3, + [30890] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2441), 15, + ACTIONS(2830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99527,7 +99903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2443), 29, + ACTIONS(2828), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99557,11 +99933,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31110] = 3, + [30943] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2840), 15, + ACTIONS(2834), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99577,7 +99953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2838), 29, + ACTIONS(2832), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99607,11 +99983,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31163] = 3, + [30996] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2844), 15, + ACTIONS(670), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99627,7 +100003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2842), 29, + ACTIONS(668), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99657,11 +100033,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31216] = 3, + [31049] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2848), 15, + ACTIONS(2838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99677,7 +100053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2846), 29, + ACTIONS(2836), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99707,11 +100083,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31269] = 3, + [31102] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2852), 15, + ACTIONS(2842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99727,7 +100103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2850), 29, + ACTIONS(2840), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99757,11 +100133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31322] = 3, + [31155] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2856), 15, + ACTIONS(2702), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99777,7 +100153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2854), 29, + ACTIONS(2698), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99807,11 +100183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31375] = 3, + [31208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2860), 15, + ACTIONS(2846), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99827,7 +100203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2858), 29, + ACTIONS(2844), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99857,11 +100233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31428] = 3, + [31261] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2864), 15, + ACTIONS(2850), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99877,7 +100253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2862), 29, + ACTIONS(2848), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99907,11 +100283,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31481] = 3, + [31314] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(626), 15, + ACTIONS(2411), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99927,7 +100303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(624), 29, + ACTIONS(2413), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99957,61 +100333,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31534] = 3, + [31367] = 4, + ACTIONS(2856), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2868), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2854), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2866), 29, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2852), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31422] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2860), 12, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [31587] = 3, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2858), 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, + [31475] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2872), 15, + ACTIONS(602), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100027,7 +100454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2870), 29, + ACTIONS(600), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100057,11 +100484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31640] = 3, + [31528] = 4, + ACTIONS(2654), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(592), 15, + ACTIONS(2648), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100077,11 +100506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(590), 29, + ACTIONS(2646), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -100107,11 +100535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31693] = 3, + [31583] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2876), 15, + ACTIONS(2864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100127,7 +100555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2874), 29, + ACTIONS(2862), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100157,11 +100585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31746] = 3, + [31636] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2880), 15, + ACTIONS(2868), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100177,7 +100605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2878), 29, + ACTIONS(2866), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100207,11 +100635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31799] = 3, + [31689] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2884), 15, + ACTIONS(2872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100227,7 +100655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2882), 29, + ACTIONS(2870), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100257,11 +100685,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31852] = 3, + [31742] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2888), 15, + ACTIONS(2876), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100277,7 +100705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2886), 29, + ACTIONS(2874), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100307,11 +100735,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31905] = 3, + [31795] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2892), 15, + ACTIONS(2880), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100327,7 +100755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2890), 29, + ACTIONS(2878), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100357,11 +100785,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31958] = 3, + [31848] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2896), 15, + ACTIONS(2884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100377,7 +100805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2894), 29, + ACTIONS(2882), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100407,11 +100835,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32011] = 3, + [31901] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2900), 15, + ACTIONS(2888), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100427,7 +100855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2898), 29, + ACTIONS(2886), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100457,11 +100885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32064] = 3, + [31954] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2433), 15, + ACTIONS(638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100477,7 +100905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2435), 29, + ACTIONS(636), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100507,11 +100935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32117] = 3, + [32007] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2904), 15, + ACTIONS(2892), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100527,7 +100955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2902), 29, + ACTIONS(2890), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100557,11 +100985,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32170] = 3, + [32060] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2908), 15, + ACTIONS(662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100577,7 +101005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2906), 29, + ACTIONS(660), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100607,11 +101035,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32223] = 3, + [32113] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2912), 15, + ACTIONS(606), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100627,7 +101055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2910), 29, + ACTIONS(604), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100657,11 +101085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32276] = 3, + [32166] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2916), 15, + ACTIONS(2896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100677,7 +101105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2914), 29, + ACTIONS(2894), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100707,11 +101135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32329] = 3, + [32219] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(662), 15, + ACTIONS(2900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100727,7 +101155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(660), 29, + ACTIONS(2898), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100757,24 +101185,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32382] = 3, + [32272] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2920), 12, + ACTIONS(618), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(616), 29, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [32325] = 21, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(912), 1, anon_sym_COLON_COLON, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + sym_identifier, + ACTIONS(2906), 1, + anon_sym_LPAREN, + ACTIONS(2908), 1, + anon_sym_STAR, + ACTIONS(2914), 1, + anon_sym_for, + ACTIONS(2916), 1, anon_sym_AMP, + ACTIONS(2918), 1, sym_metavariable, - ACTIONS(2918), 32, + STATE(1869), 1, + sym_scoped_type_identifier, + STATE(1948), 1, + sym_generic_type, + STATE(2067), 1, + sym_where_predicate, + STATE(2386), 1, + sym_bracketed_type, + STATE(2387), 1, + sym_generic_type_with_turbofish, + STATE(2552), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2904), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(2912), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + STATE(2266), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2910), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100792,26 +101303,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, + [32414] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(912), 1, + anon_sym_COLON_COLON, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + sym_identifier, + ACTIONS(2906), 1, + anon_sym_LPAREN, + ACTIONS(2908), 1, + anon_sym_STAR, + ACTIONS(2914), 1, anon_sym_for, - anon_sym_impl, + ACTIONS(2916), 1, + anon_sym_AMP, + ACTIONS(2918), 1, + sym_metavariable, + STATE(1869), 1, + sym_scoped_type_identifier, + STATE(1948), 1, + sym_generic_type, + STATE(2067), 1, + sym_where_predicate, + STATE(2386), 1, + sym_bracketed_type, + STATE(2387), 1, + sym_generic_type_with_turbofish, + STATE(2552), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2912), 2, + anon_sym_default, anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, + ACTIONS(2920), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(918), 3, sym_self, sym_super, sym_crate, - [32435] = 3, + STATE(2266), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2910), 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, + [32503] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(576), 15, + ACTIONS(2924), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100827,7 +101391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(574), 29, + ACTIONS(2922), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100857,61 +101421,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32488] = 3, + [32556] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2924), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(642), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(2922), 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, - [32541] = 3, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(640), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [32609] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 15, + ACTIONS(2928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100927,7 +101491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2622), 29, + ACTIONS(2926), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100957,11 +101521,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32594] = 3, + [32662] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2932), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100977,7 +101541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 29, + ACTIONS(2930), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101007,79 +101571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32647] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(912), 1, - anon_sym_COLON_COLON, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2926), 1, - sym_identifier, - ACTIONS(2930), 1, - anon_sym_LPAREN, - ACTIONS(2932), 1, - anon_sym_STAR, - ACTIONS(2938), 1, - anon_sym_for, - ACTIONS(2940), 1, - anon_sym_AMP, - ACTIONS(2942), 1, - sym_metavariable, - STATE(1869), 1, - sym_scoped_type_identifier, - STATE(1988), 1, - sym_generic_type, - STATE(2085), 1, - sym_where_predicate, - STATE(2395), 1, - sym_bracketed_type, - STATE(2396), 1, - sym_generic_type_with_turbofish, - STATE(2552), 1, - sym_scoped_identifier, + [32715] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2928), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2936), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(918), 3, - sym_self, - sym_super, - sym_crate, - STATE(2337), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2934), 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, - [32736] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(650), 15, + ACTIONS(2936), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101095,7 +101591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(648), 29, + ACTIONS(2934), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101125,11 +101621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32789] = 3, + [32768] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2946), 15, + ACTIONS(634), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101145,7 +101641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2944), 29, + ACTIONS(632), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101175,11 +101671,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32842] = 3, + [32821] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(580), 15, + ACTIONS(2940), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101195,7 +101691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(578), 29, + ACTIONS(2938), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101225,11 +101721,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32895] = 3, + [32874] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2950), 15, + ACTIONS(2944), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101245,7 +101741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2948), 29, + ACTIONS(2942), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101275,11 +101771,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32948] = 3, + [32927] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(572), 15, + ACTIONS(2628), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101295,7 +101791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(570), 29, + ACTIONS(2626), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101325,157 +101821,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33001] = 3, + [32980] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2952), 29, + ACTIONS(2948), 12, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [33054] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2958), 15, - anon_sym_PLUS, anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2956), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [33107] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2926), 1, - sym_identifier, - ACTIONS(2930), 1, - anon_sym_LPAREN, - ACTIONS(2932), 1, - anon_sym_STAR, - ACTIONS(2938), 1, - anon_sym_for, - ACTIONS(2940), 1, anon_sym_AMP, - ACTIONS(2942), 1, sym_metavariable, - STATE(1869), 1, - sym_scoped_type_identifier, - STATE(1988), 1, - sym_generic_type, - STATE(2085), 1, - sym_where_predicate, - STATE(2395), 1, - sym_bracketed_type, - STATE(2396), 1, - sym_generic_type_with_turbofish, - STATE(2552), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2936), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(2960), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(918), 3, - sym_self, - sym_super, - sym_crate, - STATE(2337), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2934), 17, + ACTIONS(2946), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101493,61 +101856,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [33196] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2600), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2598), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [33249] = 3, + 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, + [33033] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 15, + ACTIONS(2952), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101563,7 +101891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2618), 29, + ACTIONS(2950), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101593,11 +101921,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33302] = 3, + [33086] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2964), 15, + ACTIONS(2956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101613,7 +101941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2962), 29, + ACTIONS(2954), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101643,11 +101971,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33355] = 3, + [33139] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2968), 15, + ACTIONS(2960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101663,7 +101991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2966), 29, + ACTIONS(2958), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101693,11 +102021,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33408] = 3, + [33192] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2972), 15, + ACTIONS(630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101713,7 +102041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2970), 29, + ACTIONS(628), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101743,11 +102071,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33461] = 3, + [33245] = 4, + ACTIONS(2962), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2976), 15, + ACTIONS(564), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101763,11 +102093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2974), 29, + ACTIONS(562), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -101793,11 +102122,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33514] = 3, + [33300] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2980), 15, + ACTIONS(2966), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101813,7 +102142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2978), 29, + ACTIONS(2964), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101843,11 +102172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33567] = 3, + [33353] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2984), 15, + ACTIONS(2640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101863,7 +102192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2982), 29, + ACTIONS(2638), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101893,11 +102222,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33620] = 3, + [33406] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2980), 15, + ACTIONS(2970), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101913,7 +102242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2978), 29, + ACTIONS(2968), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101943,11 +102272,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33673] = 3, + [33459] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(642), 15, + ACTIONS(646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101963,7 +102292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(640), 29, + ACTIONS(644), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101993,11 +102322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33726] = 3, + [33512] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(646), 15, + ACTIONS(2974), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102013,7 +102342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(644), 29, + ACTIONS(2972), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102043,11 +102372,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33779] = 3, + [33565] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 15, + ACTIONS(2978), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102063,7 +102392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2986), 29, + ACTIONS(2976), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102093,11 +102422,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33832] = 3, + [33618] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2992), 15, + ACTIONS(2982), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102113,7 +102442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2990), 29, + ACTIONS(2980), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102143,11 +102472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33885] = 3, + [33671] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(678), 15, + ACTIONS(2986), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102163,7 +102492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(676), 29, + ACTIONS(2984), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102193,11 +102522,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33938] = 3, + [33724] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 15, + ACTIONS(2990), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102213,7 +102542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2994), 29, + ACTIONS(2988), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102243,11 +102572,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33991] = 3, + [33777] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3000), 15, + ACTIONS(2994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102263,7 +102592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2998), 29, + ACTIONS(2992), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102293,11 +102622,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34044] = 3, + [33830] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 15, + ACTIONS(2369), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102313,7 +102642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2684), 29, + ACTIONS(2371), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102343,11 +102672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34097] = 3, + [33883] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3004), 15, + ACTIONS(2998), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102363,7 +102692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3002), 29, + ACTIONS(2996), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102393,11 +102722,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34150] = 3, + [33936] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(670), 15, + ACTIONS(3002), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102413,7 +102742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(668), 29, + ACTIONS(3000), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102443,61 +102772,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34203] = 3, + [33989] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3008), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3006), 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, - [34256] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3012), 15, + ACTIONS(3006), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102513,7 +102792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3010), 29, + ACTIONS(3004), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102543,61 +102822,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34309] = 3, + [34042] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3016), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3014), 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, - [34362] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(622), 15, + ACTIONS(3010), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102613,7 +102842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(620), 29, + ACTIONS(3008), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102643,11 +102872,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34415] = 3, + [34095] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3020), 15, + ACTIONS(3014), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102663,7 +102892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3018), 29, + ACTIONS(3012), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102693,11 +102922,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34468] = 3, + [34148] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(638), 15, + ACTIONS(3014), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102713,7 +102942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(636), 29, + ACTIONS(3012), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102743,63 +102972,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34521] = 5, - ACTIONS(3022), 1, - anon_sym_POUND, + [34201] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1138), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2501), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2499), 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, - [34578] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3027), 15, + ACTIONS(580), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102815,7 +102992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3025), 29, + ACTIONS(578), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102845,11 +103022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34631] = 3, + [34254] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3031), 15, + ACTIONS(2748), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102865,7 +103042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3029), 29, + ACTIONS(2744), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102895,61 +103072,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34684] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3035), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3033), 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, - [34737] = 3, + [34307] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(654), 15, + ACTIONS(674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102965,7 +103092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(652), 29, + ACTIONS(672), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102992,64 +103119,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - [34790] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3039), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3037), 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, - [34843] = 3, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34360] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(666), 15, + ACTIONS(3018), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103065,7 +103142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(664), 29, + ACTIONS(3016), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103095,11 +103172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34896] = 3, + [34413] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3043), 15, + ACTIONS(610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103115,7 +103192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3041), 29, + ACTIONS(608), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103145,11 +103222,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34949] = 3, + [34466] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3047), 15, + ACTIONS(3022), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103165,7 +103242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3045), 29, + ACTIONS(3020), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103195,11 +103272,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35002] = 3, + [34519] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 15, + ACTIONS(658), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103215,7 +103292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3049), 29, + ACTIONS(656), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103245,11 +103322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35055] = 3, + [34572] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(588), 15, + ACTIONS(572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103265,7 +103342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(586), 29, + ACTIONS(570), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103295,11 +103372,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35108] = 3, + [34625] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(614), 15, + ACTIONS(3026), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103315,7 +103392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(612), 29, + ACTIONS(3024), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103345,11 +103422,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35161] = 3, + [34678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 15, + ACTIONS(2385), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103365,7 +103442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3053), 29, + ACTIONS(2387), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103395,11 +103472,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35214] = 3, + [34731] = 5, + ACTIONS(3028), 1, + anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3059), 15, + STATE(1147), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2521), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2519), 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, + [34788] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103415,7 +103544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3057), 29, + ACTIONS(664), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103445,11 +103574,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35267] = 3, + [34841] = 4, + ACTIONS(3035), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(630), 15, + ACTIONS(3033), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3031), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34896] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103465,7 +103645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(628), 29, + ACTIONS(624), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103495,26 +103675,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35320] = 3, + [34949] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2834), 14, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(3039), 12, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_POUND, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2832), 29, + ACTIONS(3037), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103532,71 +103710,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [35372] = 17, - ACTIONS(3063), 1, + [35002] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3043), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(3069), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_EQ, - ACTIONS(3073), 1, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(3077), 1, - anon_sym_DOT_DOT, - ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_PIPE, - ACTIONS(3085), 1, - anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, + sym_metavariable, + ACTIONS(3041), 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, + [35055] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(316), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3089), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3061), 19, + anon_sym_DOT, + ACTIONS(314), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + 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, @@ -103607,59 +103825,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35452] = 17, - ACTIONS(3063), 1, + [35108] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3047), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(3073), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(3077), 1, - anon_sym_DOT_DOT, - ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_PIPE, - ACTIONS(3085), 1, - anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3095), 1, + sym_metavariable, + ACTIONS(3045), 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, + [35161] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3051), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3049), 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, + [35214] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3055), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3089), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3093), 19, + anon_sym_DOT, + ACTIONS(3053), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + 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, @@ -103670,19 +103975,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35532] = 7, - ACTIONS(2626), 1, - anon_sym_LBRACE, - ACTIONS(2628), 1, - anon_sym_COLON_COLON, - ACTIONS(3097), 1, - anon_sym_BANG, - STATE(1076), 1, - sym_field_initializer_list, + [35267] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, + ACTIONS(3059), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103698,13 +103995,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(564), 24, + ACTIONS(3057), 29, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -103723,21 +104025,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35592] = 15, + [35320] = 15, ACTIONS(3063), 1, anon_sym_LBRACK, + ACTIONS(3069), 1, + anon_sym_EQ, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3083), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3101), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -103750,19 +104052,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3099), 21, + ACTIONS(3061), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103784,34 +104086,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35668] = 7, + [35396] = 17, ACTIONS(3063), 1, anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3091), 1, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, anon_sym_DOT, + ACTIONS(3091), 1, + anon_sym_EQ, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3075), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3105), 13, + ACTIONS(3065), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3075), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3067), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3103), 25, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3089), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103821,12 +104139,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - 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, @@ -103837,12 +104149,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35728] = 7, + [35476] = 7, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, @@ -103850,7 +104162,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3109), 13, + ACTIONS(3099), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103864,7 +104176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 25, + ACTIONS(3097), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103890,7 +104202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35788] = 16, + [35536] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, @@ -103898,14 +104210,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3077), 1, anon_sym_DOT_DOT, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3101), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3107), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, @@ -103919,29 +104237,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3099), 20, + ACTIONS(3101), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, - anon_sym_PIPE_PIPE, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103952,59 +104268,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35866] = 17, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3077), 1, - anon_sym_DOT_DOT, - ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_PIPE, - ACTIONS(3085), 1, - anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3113), 1, - anon_sym_EQ, + [35622] = 7, + ACTIONS(2642), 1, + anon_sym_LBRACE, + ACTIONS(2644), 1, + anon_sym_COLON_COLON, + ACTIONS(3111), 1, + anon_sym_BANG, + STATE(1145), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(564), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3089), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3111), 19, + anon_sym_DOT, + ACTIONS(562), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COMMA, + 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, @@ -104015,7 +104321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35946] = 20, + [35682] = 17, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, @@ -104023,20 +104329,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3077), 1, anon_sym_DOT_DOT, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3115), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, @@ -104050,27 +104352,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3115), 7, + ACTIONS(3113), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104081,24 +104384,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36032] = 17, - ACTIONS(288), 1, - anon_sym_EQ, + [35762] = 12, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3079), 1, - anon_sym_AMP_AMP, ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_PIPE, - ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, @@ -104106,25 +104401,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(282), 19, + ACTIONS(3069), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3061), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104134,6 +104426,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + 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, @@ -104144,7 +104442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36112] = 20, + [35832] = 17, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, @@ -104152,20 +104450,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3077), 1, anon_sym_DOT_DOT, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, @@ -104179,27 +104473,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3125), 7, + ACTIONS(3117), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104210,16 +104505,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36198] = 12, + [35912] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3033), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3031), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35964] = 11, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3085), 1, - anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, @@ -104230,19 +104572,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3101), 4, + ACTIONS(3069), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(3099), 25, + anon_sym_CARET, + ACTIONS(3061), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104268,36 +104611,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36268] = 9, + [36032] = 7, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3123), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3101), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3099), 25, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3121), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104323,34 +104664,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36332] = 7, + [36092] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3091), 1, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, anon_sym_DOT, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3107), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 13, - anon_sym_PLUS, + ACTIONS(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3067), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3125), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3109), 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, + [36178] = 16, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3073), 1, anon_sym_AMP, - anon_sym_DASH, + ACTIONS(3077), 1, + anon_sym_DOT_DOT, + ACTIONS(3079), 1, anon_sym_PIPE, + ACTIONS(3081), 1, anon_sym_CARET, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3075), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3067), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3127), 25, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3061), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104360,12 +104781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - 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, @@ -104376,11 +104792,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36392] = 3, + [36256] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2824), 14, + ACTIONS(2854), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -104395,7 +104811,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2822), 29, + ACTIONS(2852), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104425,12 +104841,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36444] = 8, + [36308] = 8, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, @@ -104442,8 +104858,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3101), 10, + ACTIONS(3069), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3061), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [36370] = 7, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3077), 1, + anon_sym_DOT_DOT, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3075), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3069), 13, anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104453,7 +104920,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3099), 25, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3061), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104479,7 +104948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36506] = 17, + [36430] = 17, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, @@ -104487,16 +104956,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3077), 1, anon_sym_DOT_DOT, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3133), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3129), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, @@ -104510,19 +104979,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 19, + ACTIONS(3127), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104542,14 +105011,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36586] = 11, + [36510] = 7, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3077), 1, + anon_sym_DOT_DOT, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3075), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3133), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3131), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [36570] = 10, + ACTIONS(3063), 1, + anon_sym_LBRACK, ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, @@ -104560,20 +105080,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3101), 5, + ACTIONS(3069), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3099), 25, + ACTIONS(3061), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104599,34 +105120,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36654] = 7, + [36636] = 17, + ACTIONS(288), 1, + anon_sym_EQ, ACTIONS(3063), 1, anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3091), 1, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, anon_sym_DOT, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3101), 13, - anon_sym_PLUS, + ACTIONS(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3067), 3, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(282), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [36716] = 13, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_AMP, - anon_sym_DASH, + ACTIONS(3077), 1, + anon_sym_DOT_DOT, + ACTIONS(3079), 1, anon_sym_PIPE, + ACTIONS(3081), 1, anon_sym_CARET, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3075), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3067), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3099), 25, + ACTIONS(3069), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3061), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104652,18 +105242,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36714] = 13, + [36788] = 9, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3083), 1, - anon_sym_PIPE, - ACTIONS(3085), 1, - anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, @@ -104674,18 +105258,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3101), 3, + ACTIONS(3069), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3099), 25, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3061), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104711,7 +105297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36786] = 17, + [36852] = 17, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, @@ -104719,15 +105305,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3077), 1, anon_sym_DOT_DOT, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, ACTIONS(3137), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -104742,14 +105328,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -104774,46 +105360,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36866] = 10, - ACTIONS(3063), 1, + [36932] = 20, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(912), 1, + anon_sym_COLON_COLON, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + sym_identifier, + ACTIONS(2906), 1, + anon_sym_LPAREN, + ACTIONS(2908), 1, + anon_sym_STAR, + ACTIONS(2914), 1, + anon_sym_for, + ACTIONS(2916), 1, + anon_sym_AMP, + ACTIONS(2918), 1, + sym_metavariable, + STATE(1869), 1, + sym_scoped_type_identifier, + STATE(1948), 1, + sym_generic_type, + STATE(2067), 1, + sym_where_predicate, + STATE(2386), 1, + sym_bracketed_type, + STATE(2387), 1, + sym_generic_type_with_turbofish, + STATE(2552), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2912), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(918), 3, + sym_self, + sym_super, + sym_crate, + STATE(2266), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2910), 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, + [37017] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2988), 10, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT_DOT, - ACTIONS(3091), 1, - anon_sym_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2990), 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_extern, + anon_sym_dyn, + sym_mutable_specifier, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37068] = 6, + ACTIONS(2652), 1, + anon_sym_BANG, + ACTIONS(2654), 1, + anon_sym_COLON_COLON, + ACTIONS(3139), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(2648), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3075), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3067), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3101), 6, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3099), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2646), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -104830,11 +105524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36932] = 3, + [37125] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1498), 10, + ACTIONS(1338), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -104845,7 +105539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(1500), 32, + ACTIONS(1340), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104878,7 +105572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36983] = 21, + [37176] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(700), 1, @@ -104889,23 +105583,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2942), 1, + ACTIONS(2918), 1, sym_metavariable, - ACTIONS(3139), 1, - sym_identifier, ACTIONS(3141), 1, + sym_identifier, + ACTIONS(3143), 1, anon_sym_default, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1355), 1, + STATE(1359), 1, sym_scoped_type_identifier, - STATE(1391), 1, + STATE(1393), 1, sym_generic_type, - STATE(1405), 1, + STATE(1419), 1, sym_function_type, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2427), 1, sym_function_modifiers, @@ -104914,7 +105608,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -104925,7 +105619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2936), 18, + ACTIONS(2912), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104944,72 +105638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37070] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(912), 1, - anon_sym_COLON_COLON, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2926), 1, - sym_identifier, - ACTIONS(2930), 1, - anon_sym_LPAREN, - ACTIONS(2932), 1, - anon_sym_STAR, - ACTIONS(2938), 1, - anon_sym_for, - ACTIONS(2940), 1, - anon_sym_AMP, - ACTIONS(2942), 1, - sym_metavariable, - STATE(1869), 1, - sym_scoped_type_identifier, - STATE(1872), 1, - sym_where_predicate, - STATE(1988), 1, - sym_generic_type, - STATE(2395), 1, - sym_bracketed_type, - STATE(2396), 1, - sym_generic_type_with_turbofish, - STATE(2552), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2936), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(918), 3, - sym_self, - sym_super, - sym_crate, - STATE(2337), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2934), 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, - [37155] = 21, + [37263] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(700), 1, @@ -105020,23 +105649,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2942), 1, + ACTIONS(2918), 1, sym_metavariable, - ACTIONS(3141), 1, - anon_sym_default, ACTIONS(3143), 1, + anon_sym_default, + ACTIONS(3145), 1, sym_identifier, - STATE(1211), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1349), 1, + STATE(1361), 1, sym_scoped_type_identifier, - STATE(1389), 1, + STATE(1387), 1, sym_generic_type, - STATE(1397), 1, + STATE(1408), 1, sym_function_type, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2427), 1, sym_function_modifiers, @@ -105045,7 +105674,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -105056,7 +105685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2936), 18, + ACTIONS(2912), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105075,22 +105704,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37242] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2974), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + [37350] = 17, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3147), 1, + sym_identifier, + ACTIONS(3149), 1, + anon_sym_RPAREN, + ACTIONS(3153), 1, + anon_sym_COMMA, + ACTIONS(3157), 1, sym_metavariable, - ACTIONS(2976), 32, + STATE(1696), 1, + sym_scoped_identifier, + STATE(2373), 1, + sym_generic_type_with_turbofish, + STATE(2492), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1130), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2148), 2, + sym_meta_item, + sym__literal, + ACTIONS(3155), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3151), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105108,69 +105764,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_mutable_specifier, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37293] = 20, + [37429] = 20, ACTIONS(77), 1, anon_sym_LT, ACTIONS(912), 1, anon_sym_COLON_COLON, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2926), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2930), 1, + ACTIONS(2906), 1, anon_sym_LPAREN, - ACTIONS(2932), 1, + ACTIONS(2908), 1, anon_sym_STAR, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_for, - ACTIONS(2940), 1, + ACTIONS(2916), 1, anon_sym_AMP, - ACTIONS(2942), 1, + ACTIONS(2918), 1, sym_metavariable, STATE(1869), 1, sym_scoped_type_identifier, - STATE(1988), 1, - sym_generic_type, - STATE(2085), 1, + STATE(1872), 1, sym_where_predicate, - STATE(2395), 1, + STATE(1948), 1, + sym_generic_type, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, STATE(2552), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2936), 2, + ACTIONS(2912), 2, anon_sym_default, anon_sym_union, ACTIONS(918), 3, sym_self, sym_super, sym_crate, - STATE(2337), 5, + STATE(2266), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2934), 17, + ACTIONS(2910), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105188,32 +105831,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37378] = 21, + [37514] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2479), 1, + ACTIONS(2497), 1, anon_sym_fn, - ACTIONS(2487), 1, + ACTIONS(2505), 1, anon_sym_COLON_COLON, - ACTIONS(3145), 1, + ACTIONS(3159), 1, sym_identifier, - ACTIONS(3149), 1, + ACTIONS(3163), 1, anon_sym_default, - ACTIONS(3151), 1, + ACTIONS(3165), 1, sym_metavariable, - STATE(777), 1, + STATE(785), 1, sym_scoped_type_identifier, - STATE(982), 1, + STATE(993), 1, sym_generic_type, - STATE(1114), 1, + STATE(1121), 1, sym_function_type, - STATE(1212), 1, + STATE(1213), 1, sym_for_lifetimes, - STATE(2398), 1, + STATE(2392), 1, sym_function_modifiers, STATE(2417), 1, sym_scoped_identifier, @@ -105224,18 +105867,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2495), 3, + ACTIONS(2513), 3, sym_self, sym_super, sym_crate, - ACTIONS(3147), 18, + ACTIONS(3161), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105254,32 +105897,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37465] = 21, + [37601] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2479), 1, + ACTIONS(2497), 1, anon_sym_fn, - ACTIONS(2487), 1, + ACTIONS(2505), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3163), 1, anon_sym_default, - ACTIONS(3151), 1, + ACTIONS(3165), 1, sym_metavariable, - ACTIONS(3153), 1, + ACTIONS(3167), 1, sym_identifier, - STATE(780), 1, + STATE(783), 1, sym_scoped_type_identifier, - STATE(993), 1, + STATE(1001), 1, sym_generic_type, - STATE(1102), 1, + STATE(1113), 1, sym_function_type, - STATE(1212), 1, + STATE(1213), 1, sym_for_lifetimes, - STATE(2398), 1, + STATE(2392), 1, sym_function_modifiers, STATE(2417), 1, sym_scoped_identifier, @@ -105290,18 +105933,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2495), 3, + ACTIONS(2513), 3, sym_self, sym_super, sym_crate, - ACTIONS(3147), 18, + ACTIONS(3161), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105320,20 +105963,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37552] = 6, - ACTIONS(2644), 1, + [37688] = 6, + ACTIONS(2584), 1, anon_sym_BANG, - ACTIONS(2646), 1, + ACTIONS(3169), 1, anon_sym_COLON_COLON, - ACTIONS(3155), 1, - sym_identifier, + STATE(1145), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 16, + ACTIONS(564), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105347,12 +105989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 23, - anon_sym_SEMI, + ACTIONS(562), 23, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -105371,24 +106013,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37609] = 17, + [37744] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3157), 1, + ACTIONS(3147), 1, sym_identifier, - ACTIONS(3159), 1, - anon_sym_RPAREN, - ACTIONS(3163), 1, - anon_sym_COMMA, - ACTIONS(3167), 1, + ACTIONS(3157), 1, sym_metavariable, - STATE(1712), 1, + ACTIONS(3171), 1, + anon_sym_RPAREN, + STATE(1696), 1, sym_scoped_identifier, - STATE(2388), 1, + STATE(2373), 1, sym_generic_type_with_turbofish, STATE(2492), 1, sym_bracketed_type, @@ -105398,13 +106038,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1068), 2, + STATE(1130), 2, sym_string_literal, sym_boolean_literal, - STATE(2141), 2, + STATE(2211), 2, sym_meta_item, sym__literal, - ACTIONS(3165), 3, + ACTIONS(3155), 3, sym_self, sym_super, sym_crate, @@ -105413,7 +106053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3161), 19, + ACTIONS(3151), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105433,22 +106073,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37688] = 16, + [37820] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3157), 1, + ACTIONS(3147), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3157), 1, sym_metavariable, - ACTIONS(3169), 1, + ACTIONS(3173), 1, anon_sym_RPAREN, - STATE(1712), 1, + STATE(1696), 1, sym_scoped_identifier, - STATE(2388), 1, + STATE(2373), 1, sym_generic_type_with_turbofish, STATE(2492), 1, sym_bracketed_type, @@ -105458,13 +106098,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1068), 2, + STATE(1130), 2, sym_string_literal, sym_boolean_literal, - STATE(2194), 2, + STATE(2211), 2, sym_meta_item, sym__literal, - ACTIONS(3165), 3, + ACTIONS(3155), 3, sym_self, sym_super, sym_crate, @@ -105473,7 +106113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3161), 19, + ACTIONS(3151), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105493,15 +106133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37764] = 5, - ACTIONS(2682), 1, + [37896] = 5, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(3097), 1, + ACTIONS(3111), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, + ACTIONS(564), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105517,7 +106157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(564), 24, + ACTIONS(562), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -105542,7 +106182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37818] = 16, + [37950] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(732), 1, @@ -105551,17 +106191,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3171), 1, + ACTIONS(3175), 1, sym_identifier, - ACTIONS(3177), 1, + ACTIONS(3181), 1, sym_metavariable, - STATE(1441), 1, + STATE(1442), 1, sym_scoped_identifier, - STATE(1454), 1, + STATE(1469), 1, sym__literal_pattern, - STATE(2388), 1, + STATE(2373), 1, sym_generic_type_with_turbofish, - STATE(2391), 1, + STATE(2378), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -105569,11 +106209,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(738), 2, anon_sym_true, anon_sym_false, - ACTIONS(3175), 3, + ACTIONS(3179), 3, sym_self, sym_super, sym_crate, - STATE(1419), 3, + STATE(1428), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, @@ -105582,7 +106222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3173), 19, + ACTIONS(3177), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105602,7 +106242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37894] = 16, + [38026] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(732), 1, @@ -105611,17 +106251,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3179), 1, + ACTIONS(3183), 1, sym_identifier, - ACTIONS(3185), 1, + ACTIONS(3189), 1, sym_metavariable, - STATE(1436), 1, + STATE(1443), 1, sym_scoped_identifier, - STATE(1486), 1, + STATE(1478), 1, sym__literal_pattern, - STATE(2388), 1, + STATE(2373), 1, sym_generic_type_with_turbofish, - STATE(2391), 1, + STATE(2378), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -105629,11 +106269,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(738), 2, anon_sym_true, anon_sym_false, - ACTIONS(3183), 3, + ACTIONS(3187), 3, sym_self, sym_super, sym_crate, - STATE(1419), 3, + STATE(1428), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, @@ -105642,151 +106282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3181), 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, - [37970] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(888), 1, - anon_sym_COLON_COLON, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3167), 1, - sym_metavariable, - ACTIONS(3187), 1, - anon_sym_RPAREN, - STATE(1712), 1, - sym_scoped_identifier, - STATE(2388), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1068), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2194), 2, - sym_meta_item, - sym__literal, - ACTIONS(3165), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3161), 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, - [38046] = 6, - ACTIONS(2584), 1, - anon_sym_BANG, - ACTIONS(3189), 1, - anon_sym_COLON_COLON, - STATE(1076), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(562), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(564), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - 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, - [38102] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3193), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3191), 31, + ACTIONS(3185), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105804,193 +106300,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38151] = 23, - ACTIONS(374), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_PIPE, - ACTIONS(3085), 1, - anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_EQ, + [38102] = 4, ACTIONS(3195), 1, - anon_sym_SEMI, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3201), 1, - anon_sym_DOT_DOT, - STATE(2119), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3065), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3199), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3087), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3123), 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, - [38240] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3205), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3203), 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, - [38289] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2606), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2608), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COLON_COLON, - 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, - [38338] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3008), 9, + ACTIONS(3193), 8, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, anon_sym_LT, - anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3006), 31, + ACTIONS(3191), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106015,52 +106342,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [38387] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(888), 1, - anon_sym_COLON_COLON, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3167), 1, - sym_metavariable, - STATE(1712), 1, - sym_scoped_identifier, - STATE(2388), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1068), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2194), 2, - sym_meta_item, - sym__literal, - ACTIONS(3165), 3, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, sym_self, sym_super, sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3161), 19, + [38153] = 4, + ACTIONS(3197), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3193), 8, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3191), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106078,19 +106382,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - [38460] = 5, - ACTIONS(2680), 1, - anon_sym_BANG, - ACTIONS(3207), 1, - anon_sym_COLON_COLON, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38204] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(2634), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106104,12 +106417,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 23, + ACTIONS(2636), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106128,22 +106442,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38513] = 4, - ACTIONS(3213), 1, + [38253] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(888), 1, anon_sym_COLON_COLON, + ACTIONS(3147), 1, + sym_identifier, + ACTIONS(3157), 1, + sym_metavariable, + STATE(1696), 1, + sym_scoped_identifier, + STATE(2373), 1, + sym_generic_type_with_turbofish, + STATE(2492), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3211), 8, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3209), 31, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1130), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2211), 2, + sym_meta_item, + sym__literal, + ACTIONS(3155), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3151), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106161,25 +106498,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38564] = 3, + [38326] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3217), 9, + ACTIONS(3201), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -106189,7 +106514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3215), 31, + ACTIONS(3199), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106221,13 +106546,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38613] = 4, - ACTIONS(3219), 1, - anon_sym_LPAREN, + [38375] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3211), 8, + ACTIONS(3205), 9, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -106236,7 +106560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3209), 31, + ACTIONS(3203), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106268,60 +106592,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38664] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2614), 16, - anon_sym_PLUS, - anon_sym_STAR, + [38424] = 5, + ACTIONS(2584), 1, anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2616), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3207), 1, anon_sym_COLON_COLON, - 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, - [38713] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2652), 16, + ACTIONS(564), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106335,13 +106616,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2654), 24, + ACTIONS(562), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106360,36 +106640,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38762] = 23, - ACTIONS(548), 1, + [38477] = 23, + ACTIONS(374), 1, anon_sym_RBRACK, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, - anon_sym_DOT_DOT, - ACTIONS(3221), 1, + ACTIONS(3209), 1, anon_sym_SEMI, - ACTIONS(3223), 1, + ACTIONS(3211), 1, anon_sym_COMMA, - STATE(1927), 1, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + STATE(2113), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, @@ -106400,22 +106680,70 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3109), 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, + [38566] = 5, + ACTIONS(2708), 1, + anon_sym_BANG, + ACTIONS(3217), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2648), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2646), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106426,11 +106754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38851] = 3, + [38619] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2924), 9, + ACTIONS(3043), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -106440,7 +106768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2922), 31, + ACTIONS(3041), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106472,44 +106800,108 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38900] = 5, - ACTIONS(2584), 1, - anon_sym_BANG, - ACTIONS(3225), 1, - anon_sym_COLON_COLON, + [38668] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, - anon_sym_PLUS, + ACTIONS(2948), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, + sym_metavariable, + ACTIONS(2946), 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, + [38717] = 23, + ACTIONS(540), 1, + anon_sym_RBRACK, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, anon_sym_PIPE, + ACTIONS(3081), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(564), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, + ACTIONS(3105), 1, anon_sym_as, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3219), 1, + anon_sym_SEMI, + ACTIONS(3221), 1, + anon_sym_COMMA, + STATE(1906), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106520,11 +106912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38953] = 3, + [38806] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 16, + ACTIONS(2610), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -106541,7 +106933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2636), 24, + ACTIONS(2612), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106566,79 +106958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39002] = 22, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_PIPE, - ACTIONS(3085), 1, - anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_EQ, - ACTIONS(3201), 1, - anon_sym_DOT_DOT, - ACTIONS(3227), 1, - anon_sym_RPAREN, - ACTIONS(3229), 1, - anon_sym_COMMA, - STATE(1929), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3065), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3199), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3087), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3123), 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, - [39088] = 4, - ACTIONS(2686), 1, - anon_sym_COLON_COLON, + [38855] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 15, + ACTIONS(2602), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106652,12 +106979,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2684), 23, + ACTIONS(2604), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106676,15 +107004,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39138] = 4, - ACTIONS(2714), 1, + [38904] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3225), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3223), 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, + [38953] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 15, + ACTIONS(2618), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106698,12 +107071,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2684), 23, + ACTIONS(2620), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106722,37 +107096,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39188] = 18, + [39002] = 18, ACTIONS(77), 1, anon_sym_LT, ACTIONS(714), 1, anon_sym_extern, ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2942), 1, + ACTIONS(2918), 1, sym_metavariable, - ACTIONS(3141), 1, + ACTIONS(3143), 1, anon_sym_default, - ACTIONS(3231), 1, + ACTIONS(3227), 1, sym_identifier, - ACTIONS(3233), 1, + ACTIONS(3229), 1, anon_sym_fn, - STATE(1846), 1, + STATE(1828), 1, sym_scoped_type_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, + STATE(2419), 1, + sym_function_modifiers, STATE(2441), 1, sym_generic_type, - STATE(2522), 1, - sym_function_modifiers, STATE(2552), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -106763,7 +107137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2936), 18, + ACTIONS(2912), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106782,37 +107156,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [39266] = 18, + [39080] = 4, + ACTIONS(3217), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2648), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2646), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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, + [39130] = 22, + ACTIONS(384), 1, + anon_sym_RPAREN, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3231), 1, + anon_sym_COMMA, + STATE(2071), 1, + aux_sym_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3109), 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, + [39216] = 18, ACTIONS(77), 1, anon_sym_LT, ACTIONS(714), 1, anon_sym_extern, ACTIONS(912), 1, anon_sym_COLON_COLON, - ACTIONS(2942), 1, + ACTIONS(2918), 1, sym_metavariable, - ACTIONS(3141), 1, + ACTIONS(3143), 1, anon_sym_default, - ACTIONS(3235), 1, + ACTIONS(3233), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3235), 1, anon_sym_fn, - STATE(1858), 1, + STATE(1809), 1, sym_scoped_type_identifier, - STATE(2395), 1, + STATE(2386), 1, sym_bracketed_type, - STATE(2396), 1, + STATE(2387), 1, sym_generic_type_with_turbofish, - STATE(2419), 1, - sym_function_modifiers, STATE(2441), 1, sym_generic_type, + STATE(2522), 1, + sym_function_modifiers, STATE(2552), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1594), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -106823,7 +107307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2936), 18, + ACTIONS(2912), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106842,34 +107326,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, + [39294] = 4, + ACTIONS(2746), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2748), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2744), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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, [39344] = 22, - ACTIONS(384), 1, - anon_sym_RPAREN, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, + ACTIONS(3237), 1, + anon_sym_RPAREN, ACTIONS(3239), 1, anon_sym_COMMA, - STATE(2127), 1, + STATE(1939), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, @@ -106880,22 +107410,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106907,12 +107437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [39430] = 4, - ACTIONS(3241), 1, + ACTIONS(2786), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, + ACTIONS(2748), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106928,7 +107458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(564), 23, + ACTIONS(2744), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106953,12 +107483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [39480] = 4, - ACTIONS(3207), 1, + ACTIONS(3241), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(564), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106974,7 +107504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 23, + ACTIONS(562), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106998,58 +107528,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39530] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, + [39530] = 17, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3247), 1, + ACTIONS(3137), 1, anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3253), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - STATE(1059), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3135), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107060,46 +107586,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39613] = 9, + [39605] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3273), 1, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3249), 1, + anon_sym_AMP, + ACTIONS(3255), 1, + anon_sym_AMP_AMP, + ACTIONS(3257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3259), 1, + anon_sym_PIPE, + ACTIONS(3261), 1, + anon_sym_CARET, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, anon_sym_DOT_DOT, + STATE(169), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3271), 2, + ACTIONS(3247), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3101), 8, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3263), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3273), 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, + [39688] = 20, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_AMP, + ACTIONS(3079), 1, anon_sym_PIPE, + ACTIONS(3081), 1, anon_sym_CARET, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3099), 20, - anon_sym_LPAREN, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3275), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3109), 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, + [39769] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3103), 1, anon_sym_QMARK, + ACTIONS(3105), 1, anon_sym_as, + ACTIONS(3249), 1, + anon_sym_AMP, + ACTIONS(3255), 1, anon_sym_AMP_AMP, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, + ACTIONS(3259), 1, + anon_sym_PIPE, + ACTIONS(3261), 1, + anon_sym_CARET, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, + anon_sym_DOT_DOT, + STATE(84), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3247), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3269), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3245), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107110,28 +107771,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39672] = 20, + [39852] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, @@ -107142,25 +107803,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, - anon_sym_RPAREN, + ACTIONS(3277), 2, + anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107171,32 +107832,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39753] = 21, + [39933] = 21, ACTIONS(15), 1, anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, ACTIONS(3255), 1, - anon_sym_DOT_DOT, - ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - STATE(49), 1, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, + anon_sym_DOT_DOT, + STATE(142), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -107204,25 +107865,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3269), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107233,32 +107894,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39836] = 21, - ACTIONS(15), 1, + [40016] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, ACTIONS(3255), 1, - anon_sym_DOT_DOT, - ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - STATE(177), 1, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, + anon_sym_DOT_DOT, + STATE(1137), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -107266,25 +107927,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3269), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107295,45 +107956,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39919] = 8, + [40099] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3273), 1, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3249), 1, + anon_sym_AMP, + ACTIONS(3255), 1, + anon_sym_AMP_AMP, + ACTIONS(3257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3259), 1, + anon_sym_PIPE, + ACTIONS(3261), 1, + anon_sym_CARET, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, anon_sym_DOT_DOT, + STATE(1106), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3271), 2, + ACTIONS(3243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3247), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3101), 10, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3263), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3273), 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, + [40182] = 21, + ACTIONS(392), 1, + anon_sym_RPAREN, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_AMP, - anon_sym_DASH, + ACTIONS(3079), 1, anon_sym_PIPE, + ACTIONS(3081), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3099), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3093), 1, anon_sym_AMP_AMP, + ACTIONS(3095), 1, anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3279), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107344,32 +108080,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39976] = 21, + [40265] = 21, ACTIONS(15), 1, anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, ACTIONS(3255), 1, - anon_sym_DOT_DOT, - ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - STATE(181), 1, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, + anon_sym_DOT_DOT, + STATE(48), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -107377,25 +108113,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3269), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107406,58 +108142,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40059] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, + [40348] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3251), 1, - anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3281), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3109), 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, + [40429] = 20, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3093), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3095), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3283), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3109), 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, + [40510] = 21, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3081), 1, anon_sym_CARET, - STATE(117), 1, - sym_block, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3285), 1, + anon_sym_RPAREN, + ACTIONS(3287), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3109), 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, + [40593] = 21, + ACTIONS(266), 1, + anon_sym_RBRACE, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3289), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107468,28 +108388,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40142] = 20, + [40676] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, @@ -107500,25 +108420,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3277), 2, - anon_sym_RBRACE, + ACTIONS(3291), 2, + anon_sym_RBRACK, anon_sym_COMMA, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107529,58 +108449,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40223] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, + [40757] = 21, + ACTIONS(390), 1, + anon_sym_RPAREN, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3251), 1, - anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, - anon_sym_AMP_AMP, - ACTIONS(3259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, - anon_sym_PIPE, - ACTIONS(3263), 1, - anon_sym_CARET, - STATE(45), 1, - sym_block, + ACTIONS(3279), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107591,58 +108511,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40306] = 21, + [40840] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3079), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3081), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3267), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3271), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, - anon_sym_SEMI, - ACTIONS(3281), 1, - anon_sym_RBRACE, + STATE(1148), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107653,58 +108573,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40389] = 21, - ACTIONS(502), 1, - anon_sym_RPAREN, + [40923] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3079), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3081), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3267), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3271), 1, anon_sym_DOT_DOT, - ACTIONS(3283), 1, - anon_sym_COMMA, + STATE(122), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107715,58 +108635,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40472] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, + [41006] = 17, + ACTIONS(288), 1, + anon_sym_EQ, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3253), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - STATE(182), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(282), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107777,28 +108693,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40555] = 20, + [41081] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, @@ -107809,25 +108725,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3285), 2, + ACTIONS(3293), 2, anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107838,53 +108754,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40636] = 16, + [41162] = 21, + ACTIONS(109), 1, + anon_sym_RBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3101), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_AMP_AMP, - ACTIONS(3261), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3215), 1, anon_sym_DOT_DOT, + ACTIONS(3289), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3267), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3271), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3099), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_PIPE_PIPE, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107895,58 +108816,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40709] = 21, - ACTIONS(123), 1, - anon_sym_RBRACE, + [41245] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3079), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3081), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3267), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3271), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, - anon_sym_SEMI, + STATE(1150), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107957,34 +108878,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40792] = 7, + [41328] = 9, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3273), 1, + ACTIONS(3253), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3271), 2, + ACTIONS(3243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3129), 13, - anon_sym_PLUS, + ACTIONS(3245), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3069), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3127), 20, + ACTIONS(3061), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -108005,54 +108928,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40847] = 17, - ACTIONS(288), 1, - anon_sym_EQ, + [41387] = 21, + ACTIONS(582), 1, + anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3251), 1, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, anon_sym_DOT_DOT, + STATE(222), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3271), 2, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108063,58 +108990,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40922] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, + [41470] = 21, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, ACTIONS(3255), 1, - anon_sym_DOT_DOT, - ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - STATE(788), 1, - sym_block, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, + anon_sym_DOT_DOT, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(243), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3269), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108125,58 +109052,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41005] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, + [41553] = 11, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3253), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, - anon_sym_AMP_AMP, - ACTIONS(3259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, - anon_sym_PIPE, - ACTIONS(3263), 1, - anon_sym_CARET, - STATE(84), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3069), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3061), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108187,58 +109104,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41088] = 21, + [41616] = 12, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3253), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, - anon_sym_AMP_AMP, - ACTIONS(3259), 1, - anon_sym_PIPE_PIPE, ACTIONS(3261), 1, - anon_sym_PIPE, - ACTIONS(3263), 1, anon_sym_CARET, - ACTIONS(3287), 1, - anon_sym_LBRACE, - STATE(1082), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3069), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3061), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108249,54 +109157,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41171] = 17, + [41681] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3137), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_AMP_AMP, - ACTIONS(3259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3215), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3267), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3271), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3297), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3135), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108307,54 +109218,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41246] = 17, + [41762] = 21, + ACTIONS(582), 1, + anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3095), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, anon_sym_DOT_DOT, + STATE(244), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3271), 2, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3093), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108365,33 +109280,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41321] = 21, - ACTIONS(115), 1, - anon_sym_RBRACE, + [41845] = 21, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, - anon_sym_SEMI, + ACTIONS(3299), 1, + anon_sym_RBRACE, + ACTIONS(3301), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -108401,22 +109316,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108427,44 +109342,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41404] = 7, + [41928] = 21, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3273), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3215), 1, anon_sym_DOT_DOT, + ACTIONS(3289), 1, + anon_sym_SEMI, + ACTIONS(3303), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3271), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3109), 13, + ACTIONS(3065), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108475,54 +109404,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41459] = 17, + [42011] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3113), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, anon_sym_DOT_DOT, + STATE(47), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3271), 2, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3111), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108533,57 +109466,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41534] = 20, + [42094] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, anon_sym_DOT_DOT, + STATE(794), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3125), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3271), 2, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108592,59 +109526,55 @@ 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, - [41615] = 20, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3247), 1, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [42177] = 16, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3253), 1, + anon_sym_DOT_DOT, + ACTIONS(3255), 1, anon_sym_AMP_AMP, ACTIONS(3259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3273), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3115), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3271), 2, + ACTIONS(3251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3061), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108655,44 +109585,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41696] = 7, + [42250] = 15, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3069), 1, + anon_sym_EQ, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3273), 1, + ACTIONS(3249), 1, + anon_sym_AMP, + ACTIONS(3253), 1, anon_sym_DOT_DOT, + ACTIONS(3259), 1, + anon_sym_PIPE, + ACTIONS(3261), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3271), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3105), 13, + ACTIONS(3243), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3251), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3245), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3103), 20, + ACTIONS(3263), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3061), 16, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, 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, @@ -108703,34 +109641,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41751] = 7, + [42321] = 10, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3273), 1, + ACTIONS(3253), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3271), 2, + ACTIONS(3243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3101), 13, - anon_sym_PLUS, + ACTIONS(3265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3069), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3099), 20, + ACTIONS(3061), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -108751,58 +109692,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41806] = 21, + [42382] = 17, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3091), 1, + anon_sym_EQ, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3079), 1, + ACTIONS(3253), 1, + anon_sym_DOT_DOT, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3081), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_EQ, - ACTIONS(3201), 1, - anon_sym_DOT_DOT, - ACTIONS(3283), 1, - anon_sym_COMMA, - ACTIONS(3289), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3089), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108813,40 +109750,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41889] = 13, + [42457] = 8, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3251), 1, - anon_sym_AMP, - ACTIONS(3261), 1, - anon_sym_PIPE, - ACTIONS(3263), 1, - anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3253), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3271), 2, + ACTIONS(3251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3101), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3099), 20, + ACTIONS(3069), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3061), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -108867,89 +109799,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41956] = 20, + [42514] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_EQ, - ACTIONS(3201), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3065), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3199), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3291), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3067), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3087), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3123), 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, - [42037] = 20, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, + ACTIONS(3093), 1, anon_sym_AMP_AMP, - ACTIONS(3081), 1, + ACTIONS(3095), 1, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_PIPE, - ACTIONS(3085), 1, - anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, @@ -108960,25 +109831,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3293), 2, - anon_sym_RBRACE, + ACTIONS(3305), 2, + anon_sym_RPAREN, anon_sym_COMMA, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108989,58 +109860,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42118] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, + [42595] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3253), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - STATE(1144), 1, - sym_block, + ACTIONS(3267), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(3101), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109051,33 +109921,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42201] = 21, + [42676] = 21, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, ACTIONS(3279), 1, - anon_sym_SEMI, - ACTIONS(3295), 1, - anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3307), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -109087,22 +109957,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109113,32 +109983,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42284] = 21, - ACTIONS(284), 1, + [42759] = 21, + ACTIONS(582), 1, anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, ACTIONS(3255), 1, - anon_sym_DOT_DOT, - ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - STATE(1109), 1, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, + anon_sym_DOT_DOT, + STATE(255), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -109146,25 +110016,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3269), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109175,58 +110045,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42367] = 21, - ACTIONS(278), 1, - anon_sym_RBRACE, + [42842] = 21, + ACTIONS(582), 1, + anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3079), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3081), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3267), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3271), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, - anon_sym_SEMI, + STATE(252), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109237,58 +110107,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42450] = 21, + [42925] = 21, + ACTIONS(582), 1, + anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, ACTIONS(3255), 1, - anon_sym_DOT_DOT, - ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3297), 1, - anon_sym_LBRACE, - STATE(134), 1, - sym_match_block, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, + anon_sym_DOT_DOT, + STATE(223), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3269), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109299,120 +110169,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42533] = 21, + [43008] = 21, + ACTIONS(582), 1, + anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_PIPE, - ACTIONS(3085), 1, - anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, - anon_sym_EQ, - ACTIONS(3201), 1, - anon_sym_DOT_DOT, - ACTIONS(3299), 1, - anon_sym_RPAREN, - ACTIONS(3301), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3065), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3199), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3087), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3123), 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, - [42616] = 21, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3079), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3081), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3267), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3271), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, - anon_sym_SEMI, - ACTIONS(3303), 1, - anon_sym_RBRACE, + STATE(249), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109423,32 +110231,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42699] = 21, + [43091] = 21, ACTIONS(284), 1, anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, ACTIONS(3255), 1, - anon_sym_DOT_DOT, - ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - STATE(794), 1, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, + anon_sym_DOT_DOT, + STATE(1123), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -109456,25 +110264,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3269), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109485,33 +110293,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42782] = 21, - ACTIONS(274), 1, - anon_sym_RBRACE, + [43174] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -109521,22 +110325,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3309), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109547,49 +110354,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42865] = 12, + [43255] = 21, + ACTIONS(582), 1, + anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3251), 1, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3263), 1, + ACTIONS(3255), 1, + anon_sym_AMP_AMP, + ACTIONS(3257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3259), 1, + anon_sym_PIPE, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, anon_sym_DOT_DOT, + STATE(247), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3267), 2, + ACTIONS(3247), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3271), 2, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3101), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3099), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109600,104 +110416,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42930] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3305), 1, - sym_identifier, - ACTIONS(3307), 1, + [43338] = 21, + ACTIONS(582), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_RBRACE, - ACTIONS(3311), 1, - anon_sym_STAR, - ACTIONS(3315), 1, - anon_sym_COMMA, - ACTIONS(3317), 1, - anon_sym_COLON_COLON, - ACTIONS(3321), 1, - sym_metavariable, - STATE(1774), 1, - sym_scoped_identifier, - STATE(2388), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3319), 3, - sym_self, - sym_super, - sym_crate, - STATE(2001), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3313), 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, - [43001] = 11, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3251), 1, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3273), 1, + ACTIONS(3255), 1, + anon_sym_AMP_AMP, + ACTIONS(3257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3259), 1, + anon_sym_PIPE, + ACTIONS(3261), 1, + anon_sym_CARET, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, anon_sym_DOT_DOT, + STATE(246), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3267), 2, + ACTIONS(3247), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3271), 2, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3101), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3099), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109708,58 +110478,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43064] = 21, - ACTIONS(594), 1, - anon_sym_LBRACE, + [43421] = 21, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3251), 1, - anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, - anon_sym_AMP_AMP, - ACTIONS(3259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, - anon_sym_PIPE, - ACTIONS(3263), 1, - anon_sym_CARET, - STATE(231), 1, - sym_block, + ACTIONS(3311), 1, + anon_sym_RBRACE, + ACTIONS(3313), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109770,58 +110540,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43147] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, + [43504] = 21, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, ACTIONS(3255), 1, - anon_sym_DOT_DOT, - ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - STATE(1126), 1, - sym_block, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, + anon_sym_DOT_DOT, + ACTIONS(3315), 1, + anon_sym_LBRACE, + STATE(161), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3269), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109832,33 +110602,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43230] = 21, + [43587] = 21, + ACTIONS(274), 1, + anon_sym_RBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3323), 1, - anon_sym_RBRACE, - ACTIONS(3325), 1, - anon_sym_COMMA, + ACTIONS(3289), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -109868,22 +110638,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109894,47 +110664,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43313] = 10, + [43670] = 17, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3273), 1, + ACTIONS(3115), 1, + anon_sym_EQ, + ACTIONS(3249), 1, + anon_sym_AMP, + ACTIONS(3253), 1, anon_sym_DOT_DOT, + ACTIONS(3255), 1, + anon_sym_AMP_AMP, + ACTIONS(3257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3259), 1, + anon_sym_PIPE, + ACTIONS(3261), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3271), 2, + ACTIONS(3247), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3101), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3099), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3113), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109945,58 +110722,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43374] = 21, - ACTIONS(594), 1, - anon_sym_LBRACE, + [43745] = 21, + ACTIONS(268), 1, + anon_sym_RBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3251), 1, - anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, - anon_sym_AMP_AMP, - ACTIONS(3259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, - anon_sym_PIPE, - ACTIONS(3263), 1, - anon_sym_CARET, - STATE(244), 1, - sym_block, + ACTIONS(3289), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110007,32 +110784,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43457] = 21, + [43828] = 21, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, + ACTIONS(3289), 1, anon_sym_SEMI, - ACTIONS(3327), 1, + ACTIONS(3317), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, @@ -110043,22 +110820,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110069,52 +110846,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43540] = 15, + [43911] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3101), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3261), 1, + ACTIONS(3255), 1, + anon_sym_AMP_AMP, + ACTIONS(3257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, anon_sym_DOT_DOT, + STATE(162), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3271), 2, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3099), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110125,57 +110908,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43611] = 20, + [43994] = 13, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + ACTIONS(3253), 1, + anon_sym_DOT_DOT, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_EQ, - ACTIONS(3201), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3329), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3067), 3, + ACTIONS(3265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3069), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3061), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110186,54 +110962,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43692] = 17, + [44061] = 21, + ACTIONS(262), 1, + anon_sym_RBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_EQ, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3251), 1, + ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_AMP_AMP, - ACTIONS(3259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3215), 1, anon_sym_DOT_DOT, + ACTIONS(3289), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3267), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3271), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3061), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110244,58 +111024,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43767] = 21, - ACTIONS(594), 1, - anon_sym_LBRACE, + [44144] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3251), 1, - anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, - anon_sym_AMP_AMP, - ACTIONS(3259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, - anon_sym_PIPE, - ACTIONS(3263), 1, - anon_sym_CARET, - STATE(229), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3319), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110306,58 +111085,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43850] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, + [44225] = 7, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, - anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3253), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, - anon_sym_AMP_AMP, - ACTIONS(3259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, - anon_sym_PIPE, - ACTIONS(3263), 1, - anon_sym_CARET, - STATE(1105), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3251), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3133), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3249), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3131), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110368,33 +111133,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43933] = 21, + [44280] = 21, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3331), 1, + ACTIONS(3289), 1, + anon_sym_SEMI, + ACTIONS(3321), 1, anon_sym_RBRACE, - ACTIONS(3333), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -110404,22 +111169,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110430,32 +111195,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44016] = 21, - ACTIONS(594), 1, + [44363] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3323), 1, + sym_identifier, + ACTIONS(3325), 1, + anon_sym_LBRACE, + ACTIONS(3327), 1, + anon_sym_RBRACE, + ACTIONS(3329), 1, + anon_sym_STAR, + ACTIONS(3333), 1, + anon_sym_COMMA, + ACTIONS(3335), 1, + anon_sym_COLON_COLON, + ACTIONS(3339), 1, + sym_metavariable, + STATE(1742), 1, + sym_scoped_identifier, + STATE(2373), 1, + sym_generic_type_with_turbofish, + STATE(2492), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3337), 3, + sym_self, + sym_super, + sym_crate, + STATE(2001), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3331), 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, + [44434] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, ACTIONS(3255), 1, - anon_sym_DOT_DOT, - ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - STATE(220), 1, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, + anon_sym_DOT_DOT, + STATE(141), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -110463,25 +111284,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3269), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110492,57 +111313,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44099] = 20, + [44517] = 7, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3253), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3251), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3069), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(3085), 1, anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3061), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_QMARK, - ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3121), 1, - anon_sym_EQ, - ACTIONS(3201), 1, + 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, + [44572] = 7, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3253), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3251), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3123), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3335), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3067), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3121), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110553,58 +111409,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44180] = 21, - ACTIONS(594), 1, - anon_sym_LBRACE, + [44627] = 21, + ACTIONS(272), 1, + anon_sym_RBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3251), 1, - anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, - anon_sym_AMP_AMP, - ACTIONS(3259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, - anon_sym_PIPE, - ACTIONS(3263), 1, - anon_sym_CARET, - STATE(236), 1, - sym_block, + ACTIONS(3289), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110615,58 +111471,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44263] = 21, - ACTIONS(594), 1, - anon_sym_LBRACE, + [44710] = 21, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3251), 1, - anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, - anon_sym_AMP_AMP, - ACTIONS(3259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, - anon_sym_PIPE, - ACTIONS(3263), 1, - anon_sym_CARET, - STATE(240), 1, - sym_block, + ACTIONS(3289), 1, + anon_sym_SEMI, + ACTIONS(3341), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110677,29 +111533,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44346] = 20, + [44793] = 21, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, + ACTIONS(3289), 1, + anon_sym_SEMI, + ACTIONS(3343), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -110709,25 +111569,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3337), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110738,58 +111595,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44427] = 21, - ACTIONS(107), 1, - anon_sym_RBRACE, + [44876] = 17, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3119), 1, + anon_sym_EQ, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3079), 1, + ACTIONS(3253), 1, + anon_sym_DOT_DOT, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3081), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_EQ, - ACTIONS(3201), 1, - anon_sym_DOT_DOT, - ACTIONS(3279), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3265), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3117), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110800,32 +111653,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44510] = 21, + [44951] = 21, ACTIONS(284), 1, anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, ACTIONS(3255), 1, - anon_sym_DOT_DOT, - ACTIONS(3257), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - STATE(1148), 1, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, + anon_sym_DOT_DOT, + STATE(792), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -110833,25 +111686,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3269), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110862,57 +111715,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44593] = 20, + [45034] = 7, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_PIPE, - ACTIONS(3085), 1, - anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3253), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3251), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3099), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3339), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3067), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3097), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110923,58 +111763,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44674] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, + [45089] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3251), 1, - anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, - anon_sym_AMP_AMP, - ACTIONS(3259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, - anon_sym_PIPE, - ACTIONS(3263), 1, - anon_sym_CARET, - STATE(164), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3345), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110985,54 +111824,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44757] = 17, + [45170] = 21, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3133), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3273), 1, + ACTIONS(3267), 1, + anon_sym_EQ, + ACTIONS(3271), 1, anon_sym_DOT_DOT, + ACTIONS(3347), 1, + anon_sym_LBRACE, + STATE(1098), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3271), 2, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3131), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111043,33 +111886,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44832] = 21, - ACTIONS(390), 1, - anon_sym_RPAREN, + [45253] = 21, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3283), 1, - anon_sym_COMMA, + ACTIONS(3289), 1, + anon_sym_SEMI, + ACTIONS(3349), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -111079,22 +111922,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111105,58 +111948,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44915] = 21, - ACTIONS(109), 1, - anon_sym_RBRACE, + [45336] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3079), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3081), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3267), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3271), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, - anon_sym_SEMI, + STATE(1071), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3269), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111167,58 +112010,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44998] = 21, - ACTIONS(594), 1, - anon_sym_LBRACE, + [45419] = 17, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3247), 1, + ACTIONS(3129), 1, anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3253), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - STATE(216), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3127), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111229,58 +112068,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45081] = 21, + [45494] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, - anon_sym_EQ, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3253), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, + ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, + ACTIONS(3259), 1, anon_sym_PIPE, - ACTIONS(3263), 1, + ACTIONS(3261), 1, anon_sym_CARET, - ACTIONS(3341), 1, - anon_sym_LBRACE, - STATE(249), 1, - sym_match_block, + ACTIONS(3267), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(3125), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3247), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3245), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3263), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111291,58 +112129,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45164] = 21, - ACTIONS(594), 1, - anon_sym_LBRACE, + [45575] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, - ACTIONS(3091), 1, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3247), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3251), 1, - anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, - anon_sym_AMP_AMP, - ACTIONS(3259), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3261), 1, - anon_sym_PIPE, - ACTIONS(3263), 1, - anon_sym_CARET, - STATE(248), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3065), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3249), 2, + ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3351), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3265), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3269), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111353,33 +112190,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45247] = 21, + [45656] = 14, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3323), 1, + sym_identifier, + ACTIONS(3325), 1, + anon_sym_LBRACE, + ACTIONS(3329), 1, + anon_sym_STAR, + ACTIONS(3335), 1, + anon_sym_COLON_COLON, + ACTIONS(3339), 1, + sym_metavariable, + ACTIONS(3353), 1, + anon_sym_RBRACE, + STATE(1742), 1, + sym_scoped_identifier, + STATE(2373), 1, + sym_generic_type_with_turbofish, + STATE(2492), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3337), 3, + sym_self, + sym_super, + sym_crate, + STATE(2333), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3331), 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, + [45724] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, + ACTIONS(3355), 1, anon_sym_SEMI, - ACTIONS(3343), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -111389,22 +112278,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111415,29 +112304,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45330] = 20, + [45804] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, + ACTIONS(3357), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -111447,25 +112338,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3345), 2, - anon_sym_RBRACE, - anon_sym_COMMA, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111476,33 +112364,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45411] = 21, + [45884] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, + ACTIONS(3359), 1, anon_sym_SEMI, - ACTIONS(3347), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -111512,22 +112398,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111538,30 +112424,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45494] = 20, + [45964] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3349), 1, + ACTIONS(3361), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -111572,22 +112458,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111598,91 +112484,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45574] = 20, + [46044] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_EQ, - ACTIONS(3201), 1, - anon_sym_DOT_DOT, - ACTIONS(3351), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3065), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3199), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3087), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3123), 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, - [45654] = 20, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, + ACTIONS(3093), 1, anon_sym_AMP_AMP, - ACTIONS(3081), 1, + ACTIONS(3095), 1, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_PIPE, - ACTIONS(3085), 1, - anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3353), 1, - anon_sym_RBRACK, + ACTIONS(3363), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -111692,22 +112518,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111718,30 +112544,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45734] = 20, + [46124] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3355), 1, + ACTIONS(3365), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -111752,22 +112578,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111778,31 +112604,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45814] = 20, + [46204] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3357), 1, - anon_sym_COMMA, + ACTIONS(3367), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -111812,22 +112638,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111838,30 +112664,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45894] = 20, + [46284] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3359), 1, + ACTIONS(3369), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -111872,22 +112698,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111898,90 +112724,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45974] = 20, + [46364] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_EQ, - ACTIONS(3201), 1, - anon_sym_DOT_DOT, - ACTIONS(3283), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3065), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3199), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3087), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3123), 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, - [46054] = 20, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, + ACTIONS(3093), 1, anon_sym_AMP_AMP, - ACTIONS(3081), 1, + ACTIONS(3095), 1, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_PIPE, - ACTIONS(3085), 1, - anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, + ACTIONS(3371), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -111992,22 +112758,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112018,31 +112784,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46134] = 20, + [46444] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3361), 1, - anon_sym_SEMI, + ACTIONS(3373), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -112052,22 +112818,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112078,30 +112844,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46214] = 20, + [46524] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3363), 1, + ACTIONS(3375), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -112112,22 +112878,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112138,31 +112904,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46294] = 20, + [46604] = 14, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3323), 1, + sym_identifier, + ACTIONS(3325), 1, + anon_sym_LBRACE, + ACTIONS(3329), 1, + anon_sym_STAR, + ACTIONS(3335), 1, + anon_sym_COLON_COLON, + ACTIONS(3339), 1, + sym_metavariable, + ACTIONS(3377), 1, + anon_sym_RBRACE, + STATE(1742), 1, + sym_scoped_identifier, + STATE(2373), 1, + sym_generic_type_with_turbofish, + STATE(2492), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3337), 3, + sym_self, + sym_super, + sym_crate, + STATE(2333), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3331), 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, + [46672] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3365), 1, - anon_sym_COMMA, + ACTIONS(3379), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -112172,22 +112992,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112198,31 +113018,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46374] = 20, + [46752] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3367), 1, - anon_sym_SEMI, + ACTIONS(3381), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -112232,22 +113052,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112258,31 +113078,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46454] = 20, + [46832] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3369), 1, - anon_sym_SEMI, + ACTIONS(3383), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -112292,22 +113112,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112318,30 +113138,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46534] = 20, + [46912] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3371), 1, + ACTIONS(3385), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -112352,22 +113172,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112378,30 +113198,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46614] = 20, + [46992] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3373), 1, + ACTIONS(3387), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, @@ -112412,22 +113232,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112438,31 +113258,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46694] = 20, + [47072] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3375), 1, - anon_sym_EQ_GT, + ACTIONS(3389), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -112472,22 +113292,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112498,30 +113318,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46774] = 20, + [47152] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3377), 1, + ACTIONS(3391), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -112532,22 +113352,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112558,30 +113378,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46854] = 20, + [47232] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3379), 1, + ACTIONS(3393), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -112592,22 +113412,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112618,30 +113438,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46934] = 20, + [47312] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3395), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3109), 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, + [47392] = 20, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3381), 1, + ACTIONS(3397), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -112652,22 +113532,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112678,30 +113558,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47014] = 20, + [47472] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3279), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3109), 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, + [47552] = 20, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3383), 1, + ACTIONS(3399), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -112712,22 +113652,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112738,30 +113678,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47094] = 20, + [47632] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3385), 1, + ACTIONS(3401), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -112772,22 +113712,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112798,31 +113738,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47174] = 20, + [47712] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3387), 1, - anon_sym_SEMI, + ACTIONS(3403), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -112832,22 +113772,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112858,30 +113798,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47254] = 20, + [47792] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, + ACTIONS(3103), 1, + anon_sym_QMARK, + ACTIONS(3105), 1, + anon_sym_as, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3405), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3065), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3109), 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, + [47872] = 20, + ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_AMP, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3389), 1, + ACTIONS(3289), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -112892,22 +113892,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112918,31 +113918,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47334] = 20, + [47952] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3391), 1, - anon_sym_SEMI, + ACTIONS(3407), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -112952,22 +113952,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112978,30 +113978,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47414] = 20, + [48032] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3393), 1, + ACTIONS(3409), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -113012,22 +114012,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113038,31 +114038,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47494] = 20, + [48112] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3395), 1, - anon_sym_SEMI, + ACTIONS(3411), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -113072,22 +114072,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113098,31 +114098,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47574] = 20, + [48192] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3397), 1, - anon_sym_SEMI, + ACTIONS(3413), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -113132,22 +114132,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113158,30 +114158,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47654] = 20, + [48272] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3399), 1, + ACTIONS(3415), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -113192,22 +114192,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113218,145 +114218,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47734] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3305), 1, - sym_identifier, - ACTIONS(3307), 1, - anon_sym_LBRACE, - ACTIONS(3311), 1, - anon_sym_STAR, - ACTIONS(3317), 1, - anon_sym_COLON_COLON, - ACTIONS(3321), 1, - sym_metavariable, - ACTIONS(3401), 1, - anon_sym_RBRACE, - STATE(1774), 1, - sym_scoped_identifier, - STATE(2388), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3319), 3, - sym_self, - sym_super, - sym_crate, - STATE(2227), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3313), 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, - [47802] = 20, + [48352] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_as, - ACTIONS(3121), 1, - anon_sym_EQ, - ACTIONS(3201), 1, - anon_sym_DOT_DOT, - ACTIONS(3403), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3065), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3089), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3199), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3087), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3123), 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, - [47882] = 20, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, + ACTIONS(3093), 1, anon_sym_AMP_AMP, - ACTIONS(3081), 1, + ACTIONS(3095), 1, anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, - anon_sym_PIPE, - ACTIONS(3085), 1, - anon_sym_CARET, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3405), 1, - anon_sym_RBRACK, + ACTIONS(3417), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -113366,22 +114252,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113392,85 +114278,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47962] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3305), 1, - sym_identifier, - ACTIONS(3307), 1, - anon_sym_LBRACE, - ACTIONS(3311), 1, - anon_sym_STAR, - ACTIONS(3317), 1, - anon_sym_COLON_COLON, - ACTIONS(3321), 1, - sym_metavariable, - ACTIONS(3407), 1, - anon_sym_RBRACE, - STATE(1774), 1, - sym_scoped_identifier, - STATE(2388), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3319), 3, - sym_self, - sym_super, - sym_crate, - STATE(2227), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3313), 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, - [48030] = 20, + [48432] = 20, ACTIONS(3063), 1, anon_sym_LBRACK, ACTIONS(3073), 1, anon_sym_AMP, ACTIONS(3079), 1, - anon_sym_AMP_AMP, - ACTIONS(3081), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 1, anon_sym_PIPE, - ACTIONS(3085), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3091), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3093), 1, + anon_sym_AMP_AMP, + ACTIONS(3095), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3119), 1, + ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3121), 1, + ACTIONS(3107), 1, anon_sym_EQ, - ACTIONS(3201), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3409), 1, - anon_sym_RBRACK, + ACTIONS(3419), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -113480,22 +114312,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3071), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3089), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3087), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 10, + ACTIONS(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113506,39 +114338,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48110] = 13, + [48512] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3305), 1, + ACTIONS(3323), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3325), 1, anon_sym_LBRACE, - ACTIONS(3311), 1, + ACTIONS(3329), 1, anon_sym_STAR, - ACTIONS(3317), 1, + ACTIONS(3335), 1, anon_sym_COLON_COLON, - ACTIONS(3321), 1, + ACTIONS(3339), 1, sym_metavariable, - STATE(1774), 1, + STATE(1742), 1, sym_scoped_identifier, - STATE(2388), 1, + STATE(2373), 1, sym_generic_type_with_turbofish, STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3319), 3, + ACTIONS(3337), 3, sym_self, sym_super, sym_crate, - STATE(2366), 5, + STATE(2407), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3313), 19, + ACTIONS(3331), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113558,39 +114390,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48175] = 13, + [48577] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3305), 1, + ACTIONS(3323), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3325), 1, anon_sym_LBRACE, - ACTIONS(3311), 1, + ACTIONS(3329), 1, anon_sym_STAR, - ACTIONS(3317), 1, + ACTIONS(3335), 1, anon_sym_COLON_COLON, - ACTIONS(3321), 1, + ACTIONS(3339), 1, sym_metavariable, - STATE(1774), 1, + STATE(1742), 1, sym_scoped_identifier, - STATE(2388), 1, + STATE(2373), 1, sym_generic_type_with_turbofish, STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3319), 3, + ACTIONS(3337), 3, sym_self, sym_super, sym_crate, - STATE(2483), 5, + STATE(2432), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3313), 19, + ACTIONS(3331), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113610,39 +114442,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48240] = 13, + [48642] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3305), 1, + ACTIONS(3323), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3325), 1, anon_sym_LBRACE, - ACTIONS(3311), 1, + ACTIONS(3329), 1, anon_sym_STAR, - ACTIONS(3317), 1, + ACTIONS(3335), 1, anon_sym_COLON_COLON, - ACTIONS(3321), 1, + ACTIONS(3339), 1, sym_metavariable, - STATE(1774), 1, + STATE(1742), 1, sym_scoped_identifier, - STATE(2388), 1, + STATE(2373), 1, sym_generic_type_with_turbofish, STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3319), 3, + ACTIONS(3337), 3, sym_self, sym_super, sym_crate, - STATE(2510), 5, + STATE(2333), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3313), 19, + ACTIONS(3331), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113662,39 +114494,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48305] = 13, + [48707] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3305), 1, + ACTIONS(3323), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3325), 1, anon_sym_LBRACE, - ACTIONS(3311), 1, + ACTIONS(3329), 1, anon_sym_STAR, - ACTIONS(3317), 1, + ACTIONS(3335), 1, anon_sym_COLON_COLON, - ACTIONS(3321), 1, + ACTIONS(3339), 1, sym_metavariable, - STATE(1774), 1, + STATE(1742), 1, sym_scoped_identifier, - STATE(2388), 1, + STATE(2373), 1, sym_generic_type_with_turbofish, STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3319), 3, + ACTIONS(3337), 3, sym_self, sym_super, sym_crate, - STATE(2389), 5, + STATE(2374), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3313), 19, + ACTIONS(3331), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113714,39 +114546,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48370] = 13, + [48772] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3305), 1, + ACTIONS(3323), 1, sym_identifier, - ACTIONS(3307), 1, + ACTIONS(3325), 1, anon_sym_LBRACE, - ACTIONS(3311), 1, + ACTIONS(3329), 1, anon_sym_STAR, - ACTIONS(3317), 1, + ACTIONS(3335), 1, anon_sym_COLON_COLON, - ACTIONS(3321), 1, + ACTIONS(3339), 1, sym_metavariable, - STATE(1774), 1, + STATE(1742), 1, sym_scoped_identifier, - STATE(2388), 1, + STATE(2373), 1, sym_generic_type_with_turbofish, STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3319), 3, + ACTIONS(3337), 3, sym_self, sym_super, sym_crate, - STATE(2227), 5, + STATE(2482), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3313), 19, + ACTIONS(3331), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113766,15 +114598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48435] = 3, + [48837] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3413), 3, + ACTIONS(3423), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3411), 28, + ACTIONS(3421), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113803,15 +114635,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48475] = 3, + [48877] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3417), 3, + ACTIONS(3427), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3415), 28, + ACTIONS(3425), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113840,15 +114672,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48515] = 3, + [48917] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3421), 3, + ACTIONS(3431), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3419), 28, + ACTIONS(3429), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113877,29 +114709,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48555] = 10, + [48957] = 10, ACTIONS(77), 1, anon_sym_LT, ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3423), 1, + ACTIONS(3433), 1, sym_identifier, - ACTIONS(3429), 1, + ACTIONS(3439), 1, sym_metavariable, - STATE(2216), 1, + STATE(2201), 1, sym_scoped_identifier, - STATE(2388), 1, + STATE(2373), 1, sym_generic_type_with_turbofish, STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3427), 3, + ACTIONS(3437), 3, sym_self, sym_super, sym_crate, - ACTIONS(3425), 19, + ACTIONS(3435), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113919,29 +114751,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48607] = 10, + [49009] = 10, ACTIONS(77), 1, anon_sym_LT, ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3431), 1, + ACTIONS(3441), 1, sym_identifier, - ACTIONS(3437), 1, + ACTIONS(3447), 1, sym_metavariable, - STATE(2244), 1, + STATE(2200), 1, sym_scoped_identifier, - STATE(2388), 1, + STATE(2373), 1, sym_generic_type_with_turbofish, STATE(2492), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 3, + ACTIONS(3445), 3, sym_self, sym_super, sym_crate, - ACTIONS(3433), 19, + ACTIONS(3443), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113961,13 +114793,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48659] = 3, - ACTIONS(2441), 1, + [49061] = 3, + ACTIONS(2385), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2443), 20, + ACTIONS(2387), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113988,13 +114820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48689] = 3, - ACTIONS(2433), 1, + [49091] = 3, + ACTIONS(2411), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2435), 20, + ACTIONS(2413), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114015,20 +114847,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48719] = 9, + [49121] = 9, ACTIONS(2582), 1, anon_sym_COLON, - ACTIONS(3439), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3441), 1, + ACTIONS(3451), 1, anon_sym_BANG, - ACTIONS(3443), 1, + ACTIONS(3453), 1, anon_sym_COLON_COLON, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - STATE(1366), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1388), 1, + STATE(1392), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -114046,29 +114878,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [48759] = 10, - ACTIONS(3445), 1, + [49161] = 10, + ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, + ACTIONS(3461), 1, anon_sym_LBRACE, - ACTIONS(3455), 1, + ACTIONS(3465), 1, anon_sym_COLON_COLON, - ACTIONS(3459), 1, + ACTIONS(3469), 1, anon_sym_AT, - STATE(1366), 1, + STATE(1382), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(3463), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3457), 2, + ACTIONS(3467), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3447), 9, + ACTIONS(3457), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114078,17 +114910,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [48801] = 4, + [49203] = 4, + ACTIONS(2632), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 2, + ACTIONS(2636), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2630), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, anon_sym_LT2, - ACTIONS(2614), 2, + anon_sym_PIPE, + [49232] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2610), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2616), 14, + ACTIONS(2612), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114103,16 +114960,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48830] = 4, - ACTIONS(2632), 1, + [49261] = 4, + ACTIONS(2608), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 2, + ACTIONS(2612), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2630), 15, + ACTIONS(2606), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114128,16 +114985,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [48859] = 4, - ACTIONS(2604), 1, + [49290] = 4, + ACTIONS(2616), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2620), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2602), 15, + ACTIONS(2614), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114153,16 +115010,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [48888] = 4, - ACTIONS(2612), 1, + [49319] = 4, + ACTIONS(2600), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 2, + ACTIONS(2604), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2610), 15, + ACTIONS(2598), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114178,18 +115035,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [48917] = 8, + [49348] = 8, ACTIONS(2596), 1, anon_sym_COLON, - ACTIONS(3439), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3453), 1, anon_sym_COLON_COLON, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - STATE(1366), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1388), 1, + STATE(1392), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -114207,67 +115064,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [48954] = 4, - ACTIONS(2650), 1, - anon_sym_COLON, + [49385] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2654), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2648), 15, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [48983] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2630), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2634), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2636), 14, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [49012] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2648), 2, + ACTIONS(2598), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2652), 2, + ACTIONS(2602), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2654), 14, + ACTIONS(2604), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114282,17 +115089,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49041] = 4, + [49414] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 2, + ACTIONS(2630), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2606), 2, + ACTIONS(2634), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2608), 14, + ACTIONS(2636), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114307,18 +115114,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49070] = 8, + [49443] = 8, ACTIONS(2592), 1, anon_sym_COLON, - ACTIONS(3439), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3453), 1, anon_sym_COLON_COLON, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - STATE(1366), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1388), 1, + STATE(1392), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -114336,19 +115143,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49107] = 6, - ACTIONS(3439), 1, + [49480] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2614), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2618), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2620), 14, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3445), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [49509] = 6, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3455), 1, anon_sym_LT2, - STATE(1364), 1, + STATE(1378), 1, sym_type_arguments, - STATE(1387), 1, + STATE(1399), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 13, + ACTIONS(2638), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114362,51 +115194,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49139] = 17, - ACTIONS(3463), 1, - anon_sym_const, - ACTIONS(3465), 1, - anon_sym_enum, - ACTIONS(3467), 1, - anon_sym_fn, - ACTIONS(3469), 1, - anon_sym_mod, - ACTIONS(3471), 1, - anon_sym_static, - ACTIONS(3473), 1, - anon_sym_struct, - ACTIONS(3475), 1, - anon_sym_trait, - ACTIONS(3477), 1, - anon_sym_type, - ACTIONS(3479), 1, - anon_sym_union, - ACTIONS(3481), 1, - anon_sym_unsafe, - ACTIONS(3483), 1, - anon_sym_use, - ACTIONS(3485), 1, - anon_sym_extern, - STATE(1532), 1, - sym_extern_modifier, - STATE(1563), 1, - aux_sym_function_modifiers_repeat1, - STATE(2463), 1, - sym_function_modifiers, + [49541] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3461), 2, - anon_sym_async, - anon_sym_default, - [49193] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2652), 2, + ACTIONS(2610), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2654), 15, + ACTIONS(2612), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114422,14 +115217,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49219] = 3, + [49567] = 6, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3455), 1, + anon_sym_LT2, + STATE(1378), 1, + sym_type_arguments, + STATE(1399), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 2, + ACTIONS(2626), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, anon_sym_EQ, - ACTIONS(2636), 15, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [49599] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2602), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2604), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114445,51 +115266,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49245] = 17, - ACTIONS(3487), 1, + [49625] = 17, + ACTIONS(3473), 1, anon_sym_const, - ACTIONS(3489), 1, + ACTIONS(3475), 1, anon_sym_enum, - ACTIONS(3491), 1, + ACTIONS(3477), 1, anon_sym_fn, - ACTIONS(3493), 1, + ACTIONS(3479), 1, anon_sym_mod, - ACTIONS(3495), 1, + ACTIONS(3481), 1, anon_sym_static, - ACTIONS(3497), 1, + ACTIONS(3483), 1, anon_sym_struct, - ACTIONS(3499), 1, + ACTIONS(3485), 1, anon_sym_trait, - ACTIONS(3501), 1, + ACTIONS(3487), 1, anon_sym_type, - ACTIONS(3503), 1, + ACTIONS(3489), 1, anon_sym_union, - ACTIONS(3505), 1, + ACTIONS(3491), 1, anon_sym_unsafe, - ACTIONS(3507), 1, + ACTIONS(3493), 1, anon_sym_use, - ACTIONS(3509), 1, + ACTIONS(3495), 1, anon_sym_extern, - STATE(1512), 1, + STATE(1546), 1, sym_extern_modifier, - STATE(1563), 1, + STATE(1594), 1, aux_sym_function_modifiers_repeat1, STATE(2572), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3461), 2, + ACTIONS(3471), 2, anon_sym_async, anon_sym_default, - [49299] = 3, + [49679] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, + ACTIONS(2634), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2616), 15, + ACTIONS(2636), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114505,45 +115326,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49325] = 6, - ACTIONS(3439), 1, - anon_sym_LPAREN, - ACTIONS(3445), 1, - anon_sym_LT2, - STATE(1364), 1, - sym_type_arguments, - STATE(1387), 1, - sym_parameters, + [49705] = 17, + ACTIONS(3497), 1, + anon_sym_const, + ACTIONS(3499), 1, + anon_sym_enum, + ACTIONS(3501), 1, + anon_sym_fn, + ACTIONS(3503), 1, + anon_sym_mod, + ACTIONS(3505), 1, + anon_sym_static, + ACTIONS(3507), 1, + anon_sym_struct, + ACTIONS(3509), 1, + anon_sym_trait, + ACTIONS(3511), 1, + anon_sym_type, + ACTIONS(3513), 1, + anon_sym_union, + ACTIONS(3515), 1, + anon_sym_unsafe, + ACTIONS(3517), 1, + anon_sym_use, + ACTIONS(3519), 1, + anon_sym_extern, + STATE(1521), 1, + sym_extern_modifier, + STATE(1594), 1, + aux_sym_function_modifiers_repeat1, + STATE(2352), 1, + sym_function_modifiers, ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2618), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49357] = 6, - ACTIONS(3439), 1, + sym_block_comment, + sym_line_comment, + ACTIONS(3471), 2, + anon_sym_async, + anon_sym_default, + [49759] = 6, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - STATE(1364), 1, + STATE(1378), 1, sym_type_arguments, - STATE(1387), 1, + STATE(1399), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 13, + ACTIONS(2622), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114557,13 +115389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49389] = 3, - ACTIONS(3511), 1, + [49791] = 3, + ACTIONS(3521), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3209), 15, + ACTIONS(3191), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -114579,11 +115411,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49414] = 2, + [49816] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 16, + ACTIONS(2614), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114600,151 +115432,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49437] = 14, - ACTIONS(2578), 1, - anon_sym_PLUS, - ACTIONS(3441), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3447), 1, - anon_sym_PIPE, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3453), 1, - anon_sym_COLON, - ACTIONS(3459), 1, - anon_sym_AT, - ACTIONS(3513), 1, - anon_sym_LPAREN, - ACTIONS(3518), 1, - anon_sym_COLON_COLON, - STATE(1366), 1, - sym_type_arguments, - STATE(1388), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3515), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [49483] = 13, - ACTIONS(3441), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_AT, - ACTIONS(3515), 1, - anon_sym_RBRACK, - ACTIONS(3520), 1, - anon_sym_LPAREN, - ACTIONS(3522), 1, - anon_sym_COLON_COLON, - STATE(1366), 1, - sym_type_arguments, - STATE(1388), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3447), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49527] = 6, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3524), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3453), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3447), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [49557] = 13, - ACTIONS(3441), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3447), 1, - anon_sym_PIPE, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3453), 1, + [49839] = 3, + ACTIONS(2696), 1, anon_sym_COLON, - ACTIONS(3459), 1, - anon_sym_AT, - ACTIONS(3526), 1, - anon_sym_LPAREN, - ACTIONS(3528), 1, - anon_sym_COLON_COLON, - STATE(1366), 1, - sym_type_arguments, - STATE(1388), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2578), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [49601] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2974), 15, + ACTIONS(2694), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - sym_mutable_specifier, + anon_sym_COLON_COLON, anon_sym_PIPE, - sym_self, - [49623] = 3, - ACTIONS(2744), 1, + [49863] = 3, + ACTIONS(2784), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 14, + ACTIONS(2782), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114759,95 +115474,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [49647] = 3, - ACTIONS(3530), 1, + [49887] = 13, + ACTIONS(3451), 1, + anon_sym_BANG, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LBRACE, + ACTIONS(3469), 1, + anon_sym_AT, + ACTIONS(3523), 1, + anon_sym_LPAREN, + ACTIONS(3525), 1, + anon_sym_RBRACK, + ACTIONS(3528), 1, anon_sym_COLON_COLON, + STATE(1382), 1, + sym_type_arguments, + STATE(1392), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3211), 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, - [49671] = 3, - ACTIONS(2734), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2732), 14, + ACTIONS(2578), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3457), 2, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, anon_sym_PIPE, - [49695] = 3, - ACTIONS(2788), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3211), 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, - [49719] = 3, - ACTIONS(2776), 1, - anon_sym_COLON, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [49931] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 14, + ACTIONS(2988), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_COLON_COLON, + sym_mutable_specifier, anon_sym_PIPE, - [49743] = 2, + sym_self, + [49953] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3215), 15, + ACTIONS(3203), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -114863,11 +115545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49765] = 2, + [49975] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3191), 15, + ACTIONS(3199), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -114883,11 +115565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49787] = 2, + [49997] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3203), 15, + ACTIONS(3223), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -114903,13 +115585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49809] = 3, - ACTIONS(2718), 1, + [50019] = 3, + ACTIONS(2780), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2716), 14, + ACTIONS(2778), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114924,13 +115606,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [49833] = 3, - ACTIONS(2722), 1, + [50043] = 3, + ACTIONS(3530), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3193), 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, + [50067] = 3, + ACTIONS(2730), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2720), 14, + ACTIONS(2728), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114945,59 +115648,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [49857] = 3, + [50091] = 14, + ACTIONS(2578), 1, + anon_sym_PLUS, + ACTIONS(3451), 1, + anon_sym_BANG, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(3457), 1, + anon_sym_PIPE, + ACTIONS(3461), 1, + anon_sym_LBRACE, + ACTIONS(3463), 1, + anon_sym_COLON, + ACTIONS(3469), 1, + anon_sym_AT, ACTIONS(3532), 1, - anon_sym_DASH_GT, + anon_sym_LPAREN, + ACTIONS(3534), 1, + anon_sym_COLON_COLON, + STATE(1382), 1, + sym_type_arguments, + STATE(1392), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2752), 13, - anon_sym_SEMI, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3525), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [50137] = 3, + ACTIONS(2962), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3193), 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, + [50161] = 13, + ACTIONS(3451), 1, + anon_sym_BANG, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(3457), 1, + anon_sym_PIPE, + ACTIONS(3461), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3463), 1, anon_sym_COLON, + ACTIONS(3469), 1, + anon_sym_AT, + ACTIONS(3536), 1, + anon_sym_LPAREN, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, + STATE(1382), 1, + sym_type_arguments, + STATE(1392), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2578), 3, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49880] = 3, - ACTIONS(3534), 1, - anon_sym_DASH_GT, + [50205] = 3, + ACTIONS(2726), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2758), 13, + ACTIONS(2724), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - [49903] = 5, + [50229] = 6, + ACTIONS(3459), 1, + anon_sym_LPAREN, ACTIONS(3540), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3538), 2, + ACTIONS(3463), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3542), 2, + ACTIONS(3467), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3536), 9, + ACTIONS(3457), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115007,51 +115777,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [49930] = 3, + [50259] = 14, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3451), 1, + anon_sym_BANG, + ACTIONS(3453), 1, + anon_sym_COLON_COLON, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(3542), 1, + anon_sym_COLON, ACTIONS(3544), 1, - anon_sym_DASH_GT, + anon_sym_EQ, + ACTIONS(3546), 1, + anon_sym_COMMA, + ACTIONS(3548), 1, + anon_sym_GT, + STATE(1382), 1, + sym_type_arguments, + STATE(1392), 1, + sym_parameters, + STATE(2126), 1, + sym_trait_bounds, + STATE(2129), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_as, - anon_sym_where, + [50304] = 3, + ACTIONS(2377), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49953] = 3, - ACTIONS(3546), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2694), 13, + ACTIONS(2379), 13, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49976] = 2, + [50327] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2724), 14, + ACTIONS(2704), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115066,19 +115847,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49997] = 3, - ACTIONS(3548), 1, - anon_sym_DASH_GT, + [50348] = 4, + ACTIONS(2628), 1, + anon_sym_COLON, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2736), 13, + ACTIONS(2626), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -115086,11 +115868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50020] = 2, + [50373] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2706), 14, + ACTIONS(2690), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115105,15 +115887,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50041] = 4, - ACTIONS(2600), 1, + [50394] = 4, + ACTIONS(2624), 1, anon_sym_COLON, - ACTIONS(3550), 1, + ACTIONS(3552), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 12, + ACTIONS(2622), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115126,11 +115908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50066] = 2, + [50419] = 3, + ACTIONS(3554), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2764), 14, + ACTIONS(2732), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115142,38 +115926,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_PIPE, - [50087] = 3, - ACTIONS(2361), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2363), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50110] = 4, - ACTIONS(2600), 1, + [50442] = 4, + ACTIONS(2624), 1, anon_sym_COLON, - ACTIONS(3552), 1, + ACTIONS(3195), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 12, + ACTIONS(2622), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115186,20 +115949,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50135] = 4, - ACTIONS(2600), 1, - anon_sym_COLON, - ACTIONS(3213), 1, - anon_sym_COLON_COLON, + [50467] = 3, + ACTIONS(3556), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 12, + ACTIONS(2762), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -115207,19 +115969,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50160] = 3, - ACTIONS(3554), 1, - anon_sym_DASH_GT, + [50490] = 4, + ACTIONS(2640), 1, + anon_sym_COLON, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2778), 13, + ACTIONS(2638), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -115227,13 +115990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50183] = 3, - ACTIONS(3556), 1, + [50515] = 3, + ACTIONS(3558), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2768), 13, + ACTIONS(2684), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115247,20 +116010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50206] = 4, - ACTIONS(2624), 1, - anon_sym_COLON, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, + [50538] = 3, + ACTIONS(3560), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 12, + ACTIONS(2738), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -115268,46 +116030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50231] = 14, - ACTIONS(3439), 1, - anon_sym_LPAREN, - ACTIONS(3441), 1, - anon_sym_BANG, - ACTIONS(3443), 1, - anon_sym_COLON_COLON, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3558), 1, - anon_sym_COLON, - ACTIONS(3560), 1, - anon_sym_EQ, - ACTIONS(3562), 1, - anon_sym_COMMA, - ACTIONS(3564), 1, - anon_sym_GT, - STATE(1366), 1, - sym_type_arguments, - STATE(1388), 1, - sym_parameters, - STATE(1963), 1, - aux_sym_type_parameters_repeat1, - STATE(1965), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_as, - [50276] = 4, - ACTIONS(2620), 1, + [50561] = 4, + ACTIONS(2624), 1, anon_sym_COLON, ACTIONS(3550), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 12, + ACTIONS(2622), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115320,15 +116051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50301] = 4, - ACTIONS(3568), 1, + [50586] = 4, + ACTIONS(3564), 1, anon_sym_pat, - STATE(573), 1, + STATE(572), 1, sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3566), 12, + ACTIONS(3562), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -115341,11 +116072,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [50326] = 2, + [50611] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2784), 14, + ACTIONS(2758), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115360,48 +116091,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50347] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2728), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, + [50632] = 3, + ACTIONS(3566), 1, anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_PIPE, - [50368] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2966), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50388] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3041), 13, + ACTIONS(2772), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115415,47 +116111,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50408] = 2, + [50655] = 5, + ACTIONS(3572), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3570), 2, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50428] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2948), 13, + ACTIONS(3574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3568), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [50448] = 2, + [50682] = 3, + ACTIONS(3576), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 13, + ACTIONS(2712), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115469,30 +116153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50468] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2606), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2608), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [50490] = 2, + [50705] = 3, + ACTIONS(3578), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 13, + ACTIONS(2718), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115506,11 +116173,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50510] = 2, + [50728] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2982), 13, + ACTIONS(2768), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115522,13 +116189,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50530] = 2, + [50749] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(668), 13, + ACTIONS(2678), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115540,32 +116208,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50550] = 3, - ACTIONS(3572), 1, - anon_sym_EQ, + [50770] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3570), 12, + ACTIONS(2980), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [50572] = 2, + [50790] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 13, + ACTIONS(616), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115579,11 +116247,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50592] = 2, + [50810] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2894), 13, + ACTIONS(2972), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115597,11 +116265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50612] = 2, + [50830] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2994), 13, + ACTIONS(2626), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115615,11 +116283,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50632] = 2, + [50850] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2962), 13, + ACTIONS(2942), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115633,11 +116301,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50652] = 2, + [50870] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2952), 13, + ACTIONS(2808), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115651,11 +116319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50672] = 2, + [50890] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2818), 13, + ACTIONS(2926), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115669,11 +116337,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50692] = 2, + [50910] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 13, + ACTIONS(3012), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115687,11 +116355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50712] = 2, + [50930] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2944), 13, + ACTIONS(2840), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115705,11 +116373,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50732] = 2, + [50950] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2998), 13, + ACTIONS(2954), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115723,11 +116391,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50752] = 2, + [50970] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3053), 13, + ACTIONS(3012), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115741,11 +116409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50772] = 2, + [50990] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 13, + ACTIONS(2832), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115759,11 +116427,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50792] = 2, + [51010] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3049), 13, + ACTIONS(2828), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115777,11 +116445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50812] = 2, + [51030] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 13, + ACTIONS(2886), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115795,11 +116463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50832] = 2, + [51050] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3025), 13, + ACTIONS(2638), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115813,30 +116481,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50852] = 3, - ACTIONS(3576), 1, - anon_sym_EQ, + [51070] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 12, + ACTIONS(2874), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [50874] = 2, + [51090] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2956), 13, + ACTIONS(2800), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115850,11 +116517,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50894] = 2, + [51110] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 13, + ACTIONS(2958), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115868,11 +116535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50914] = 2, + [51130] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(656), 13, + ACTIONS(2964), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115886,31 +116553,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50934] = 4, - ACTIONS(3453), 1, - anon_sym_EQ, + [51150] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3447), 10, + ACTIONS(604), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [50958] = 2, + [51170] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(590), 13, + ACTIONS(2950), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115924,11 +116589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50978] = 2, + [51190] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(628), 13, + ACTIONS(2938), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115942,191 +116607,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50998] = 4, + [51210] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3578), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2610), 4, + ACTIONS(648), 13, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2616), 6, - anon_sym_BANG, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [51230] = 3, + ACTIONS(3582), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3580), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, + anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51021] = 4, - ACTIONS(3585), 1, - anon_sym_COLON_COLON, + [51252] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3583), 2, + ACTIONS(672), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [51272] = 3, + ACTIONS(3586), 1, anon_sym_EQ, - ACTIONS(3581), 9, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3584), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51044] = 4, - ACTIONS(3591), 1, - anon_sym_COLON_COLON, + [51294] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3589), 2, + ACTIONS(2996), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, anon_sym_EQ, - ACTIONS(3587), 9, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [51314] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2622), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [51334] = 4, + ACTIONS(3463), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3457), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51067] = 4, - ACTIONS(3530), 1, - anon_sym_COLON_COLON, + [51358] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2968), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [51378] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3583), 2, + ACTIONS(2618), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3581), 9, + ACTIONS(2620), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [51090] = 5, - ACTIONS(2634), 1, + [51400] = 5, + ACTIONS(2618), 1, anon_sym_COLON, + ACTIONS(3588), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 3, + ACTIONS(2614), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3593), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2636), 5, + anon_sym_LT2, + ACTIONS(2620), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51115] = 5, - ACTIONS(2614), 1, + [51425] = 5, + ACTIONS(2602), 1, anon_sym_COLON, + ACTIONS(3591), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 3, + ACTIONS(2598), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3578), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2616), 5, + anon_sym_LT2, + ACTIONS(2604), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51140] = 10, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, + [51450] = 4, + ACTIONS(3598), 1, anon_sym_COLON_COLON, - ACTIONS(3459), 1, - anon_sym_AT, - ACTIONS(3596), 1, - anon_sym_BANG, - STATE(1366), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3447), 3, + ACTIONS(3596), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3594), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_if, + anon_sym_COMMA, + anon_sym_in, anon_sym_PIPE, - [51175] = 5, - ACTIONS(2652), 1, - anon_sym_COLON, - ACTIONS(3598), 1, - anon_sym_LPAREN, + [51473] = 4, + ACTIONS(3530), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 5, + ACTIONS(3596), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3594), 9, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2654), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_in, anon_sym_PIPE, - [51200] = 5, - ACTIONS(2606), 1, + [51496] = 5, + ACTIONS(2610), 1, anon_sym_COLON, - ACTIONS(3601), 1, + ACTIONS(3600), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 5, + ACTIONS(2606), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2608), 5, + ACTIONS(2612), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51225] = 5, + [51521] = 5, ACTIONS(2634), 1, anon_sym_COLON, - ACTIONS(3593), 1, + ACTIONS(3603), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, @@ -116143,16 +116892,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51250] = 4, - ACTIONS(3604), 1, + [51546] = 4, + ACTIONS(3606), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3596), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3594), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [51569] = 4, + ACTIONS(3606), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3583), 2, + ACTIONS(3610), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3581), 9, + ACTIONS(3608), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116162,93 +116930,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51273] = 5, - ACTIONS(2606), 1, - anon_sym_COLON, + [51592] = 4, + ACTIONS(3530), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3610), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3608), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [51615] = 4, + ACTIONS(3616), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3614), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3612), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [51638] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3591), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2604), 6, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51661] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 3, + ACTIONS(3588), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2614), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3601), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2608), 5, + ACTIONS(2620), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51298] = 5, - ACTIONS(2652), 1, + [51684] = 5, + ACTIONS(2634), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 3, + ACTIONS(2630), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3598), 3, + ACTIONS(3603), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2654), 5, + ACTIONS(2636), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51323] = 4, + [51709] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3593), 2, + ACTIONS(3600), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2630), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2636), 6, + ACTIONS(2612), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51346] = 3, - ACTIONS(552), 1, - anon_sym_EQ, + [51732] = 4, + ACTIONS(3598), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(550), 11, + ACTIONS(3610), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3608), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51367] = 4, - ACTIONS(3604), 1, + [51755] = 4, + ACTIONS(3616), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3608), 2, + ACTIONS(3620), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3606), 9, + ACTIONS(3618), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116258,32 +117083,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51390] = 4, + [51778] = 5, + ACTIONS(2610), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3601), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2602), 4, - anon_sym_SEMI, + ACTIONS(2606), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2608), 6, - anon_sym_BANG, + ACTIONS(3600), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2612), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51413] = 3, - ACTIONS(538), 1, + [51803] = 3, + ACTIONS(528), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(536), 11, + ACTIONS(526), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116295,32 +117121,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51434] = 4, - ACTIONS(3530), 1, - anon_sym_COLON_COLON, + [51824] = 5, + ACTIONS(2618), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3608), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3606), 9, - anon_sym_SEMI, + ACTIONS(2614), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3588), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, anon_sym_COMMA, - anon_sym_in, + ACTIONS(2620), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51457] = 3, - ACTIONS(556), 1, + [51849] = 3, + ACTIONS(552), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(554), 11, + ACTIONS(550), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116332,107 +117159,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51478] = 4, - ACTIONS(3585), 1, - anon_sym_COLON_COLON, + [51870] = 3, + ACTIONS(538), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3608), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3606), 9, + ACTIONS(536), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51501] = 5, - ACTIONS(2614), 1, - anon_sym_COLON, - ACTIONS(3578), 1, + [51891] = 10, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2610), 5, - anon_sym_RPAREN, + ACTIONS(3461), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2616), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51526] = 4, - ACTIONS(3591), 1, + ACTIONS(3465), 1, anon_sym_COLON_COLON, + ACTIONS(3469), 1, + anon_sym_AT, + ACTIONS(3622), 1, + anon_sym_BANG, + STATE(1382), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3612), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3610), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3457), 3, anon_sym_EQ_GT, - anon_sym_RBRACK, anon_sym_if, - anon_sym_COMMA, - anon_sym_in, anon_sym_PIPE, - [51549] = 4, + [51926] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3598), 2, + ACTIONS(3603), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2648), 4, + ACTIONS(2630), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2654), 6, + ACTIONS(2636), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51572] = 3, - ACTIONS(3616), 1, - anon_sym_EQ, + [51949] = 5, + ACTIONS(2602), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3614), 10, - anon_sym_SEMI, + ACTIONS(2598), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3591), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, anon_sym_COMMA, - anon_sym_in, + ACTIONS(2604), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51592] = 3, - ACTIONS(3620), 1, + [51974] = 3, + ACTIONS(3626), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3618), 10, + ACTIONS(3624), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116443,13 +117258,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51612] = 3, - ACTIONS(3624), 1, + [51994] = 3, + ACTIONS(3630), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3622), 10, + ACTIONS(3628), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116460,47 +117275,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51632] = 3, - ACTIONS(3628), 1, - anon_sym_EQ, + [52014] = 9, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3451), 1, + anon_sym_BANG, + ACTIONS(3453), 1, + anon_sym_COLON_COLON, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(3632), 1, + anon_sym_for, + STATE(1382), 1, + sym_type_arguments, + STATE(1392), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3626), 10, + ACTIONS(2578), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51652] = 3, - ACTIONS(3608), 1, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52046] = 9, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3451), 1, + anon_sym_BANG, + ACTIONS(3453), 1, + anon_sym_COLON_COLON, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(3634), 1, + anon_sym_for, + STATE(1382), 1, + sym_type_arguments, + STATE(1392), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3606), 10, + ACTIONS(2578), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51672] = 3, - ACTIONS(3453), 1, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52078] = 3, + ACTIONS(3638), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 10, + ACTIONS(3636), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116511,20 +117338,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51692] = 9, - ACTIONS(3439), 1, + [52098] = 9, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3441), 1, + ACTIONS(3451), 1, anon_sym_BANG, - ACTIONS(3443), 1, + ACTIONS(3453), 1, anon_sym_COLON_COLON, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(3630), 1, + ACTIONS(3640), 1, anon_sym_for, - STATE(1366), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1388), 1, + STATE(1392), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116534,20 +117361,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51724] = 9, - ACTIONS(3439), 1, + [52130] = 9, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3441), 1, + ACTIONS(3451), 1, anon_sym_BANG, - ACTIONS(3443), 1, + ACTIONS(3453), 1, anon_sym_COLON_COLON, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(3632), 1, + ACTIONS(3642), 1, anon_sym_for, - STATE(1366), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1388), 1, + STATE(1392), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116557,13 +117384,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51756] = 3, - ACTIONS(3636), 1, + [52162] = 3, + ACTIONS(3646), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3634), 10, + ACTIONS(3644), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116574,13 +117401,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51776] = 3, - ACTIONS(3640), 1, + [52182] = 3, + ACTIONS(3650), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3638), 10, + ACTIONS(3648), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116591,13 +117418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51796] = 3, - ACTIONS(3644), 1, + [52202] = 3, + ACTIONS(3596), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3642), 10, + ACTIONS(3594), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116608,30 +117435,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51816] = 3, - ACTIONS(3648), 1, - anon_sym_EQ, + [52222] = 6, + ACTIONS(3652), 1, + anon_sym_COLON, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3656), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3646), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51836] = 3, - ACTIONS(3652), 1, + ACTIONS(3574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2650), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52248] = 3, + ACTIONS(3463), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 10, + ACTIONS(3457), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116642,13 +117472,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51856] = 3, - ACTIONS(3656), 1, + [52268] = 3, + ACTIONS(3660), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 10, + ACTIONS(3658), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116659,13 +117489,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51876] = 3, - ACTIONS(3660), 1, + [52288] = 3, + ACTIONS(3664), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3658), 10, + ACTIONS(3662), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116676,27 +117506,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51896] = 6, - ACTIONS(3662), 1, - anon_sym_COLON, - ACTIONS(3664), 1, + [52308] = 9, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3451), 1, anon_sym_BANG, - ACTIONS(3666), 1, + ACTIONS(3453), 1, anon_sym_COLON_COLON, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(3666), 1, + anon_sym_for, + STATE(1382), 1, + sym_type_arguments, + STATE(1392), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51922] = 3, + ACTIONS(2578), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52340] = 3, ACTIONS(3670), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -116713,33 +117546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51942] = 6, - ACTIONS(3662), 1, - anon_sym_COLON, - ACTIONS(3664), 1, - anon_sym_BANG, - ACTIONS(3672), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3542), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51968] = 3, - ACTIONS(580), 1, + [52360] = 3, + ACTIONS(3674), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(578), 10, + ACTIONS(3672), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116750,20 +117563,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51988] = 9, - ACTIONS(3439), 1, + [52380] = 9, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3441), 1, + ACTIONS(3451), 1, anon_sym_BANG, - ACTIONS(3443), 1, + ACTIONS(3453), 1, anon_sym_COLON_COLON, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(3674), 1, + ACTIONS(3676), 1, anon_sym_for, - STATE(1366), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1388), 1, + STATE(1392), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116773,13 +117586,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52020] = 3, - ACTIONS(3678), 1, + [52412] = 3, + ACTIONS(3610), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3676), 10, + ACTIONS(3608), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116790,36 +117603,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52040] = 9, - ACTIONS(3439), 1, - anon_sym_LPAREN, - ACTIONS(3441), 1, - anon_sym_BANG, - ACTIONS(3443), 1, - anon_sym_COLON_COLON, - ACTIONS(3445), 1, - anon_sym_LT2, + [52432] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, ACTIONS(3680), 1, - anon_sym_for, - STATE(1366), 1, - sym_type_arguments, - STATE(1388), 1, - sym_parameters, + sym_crate, + STATE(1558), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, + ACTIONS(3678), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52072] = 3, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52456] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3682), 1, + sym_crate, + STATE(1558), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3678), 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, + [52480] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, ACTIONS(3684), 1, + sym_crate, + STATE(1558), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3678), 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, + [52504] = 3, + ACTIONS(622), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3682), 10, + ACTIONS(620), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116830,7 +117677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52092] = 3, + [52524] = 3, ACTIONS(3688), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -116847,20 +117694,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52112] = 9, - ACTIONS(3439), 1, + [52544] = 3, + ACTIONS(3692), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3690), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [52564] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3694), 1, + sym_crate, + STATE(1558), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3678), 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, + [52588] = 9, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3441), 1, + ACTIONS(3451), 1, anon_sym_BANG, - ACTIONS(3443), 1, + ACTIONS(3453), 1, anon_sym_COLON_COLON, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(3690), 1, + ACTIONS(3696), 1, anon_sym_for, - STATE(1366), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1388), 1, + STATE(1392), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116870,13 +117753,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52144] = 3, - ACTIONS(3694), 1, + [52620] = 3, + ACTIONS(3700), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3692), 10, + ACTIONS(3698), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116887,20 +117770,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52164] = 9, - ACTIONS(3439), 1, + [52640] = 9, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3441), 1, + ACTIONS(3451), 1, anon_sym_BANG, - ACTIONS(3443), 1, + ACTIONS(3453), 1, anon_sym_COLON_COLON, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(3696), 1, + ACTIONS(3702), 1, anon_sym_for, - STATE(1366), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1388), 1, + STATE(1392), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116910,32 +117793,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52196] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3700), 1, - sym_crate, - STATE(1556), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3698), 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, - [52220] = 3, - ACTIONS(3704), 1, + [52672] = 3, + ACTIONS(3706), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3702), 10, + ACTIONS(3704), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116946,13 +117810,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52240] = 3, - ACTIONS(3708), 1, + [52692] = 3, + ACTIONS(3710), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3706), 10, + ACTIONS(3708), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116963,13 +117827,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52260] = 3, - ACTIONS(3712), 1, + [52712] = 3, + ACTIONS(3714), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3710), 10, + ACTIONS(3712), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116980,13 +117844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52280] = 3, - ACTIONS(3716), 1, + [52732] = 3, + ACTIONS(3718), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3714), 10, + ACTIONS(3716), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116997,74 +117861,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52300] = 9, - ACTIONS(3439), 1, - anon_sym_LPAREN, - ACTIONS(3441), 1, - anon_sym_BANG, - ACTIONS(3443), 1, - anon_sym_COLON_COLON, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3718), 1, - anon_sym_for, - STATE(1366), 1, - sym_type_arguments, - STATE(1388), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52332] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3720), 1, - sym_crate, - STATE(1556), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3698), 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, - [52356] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, + [52752] = 3, ACTIONS(3722), 1, - sym_crate, - STATE(1556), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3698), 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, - [52380] = 3, - ACTIONS(3726), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3724), 10, + ACTIONS(3720), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117075,13 +117878,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52400] = 3, - ACTIONS(3583), 1, + [52772] = 3, + ACTIONS(3726), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3581), 10, + ACTIONS(3724), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117092,7 +117895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52420] = 3, + [52792] = 3, ACTIONS(3730), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -117109,49 +117912,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52440] = 9, - ACTIONS(3439), 1, - anon_sym_LPAREN, - ACTIONS(3441), 1, - anon_sym_BANG, - ACTIONS(3443), 1, - anon_sym_COLON_COLON, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3732), 1, - anon_sym_for, - STATE(1366), 1, - sym_type_arguments, - STATE(1388), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52472] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, + [52812] = 3, ACTIONS(3734), 1, - sym_crate, - STATE(1556), 1, - sym_string_literal, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3698), 8, + ACTIONS(3732), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52496] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [52832] = 3, ACTIONS(3738), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -117168,7 +117946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52516] = 3, + [52852] = 3, ACTIONS(3742), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -117185,7 +117963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52536] = 3, + [52872] = 3, ACTIONS(3746), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -117202,7 +117980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52556] = 3, + [52892] = 3, ACTIONS(3750), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -117219,13 +117997,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52576] = 3, + [52912] = 3, ACTIONS(3754), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3752), 10, + ACTIONS(3752), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [52932] = 3, + ACTIONS(3758), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3756), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117236,154 +118031,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52596] = 6, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - STATE(2155), 1, - sym__literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3756), 2, - anon_sym_true, - anon_sym_false, - STATE(1068), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [52621] = 5, - ACTIONS(3664), 1, + [52952] = 6, + ACTIONS(3652), 1, + anon_sym_COLON, + ACTIONS(3654), 1, anon_sym_BANG, - ACTIONS(3758), 1, + ACTIONS(3760), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, + ACTIONS(3574), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2642), 6, + ACTIONS(2650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52644] = 7, - ACTIONS(3439), 1, + [52978] = 3, + ACTIONS(3764), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3762), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [52998] = 7, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(3760), 1, + ACTIONS(3766), 1, anon_sym_LBRACE, - STATE(1364), 1, + STATE(1378), 1, sym_type_arguments, - STATE(1387), 1, + STATE(1399), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 5, + ACTIONS(2622), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - [52671] = 8, + [53025] = 10, + ACTIONS(53), 1, + anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3762), 1, + ACTIONS(3768), 1, sym_identifier, - ACTIONS(3764), 1, + ACTIONS(3770), 1, anon_sym_RBRACE, - ACTIONS(3766), 1, + ACTIONS(3772), 1, anon_sym_COMMA, - ACTIONS(3768), 1, - anon_sym_DOT_DOT, + ACTIONS(3774), 1, + sym_crate, + STATE(1932), 1, + sym_enum_variant, + STATE(2465), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1885), 2, + STATE(1588), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1935), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [52700] = 6, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - STATE(2526), 1, - sym__literal, + [53058] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + sym_crate, + ACTIONS(3776), 1, + sym_identifier, + ACTIONS(3778), 1, + anon_sym_RBRACE, + ACTIONS(3780), 1, + anon_sym_COMMA, + STATE(2041), 1, + sym_field_declaration, + STATE(2533), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3756), 2, - anon_sym_true, - anon_sym_false, - STATE(1068), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [52725] = 6, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - STATE(2558), 1, - sym__literal, + STATE(1580), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53091] = 8, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3782), 1, + sym_identifier, + ACTIONS(3784), 1, + anon_sym_RBRACE, + ACTIONS(3786), 1, + anon_sym_COMMA, + ACTIONS(3788), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3756), 2, - anon_sym_true, - anon_sym_false, - STATE(1068), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [52750] = 5, - ACTIONS(3664), 1, - anon_sym_BANG, - ACTIONS(3672), 1, - anon_sym_COLON_COLON, + STATE(1879), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1935), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53120] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3509), 1, + anon_sym_trait, + ACTIONS(3790), 1, + anon_sym_impl, + STATE(163), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2642), 6, + ACTIONS(2650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52773] = 9, - ACTIONS(3439), 1, + [53145] = 9, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3441), 1, + ACTIONS(3451), 1, anon_sym_BANG, - ACTIONS(3443), 1, + ACTIONS(3453), 1, anon_sym_COLON_COLON, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(3770), 1, + ACTIONS(3792), 1, anon_sym_EQ, - STATE(1388), 1, + STATE(1392), 1, sym_parameters, - STATE(1737), 1, + STATE(1786), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, @@ -117392,1858 +118196,1942 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_COMMA, anon_sym_GT, - [52804] = 6, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - STATE(2569), 1, - sym__literal, + [53176] = 5, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3760), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3756), 2, - anon_sym_true, - anon_sym_false, - STATE(1068), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [52829] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3772), 1, - sym_identifier, - ACTIONS(3774), 1, - anon_sym_RBRACE, - ACTIONS(3776), 1, - anon_sym_COMMA, - ACTIONS(3778), 1, - sym_crate, - STATE(2082), 1, - sym_enum_variant, - STATE(2428), 1, - sym_visibility_modifier, + ACTIONS(3574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2650), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53199] = 5, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3656), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1570), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52862] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3475), 1, - anon_sym_trait, - ACTIONS(3780), 1, - anon_sym_impl, - STATE(162), 1, - sym_block, + ACTIONS(3574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2650), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53222] = 5, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3794), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(3574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52887] = 10, + [53245] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3782), 1, + ACTIONS(3776), 1, sym_identifier, - ACTIONS(3784), 1, + ACTIONS(3796), 1, anon_sym_RBRACE, - ACTIONS(3786), 1, + ACTIONS(3798), 1, anon_sym_COMMA, - STATE(2046), 1, + STATE(2120), 1, sym_field_declaration, - STATE(2422), 1, + STATE(2533), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1558), 2, + STATE(1587), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52920] = 6, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - STATE(2157), 1, - sym__literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3756), 2, - anon_sym_true, - anon_sym_false, - STATE(1068), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [52945] = 10, + [53278] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3772), 1, + ACTIONS(3768), 1, sym_identifier, - ACTIONS(3778), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3788), 1, + ACTIONS(3800), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3802), 1, anon_sym_COMMA, - STATE(1951), 1, + STATE(2082), 1, sym_enum_variant, - STATE(2428), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1576), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52978] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3778), 1, - sym_crate, - ACTIONS(3782), 1, - sym_identifier, - ACTIONS(3792), 1, - anon_sym_RBRACE, - ACTIONS(3794), 1, - anon_sym_COMMA, - STATE(2120), 1, - sym_field_declaration, - STATE(2422), 1, + STATE(2465), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1566), 2, + STATE(1581), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53011] = 5, - ACTIONS(3664), 1, + [53311] = 7, + ACTIONS(3451), 1, anon_sym_BANG, - ACTIONS(3666), 1, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_COLON, + ACTIONS(3804), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, + ACTIONS(3467), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2642), 6, + ACTIONS(3457), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [53337] = 9, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3806), 1, + sym_identifier, + ACTIONS(3808), 1, + anon_sym_const, + ACTIONS(3810), 1, + anon_sym_GT, + ACTIONS(3812), 1, + sym_metavariable, + STATE(1818), 1, + sym_lifetime, + STATE(2050), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2265), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53367] = 5, + ACTIONS(3814), 1, + anon_sym_SEMI, + ACTIONS(3816), 1, + anon_sym_LBRACE, + STATE(860), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53034] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3778), 1, - sym_crate, - ACTIONS(3782), 1, + [53389] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(3796), 1, - anon_sym_RBRACE, - STATE(2338), 1, - sym_field_declaration, - STATE(2422), 1, - sym_visibility_modifier, + STATE(101), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53064] = 5, - ACTIONS(3798), 1, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53411] = 5, + ACTIONS(3822), 1, anon_sym_SEMI, - ACTIONS(3800), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(1043), 1, + STATE(348), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(2650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53086] = 7, - ACTIONS(3439), 1, + [53433] = 5, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3826), 1, + anon_sym_SEMI, + STATE(468), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2650), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53455] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3768), 1, + sym_identifier, + ACTIONS(3774), 1, + sym_crate, + ACTIONS(3828), 1, + anon_sym_RBRACE, + STATE(2229), 1, + sym_enum_variant, + STATE(2465), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1595), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53485] = 7, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(3802), 1, + ACTIONS(3830), 1, anon_sym_for, - STATE(1364), 1, + STATE(1378), 1, sym_type_arguments, - STATE(1387), 1, + STATE(1399), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2622), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53112] = 9, + [53511] = 9, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3804), 1, - sym_identifier, ACTIONS(3806), 1, - anon_sym_const, + sym_identifier, ACTIONS(3808), 1, - anon_sym_GT, - ACTIONS(3810), 1, + anon_sym_const, + ACTIONS(3812), 1, sym_metavariable, - STATE(1859), 1, + ACTIONS(3832), 1, + anon_sym_GT, + STATE(1818), 1, sym_lifetime, - STATE(2037), 1, + STATE(2050), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2322), 2, + STATE(2265), 2, sym_const_parameter, sym_optional_type_parameter, - [53142] = 9, + [53541] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3768), 1, + sym_identifier, + ACTIONS(3774), 1, + sym_crate, + ACTIONS(3834), 1, + anon_sym_RBRACE, + STATE(2229), 1, + sym_enum_variant, + STATE(2465), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1595), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53571] = 9, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3804), 1, - sym_identifier, ACTIONS(3806), 1, + sym_identifier, + ACTIONS(3808), 1, anon_sym_const, - ACTIONS(3810), 1, - sym_metavariable, ACTIONS(3812), 1, + sym_metavariable, + ACTIONS(3836), 1, anon_sym_GT, - STATE(1859), 1, + STATE(1818), 1, sym_lifetime, - STATE(2037), 1, + STATE(2050), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2322), 2, + STATE(2265), 2, sym_const_parameter, sym_optional_type_parameter, - [53172] = 9, + [53601] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3778), 1, - sym_crate, - ACTIONS(3782), 1, + ACTIONS(3768), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3774), 1, + sym_crate, + ACTIONS(3838), 1, anon_sym_RBRACE, - STATE(2338), 1, - sym_field_declaration, - STATE(2422), 1, + STATE(2229), 1, + sym_enum_variant, + STATE(2465), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1595), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53202] = 9, + [53631] = 7, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(3840), 1, + anon_sym_for, + STATE(1378), 1, + sym_type_arguments, + STATE(1399), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2622), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53657] = 7, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(3842), 1, + anon_sym_for, + STATE(1378), 1, + sym_type_arguments, + STATE(1399), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2622), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53683] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3844), 1, + anon_sym_move, + STATE(98), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2650), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53705] = 9, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3804), 1, + ACTIONS(3806), 1, + sym_identifier, + ACTIONS(3808), 1, + anon_sym_const, + ACTIONS(3812), 1, + sym_metavariable, + ACTIONS(3846), 1, + anon_sym_GT, + STATE(1818), 1, + sym_lifetime, + STATE(2050), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2265), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53735] = 7, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3782), 1, sym_identifier, + ACTIONS(3788), 1, + anon_sym_DOT_DOT, + ACTIONS(3848), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1879), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2232), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53761] = 9, + ACTIONS(2329), 1, + anon_sym_SQUOTE, ACTIONS(3806), 1, + sym_identifier, + ACTIONS(3808), 1, anon_sym_const, - ACTIONS(3810), 1, + ACTIONS(3812), 1, sym_metavariable, - ACTIONS(3816), 1, + ACTIONS(3850), 1, anon_sym_GT, - STATE(1790), 1, + STATE(1818), 1, sym_lifetime, - STATE(2037), 1, + STATE(2050), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2322), 2, + STATE(2265), 2, sym_const_parameter, sym_optional_type_parameter, - [53232] = 10, - ACTIONS(3818), 1, - anon_sym_SEMI, - ACTIONS(3820), 1, + [53791] = 7, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3822), 1, - anon_sym_LBRACE, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3826), 1, - anon_sym_LT, - STATE(373), 1, - sym_field_declaration_list, - STATE(1619), 1, - sym_type_parameters, - STATE(2031), 1, - sym_ordered_field_declaration_list, - STATE(2259), 1, - sym_where_clause, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(3852), 1, + anon_sym_for, + STATE(1378), 1, + sym_type_arguments, + STATE(1399), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53264] = 5, - ACTIONS(3828), 1, + ACTIONS(2622), 4, anon_sym_SEMI, - ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(394), 1, - sym_declaration_list, + anon_sym_PLUS, + anon_sym_where, + [53817] = 7, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3782), 1, + sym_identifier, + ACTIONS(3788), 1, + anon_sym_DOT_DOT, + ACTIONS(3854), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53286] = 7, - ACTIONS(3439), 1, + STATE(1879), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2232), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53843] = 7, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(3832), 1, + ACTIONS(3856), 1, anon_sym_for, - STATE(1364), 1, + STATE(1378), 1, sym_type_arguments, - STATE(1387), 1, + STATE(1399), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2622), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53312] = 10, - ACTIONS(3820), 1, + [53869] = 10, + ACTIONS(3858), 1, + anon_sym_SEMI, + ACTIONS(3860), 1, anon_sym_LPAREN, - ACTIONS(3824), 1, + ACTIONS(3862), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3826), 1, + ACTIONS(3866), 1, anon_sym_LT, - ACTIONS(3834), 1, - anon_sym_SEMI, - ACTIONS(3836), 1, - anon_sym_LBRACE, - STATE(901), 1, + STATE(907), 1, sym_field_declaration_list, - STATE(1603), 1, + STATE(1600), 1, sym_type_parameters, STATE(2139), 1, sym_ordered_field_declaration_list, - STATE(2170), 1, + STATE(2162), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53344] = 9, + [53901] = 9, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3804), 1, - sym_identifier, ACTIONS(3806), 1, - anon_sym_const, - ACTIONS(3810), 1, - sym_metavariable, - ACTIONS(3838), 1, - anon_sym_GT, - STATE(1859), 1, - sym_lifetime, - STATE(2037), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2322), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53374] = 9, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3804), 1, sym_identifier, - ACTIONS(3806), 1, + ACTIONS(3808), 1, anon_sym_const, - ACTIONS(3810), 1, + ACTIONS(3812), 1, sym_metavariable, - ACTIONS(3840), 1, + ACTIONS(3868), 1, anon_sym_GT, - STATE(1859), 1, + STATE(1818), 1, sym_lifetime, - STATE(2037), 1, + STATE(2050), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2322), 2, + STATE(2265), 2, sym_const_parameter, sym_optional_type_parameter, - [53404] = 9, + [53931] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3782), 1, + ACTIONS(3776), 1, sym_identifier, - ACTIONS(3842), 1, + ACTIONS(3870), 1, anon_sym_RBRACE, - STATE(2338), 1, + STATE(2343), 1, sym_field_declaration, - STATE(2422), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1553), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53434] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3772), 1, - sym_identifier, - ACTIONS(3778), 1, - sym_crate, - ACTIONS(3844), 1, - anon_sym_RBRACE, - STATE(2223), 1, - sym_enum_variant, - STATE(2428), 1, + STATE(2533), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1587), 2, + STATE(1575), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53464] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3846), 1, - anon_sym_move, - STATE(95), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53486] = 7, - ACTIONS(3439), 1, - anon_sym_LPAREN, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3848), 1, - anon_sym_for, - STATE(1364), 1, - sym_type_arguments, - STATE(1387), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53512] = 9, + [53961] = 9, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3804), 1, - sym_identifier, ACTIONS(3806), 1, + sym_identifier, + ACTIONS(3808), 1, anon_sym_const, - ACTIONS(3810), 1, + ACTIONS(3812), 1, sym_metavariable, - ACTIONS(3850), 1, + ACTIONS(3872), 1, anon_sym_GT, - STATE(1859), 1, + STATE(1818), 1, sym_lifetime, - STATE(2037), 1, + STATE(2050), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2322), 2, + STATE(2265), 2, sym_const_parameter, sym_optional_type_parameter, - [53542] = 10, - ACTIONS(3820), 1, + [53991] = 10, + ACTIONS(3860), 1, anon_sym_LPAREN, - ACTIONS(3822), 1, + ACTIONS(3862), 1, anon_sym_LBRACE, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3826), 1, + ACTIONS(3866), 1, anon_sym_LT, - ACTIONS(3852), 1, + ACTIONS(3874), 1, anon_sym_SEMI, - STATE(326), 1, + STATE(1039), 1, sym_field_declaration_list, - STATE(1600), 1, + STATE(1644), 1, sym_type_parameters, - STATE(1909), 1, + STATE(2045), 1, sym_ordered_field_declaration_list, - STATE(2243), 1, + STATE(2264), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53574] = 7, + [54023] = 9, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3806), 1, + sym_identifier, + ACTIONS(3808), 1, + anon_sym_const, + ACTIONS(3812), 1, + sym_metavariable, + ACTIONS(3876), 1, + anon_sym_GT, + STATE(1826), 1, + sym_lifetime, + STATE(2050), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2265), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54053] = 9, + ACTIONS(53), 1, + anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3762), 1, + ACTIONS(3774), 1, + sym_crate, + ACTIONS(3776), 1, sym_identifier, - ACTIONS(3768), 1, - anon_sym_DOT_DOT, - ACTIONS(3854), 1, + ACTIONS(3878), 1, anon_sym_RBRACE, + STATE(2343), 1, + sym_field_declaration, + STATE(2533), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1885), 2, + STATE(1575), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2258), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53600] = 7, - ACTIONS(3439), 1, + [54083] = 7, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym_for, - STATE(1364), 1, + STATE(1378), 1, sym_type_arguments, - STATE(1387), 1, + STATE(1399), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2622), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53626] = 5, - ACTIONS(3830), 1, + [54109] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + sym_crate, + ACTIONS(3776), 1, + sym_identifier, + ACTIONS(3882), 1, + anon_sym_RBRACE, + STATE(2343), 1, + sym_field_declaration, + STATE(2533), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54139] = 5, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3858), 1, + ACTIONS(3884), 1, anon_sym_SEMI, - STATE(468), 1, + STATE(1057), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(2650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53648] = 10, - ACTIONS(3820), 1, + [54161] = 10, + ACTIONS(3860), 1, anon_sym_LPAREN, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3826), 1, + ACTIONS(3866), 1, anon_sym_LT, - ACTIONS(3836), 1, - anon_sym_LBRACE, - ACTIONS(3860), 1, + ACTIONS(3886), 1, anon_sym_SEMI, - STATE(1034), 1, + ACTIONS(3888), 1, + anon_sym_LBRACE, + STATE(373), 1, sym_field_declaration_list, - STATE(1633), 1, + STATE(1629), 1, sym_type_parameters, - STATE(2045), 1, + STATE(2031), 1, sym_ordered_field_declaration_list, - STATE(2286), 1, + STATE(2252), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53680] = 7, - ACTIONS(3441), 1, - anon_sym_BANG, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3453), 1, - anon_sym_COLON, - ACTIONS(3862), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3447), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [53706] = 9, + [54193] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3782), 1, + ACTIONS(3776), 1, sym_identifier, - ACTIONS(3864), 1, + ACTIONS(3890), 1, anon_sym_RBRACE, - STATE(2338), 1, + STATE(2343), 1, sym_field_declaration, - STATE(2422), 1, + STATE(2533), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1575), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53736] = 9, + [54223] = 9, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3804), 1, - sym_identifier, ACTIONS(3806), 1, + sym_identifier, + ACTIONS(3808), 1, anon_sym_const, - ACTIONS(3810), 1, + ACTIONS(3812), 1, sym_metavariable, - ACTIONS(3866), 1, + ACTIONS(3892), 1, anon_sym_GT, - STATE(1859), 1, + STATE(1818), 1, sym_lifetime, - STATE(2037), 1, + STATE(2050), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2322), 2, + STATE(2265), 2, sym_const_parameter, sym_optional_type_parameter, - [53766] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3772), 1, - sym_identifier, - ACTIONS(3778), 1, - sym_crate, - ACTIONS(3868), 1, - anon_sym_RBRACE, - STATE(2223), 1, - sym_enum_variant, - STATE(2428), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1587), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53796] = 9, + [54253] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3782), 1, + ACTIONS(3776), 1, sym_identifier, - ACTIONS(3870), 1, + ACTIONS(3894), 1, anon_sym_RBRACE, - STATE(2338), 1, + STATE(2343), 1, sym_field_declaration, - STATE(2422), 1, + STATE(2533), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1575), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53826] = 7, - ACTIONS(3439), 1, + [54283] = 7, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_for, - STATE(1364), 1, + STATE(1378), 1, sym_type_arguments, - STATE(1387), 1, + STATE(1399), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2622), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53852] = 9, + [54309] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3772), 1, + ACTIONS(3768), 1, sym_identifier, - ACTIONS(3778), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3874), 1, + ACTIONS(3898), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2229), 1, sym_enum_variant, - STATE(2428), 1, + STATE(2465), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1587), 2, + STATE(1595), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53882] = 9, + [54339] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3772), 1, + ACTIONS(3768), 1, sym_identifier, - ACTIONS(3778), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3876), 1, + ACTIONS(3900), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2229), 1, sym_enum_variant, - STATE(2428), 1, + STATE(2465), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1587), 2, + STATE(1595), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53912] = 9, + [54369] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3782), 1, + ACTIONS(3776), 1, sym_identifier, - ACTIONS(3878), 1, + ACTIONS(3902), 1, anon_sym_RBRACE, - STATE(2338), 1, + STATE(2343), 1, sym_field_declaration, - STATE(2422), 1, + STATE(2533), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1575), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53942] = 9, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3804), 1, - sym_identifier, - ACTIONS(3806), 1, - anon_sym_const, - ACTIONS(3810), 1, - sym_metavariable, - ACTIONS(3880), 1, - anon_sym_GT, - STATE(1859), 1, - sym_lifetime, - STATE(2037), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2322), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53972] = 9, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3804), 1, - sym_identifier, - ACTIONS(3806), 1, - anon_sym_const, - ACTIONS(3810), 1, - sym_metavariable, - ACTIONS(3882), 1, - anon_sym_GT, - STATE(1859), 1, - sym_lifetime, - STATE(2037), 1, - sym_constrained_type_parameter, + [54399] = 7, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(3904), 1, + anon_sym_for, + STATE(1378), 1, + sym_type_arguments, + STATE(1399), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2322), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54002] = 9, + ACTIONS(2622), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54425] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3772), 1, + ACTIONS(3768), 1, sym_identifier, - ACTIONS(3778), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3884), 1, + ACTIONS(3906), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2229), 1, sym_enum_variant, - STATE(2428), 1, + STATE(2465), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1587), 2, + STATE(1595), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54032] = 7, - ACTIONS(3439), 1, + [54455] = 10, + ACTIONS(3860), 1, anon_sym_LPAREN, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3886), 1, - anon_sym_for, - STATE(1364), 1, - sym_type_arguments, - STATE(1387), 1, - sym_parameters, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(3866), 1, + anon_sym_LT, + ACTIONS(3888), 1, + anon_sym_LBRACE, + ACTIONS(3908), 1, + anon_sym_SEMI, + STATE(330), 1, + sym_field_declaration_list, + STATE(1615), 1, + sym_type_parameters, + STATE(1923), 1, + sym_ordered_field_declaration_list, + STATE(2339), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54058] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3888), 1, - sym_identifier, - STATE(98), 1, - sym_block, + [54487] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3890), 6, + ACTIONS(3910), 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, - [54080] = 5, - ACTIONS(3800), 1, + [54502] = 8, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3808), 1, + anon_sym_const, + ACTIONS(3912), 1, + sym_identifier, + ACTIONS(3914), 1, + sym_metavariable, + STATE(1730), 1, + sym_lifetime, + STATE(1797), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2153), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54529] = 8, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(3916), 1, + sym_identifier, + ACTIONS(3918), 1, + anon_sym_RBRACE, + ACTIONS(3920), 1, + anon_sym_COMMA, + ACTIONS(3922), 1, + anon_sym_ref, + ACTIONS(3924), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2083), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54556] = 9, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3892), 1, - anon_sym_SEMI, - STATE(868), 1, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(3926), 1, + anon_sym_COLON, + ACTIONS(3928), 1, + anon_sym_LT, + STATE(378), 1, sym_declaration_list, + STATE(1653), 1, + sym_type_parameters, + STATE(1817), 1, + sym_trait_bounds, + STATE(2255), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54102] = 9, + [54585] = 4, + ACTIONS(3932), 1, + anon_sym_PLUS, + STATE(1569), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3930), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54604] = 8, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(3916), 1, + sym_identifier, + ACTIONS(3922), 1, + anon_sym_ref, + ACTIONS(3924), 1, + sym_mutable_specifier, + ACTIONS(3934), 1, + anon_sym_RBRACE, + ACTIONS(3936), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2035), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54631] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3772), 1, - sym_identifier, - ACTIONS(3778), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3894), 1, - anon_sym_RBRACE, - STATE(2223), 1, - sym_enum_variant, - STATE(2428), 1, + ACTIONS(3776), 1, + sym_identifier, + STATE(2343), 1, + sym_field_declaration, + STATE(2533), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1587), 2, + STATE(1575), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54132] = 7, + [54658] = 6, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3762), 1, + ACTIONS(3782), 1, sym_identifier, - ACTIONS(3768), 1, + ACTIONS(3788), 1, anon_sym_DOT_DOT, - ACTIONS(3896), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1885), 2, + STATE(1879), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2258), 3, + STATE(2232), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [54158] = 7, - ACTIONS(3439), 1, + [54681] = 4, + ACTIONS(3616), 1, + anon_sym_COLON_COLON, + ACTIONS(3938), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2650), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54700] = 6, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3898), 1, - anon_sym_for, - STATE(1364), 1, - sym_type_arguments, - STATE(1387), 1, - sym_parameters, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + ACTIONS(3622), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3457), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [54723] = 9, + ACTIONS(3824), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3864), 1, anon_sym_where, - [54184] = 7, - ACTIONS(3439), 1, - anon_sym_LPAREN, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3900), 1, - anon_sym_for, - STATE(1364), 1, - sym_type_arguments, - STATE(1387), 1, - sym_parameters, + ACTIONS(3926), 1, + anon_sym_COLON, + ACTIONS(3928), 1, + anon_sym_LT, + STATE(473), 1, + sym_declaration_list, + STATE(1707), 1, + sym_type_parameters, + STATE(1803), 1, + sym_trait_bounds, + STATE(2179), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + [54752] = 4, + ACTIONS(3942), 1, + anon_sym_PLUS, + STATE(1569), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3940), 6, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_where, - [54210] = 8, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54771] = 9, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(3926), 1, + anon_sym_COLON, + ACTIONS(3928), 1, + anon_sym_LT, + STATE(1040), 1, + sym_declaration_list, + STATE(1655), 1, + sym_type_parameters, + STATE(1824), 1, + sym_trait_bounds, + STATE(2263), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54800] = 9, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(3926), 1, + anon_sym_COLON, + ACTIONS(3928), 1, + anon_sym_LT, + STATE(310), 1, + sym_declaration_list, + STATE(1737), 1, + sym_type_parameters, + STATE(1851), 1, + sym_trait_bounds, + STATE(2238), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54829] = 6, + ACTIONS(3451), 1, + anon_sym_BANG, + ACTIONS(3459), 1, + anon_sym_LPAREN, + ACTIONS(3945), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3457), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [54852] = 4, + ACTIONS(2672), 1, + anon_sym_COLON_COLON, + ACTIONS(3947), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2650), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54871] = 8, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3808), 1, + anon_sym_const, + ACTIONS(3949), 1, + sym_identifier, + ACTIONS(3951), 1, + sym_metavariable, + STATE(1775), 1, + sym_lifetime, + STATE(1830), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2032), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54898] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3782), 1, + ACTIONS(3776), 1, sym_identifier, - STATE(2221), 1, + STATE(2194), 1, sym_field_declaration, - STATE(2422), 1, + STATE(2533), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1138), 2, + STATE(1147), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54237] = 7, - ACTIONS(2598), 1, - anon_sym_PLUS, - ACTIONS(3536), 1, + [54925] = 4, + ACTIONS(900), 1, + anon_sym_LBRACE, + STATE(1482), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2650), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54944] = 6, + ACTIONS(3568), 1, anon_sym_PIPE, - ACTIONS(3538), 1, + ACTIONS(3570), 1, anon_sym_COLON, - ACTIONS(3672), 1, + ACTIONS(3760), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, + ACTIONS(3574), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3902), 2, + ACTIONS(2622), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [54262] = 4, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - STATE(1556), 1, - sym_string_literal, + [54967] = 4, + ACTIONS(3485), 1, + anon_sym_trait, + ACTIONS(3953), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3698), 6, + ACTIONS(2650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54281] = 2, + [54986] = 6, + ACTIONS(3794), 1, + anon_sym_COLON_COLON, + ACTIONS(3955), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3905), 8, + ACTIONS(2622), 2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54296] = 8, + anon_sym_PLUS, + ACTIONS(3568), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55009] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3782), 1, + ACTIONS(3776), 1, sym_identifier, - STATE(2338), 1, + STATE(2092), 1, sym_field_declaration, - STATE(2422), 1, + STATE(2533), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1147), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54323] = 8, + [55036] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3778), 1, - sym_crate, - ACTIONS(3782), 1, + ACTIONS(3768), 1, sym_identifier, - STATE(2078), 1, - sym_field_declaration, - STATE(2422), 1, + ACTIONS(3774), 1, + sym_crate, + STATE(2156), 1, + sym_enum_variant, + STATE(2465), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1138), 2, + STATE(1147), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54350] = 4, - ACTIONS(3909), 1, - anon_sym_PLUS, - STATE(1579), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3907), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54369] = 4, - ACTIONS(3911), 1, + [55063] = 4, + ACTIONS(3960), 1, anon_sym_PLUS, - STATE(1579), 1, + STATE(1562), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3907), 6, + ACTIONS(3958), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54388] = 4, - ACTIONS(3913), 1, + [55082] = 4, + ACTIONS(3962), 1, anon_sym_PLUS, - STATE(1579), 1, + STATE(1562), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3907), 6, + ACTIONS(3958), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54407] = 6, - ACTIONS(3441), 1, - anon_sym_BANG, - ACTIONS(3449), 1, + [55101] = 8, + ACTIONS(3964), 1, anon_sym_LPAREN, - ACTIONS(3915), 1, - anon_sym_COLON_COLON, + ACTIONS(3969), 1, + anon_sym_LBRACE, + ACTIONS(3972), 1, + anon_sym_LBRACK, + STATE(1584), 1, + aux_sym_macro_definition_repeat1, + STATE(2437), 1, + sym_token_tree_pattern, + STATE(2520), 1, + sym_macro_rule, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3447), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [54430] = 5, - ACTIONS(3919), 1, - anon_sym_fn, - ACTIONS(3921), 1, - anon_sym_extern, + ACTIONS(3967), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [55128] = 4, + ACTIONS(3552), 1, + anon_sym_COLON_COLON, + ACTIONS(3654), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1577), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3917), 4, + ACTIONS(2650), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_unsafe, - [54451] = 9, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3923), 1, - anon_sym_COLON, - ACTIONS(3925), 1, - anon_sym_LT, - STATE(387), 1, - sym_declaration_list, - STATE(1690), 1, - sym_type_parameters, - STATE(1842), 1, - sym_trait_bounds, - STATE(2174), 1, - sym_where_clause, + anon_sym_extern, + [55147] = 8, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3808), 1, + anon_sym_const, + ACTIONS(3912), 1, + sym_identifier, + ACTIONS(3914), 1, + sym_metavariable, + STATE(1748), 1, + sym_lifetime, + STATE(1797), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54480] = 8, + STATE(2153), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55174] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3772), 1, - sym_identifier, - ACTIONS(3778), 1, + ACTIONS(3774), 1, sym_crate, - STATE(2223), 1, - sym_enum_variant, - STATE(2428), 1, + ACTIONS(3776), 1, + sym_identifier, + STATE(2127), 1, + sym_field_declaration, + STATE(2533), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1587), 2, + STATE(1147), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54507] = 8, + [55201] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3778), 1, - sym_crate, - ACTIONS(3782), 1, + ACTIONS(3768), 1, sym_identifier, - STATE(2130), 1, - sym_field_declaration, - STATE(2422), 1, + ACTIONS(3774), 1, + sym_crate, + STATE(1967), 1, + sym_enum_variant, + STATE(2465), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1138), 2, + STATE(1147), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54534] = 4, - ACTIONS(3552), 1, - anon_sym_COLON_COLON, - ACTIONS(3664), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54553] = 8, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3927), 1, - sym_identifier, - ACTIONS(3929), 1, - anon_sym_RBRACE, - ACTIONS(3931), 1, - anon_sym_COMMA, - ACTIONS(3933), 1, - anon_sym_ref, - ACTIONS(3935), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2084), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54580] = 9, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3923), 1, - anon_sym_COLON, - ACTIONS(3925), 1, - anon_sym_LT, - STATE(916), 1, - sym_declaration_list, - STATE(1703), 1, - sym_type_parameters, - STATE(1841), 1, - sym_trait_bounds, - STATE(2183), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54609] = 8, + [55228] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3772), 1, + ACTIONS(3768), 1, sym_identifier, - ACTIONS(3778), 1, + ACTIONS(3774), 1, sym_crate, - STATE(2151), 1, + STATE(2229), 1, sym_enum_variant, - STATE(2428), 1, + STATE(2465), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1138), 2, + STATE(1595), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54636] = 9, - ACTIONS(3800), 1, + [55255] = 9, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3923), 1, + ACTIONS(3926), 1, anon_sym_COLON, - ACTIONS(3925), 1, + ACTIONS(3928), 1, anon_sym_LT, - STATE(1035), 1, + STATE(920), 1, sym_declaration_list, - STATE(1647), 1, + STATE(1690), 1, sym_type_parameters, - STATE(1856), 1, + STATE(1801), 1, sym_trait_bounds, - STATE(2285), 1, + STATE(2182), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54665] = 4, - ACTIONS(900), 1, - anon_sym_LBRACE, - STATE(1468), 1, - sym_block, + [55284] = 5, + ACTIONS(3978), 1, + anon_sym_fn, + ACTIONS(3980), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + STATE(1591), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3975), 4, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, - anon_sym_extern, - [54684] = 6, - ACTIONS(3536), 1, + [55305] = 4, + ACTIONS(3932), 1, + anon_sym_PLUS, + STATE(1562), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3958), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55324] = 7, + ACTIONS(2622), 1, + anon_sym_PLUS, + ACTIONS(3568), 1, anon_sym_PIPE, - ACTIONS(3538), 1, + ACTIONS(3570), 1, anon_sym_COLON, - ACTIONS(3666), 1, + ACTIONS(3656), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, + ACTIONS(3574), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2598), 3, + ACTIONS(3955), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [54707] = 8, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3806), 1, - anon_sym_const, - ACTIONS(3937), 1, - sym_identifier, - ACTIONS(3939), 1, - sym_metavariable, - STATE(1741), 1, - sym_lifetime, - STATE(1833), 1, - sym_constrained_type_parameter, + [55349] = 5, + ACTIONS(3985), 1, + anon_sym_fn, + ACTIONS(3987), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2140), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54734] = 8, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3804), 1, - sym_identifier, - ACTIONS(3806), 1, + STATE(1591), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3983), 4, + anon_sym_async, anon_sym_const, - ACTIONS(3810), 1, - sym_metavariable, - STATE(1859), 1, - sym_lifetime, - STATE(2037), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2322), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54761] = 8, + anon_sym_default, + anon_sym_unsafe, + [55370] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3772), 1, + ACTIONS(3768), 1, sym_identifier, - ACTIONS(3778), 1, + ACTIONS(3774), 1, sym_crate, - STATE(1955), 1, + STATE(2324), 1, sym_enum_variant, - STATE(2428), 1, + STATE(2465), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1138), 2, + STATE(1147), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54788] = 5, - ACTIONS(3944), 1, - anon_sym_fn, - ACTIONS(3946), 1, - anon_sym_extern, + [55397] = 9, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(3926), 1, + anon_sym_COLON, + ACTIONS(3928), 1, + anon_sym_LT, + STATE(982), 1, + sym_declaration_list, + STATE(1712), 1, + sym_type_parameters, + STATE(1806), 1, + sym_trait_bounds, + STATE(2205), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1577), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3941), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [54809] = 8, + [55426] = 8, ACTIONS(2329), 1, anon_sym_SQUOTE, ACTIONS(3806), 1, - anon_sym_const, - ACTIONS(3937), 1, sym_identifier, - ACTIONS(3939), 1, + ACTIONS(3808), 1, + anon_sym_const, + ACTIONS(3812), 1, sym_metavariable, - STATE(1681), 1, + STATE(1818), 1, sym_lifetime, - STATE(1833), 1, + STATE(2050), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2140), 2, + STATE(2265), 2, sym_const_parameter, sym_optional_type_parameter, - [54836] = 4, - ACTIONS(3909), 1, - anon_sym_PLUS, - STATE(1583), 1, - aux_sym_trait_bounds_repeat1, + [55453] = 4, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + STATE(1558), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3678), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55472] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3949), 6, + ACTIONS(3940), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54855] = 6, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3762), 1, - sym_identifier, - ACTIONS(3768), 1, - anon_sym_DOT_DOT, + [55486] = 8, + ACTIONS(3860), 1, + anon_sym_LPAREN, + ACTIONS(3862), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(3989), 1, + anon_sym_SEMI, + STATE(963), 1, + sym_field_declaration_list, + STATE(2116), 1, + sym_ordered_field_declaration_list, + STATE(2202), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1885), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2258), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [54878] = 8, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3927), 1, - sym_identifier, - ACTIONS(3933), 1, - anon_sym_ref, - ACTIONS(3935), 1, - sym_mutable_specifier, - ACTIONS(3951), 1, - anon_sym_RBRACE, - ACTIONS(3953), 1, - anon_sym_COMMA, + [55512] = 6, + ACTIONS(3860), 1, + anon_sym_LPAREN, + ACTIONS(3862), 1, + anon_sym_LBRACE, + ACTIONS(3993), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1995), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54905] = 6, - ACTIONS(3758), 1, - anon_sym_COLON_COLON, - ACTIONS(3902), 1, + ACTIONS(3991), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2076), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [55534] = 8, + ACTIONS(3995), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, + anon_sym_LBRACE, + ACTIONS(3999), 1, + anon_sym_LBRACK, + ACTIONS(4001), 1, anon_sym_RBRACK, + ACTIONS(4003), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_COLON_COLON, + STATE(2469), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3536), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3542), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [54928] = 4, - ACTIONS(3957), 1, - anon_sym_PLUS, - STATE(1583), 1, - aux_sym_trait_bounds_repeat1, + [55560] = 8, + ACTIONS(4007), 1, + anon_sym_LPAREN, + ACTIONS(4009), 1, + anon_sym_RPAREN, + ACTIONS(4011), 1, + anon_sym_LBRACE, + ACTIONS(4013), 1, + anon_sym_LBRACK, + STATE(1584), 1, + aux_sym_macro_definition_repeat1, + STATE(2272), 1, + sym_macro_rule, + STATE(2437), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3955), 6, - anon_sym_SEMI, + [55586] = 8, + ACTIONS(3995), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, anon_sym_LBRACE, - anon_sym_where, + ACTIONS(3999), 1, + anon_sym_LBRACK, + ACTIONS(4001), 1, + anon_sym_RBRACK, + ACTIONS(4003), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54947] = 6, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3524), 1, + ACTIONS(4015), 1, anon_sym_COLON_COLON, - ACTIONS(3596), 1, - anon_sym_BANG, + STATE(2469), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3447), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [54970] = 9, - ACTIONS(3800), 1, + [55612] = 8, + ACTIONS(3995), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, anon_sym_LBRACE, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3923), 1, - anon_sym_COLON, - ACTIONS(3925), 1, - anon_sym_LT, - STATE(843), 1, - sym_declaration_list, - STATE(1664), 1, - sym_type_parameters, - STATE(1830), 1, - sym_trait_bounds, - STATE(2205), 1, - sym_where_clause, + ACTIONS(3999), 1, + anon_sym_LBRACK, + ACTIONS(4001), 1, + anon_sym_RBRACK, + ACTIONS(4003), 1, + anon_sym_EQ, + ACTIONS(4017), 1, + anon_sym_COLON_COLON, + STATE(2469), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54999] = 4, - ACTIONS(2690), 1, - anon_sym_COLON_COLON, - ACTIONS(3960), 1, - anon_sym_BANG, + [55638] = 3, + ACTIONS(4019), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(2650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55018] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3772), 1, - sym_identifier, - ACTIONS(3778), 1, - sym_crate, - STATE(2280), 1, - sym_enum_variant, - STATE(2428), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1138), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55045] = 9, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, + [55654] = 8, + ACTIONS(3616), 1, + anon_sym_COLON_COLON, + ACTIONS(3995), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, anon_sym_LBRACE, - ACTIONS(3923), 1, - anon_sym_COLON, - ACTIONS(3925), 1, - anon_sym_LT, - STATE(284), 1, - sym_declaration_list, - STATE(1641), 1, - sym_type_parameters, - STATE(1832), 1, - sym_trait_bounds, - STATE(2175), 1, - sym_where_clause, + ACTIONS(3999), 1, + anon_sym_LBRACK, + ACTIONS(4021), 1, + anon_sym_RBRACK, + ACTIONS(4023), 1, + anon_sym_EQ, + STATE(2478), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55074] = 8, - ACTIONS(3962), 1, + [55680] = 8, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(3967), 1, + ACTIONS(4011), 1, anon_sym_LBRACE, - ACTIONS(3970), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - STATE(1589), 1, + ACTIONS(4025), 1, + anon_sym_RPAREN, + STATE(1584), 1, aux_sym_macro_definition_repeat1, - STATE(2534), 1, + STATE(2274), 1, sym_macro_rule, - STATE(2542), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3965), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [55101] = 4, - ACTIONS(3499), 1, - anon_sym_trait, - ACTIONS(3973), 1, - anon_sym_impl, + [55706] = 3, + ACTIONS(2672), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(2650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55120] = 4, - ACTIONS(3591), 1, - anon_sym_COLON_COLON, - ACTIONS(3975), 1, - anon_sym_BANG, + [55722] = 3, + ACTIONS(4027), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(3820), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55139] = 9, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3923), 1, - anon_sym_COLON, - ACTIONS(3925), 1, - anon_sym_LT, - STATE(378), 1, - sym_declaration_list, - STATE(1645), 1, - sym_type_parameters, - STATE(1852), 1, - sym_trait_bounds, - STATE(2264), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55168] = 8, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3806), 1, - anon_sym_const, - ACTIONS(3977), 1, - sym_identifier, - ACTIONS(3979), 1, - sym_metavariable, - STATE(1754), 1, - sym_lifetime, - STATE(1861), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2032), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55195] = 8, - ACTIONS(3981), 1, + [55738] = 8, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_RPAREN, - ACTIONS(3985), 1, + ACTIONS(4011), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - STATE(1589), 1, + ACTIONS(4029), 1, + anon_sym_RPAREN, + STATE(1603), 1, aux_sym_macro_definition_repeat1, - STATE(2282), 1, + STATE(2297), 1, sym_macro_rule, - STATE(2542), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55221] = 7, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3927), 1, - sym_identifier, - ACTIONS(3933), 1, - anon_sym_ref, - ACTIONS(3935), 1, - sym_mutable_specifier, - ACTIONS(3989), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2207), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55245] = 8, - ACTIONS(3981), 1, + [55764] = 8, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4011), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(3991), 1, + ACTIONS(4031), 1, anon_sym_RPAREN, - STATE(1623), 1, + STATE(1608), 1, aux_sym_macro_definition_repeat1, - STATE(2312), 1, + STATE(2301), 1, sym_macro_rule, - STATE(2542), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55271] = 3, - ACTIONS(3993), 1, - anon_sym_trait, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55287] = 3, - ACTIONS(3995), 1, + [55790] = 3, + ACTIONS(4033), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3890), 6, + ACTIONS(3820), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55303] = 3, - ACTIONS(2690), 1, + [55806] = 3, + ACTIONS(3552), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(2650), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55319] = 8, - ACTIONS(3820), 1, + [55822] = 8, + ACTIONS(3860), 1, anon_sym_LPAREN, - ACTIONS(3822), 1, - anon_sym_LBRACE, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3997), 1, + ACTIONS(3888), 1, + anon_sym_LBRACE, + ACTIONS(4035), 1, anon_sym_SEMI, - STATE(281), 1, + STATE(477), 1, sym_field_declaration_list, - STATE(2144), 1, + STATE(2149), 1, sym_ordered_field_declaration_list, - STATE(2171), 1, + STATE(2175), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55345] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3955), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55359] = 2, + [55848] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3955), 7, + ACTIONS(4037), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -119251,77 +120139,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55373] = 8, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3836), 1, - anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_SEMI, - STATE(840), 1, - sym_field_declaration_list, - STATE(2123), 1, - sym_ordered_field_declaration_list, - STATE(2202), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55399] = 8, - ACTIONS(3981), 1, + [55862] = 8, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4011), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(4001), 1, + ACTIONS(4039), 1, anon_sym_RPAREN, - STATE(1589), 1, + STATE(1584), 1, aux_sym_macro_definition_repeat1, - STATE(2291), 1, + STATE(2332), 1, sym_macro_rule, - STATE(2542), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55425] = 8, - ACTIONS(4003), 1, - anon_sym_LPAREN, - ACTIONS(4005), 1, - anon_sym_LBRACE, + [55888] = 8, ACTIONS(4007), 1, - anon_sym_LBRACK, - ACTIONS(4009), 1, - anon_sym_RBRACK, + anon_sym_LPAREN, ACTIONS(4011), 1, - anon_sym_EQ, + anon_sym_LBRACE, ACTIONS(4013), 1, - anon_sym_COLON_COLON, - STATE(2494), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55451] = 2, + anon_sym_LBRACK, + ACTIONS(4041), 1, + anon_sym_RBRACE, + STATE(1584), 1, + aux_sym_macro_definition_repeat1, + STATE(2330), 1, + sym_macro_rule, + STATE(2437), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3955), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55465] = 2, + [55914] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3955), 7, + ACTIONS(3940), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -119329,95 +120187,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55479] = 2, + [55928] = 3, + ACTIONS(4043), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3955), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55493] = 8, - ACTIONS(3981), 1, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55944] = 8, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4011), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(4015), 1, - anon_sym_RBRACE, - STATE(1589), 1, + ACTIONS(4045), 1, + anon_sym_RPAREN, + STATE(1584), 1, aux_sym_macro_definition_repeat1, - STATE(2320), 1, + STATE(2329), 1, sym_macro_rule, - STATE(2542), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55519] = 8, - ACTIONS(4003), 1, - anon_sym_LPAREN, - ACTIONS(4005), 1, - anon_sym_LBRACE, - ACTIONS(4007), 1, - anon_sym_LBRACK, - ACTIONS(4009), 1, - anon_sym_RBRACK, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4017), 1, - anon_sym_COLON_COLON, - STATE(2494), 1, - sym_delim_token_tree, + [55970] = 7, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(3916), 1, + sym_identifier, + ACTIONS(3922), 1, + anon_sym_ref, + ACTIONS(3924), 1, + sym_mutable_specifier, + ACTIONS(4047), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55545] = 8, - ACTIONS(4003), 1, - anon_sym_LPAREN, - ACTIONS(4005), 1, - anon_sym_LBRACE, + STATE(2299), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55994] = 8, ACTIONS(4007), 1, - anon_sym_LBRACK, - ACTIONS(4009), 1, - anon_sym_RBRACK, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4019), 1, - anon_sym_COLON_COLON, - STATE(2494), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55571] = 8, - ACTIONS(3981), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4011), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, - anon_sym_RPAREN, - STATE(1589), 1, + ACTIONS(4049), 1, + anon_sym_RBRACE, + STATE(1584), 1, aux_sym_macro_definition_repeat1, - STATE(2300), 1, + STATE(2328), 1, sym_macro_rule, - STATE(2542), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55597] = 2, + [56020] = 3, + ACTIONS(4051), 1, + anon_sym_trait, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2650), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56036] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4023), 7, + ACTIONS(3940), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -119425,212 +120278,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55611] = 3, - ACTIONS(4025), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3890), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55627] = 8, - ACTIONS(3981), 1, + [56050] = 8, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4011), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(4027), 1, + ACTIONS(4053), 1, anon_sym_RBRACE, - STATE(1589), 1, + STATE(1584), 1, aux_sym_macro_definition_repeat1, - STATE(2328), 1, + STATE(2170), 1, sym_macro_rule, - STATE(2542), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55653] = 8, - ACTIONS(3981), 1, + [56076] = 8, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4011), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(4029), 1, + ACTIONS(4055), 1, anon_sym_RBRACE, - STATE(1589), 1, + STATE(1584), 1, aux_sym_macro_definition_repeat1, - STATE(2156), 1, + STATE(2168), 1, sym_macro_rule, - STATE(2542), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55679] = 8, - ACTIONS(3981), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, - anon_sym_LBRACE, - ACTIONS(3987), 1, - anon_sym_LBRACK, - ACTIONS(4031), 1, - anon_sym_RPAREN, - STATE(1594), 1, - aux_sym_macro_definition_repeat1, - STATE(2309), 1, - sym_macro_rule, - STATE(2542), 1, - sym_token_tree_pattern, + [56102] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55705] = 8, - ACTIONS(3591), 1, - anon_sym_COLON_COLON, - ACTIONS(4003), 1, - anon_sym_LPAREN, - ACTIONS(4005), 1, + ACTIONS(3940), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4007), 1, - anon_sym_LBRACK, - ACTIONS(4033), 1, - anon_sym_RBRACK, - ACTIONS(4035), 1, + anon_sym_PLUS, + anon_sym_where, anon_sym_EQ, - STATE(2440), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55731] = 8, - ACTIONS(3820), 1, + anon_sym_COMMA, + anon_sym_GT, + [56116] = 8, + ACTIONS(3860), 1, anon_sym_LPAREN, - ACTIONS(3822), 1, - anon_sym_LBRACE, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4037), 1, + ACTIONS(3888), 1, + anon_sym_LBRACE, + ACTIONS(4057), 1, anon_sym_SEMI, - STATE(443), 1, + STATE(270), 1, sym_field_declaration_list, - STATE(2053), 1, + STATE(2023), 1, sym_ordered_field_declaration_list, - STATE(2279), 1, + STATE(2223), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55757] = 8, - ACTIONS(3981), 1, + [56142] = 8, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4011), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(4039), 1, + ACTIONS(4059), 1, anon_sym_RBRACE, - STATE(1589), 1, + STATE(1627), 1, aux_sym_macro_definition_repeat1, - STATE(2301), 1, + STATE(2251), 1, sym_macro_rule, - STATE(2542), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55783] = 6, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3836), 1, - anon_sym_LBRACE, - ACTIONS(4043), 1, - anon_sym_EQ, + [56168] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4041), 2, - anon_sym_RBRACE, + ACTIONS(3940), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(2098), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [55805] = 6, - ACTIONS(3820), 1, + anon_sym_GT, + [56182] = 6, + ACTIONS(3860), 1, anon_sym_LPAREN, - ACTIONS(3836), 1, + ACTIONS(3862), 1, anon_sym_LBRACE, - ACTIONS(4047), 1, + ACTIONS(4063), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4045), 2, + ACTIONS(4061), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1950), 2, + STATE(1959), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [55827] = 8, - ACTIONS(3981), 1, + [56204] = 7, + ACTIONS(3451), 1, + anon_sym_BANG, + ACTIONS(3457), 1, + anon_sym_PIPE, + ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, - anon_sym_LBRACE, - ACTIONS(3987), 1, - anon_sym_LBRACK, - ACTIONS(4049), 1, - anon_sym_RPAREN, - STATE(1589), 1, - aux_sym_macro_definition_repeat1, - STATE(2283), 1, - sym_macro_rule, - STATE(2542), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55853] = 7, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3927), 1, - sym_identifier, - ACTIONS(3933), 1, - anon_sym_ref, - ACTIONS(3935), 1, - sym_mutable_specifier, - ACTIONS(4051), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2207), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55877] = 3, - ACTIONS(4053), 1, - sym_identifier, + ACTIONS(3463), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3890), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55893] = 2, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [56228] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4055), 7, + ACTIONS(4067), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -119638,3459 +120419,3360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55907] = 3, - ACTIONS(4057), 1, - anon_sym_trait, + [56242] = 7, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(3916), 1, + sym_identifier, + ACTIONS(3922), 1, + anon_sym_ref, + ACTIONS(3924), 1, + sym_mutable_specifier, + ACTIONS(4069), 1, + anon_sym_RBRACE, ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55923] = 8, - ACTIONS(3981), 1, + sym_block_comment, + sym_line_comment, + STATE(2299), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56266] = 8, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4011), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, + ACTIONS(4071), 1, anon_sym_RBRACE, - STATE(1620), 1, + STATE(1623), 1, aux_sym_macro_definition_repeat1, - STATE(2164), 1, + STATE(2286), 1, sym_macro_rule, - STATE(2542), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55949] = 7, - ACTIONS(3441), 1, - anon_sym_BANG, - ACTIONS(3447), 1, - anon_sym_PIPE, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3453), 1, - anon_sym_COLON, - ACTIONS(4061), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [55973] = 3, - ACTIONS(4063), 1, + [56292] = 3, + ACTIONS(4073), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3890), 6, + ACTIONS(3820), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55989] = 8, - ACTIONS(3981), 1, + [56308] = 8, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4011), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(4065), 1, + ACTIONS(4075), 1, anon_sym_RBRACE, - STATE(1615), 1, + STATE(1626), 1, aux_sym_macro_definition_repeat1, - STATE(2255), 1, + STATE(2244), 1, sym_macro_rule, - STATE(2542), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56015] = 8, - ACTIONS(3981), 1, + [56334] = 8, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4011), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4077), 1, anon_sym_RPAREN, - STATE(1612), 1, - aux_sym_macro_definition_repeat1, - STATE(2167), 1, - sym_macro_rule, - STATE(2542), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56041] = 8, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3836), 1, - anon_sym_LBRACE, - ACTIONS(4069), 1, - anon_sym_SEMI, - STATE(930), 1, - sym_field_declaration_list, - STATE(2122), 1, - sym_ordered_field_declaration_list, - STATE(2201), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56067] = 7, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3927), 1, - sym_identifier, - ACTIONS(3933), 1, - anon_sym_ref, - ACTIONS(3935), 1, - sym_mutable_specifier, - ACTIONS(4071), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2207), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56091] = 8, - ACTIONS(3981), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, - anon_sym_LBRACE, - ACTIONS(3987), 1, - anon_sym_LBRACK, - ACTIONS(4073), 1, - anon_sym_RBRACE, - STATE(1616), 1, + STATE(1621), 1, aux_sym_macro_definition_repeat1, - STATE(2257), 1, + STATE(2293), 1, sym_macro_rule, - STATE(2542), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56117] = 8, - ACTIONS(3981), 1, + [56360] = 8, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4011), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(4075), 1, + ACTIONS(4079), 1, anon_sym_RBRACE, - STATE(1609), 1, + STATE(1618), 1, aux_sym_macro_definition_repeat1, - STATE(2195), 1, + STATE(2294), 1, sym_macro_rule, - STATE(2542), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56143] = 3, - ACTIONS(3552), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56159] = 8, - ACTIONS(3981), 1, + [56386] = 8, + ACTIONS(4007), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4011), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(4013), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(4081), 1, anon_sym_RPAREN, - STATE(1604), 1, + STATE(1617), 1, aux_sym_macro_definition_repeat1, - STATE(2211), 1, + STATE(2305), 1, sym_macro_rule, - STATE(2542), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56185] = 7, + [56412] = 7, ACTIONS(820), 1, anon_sym_DOT_DOT, - ACTIONS(3927), 1, + ACTIONS(3916), 1, sym_identifier, - ACTIONS(3933), 1, + ACTIONS(3922), 1, anon_sym_ref, - ACTIONS(3935), 1, + ACTIONS(3924), 1, sym_mutable_specifier, - ACTIONS(4079), 1, + ACTIONS(4083), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2207), 2, + STATE(2299), 2, sym_field_pattern, sym_remaining_field_pattern, - [56209] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_SEMI, - ACTIONS(4083), 1, - anon_sym_LBRACE, + [56436] = 7, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(3916), 1, + sym_identifier, + ACTIONS(3922), 1, + anon_sym_ref, + ACTIONS(3924), 1, + sym_mutable_specifier, ACTIONS(4085), 1, - anon_sym_PLUS, - STATE(343), 1, - sym_block, - STATE(2065), 1, - sym_where_clause, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56232] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, + STATE(2299), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56460] = 8, + ACTIONS(3860), 1, + anon_sym_LPAREN, + ACTIONS(3862), 1, anon_sym_LBRACE, - ACTIONS(3923), 1, - anon_sym_COLON, - STATE(306), 1, - sym_declaration_list, - STATE(1800), 1, - sym_trait_bounds, - STATE(2302), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56255] = 7, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3826), 1, - anon_sym_LT, - ACTIONS(3836), 1, - anon_sym_LBRACE, - STATE(900), 1, + ACTIONS(4087), 1, + anon_sym_SEMI, + STATE(936), 1, sym_field_declaration_list, - STATE(1839), 1, - sym_type_parameters, - STATE(2168), 1, + STATE(2122), 1, + sym_ordered_field_declaration_list, + STATE(2196), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56278] = 4, + [56486] = 6, + ACTIONS(4017), 1, + anon_sym_COLON_COLON, + ACTIONS(4089), 1, + anon_sym_LPAREN, + ACTIONS(4093), 1, + anon_sym_EQ, + STATE(2308), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2724), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3748), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4087), 2, + ACTIONS(4091), 2, anon_sym_RPAREN, anon_sym_COMMA, - [56295] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3826), 1, - anon_sym_LT, - ACTIONS(4090), 1, - anon_sym_LBRACE, - STATE(909), 1, - sym_enum_variant_list, - STATE(1840), 1, - sym_type_parameters, - STATE(2177), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56318] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3923), 1, - anon_sym_COLON, - STATE(427), 1, - sym_declaration_list, - STATE(1834), 1, - sym_trait_bounds, - STATE(2250), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56341] = 7, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4092), 1, - anon_sym_SEMI, - STATE(918), 1, - sym_declaration_list, - STATE(2131), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56364] = 7, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3923), 1, - anon_sym_COLON, - STATE(925), 1, - sym_declaration_list, - STATE(1843), 1, - sym_trait_bounds, - STATE(2197), 1, - sym_where_clause, + [56507] = 4, + ACTIONS(4095), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56387] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4094), 1, + ACTIONS(3644), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2768), 3, anon_sym_SEMI, - STATE(416), 1, - sym_declaration_list, - STATE(2019), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56410] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4096), 1, - anon_sym_SEMI, - STATE(398), 1, - sym_declaration_list, - STATE(2020), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56433] = 4, + anon_sym_DASH_GT, + [56524] = 4, ACTIONS(3550), 1, anon_sym_COLON_COLON, - ACTIONS(3886), 1, + ACTIONS(3840), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2622), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56450] = 7, - ACTIONS(3824), 1, + [56541] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(4085), 1, - anon_sym_PLUS, ACTIONS(4098), 1, anon_sym_SEMI, - STATE(388), 1, + ACTIONS(4100), 1, + anon_sym_LBRACE, + ACTIONS(4102), 1, + anon_sym_PLUS, + STATE(463), 1, sym_block, - STATE(1924), 1, + STATE(2019), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56473] = 7, - ACTIONS(3800), 1, + [56564] = 7, + ACTIONS(3862), 1, anon_sym_LBRACE, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4100), 1, - anon_sym_SEMI, - STATE(971), 1, - sym_declaration_list, - STATE(2107), 1, + ACTIONS(3866), 1, + anon_sym_LT, + STATE(906), 1, + sym_field_declaration_list, + STATE(1799), 1, + sym_type_parameters, + STATE(2163), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56496] = 7, + [56587] = 7, ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4102), 1, - anon_sym_SEMI, - ACTIONS(4104), 1, anon_sym_LBRACE, - ACTIONS(4106), 1, - anon_sym_DASH_GT, - STATE(1007), 1, - sym_block, - STATE(2093), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56519] = 7, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4085), 1, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4108), 1, + ACTIONS(4104), 1, anon_sym_SEMI, - STATE(455), 1, + STATE(369), 1, sym_declaration_list, - STATE(2055), 1, + STATE(1963), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56542] = 7, + [56610] = 7, ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4110), 1, - anon_sym_SEMI, - STATE(400), 1, - sym_declaration_list, - STATE(2143), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56565] = 4, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - ACTIONS(3856), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56582] = 4, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - ACTIONS(3872), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56599] = 7, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(4085), 1, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4112), 1, + ACTIONS(4106), 1, anon_sym_SEMI, - STATE(280), 1, - sym_block, + STATE(383), 1, + sym_declaration_list, STATE(2006), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56622] = 7, - ACTIONS(3824), 1, + [56633] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3826), 1, + ACTIONS(3866), 1, anon_sym_LT, - ACTIONS(3836), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(1042), 1, - sym_field_declaration_list, - STATE(1853), 1, + STATE(914), 1, + sym_enum_variant_list, + STATE(1800), 1, sym_type_parameters, - STATE(2281), 1, + STATE(2161), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56645] = 4, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - ACTIONS(3832), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, + [56656] = 7, + ACTIONS(3824), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3864), 1, anon_sym_where, - [56662] = 7, - ACTIONS(3923), 1, + ACTIONS(3926), 1, anon_sym_COLON, - ACTIONS(3925), 1, - anon_sym_LT, - ACTIONS(4114), 1, - anon_sym_SEMI, - ACTIONS(4116), 1, - anon_sym_EQ, - STATE(1855), 1, - sym_type_parameters, - STATE(2462), 1, + STATE(291), 1, + sym_declaration_list, + STATE(1841), 1, sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56685] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4104), 1, - anon_sym_LBRACE, - ACTIONS(4118), 1, - anon_sym_SEMI, - ACTIONS(4120), 1, - anon_sym_DASH_GT, - STATE(981), 1, - sym_block, - STATE(2083), 1, + STATE(2234), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56708] = 7, - ACTIONS(3800), 1, + [56679] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4085), 1, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4122), 1, + ACTIONS(4110), 1, anon_sym_SEMI, - STATE(1004), 1, + STATE(921), 1, sym_declaration_list, - STATE(2038), 1, + STATE(2131), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56731] = 7, - ACTIONS(3800), 1, + [56702] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3923), 1, + ACTIONS(3926), 1, anon_sym_COLON, - STATE(977), 1, + STATE(930), 1, sym_declaration_list, - STATE(1828), 1, + STATE(1804), 1, sym_trait_bounds, - STATE(2241), 1, + STATE(2189), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56754] = 4, + [56725] = 4, ACTIONS(3550), 1, anon_sym_COLON_COLON, - ACTIONS(3802), 1, + ACTIONS(3842), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2622), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56771] = 7, - ACTIONS(3307), 1, - anon_sym_LBRACE, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4124), 1, - sym_identifier, - ACTIONS(4126), 1, - anon_sym_STAR, - STATE(2049), 1, - sym_use_list, - STATE(2507), 1, - sym_type_arguments, + [56742] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56794] = 7, - ACTIONS(3307), 1, + ACTIONS(2704), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3720), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4112), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56759] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4124), 1, - sym_identifier, - ACTIONS(4126), 1, - anon_sym_STAR, - STATE(2049), 1, - sym_use_list, - STATE(2416), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56817] = 7, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4104), 1, - anon_sym_LBRACE, - ACTIONS(4128), 1, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4115), 1, anon_sym_SEMI, - ACTIONS(4130), 1, - anon_sym_DASH_GT, - STATE(952), 1, - sym_block, - STATE(2086), 1, + STATE(974), 1, + sym_declaration_list, + STATE(2107), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56840] = 7, - ACTIONS(3824), 1, + [56782] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4104), 1, - anon_sym_LBRACE, - ACTIONS(4132), 1, + ACTIONS(4117), 1, anon_sym_SEMI, - STATE(996), 1, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(4121), 1, + anon_sym_DASH_GT, + STATE(801), 1, sym_block, - STATE(2079), 1, + STATE(2093), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56863] = 7, + [56805] = 7, ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3826), 1, - anon_sym_LT, - ACTIONS(4090), 1, - anon_sym_LBRACE, - STATE(924), 1, - sym_enum_variant_list, - STATE(1863), 1, - sym_type_parameters, - STATE(2325), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56886] = 7, - ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4085), 1, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4134), 1, + ACTIONS(4123), 1, anon_sym_SEMI, - STATE(942), 1, + STATE(304), 1, sym_declaration_list, - STATE(2087), 1, + STATE(1996), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56909] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(4136), 1, - anon_sym_SEMI, - ACTIONS(4138), 1, - anon_sym_DASH_GT, - STATE(319), 1, - sym_block, - STATE(2097), 1, - sym_where_clause, + [56828] = 4, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, + ACTIONS(3880), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56932] = 7, - ACTIONS(3800), 1, + ACTIONS(2622), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4085), 1, anon_sym_PLUS, - ACTIONS(4140), 1, - anon_sym_SEMI, - STATE(937), 1, - sym_declaration_list, - STATE(2092), 1, - sym_where_clause, + anon_sym_where, + [56845] = 4, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, + ACTIONS(3852), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56955] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4142), 1, + ACTIONS(2622), 4, anon_sym_SEMI, - STATE(399), 1, - sym_block, - STATE(1926), 1, - sym_where_clause, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [56862] = 4, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, + ACTIONS(3904), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56978] = 7, - ACTIONS(3824), 1, + ACTIONS(2622), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4083), 1, + [56879] = 7, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4100), 1, anon_sym_LBRACE, - ACTIONS(4144), 1, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4125), 1, anon_sym_SEMI, - ACTIONS(4146), 1, - anon_sym_DASH_GT, - STATE(290), 1, + STATE(432), 1, sym_block, - STATE(1949), 1, + STATE(1987), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57001] = 4, - ACTIONS(4148), 1, + [56902] = 4, + ACTIONS(4127), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, + ACTIONS(3467), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2598), 3, + ACTIONS(2622), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_PLUS, - [57018] = 6, + [56919] = 7, + ACTIONS(3862), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(3866), 1, + anon_sym_LT, + STATE(1042), 1, + sym_field_declaration_list, + STATE(1819), 1, + sym_type_parameters, + STATE(2260), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56942] = 6, ACTIONS(820), 1, anon_sym_DOT_DOT, - ACTIONS(3927), 1, + ACTIONS(3916), 1, sym_identifier, - ACTIONS(3933), 1, + ACTIONS(3922), 1, anon_sym_ref, - ACTIONS(3935), 1, + ACTIONS(3924), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2207), 2, + STATE(2299), 2, sym_field_pattern, sym_remaining_field_pattern, - [57039] = 5, - ACTIONS(4152), 1, - anon_sym_COLON, - ACTIONS(4154), 1, - anon_sym_COLON_COLON, + [56963] = 7, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, + anon_sym_SEMI, + ACTIONS(4131), 1, + anon_sym_DASH_GT, + STATE(883), 1, + sym_block, + STATE(2147), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4150), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57058] = 7, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4156), 1, + [56986] = 7, + ACTIONS(3926), 1, + anon_sym_COLON, + ACTIONS(3928), 1, + anon_sym_LT, + ACTIONS(4133), 1, anon_sym_SEMI, - STATE(894), 1, - sym_declaration_list, - STATE(2108), 1, - sym_where_clause, + ACTIONS(4135), 1, + anon_sym_EQ, + STATE(1823), 1, + sym_type_parameters, + STATE(2548), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57081] = 7, - ACTIONS(3824), 1, + [57009] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(4100), 1, anon_sym_LBRACE, - ACTIONS(4085), 1, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4158), 1, + ACTIONS(4137), 1, anon_sym_SEMI, - STATE(368), 1, - sym_declaration_list, - STATE(2091), 1, + STATE(380), 1, + sym_block, + STATE(1916), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57104] = 7, - ACTIONS(3923), 1, - anon_sym_COLON, - ACTIONS(4160), 1, - anon_sym_COMMA, - ACTIONS(4162), 1, - anon_sym_GT, - STATE(1948), 1, - sym_trait_bounds, - STATE(1952), 1, - aux_sym_type_parameters_repeat1, - STATE(2016), 1, - aux_sym_for_lifetimes_repeat1, + [57032] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57127] = 4, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - ACTIONS(3898), 1, - anon_sym_for, + ACTIONS(3720), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2704), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [57047] = 7, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4100), 1, + anon_sym_LBRACE, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4139), 1, + anon_sym_SEMI, + STATE(416), 1, + sym_block, + STATE(2012), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57144] = 7, - ACTIONS(3824), 1, + [57070] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3826), 1, + ACTIONS(3866), 1, anon_sym_LT, - ACTIONS(4164), 1, + ACTIONS(4141), 1, anon_sym_LBRACE, STATE(276), 1, sym_enum_variant_list, - STATE(1818), 1, + STATE(1791), 1, sym_type_parameters, STATE(2290), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57167] = 7, - ACTIONS(3560), 1, - anon_sym_EQ, - ACTIONS(3923), 1, - anon_sym_COLON, - ACTIONS(4166), 1, - anon_sym_COMMA, - ACTIONS(4168), 1, - anon_sym_GT, - STATE(1965), 1, - sym_trait_bounds, - STATE(2102), 1, - aux_sym_type_parameters_repeat1, + [57093] = 7, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4143), 1, + anon_sym_SEMI, + STATE(1023), 1, + sym_declaration_list, + STATE(2038), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57116] = 7, + ACTIONS(3325), 1, + anon_sym_LBRACE, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(4145), 1, + sym_identifier, + ACTIONS(4147), 1, + anon_sym_STAR, + STATE(1953), 1, + sym_use_list, + STATE(2528), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57190] = 3, + [57139] = 4, + ACTIONS(4149), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3748), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2724), 4, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2622), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH_GT, - [57205] = 7, - ACTIONS(3824), 1, + [57156] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(4100), 1, anon_sym_LBRACE, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4170), 1, + ACTIONS(4151), 1, anon_sym_SEMI, - STATE(419), 1, - sym_declaration_list, - STATE(1973), 1, + ACTIONS(4153), 1, + anon_sym_DASH_GT, + STATE(335), 1, + sym_block, + STATE(1933), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57228] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4083), 1, + [57179] = 7, + ACTIONS(3325), 1, anon_sym_LBRACE, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4172), 1, - anon_sym_SEMI, - STATE(323), 1, - sym_block, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(4145), 1, + sym_identifier, + ACTIONS(4147), 1, + anon_sym_STAR, STATE(1953), 1, - sym_where_clause, + sym_use_list, + STATE(2538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57251] = 7, - ACTIONS(3824), 1, + [57202] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3866), 1, + anon_sym_LT, + ACTIONS(4108), 1, anon_sym_LBRACE, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4174), 1, - anon_sym_SEMI, - STATE(408), 1, - sym_declaration_list, - STATE(1972), 1, + STATE(970), 1, + sym_enum_variant_list, + STATE(1836), 1, + sym_type_parameters, + STATE(2284), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57274] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4104), 1, - anon_sym_LBRACE, - ACTIONS(4176), 1, - anon_sym_SEMI, - ACTIONS(4178), 1, - anon_sym_DASH_GT, - STATE(877), 1, - sym_block, - STATE(2145), 1, - sym_where_clause, + [57225] = 5, + ACTIONS(4149), 1, + anon_sym_COLON_COLON, + ACTIONS(4157), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57297] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3923), 1, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4155), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57244] = 5, + ACTIONS(4161), 1, anon_sym_COLON, - STATE(264), 1, - sym_declaration_list, - STATE(1845), 1, - sym_trait_bounds, - STATE(2229), 1, - sym_where_clause, + ACTIONS(4163), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57320] = 7, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4159), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57263] = 7, ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4085), 1, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4180), 1, + ACTIONS(4165), 1, anon_sym_SEMI, - STATE(309), 1, + STATE(349), 1, sym_declaration_list, - STATE(2048), 1, + STATE(2146), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57343] = 7, + [57286] = 7, ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4085), 1, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4182), 1, + ACTIONS(4167), 1, anon_sym_SEMI, - STATE(301), 1, + STATE(315), 1, sym_declaration_list, - STATE(1938), 1, + STATE(1915), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57366] = 7, - ACTIONS(3822), 1, - anon_sym_LBRACE, + [57309] = 7, ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3826), 1, - anon_sym_LT, - STATE(386), 1, - sym_field_declaration_list, - STATE(1883), 1, - sym_type_parameters, - STATE(2304), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57389] = 7, - ACTIONS(3923), 1, - anon_sym_COLON, - ACTIONS(3925), 1, - anon_sym_LT, - ACTIONS(4184), 1, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4169), 1, anon_sym_SEMI, - ACTIONS(4186), 1, - anon_sym_EQ, - STATE(1860), 1, - sym_type_parameters, - STATE(2460), 1, - sym_trait_bounds, + STATE(299), 1, + sym_declaration_list, + STATE(1914), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57412] = 7, - ACTIONS(3824), 1, + [57332] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4104), 1, + ACTIONS(4100), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4171), 1, anon_sym_SEMI, - STATE(876), 1, + STATE(371), 1, sym_block, - STATE(2058), 1, + STATE(2099), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57435] = 7, - ACTIONS(3800), 1, + [57355] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4085), 1, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4190), 1, + ACTIONS(4173), 1, anon_sym_SEMI, - STATE(858), 1, + STATE(866), 1, sym_declaration_list, - STATE(2138), 1, + STATE(2158), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57458] = 7, - ACTIONS(3800), 1, + [57378] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4085), 1, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4192), 1, + ACTIONS(4175), 1, anon_sym_SEMI, - STATE(846), 1, + STATE(849), 1, sym_declaration_list, - STATE(2137), 1, + STATE(2150), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57481] = 7, - ACTIONS(3800), 1, + [57401] = 4, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, + ACTIONS(3856), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2622), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3824), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4085), 1, + [57418] = 7, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4194), 1, + ACTIONS(4177), 1, anon_sym_SEMI, - STATE(887), 1, + STATE(832), 1, sym_declaration_list, - STATE(2111), 1, + STATE(2124), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57504] = 4, - ACTIONS(4196), 1, - anon_sym_COLON_COLON, + [57441] = 7, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(3926), 1, + anon_sym_COLON, + STATE(874), 1, + sym_declaration_list, + STATE(1805), 1, + sym_trait_bounds, + STATE(2192), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2598), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [57521] = 7, - ACTIONS(3824), 1, + [57464] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4083), 1, + ACTIONS(4119), 1, anon_sym_LBRACE, - ACTIONS(4198), 1, + ACTIONS(4179), 1, anon_sym_SEMI, - ACTIONS(4200), 1, + ACTIONS(4181), 1, anon_sym_DASH_GT, - STATE(383), 1, + STATE(915), 1, sym_block, - STATE(1981), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57544] = 7, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4202), 1, - anon_sym_SEMI, - STATE(837), 1, - sym_declaration_list, - STATE(2128), 1, + STATE(2119), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57567] = 6, - ACTIONS(3591), 1, + [57487] = 6, + ACTIONS(3616), 1, anon_sym_COLON_COLON, - ACTIONS(4204), 1, + ACTIONS(4089), 1, anon_sym_LPAREN, - ACTIONS(4208), 1, + ACTIONS(4185), 1, anon_sym_EQ, - STATE(2336), 1, + STATE(2317), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4206), 2, + ACTIONS(4183), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57588] = 7, - ACTIONS(3800), 1, - anon_sym_LBRACE, + [57508] = 7, ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3923), 1, - anon_sym_COLON, - STATE(815), 1, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4187), 1, + anon_sym_SEMI, + STATE(388), 1, sym_declaration_list, - STATE(1831), 1, - sym_trait_bounds, - STATE(2192), 1, + STATE(2064), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57611] = 7, + [57531] = 7, ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3826), 1, - anon_sym_LT, - ACTIONS(4164), 1, anon_sym_LBRACE, - STATE(340), 1, - sym_enum_variant_list, - STATE(1787), 1, - sym_type_parameters, - STATE(2176), 1, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4189), 1, + anon_sym_SEMI, + STATE(408), 1, + sym_declaration_list, + STATE(2060), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57634] = 6, - ACTIONS(4019), 1, + [57554] = 6, + ACTIONS(4005), 1, anon_sym_COLON_COLON, - ACTIONS(4204), 1, + ACTIONS(4089), 1, anon_sym_LPAREN, - ACTIONS(4212), 1, + ACTIONS(4093), 1, anon_sym_EQ, - STATE(2317), 1, + STATE(2308), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4210), 2, + ACTIONS(4091), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57655] = 6, - ACTIONS(4017), 1, + [57575] = 6, + ACTIONS(4015), 1, anon_sym_COLON_COLON, - ACTIONS(4204), 1, + ACTIONS(4089), 1, anon_sym_LPAREN, - ACTIONS(4212), 1, + ACTIONS(4093), 1, anon_sym_EQ, - STATE(2317), 1, + STATE(2308), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4210), 2, + ACTIONS(4091), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57676] = 4, - ACTIONS(4087), 1, - anon_sym_RBRACK, + [57596] = 4, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, + ACTIONS(3830), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3748), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2724), 3, + ACTIONS(2622), 4, anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [57693] = 7, - ACTIONS(3822), 1, anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [57613] = 7, ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3826), 1, - anon_sym_LT, - STATE(316), 1, - sym_field_declaration_list, - STATE(1888), 1, - sym_type_parameters, - STATE(2247), 1, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4191), 1, + anon_sym_SEMI, + STATE(286), 1, + sym_declaration_list, + STATE(2152), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57716] = 4, - ACTIONS(4214), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3706), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2784), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [57733] = 7, - ACTIONS(3824), 1, + [57636] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4104), 1, + ACTIONS(4100), 1, anon_sym_LBRACE, - ACTIONS(4217), 1, + ACTIONS(4193), 1, anon_sym_SEMI, - ACTIONS(4219), 1, + ACTIONS(4195), 1, anon_sym_DASH_GT, - STATE(821), 1, + STATE(268), 1, sym_block, - STATE(2125), 1, + STATE(1904), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57756] = 5, - ACTIONS(4196), 1, - anon_sym_COLON_COLON, - ACTIONS(4223), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4221), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57775] = 6, - ACTIONS(4013), 1, - anon_sym_COLON_COLON, - ACTIONS(4204), 1, - anon_sym_LPAREN, - ACTIONS(4212), 1, - anon_sym_EQ, - STATE(2317), 1, - sym_meta_arguments, + [57659] = 7, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4197), 1, + anon_sym_SEMI, + STATE(418), 1, + sym_declaration_list, + STATE(2056), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4210), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57796] = 7, - ACTIONS(3824), 1, + [57682] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4085), 1, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4104), 1, + ACTIONS(4119), 1, anon_sym_LBRACE, - ACTIONS(4225), 1, + ACTIONS(4199), 1, anon_sym_SEMI, - STATE(896), 1, + STATE(1028), 1, sym_block, - STATE(2059), 1, + STATE(2101), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57819] = 4, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - ACTIONS(3900), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2598), 4, + [57705] = 7, + ACTIONS(3926), 1, + anon_sym_COLON, + ACTIONS(3928), 1, + anon_sym_LT, + ACTIONS(4201), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57836] = 3, + ACTIONS(4203), 1, + anon_sym_EQ, + STATE(1829), 1, + sym_type_parameters, + STATE(2471), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3706), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2784), 4, - anon_sym_RPAREN, + [57728] = 7, + ACTIONS(2465), 1, anon_sym_PLUS, + ACTIONS(3926), 1, + anon_sym_COLON, + ACTIONS(4205), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - [57851] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(4227), 1, - anon_sym_SEMI, - ACTIONS(4229), 1, - anon_sym_DASH_GT, - STATE(271), 1, - sym_block, - STATE(2150), 1, - sym_where_clause, + ACTIONS(4207), 1, + anon_sym_GT, + STATE(2133), 1, + aux_sym_type_parameters_repeat1, + STATE(2138), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57874] = 4, - ACTIONS(3550), 1, + [57751] = 6, + ACTIONS(3195), 1, anon_sym_COLON_COLON, - ACTIONS(3848), 1, - anon_sym_for, + ACTIONS(4205), 1, + anon_sym_COMMA, + ACTIONS(4207), 1, + anon_sym_GT, + STATE(2133), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2622), 2, anon_sym_PLUS, - anon_sym_where, - [57891] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, + anon_sym_as, + [57772] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4085), 1, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4231), 1, + ACTIONS(4209), 1, anon_sym_SEMI, - STATE(449), 1, + STATE(1053), 1, sym_declaration_list, - STATE(1931), 1, + STATE(2098), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57914] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4083), 1, + [57795] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4233), 1, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4211), 1, anon_sym_SEMI, - ACTIONS(4235), 1, - anon_sym_DASH_GT, - STATE(341), 1, - sym_block, - STATE(1960), 1, + STATE(1049), 1, + sym_declaration_list, + STATE(2091), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57937] = 7, + [57818] = 7, ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3926), 1, + anon_sym_COLON, + STATE(313), 1, + sym_declaration_list, + STATE(1892), 1, + sym_trait_bounds, + STATE(2295), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57841] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4085), 1, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4237), 1, + ACTIONS(4213), 1, anon_sym_SEMI, - STATE(431), 1, + STATE(958), 1, sym_declaration_list, - STATE(2050), 1, + STATE(2085), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57960] = 7, - ACTIONS(3824), 1, + [57864] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4083), 1, + ACTIONS(4100), 1, anon_sym_LBRACE, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4239), 1, + ACTIONS(4215), 1, anon_sym_SEMI, - STATE(472), 1, + ACTIONS(4217), 1, + anon_sym_DASH_GT, + STATE(356), 1, sym_block, - STATE(1900), 1, + STATE(1898), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57983] = 7, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, + [57887] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4085), 1, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4241), 1, + ACTIONS(4219), 1, anon_sym_SEMI, - STATE(349), 1, + STATE(929), 1, sym_declaration_list, - STATE(2146), 1, + STATE(2080), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58006] = 7, - ACTIONS(3824), 1, + [57910] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4104), 1, + ACTIONS(4119), 1, anon_sym_LBRACE, - ACTIONS(4243), 1, + ACTIONS(4221), 1, anon_sym_SEMI, - STATE(943), 1, + ACTIONS(4223), 1, + anon_sym_DASH_GT, + STATE(875), 1, sym_block, - STATE(2063), 1, + STATE(2079), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58029] = 7, - ACTIONS(3800), 1, + [57933] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4245), 1, - anon_sym_SEMI, - STATE(796), 1, + ACTIONS(3926), 1, + anon_sym_COLON, + STATE(829), 1, sym_declaration_list, - STATE(2074), 1, + STATE(1815), 1, + sym_trait_bounds, + STATE(2241), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58052] = 7, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(3824), 1, + [57956] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4247), 1, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(4225), 1, anon_sym_SEMI, - STATE(1050), 1, - sym_declaration_list, - STATE(2072), 1, + ACTIONS(4227), 1, + anon_sym_DASH_GT, + STATE(1032), 1, + sym_block, + STATE(2073), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58075] = 7, - ACTIONS(3824), 1, + [57979] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4085), 1, + ACTIONS(3866), 1, + anon_sym_LT, + ACTIONS(4141), 1, + anon_sym_LBRACE, + STATE(325), 1, + sym_enum_variant_list, + STATE(1885), 1, + sym_type_parameters, + STATE(2160), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58002] = 7, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4104), 1, + ACTIONS(4119), 1, anon_sym_LBRACE, - ACTIONS(4249), 1, + ACTIONS(4229), 1, anon_sym_SEMI, - STATE(1027), 1, + STATE(1004), 1, sym_block, - STATE(2070), 1, + STATE(2069), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58098] = 6, - ACTIONS(3213), 1, - anon_sym_COLON_COLON, - ACTIONS(4251), 1, - anon_sym_COMMA, - ACTIONS(4253), 1, - anon_sym_GT, - STATE(1952), 1, - aux_sym_type_parameters_repeat1, + [58025] = 4, + ACTIONS(4112), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 2, + ACTIONS(3720), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2704), 3, + anon_sym_SEMI, anon_sym_PLUS, - anon_sym_as, - [58119] = 7, - ACTIONS(3560), 1, + anon_sym_DASH_GT, + [58042] = 7, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(3866), 1, + anon_sym_LT, + ACTIONS(3888), 1, + anon_sym_LBRACE, + STATE(332), 1, + sym_field_declaration_list, + STATE(1880), 1, + sym_type_parameters, + STATE(2336), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58065] = 7, + ACTIONS(3544), 1, anon_sym_EQ, - ACTIONS(3562), 1, + ACTIONS(3926), 1, + anon_sym_COLON, + ACTIONS(4231), 1, anon_sym_COMMA, - ACTIONS(3564), 1, + ACTIONS(4233), 1, anon_sym_GT, - ACTIONS(3923), 1, - anon_sym_COLON, - STATE(1963), 1, + STATE(2102), 1, aux_sym_type_parameters_repeat1, - STATE(1965), 1, + STATE(2126), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58142] = 4, - ACTIONS(4255), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2598), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [58159] = 7, - ACTIONS(3824), 1, + [58088] = 7, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4104), 1, + ACTIONS(4100), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, + ACTIONS(4235), 1, anon_sym_SEMI, - ACTIONS(4259), 1, + ACTIONS(4237), 1, anon_sym_DASH_GT, - STATE(997), 1, + STATE(483), 1, sym_block, - STATE(2067), 1, + STATE(2137), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58182] = 7, + [58111] = 7, ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4083), 1, anon_sym_LBRACE, - ACTIONS(4261), 1, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4239), 1, anon_sym_SEMI, - ACTIONS(4263), 1, - anon_sym_DASH_GT, - STATE(267), 1, - sym_block, - STATE(1903), 1, + STATE(266), 1, + sym_declaration_list, + STATE(2106), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58205] = 7, - ACTIONS(3824), 1, + [58134] = 7, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4085), 1, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4104), 1, - anon_sym_LBRACE, - ACTIONS(4265), 1, + ACTIONS(4241), 1, anon_sym_SEMI, - STATE(865), 1, - sym_block, - STATE(2113), 1, + STATE(805), 1, + sym_declaration_list, + STATE(2058), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58228] = 7, - ACTIONS(2508), 1, + [58157] = 7, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(3923), 1, - anon_sym_COLON, - ACTIONS(4251), 1, - anon_sym_COMMA, - ACTIONS(4253), 1, - anon_sym_GT, - STATE(1948), 1, - sym_trait_bounds, - STATE(1952), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4243), 1, + anon_sym_SEMI, + STATE(812), 1, + sym_declaration_list, + STATE(2057), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58251] = 5, - ACTIONS(4223), 1, - anon_sym_COLON, - ACTIONS(4255), 1, - anon_sym_COLON_COLON, + [58180] = 7, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4245), 1, + anon_sym_SEMI, + STATE(377), 1, + sym_declaration_list, + STATE(2063), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4221), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58270] = 4, + [58203] = 7, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(4247), 1, + anon_sym_SEMI, + STATE(833), 1, + sym_block, + STATE(2053), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2784), 2, - anon_sym_PLUS, + [58226] = 7, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(4249), 1, + anon_sym_SEMI, + ACTIONS(4251), 1, anon_sym_DASH_GT, - ACTIONS(3706), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4214), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58287] = 2, + STATE(845), 1, + sym_block, + STATE(2046), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3008), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + [58249] = 7, + ACTIONS(3864), 1, anon_sym_where, - anon_sym_EQ, - [58299] = 3, - ACTIONS(4267), 1, - anon_sym_EQ, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(4253), 1, + anon_sym_SEMI, + STATE(900), 1, + sym_block, + STATE(2042), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 4, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, + [58272] = 4, + ACTIONS(3550), 1, anon_sym_COLON_COLON, - [58313] = 5, - ACTIONS(4269), 1, - anon_sym_RPAREN, - ACTIONS(4271), 1, - anon_sym_COMMA, - STATE(1961), 1, - aux_sym_parameters_repeat1, + ACTIONS(3896), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58331] = 5, - ACTIONS(3662), 1, - anon_sym_COLON, - ACTIONS(3664), 1, - anon_sym_BANG, - ACTIONS(3672), 1, - anon_sym_COLON_COLON, + ACTIONS(2622), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [58289] = 7, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, + anon_sym_SEMI, + STATE(946), 1, + sym_block, + STATE(2034), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58349] = 5, - ACTIONS(3662), 1, - anon_sym_COLON, - ACTIONS(3664), 1, - anon_sym_BANG, - ACTIONS(3666), 1, - anon_sym_COLON_COLON, + [58312] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58367] = 6, - ACTIONS(3923), 1, + ACTIONS(3644), 2, anon_sym_COLON, - ACTIONS(4251), 1, + anon_sym_PIPE, + ACTIONS(2768), 4, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - ACTIONS(4253), 1, + anon_sym_DASH_GT, + [58327] = 7, + ACTIONS(3926), 1, + anon_sym_COLON, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4259), 1, anon_sym_GT, - STATE(1948), 1, - sym_trait_bounds, - STATE(1952), 1, + STATE(2037), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2133), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58387] = 6, - ACTIONS(3443), 1, - anon_sym_COLON_COLON, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3558), 1, - anon_sym_COLON, - STATE(1366), 1, - sym_type_arguments, - STATE(1958), 1, + STATE(2138), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58407] = 4, - ACTIONS(4273), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2982), 2, - anon_sym_SEMI, + [58350] = 7, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(3686), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [58423] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3039), 5, - anon_sym_SEMI, + ACTIONS(4119), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58435] = 2, + ACTIONS(4261), 1, + anon_sym_SEMI, + STATE(956), 1, + sym_block, + STATE(2027), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3035), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + [58373] = 7, + ACTIONS(3864), 1, anon_sym_where, - anon_sym_EQ, - [58447] = 6, - ACTIONS(3439), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_COLON_COLON, - ACTIONS(3445), 1, - anon_sym_LT2, - STATE(1366), 1, - sym_type_arguments, - STATE(1377), 1, - sym_parameters, + ACTIONS(4100), 1, + anon_sym_LBRACE, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4263), 1, + anon_sym_SEMI, + STATE(424), 1, + sym_block, + STATE(1966), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58467] = 2, + [58396] = 7, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4100), 1, + anon_sym_LBRACE, + ACTIONS(4265), 1, + anon_sym_SEMI, + ACTIONS(4267), 1, + anon_sym_DASH_GT, + STATE(362), 1, + sym_block, + STATE(1990), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3965), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, + [58419] = 7, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(3866), 1, + anon_sym_LT, + ACTIONS(3888), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [58479] = 6, - ACTIONS(4276), 1, - anon_sym_RPAREN, - ACTIONS(4278), 1, - anon_sym_COLON, - ACTIONS(4280), 1, - anon_sym_COMMA, - ACTIONS(4282), 1, - anon_sym_PIPE, - STATE(1994), 1, - aux_sym_tuple_pattern_repeat1, + STATE(386), 1, + sym_field_declaration_list, + STATE(1875), 1, + sym_type_parameters, + STATE(2271), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58499] = 5, - ACTIONS(4284), 1, - anon_sym_RPAREN, - ACTIONS(4287), 1, - anon_sym_COMMA, - STATE(1961), 1, - aux_sym_parameters_repeat1, + [58442] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(2768), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3644), 2, anon_sym_COLON, anon_sym_PIPE, - [58517] = 5, - ACTIONS(792), 1, + ACTIONS(4095), 2, anon_sym_RPAREN, - ACTIONS(4290), 1, anon_sym_COMMA, - STATE(2066), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3447), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58535] = 4, - ACTIONS(284), 1, + [58459] = 7, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4100), 1, anon_sym_LBRACE, - ACTIONS(4292), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1142), 3, - sym_if_expression, - sym_if_let_expression, + ACTIONS(4269), 1, + anon_sym_SEMI, + ACTIONS(4271), 1, + anon_sym_DASH_GT, + STATE(357), 1, sym_block, - [58551] = 5, - ACTIONS(4294), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, - anon_sym_COMMA, - STATE(2148), 1, - aux_sym_parameters_repeat1, + STATE(1995), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + [58482] = 7, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(3926), 1, anon_sym_COLON, - anon_sym_PIPE, - [58569] = 4, - ACTIONS(4196), 1, - anon_sym_COLON_COLON, + STATE(488), 1, + sym_declaration_list, + STATE(1802), 1, + sym_trait_bounds, + STATE(2216), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4150), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58585] = 6, - ACTIONS(3923), 1, - anon_sym_COLON, - ACTIONS(4298), 1, + [58505] = 7, + ACTIONS(3544), 1, + anon_sym_EQ, + ACTIONS(3546), 1, anon_sym_COMMA, - ACTIONS(4300), 1, + ACTIONS(3548), 1, anon_sym_GT, - STATE(1948), 1, + ACTIONS(3926), 1, + anon_sym_COLON, + STATE(2126), 1, sym_trait_bounds, - STATE(2104), 1, + STATE(2129), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58605] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2920), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58617] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3686), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2982), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [58631] = 4, - ACTIONS(4304), 1, - anon_sym_as, - ACTIONS(4306), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4302), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [58647] = 4, - ACTIONS(4196), 1, + [58528] = 4, + ACTIONS(4273), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, + ACTIONS(3467), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4308), 2, + ACTIONS(2622), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [58663] = 4, - ACTIONS(4255), 1, + [58545] = 5, + ACTIONS(4157), 1, + anon_sym_COLON, + ACTIONS(4273), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, + ACTIONS(3467), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4150), 2, + ACTIONS(4155), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58679] = 5, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(4310), 1, - anon_sym_COMMA, - STATE(2114), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3447), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58697] = 2, + [58564] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4312), 5, + ACTIONS(4275), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58709] = 2, + [58576] = 4, + ACTIONS(4279), 1, + anon_sym_as, + ACTIONS(4281), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4314), 5, + ACTIONS(4277), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [58721] = 2, + [58592] = 5, + ACTIONS(3652), 1, + anon_sym_COLON, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3760), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4316), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [58733] = 2, + ACTIONS(3574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58610] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4318), 5, + ACTIONS(3051), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - [58745] = 2, + [58622] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2924), 5, + ACTIONS(3047), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58757] = 4, - ACTIONS(4322), 1, - anon_sym_as, - ACTIONS(4324), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4320), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [58634] = 5, + ACTIONS(4283), 1, + anon_sym_RPAREN, + ACTIONS(4285), 1, anon_sym_COMMA, - [58773] = 4, - ACTIONS(4255), 1, - anon_sym_COLON_COLON, + STATE(1978), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4308), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58789] = 2, + anon_sym_COLON, + anon_sym_PIPE, + [58652] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4326), 5, + ACTIONS(4287), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58801] = 2, + [58664] = 6, + ACTIONS(3926), 1, + anon_sym_COLON, + ACTIONS(4205), 1, + anon_sym_COMMA, + ACTIONS(4207), 1, + anon_sym_GT, + STATE(2133), 1, + aux_sym_type_parameters_repeat1, + STATE(2138), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4328), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [58813] = 2, + [58684] = 4, + ACTIONS(4279), 1, + anon_sym_as, + ACTIONS(4289), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4330), 5, + ACTIONS(4277), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [58825] = 2, + [58700] = 4, + ACTIONS(4279), 1, + anon_sym_as, + ACTIONS(4291), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4332), 5, + ACTIONS(4277), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [58837] = 4, - ACTIONS(4322), 1, - anon_sym_as, - ACTIONS(4334), 1, + [58716] = 6, + ACTIONS(3453), 1, anon_sym_COLON_COLON, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(3542), 1, + anon_sym_COLON, + STATE(1382), 1, + sym_type_arguments, + STATE(2016), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4320), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [58853] = 2, + [58736] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4336), 5, + ACTIONS(4293), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58865] = 4, - ACTIONS(4322), 1, + [58748] = 4, + ACTIONS(4297), 1, anon_sym_as, - ACTIONS(4338), 1, + ACTIONS(4299), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4320), 3, + ACTIONS(4295), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [58881] = 4, - ACTIONS(15), 1, + [58764] = 4, + ACTIONS(582), 1, anon_sym_LBRACE, - ACTIONS(4340), 1, + ACTIONS(4301), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(167), 3, + STATE(232), 3, sym_if_expression, sym_if_let_expression, sym_block, - [58897] = 4, - ACTIONS(2982), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3686), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4273), 2, + [58780] = 6, + ACTIONS(4303), 1, anon_sym_RPAREN, + ACTIONS(4305), 1, + anon_sym_COLON, + ACTIONS(4307), 1, anon_sym_COMMA, - [58913] = 2, + ACTIONS(4309), 1, + anon_sym_PIPE, + STATE(2007), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4342), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [58925] = 2, + [58800] = 4, + ACTIONS(4273), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3016), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58937] = 2, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4311), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58816] = 4, + ACTIONS(4313), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4344), 5, + ACTIONS(2996), 2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(3762), 2, anon_sym_COMMA, - [58949] = 2, + anon_sym_PIPE, + [58832] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4346), 5, - anon_sym_SEMI, + ACTIONS(3967), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + anon_sym_LBRACK, + [58844] = 5, + ACTIONS(790), 1, + anon_sym_RPAREN, + ACTIONS(4316), 1, anon_sym_COMMA, - [58961] = 2, + STATE(2103), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4348), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [58973] = 5, - ACTIONS(3560), 1, - anon_sym_EQ, - ACTIONS(3923), 1, + ACTIONS(3457), 2, anon_sym_COLON, - STATE(1965), 1, - sym_trait_bounds, + anon_sym_PIPE, + [58862] = 5, + ACTIONS(4318), 1, + anon_sym_RPAREN, + ACTIONS(4321), 1, + anon_sym_COMMA, + STATE(1978), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4350), 2, - anon_sym_COMMA, - anon_sym_GT, - [58991] = 6, - ACTIONS(2580), 1, + ACTIONS(3457), 2, + anon_sym_COLON, + anon_sym_PIPE, + [58880] = 6, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3453), 1, anon_sym_COLON_COLON, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - STATE(960), 1, - sym_parameters, - STATE(1366), 1, + STATE(1382), 1, sym_type_arguments, + STATE(1402), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59011] = 4, - ACTIONS(594), 1, - anon_sym_LBRACE, - ACTIONS(4352), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(239), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [59027] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4354), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [59039] = 4, - ACTIONS(4356), 1, - anon_sym_DQUOTE, - STATE(1889), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4358), 2, - sym__string_content, - sym_escape_sequence, - [59054] = 5, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4164), 1, - anon_sym_LBRACE, - STATE(275), 1, - sym_enum_variant_list, - STATE(2161), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59071] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1099), 1, - sym_line_comment, - ACTIONS(4360), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4362), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59086] = 4, - ACTIONS(3664), 1, - anon_sym_BANG, - ACTIONS(3666), 1, - anon_sym_COLON_COLON, + [58900] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59101] = 4, - ACTIONS(3923), 1, + ACTIONS(3762), 2, anon_sym_COLON, - STATE(1948), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4364), 2, + anon_sym_PIPE, + ACTIONS(2996), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_GT, - [59116] = 4, - ACTIONS(3540), 1, + [58914] = 4, + ACTIONS(4273), 1, anon_sym_COLON_COLON, - ACTIONS(3960), 1, - anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, + ACTIONS(3467), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59131] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1099), 1, - sym_line_comment, - ACTIONS(4367), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4369), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59146] = 4, - ACTIONS(4371), 1, - anon_sym_DQUOTE, - STATE(1812), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4373), 2, - sym__string_content, - sym_escape_sequence, - [59161] = 4, - ACTIONS(3664), 1, + ACTIONS(4159), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58930] = 5, + ACTIONS(3652), 1, + anon_sym_COLON, + ACTIONS(3654), 1, anon_sym_BANG, - ACTIONS(3758), 1, + ACTIONS(3656), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, + ACTIONS(3574), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59176] = 5, - ACTIONS(4375), 1, - anon_sym_LPAREN, - ACTIONS(4377), 1, - anon_sym_LBRACE, - ACTIONS(4379), 1, - anon_sym_LBRACK, - STATE(178), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59193] = 5, - ACTIONS(3439), 1, - anon_sym_LPAREN, - ACTIONS(3826), 1, - anon_sym_LT, - STATE(1672), 1, - sym_parameters, - STATE(2288), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59210] = 3, + [58948] = 5, + ACTIONS(798), 1, + anon_sym_RPAREN, + ACTIONS(4324), 1, + anon_sym_COMMA, + STATE(2036), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3457), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4381), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59223] = 5, - ACTIONS(3439), 1, - anon_sym_LPAREN, - ACTIONS(3826), 1, - anon_sym_LT, - STATE(1662), 1, - sym_parameters, - STATE(2269), 1, - sym_type_parameters, + [58966] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59240] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1099), 1, - sym_line_comment, - ACTIONS(4383), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4385), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59255] = 5, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3043), 5, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(310), 1, - sym_declaration_list, - STATE(2208), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59272] = 5, - ACTIONS(3439), 1, - anon_sym_LPAREN, - ACTIONS(3826), 1, - anon_sym_LT, - STATE(1710), 1, - sym_parameters, - STATE(2289), 1, - sym_type_parameters, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58978] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59289] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1099), 1, - sym_line_comment, - ACTIONS(4387), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4389), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59304] = 5, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(4391), 1, + ACTIONS(3039), 5, anon_sym_SEMI, - ACTIONS(4393), 1, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(4395), 1, + anon_sym_where, anon_sym_EQ, + [58990] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59321] = 3, - ACTIONS(4397), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4399), 3, - sym_self, - sym_super, - sym_crate, - [59334] = 3, - ACTIONS(4401), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4403), 3, - sym_self, - sym_super, - sym_crate, - [59347] = 5, - ACTIONS(3439), 1, - anon_sym_LPAREN, - ACTIONS(3826), 1, - anon_sym_LT, - STATE(1653), 1, - sym_parameters, - STATE(2319), 1, - sym_type_parameters, + ACTIONS(4326), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [59002] = 4, + ACTIONS(4149), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59364] = 5, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4405), 1, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4159), 2, anon_sym_RPAREN, - ACTIONS(4407), 1, anon_sym_COMMA, - STATE(1910), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [59018] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59381] = 4, - ACTIONS(3540), 1, - anon_sym_COLON_COLON, - ACTIONS(3662), 1, + ACTIONS(2860), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [59030] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59396] = 4, - ACTIONS(4154), 1, - anon_sym_COLON_COLON, - ACTIONS(4223), 1, + ACTIONS(2948), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [59042] = 4, + ACTIONS(4149), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, + ACTIONS(3467), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59411] = 5, - ACTIONS(4278), 1, - anon_sym_COLON, - ACTIONS(4409), 1, - anon_sym_COMMA, - ACTIONS(4411), 1, - anon_sym_PIPE, - STATE(1944), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59428] = 5, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4413), 1, + ACTIONS(4311), 2, anon_sym_RPAREN, - ACTIONS(4415), 1, anon_sym_COMMA, - STATE(2007), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59445] = 4, - ACTIONS(4417), 1, - anon_sym_DQUOTE, - STATE(1889), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4358), 2, - sym__string_content, - sym_escape_sequence, - [59460] = 5, - ACTIONS(4375), 1, - anon_sym_LPAREN, - ACTIONS(4377), 1, - anon_sym_LBRACE, - ACTIONS(4379), 1, - anon_sym_LBRACK, - STATE(169), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59477] = 5, - ACTIONS(4419), 1, - anon_sym_LPAREN, - ACTIONS(4421), 1, + [59058] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4423), 1, - anon_sym_LBRACK, - STATE(832), 1, - sym_delim_token_tree, + ACTIONS(4328), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59494] = 4, - ACTIONS(4425), 1, - anon_sym_DQUOTE, - STATE(1889), 1, - aux_sym_string_literal_repeat1, + STATE(1058), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [59074] = 5, + ACTIONS(4330), 1, + anon_sym_RPAREN, + ACTIONS(4332), 1, + anon_sym_COMMA, + STATE(2136), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4358), 2, - sym__string_content, - sym_escape_sequence, - [59509] = 5, - ACTIONS(4419), 1, - anon_sym_LPAREN, - ACTIONS(4421), 1, - anon_sym_LBRACE, - ACTIONS(4423), 1, - anon_sym_LBRACK, - STATE(835), 1, - sym_delim_token_tree, + ACTIONS(3457), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59092] = 6, + ACTIONS(3926), 1, + anon_sym_COLON, + ACTIONS(4334), 1, + anon_sym_COMMA, + ACTIONS(4336), 1, + anon_sym_GT, + STATE(2104), 1, + aux_sym_type_parameters_repeat1, + STATE(2138), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59526] = 4, - ACTIONS(4427), 1, - anon_sym_DQUOTE, - STATE(1815), 1, - aux_sym_string_literal_repeat1, + [59112] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4429), 2, - sym__string_content, - sym_escape_sequence, - [59541] = 5, - ACTIONS(3824), 1, + ACTIONS(4338), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(4164), 1, - anon_sym_LBRACE, - STATE(353), 1, - sym_enum_variant_list, - STATE(2339), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59558] = 5, - ACTIONS(4431), 1, - anon_sym_LPAREN, - ACTIONS(4433), 1, - anon_sym_LBRACE, - ACTIONS(4435), 1, - anon_sym_LBRACK, - STATE(1422), 1, - sym_delim_token_tree, + anon_sym_EQ, + anon_sym_COMMA, + [59124] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59575] = 5, - ACTIONS(2508), 1, - anon_sym_PLUS, - ACTIONS(4437), 1, + ACTIONS(4340), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(4439), 1, - anon_sym_GT, - STATE(1942), 1, - aux_sym_type_arguments_repeat1, + [59136] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59592] = 5, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4437), 1, + ACTIONS(4342), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(4439), 1, - anon_sym_GT, - STATE(1942), 1, - aux_sym_type_arguments_repeat1, + [59148] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59609] = 5, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(4441), 1, - anon_sym_RPAREN, - ACTIONS(4443), 1, + ACTIONS(4344), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(2101), 1, - aux_sym_tuple_pattern_repeat1, + [59160] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59626] = 5, - ACTIONS(4431), 1, - anon_sym_LPAREN, - ACTIONS(4433), 1, + ACTIONS(4346), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [59172] = 4, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(4435), 1, - anon_sym_LBRACK, - STATE(1403), 1, - sym_delim_token_tree, + ACTIONS(4348), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59643] = 4, - ACTIONS(4445), 1, - anon_sym_DQUOTE, - STATE(1786), 1, - aux_sym_string_literal_repeat1, + STATE(76), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [59188] = 4, + ACTIONS(2996), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4447), 2, - sym__string_content, - sym_escape_sequence, - [59658] = 5, - ACTIONS(4282), 1, + ACTIONS(3762), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4449), 1, - anon_sym_RBRACK, - ACTIONS(4451), 1, + ACTIONS(4313), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2126), 1, - aux_sym_tuple_pattern_repeat1, + [59204] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59675] = 3, + ACTIONS(4350), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [59216] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4453), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59688] = 4, - ACTIONS(4457), 1, + ACTIONS(4352), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(1827), 1, - aux_sym_where_clause_repeat1, + [59228] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4455), 2, + ACTIONS(4354), 5, anon_sym_SEMI, - anon_sym_LBRACE, - [59703] = 5, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(3824), 1, + anon_sym_RBRACE, anon_sym_where, - STATE(1010), 1, - sym_declaration_list, - STATE(2262), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [59240] = 3, + ACTIONS(4356), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59720] = 5, - ACTIONS(4085), 1, + ACTIONS(2724), 4, anon_sym_PLUS, - ACTIONS(4460), 1, - anon_sym_RPAREN, - ACTIONS(4462), 1, anon_sym_COMMA, - STATE(1989), 1, - aux_sym_tuple_type_repeat1, + anon_sym_GT, + anon_sym_COLON_COLON, + [59254] = 5, + ACTIONS(3544), 1, + anon_sym_EQ, + ACTIONS(3926), 1, + anon_sym_COLON, + STATE(2126), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59737] = 5, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(3824), 1, - anon_sym_where, - STATE(976), 1, - sym_declaration_list, - STATE(2240), 1, - sym_where_clause, + ACTIONS(4358), 2, + anon_sym_COMMA, + anon_sym_GT, + [59272] = 6, + ACTIONS(2580), 1, + anon_sym_LPAREN, + ACTIONS(3453), 1, + anon_sym_COLON_COLON, + ACTIONS(3455), 1, + anon_sym_LT2, + STATE(965), 1, + sym_parameters, + STATE(1382), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59754] = 5, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(3824), 1, + [59292] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4360), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - STATE(947), 1, - sym_declaration_list, - STATE(2235), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [59304] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59771] = 5, - ACTIONS(3824), 1, + ACTIONS(4362), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3830), 1, + anon_sym_EQ, + anon_sym_COMMA, + [59316] = 5, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4141), 1, anon_sym_LBRACE, - STATE(307), 1, - sym_declaration_list, - STATE(2305), 1, + STATE(398), 1, + sym_enum_variant_list, + STATE(2246), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59788] = 5, - ACTIONS(4251), 1, + [59333] = 4, + ACTIONS(4366), 1, anon_sym_COMMA, - ACTIONS(4253), 1, - anon_sym_GT, - ACTIONS(4464), 1, - anon_sym_EQ, - STATE(1952), 1, - aux_sym_type_parameters_repeat1, + STATE(1792), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59805] = 5, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(4364), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(391), 1, - sym_declaration_list, - STATE(2242), 1, - sym_where_clause, + [59348] = 4, + ACTIONS(3572), 1, + anon_sym_COLON_COLON, + ACTIONS(3947), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59363] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59822] = 5, - ACTIONS(4276), 1, + ACTIONS(4369), 3, anon_sym_RPAREN, - ACTIONS(4280), 1, anon_sym_COMMA, - ACTIONS(4282), 1, anon_sym_PIPE, - STATE(1994), 1, - aux_sym_tuple_pattern_repeat1, + [59376] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59839] = 5, - ACTIONS(790), 1, + ACTIONS(4371), 3, anon_sym_RPAREN, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4310), 1, anon_sym_COMMA, - STATE(2114), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, + anon_sym_PIPE, + [59389] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1016), 1, sym_line_comment, - [59856] = 3, - ACTIONS(4085), 1, + ACTIONS(4373), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4375), 3, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59404] = 5, + ACTIONS(4205), 1, + anon_sym_COMMA, + ACTIONS(4207), 1, + anon_sym_GT, + ACTIONS(4377), 1, + anon_sym_EQ, + STATE(2133), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4466), 3, + [59421] = 5, + ACTIONS(790), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59869] = 3, - ACTIONS(4085), 1, + ACTIONS(4102), 1, anon_sym_PLUS, + ACTIONS(4316), 1, + anon_sym_COMMA, + STATE(2103), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4468), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59882] = 5, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3836), 1, + [59438] = 5, + ACTIONS(3862), 1, anon_sym_LBRACE, - STATE(842), 1, + ACTIONS(3864), 1, + anon_sym_where, + STATE(980), 1, sym_field_declaration_list, STATE(2204), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59899] = 5, - ACTIONS(3824), 1, + [59455] = 5, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4090), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(817), 1, + STATE(941), 1, sym_enum_variant_list, STATE(2199), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59916] = 5, - ACTIONS(3800), 1, + [59472] = 5, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - STATE(818), 1, + STATE(862), 1, sym_declaration_list, STATE(2191), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59933] = 5, + [59489] = 5, ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3830), 1, + STATE(293), 1, + sym_declaration_list, + STATE(2319), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59506] = 5, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(263), 1, + ACTIONS(3864), 1, + anon_sym_where, + STATE(311), 1, sym_declaration_list, - STATE(2231), 1, + STATE(2296), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59950] = 5, - ACTIONS(3800), 1, + [59523] = 5, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - STATE(802), 1, + STATE(814), 1, sym_declaration_list, STATE(2186), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59967] = 4, - ACTIONS(3664), 1, + [59540] = 5, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + STATE(913), 1, + sym_declaration_list, + STATE(2235), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59557] = 5, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + STATE(830), 1, + sym_declaration_list, + STATE(2240), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59574] = 4, + ACTIONS(3654), 1, anon_sym_BANG, - ACTIONS(3672), 1, + ACTIONS(3656), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, + ACTIONS(3574), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59982] = 5, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(401), 1, - sym_declaration_list, - STATE(2154), 1, - sym_where_clause, + [59589] = 5, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4379), 1, + anon_sym_RPAREN, + ACTIONS(4381), 1, + anon_sym_COMMA, + STATE(2097), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59999] = 5, - ACTIONS(3439), 1, + [59606] = 5, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - STATE(1364), 1, + STATE(1378), 1, sym_type_arguments, - STATE(1380), 1, + STATE(1401), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60016] = 5, - ACTIONS(3646), 1, + [59623] = 5, + ACTIONS(3708), 1, anon_sym_PIPE, - ACTIONS(4470), 1, + ACTIONS(4383), 1, anon_sym_SEMI, - ACTIONS(4472), 1, + ACTIONS(4385), 1, anon_sym_COLON, - ACTIONS(4474), 1, + ACTIONS(4387), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60033] = 5, - ACTIONS(2508), 1, + [59640] = 5, + ACTIONS(2465), 1, anon_sym_PLUS, - ACTIONS(4476), 1, + ACTIONS(4389), 1, anon_sym_COMMA, - ACTIONS(4478), 1, + ACTIONS(4391), 1, anon_sym_GT, - STATE(2142), 1, + STATE(2151), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60050] = 5, - ACTIONS(4085), 1, + [59657] = 5, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4476), 1, + ACTIONS(4389), 1, anon_sym_COMMA, - ACTIONS(4478), 1, + ACTIONS(4391), 1, anon_sym_GT, - STATE(2142), 1, + STATE(2151), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60067] = 5, - ACTIONS(4085), 1, + [59674] = 5, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4294), 1, + ACTIONS(4330), 1, anon_sym_RPAREN, - ACTIONS(4296), 1, + ACTIONS(4332), 1, anon_sym_COMMA, - STATE(2148), 1, + STATE(2136), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60084] = 5, - ACTIONS(4085), 1, + [59691] = 5, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4480), 1, + ACTIONS(4393), 1, anon_sym_RPAREN, - ACTIONS(4482), 1, + ACTIONS(4395), 1, anon_sym_COMMA, - STATE(2003), 1, + STATE(1940), 1, aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60101] = 5, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(3830), 1, + [59708] = 5, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(429), 1, + ACTIONS(3864), 1, + anon_sym_where, + STATE(842), 1, sym_declaration_list, - STATE(2272), 1, + STATE(2262), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60118] = 5, + [59725] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3457), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4397), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59738] = 5, ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3836), 1, + STATE(487), 1, + sym_declaration_list, + STATE(2228), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59755] = 4, + ACTIONS(3926), 1, + anon_sym_COLON, + STATE(2138), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4399), 2, + anon_sym_COMMA, + anon_sym_GT, + [59770] = 5, + ACTIONS(3862), 1, anon_sym_LBRACE, - STATE(920), 1, + ACTIONS(3864), 1, + anon_sym_where, + STATE(923), 1, sym_field_declaration_list, - STATE(2188), 1, + STATE(2183), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60135] = 5, - ACTIONS(4085), 1, + [59787] = 5, + ACTIONS(2465), 1, anon_sym_PLUS, - ACTIONS(4269), 1, + ACTIONS(4401), 1, + anon_sym_COMMA, + ACTIONS(4403), 1, + anon_sym_GT, + STATE(2015), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59804] = 5, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4401), 1, + anon_sym_COMMA, + ACTIONS(4403), 1, + anon_sym_GT, + STATE(2015), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59821] = 5, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4405), 1, anon_sym_RPAREN, - ACTIONS(4271), 1, + ACTIONS(4407), 1, anon_sym_COMMA, - STATE(1961), 1, - aux_sym_parameters_repeat1, + STATE(2084), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60152] = 5, - ACTIONS(3923), 1, + [59838] = 5, + ACTIONS(3926), 1, anon_sym_COLON, - ACTIONS(4484), 1, + ACTIONS(4409), 1, anon_sym_SEMI, - ACTIONS(4486), 1, + ACTIONS(4411), 1, anon_sym_EQ, - STATE(2554), 1, + STATE(2558), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60169] = 5, - ACTIONS(3800), 1, + [59855] = 5, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3824), 1, + ACTIONS(3864), 1, anon_sym_where, - STATE(926), 1, + STATE(931), 1, sym_declaration_list, - STATE(2198), 1, + STATE(2193), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60186] = 5, - ACTIONS(3646), 1, + [59872] = 5, + ACTIONS(3708), 1, anon_sym_PIPE, - ACTIONS(4488), 1, + ACTIONS(4413), 1, anon_sym_SEMI, - ACTIONS(4490), 1, + ACTIONS(4415), 1, anon_sym_COLON, - ACTIONS(4492), 1, + ACTIONS(4417), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60203] = 5, + [59889] = 4, + ACTIONS(3926), 1, + anon_sym_COLON, + STATE(2138), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4419), 2, + anon_sym_COMMA, + anon_sym_GT, + [59904] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1016), 1, + sym_line_comment, + ACTIONS(4422), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4424), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59919] = 5, ACTIONS(2580), 1, anon_sym_LPAREN, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_LT2, - STATE(955), 1, + STATE(964), 1, sym_parameters, - STATE(1364), 1, + STATE(1378), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60220] = 4, - ACTIONS(3923), 1, - anon_sym_COLON, - STATE(1948), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4494), 2, - anon_sym_COMMA, - anon_sym_GT, - [60235] = 5, - ACTIONS(3923), 1, + [59936] = 5, + ACTIONS(3926), 1, anon_sym_COLON, - ACTIONS(4496), 1, + ACTIONS(4426), 1, anon_sym_SEMI, - ACTIONS(4498), 1, + ACTIONS(4428), 1, anon_sym_EQ, - STATE(2580), 1, + STATE(2501), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60252] = 5, - ACTIONS(4298), 1, + [59953] = 5, + ACTIONS(4334), 1, anon_sym_COMMA, - ACTIONS(4300), 1, + ACTIONS(4336), 1, anon_sym_GT, - ACTIONS(4464), 1, + ACTIONS(4377), 1, anon_sym_EQ, STATE(2104), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60269] = 5, - ACTIONS(4085), 1, + [59970] = 5, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4500), 1, + ACTIONS(4430), 1, anon_sym_RPAREN, - ACTIONS(4502), 1, + ACTIONS(4432), 1, anon_sym_COMMA, STATE(2100), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60286] = 5, - ACTIONS(3824), 1, + [59987] = 5, + ACTIONS(4309), 1, + anon_sym_PIPE, + ACTIONS(4434), 1, + anon_sym_RBRACK, + ACTIONS(4436), 1, + anon_sym_COMMA, + STATE(2002), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60004] = 4, + ACTIONS(4438), 1, + anon_sym_DQUOTE, + STATE(1840), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4440), 2, + sym__string_content, + sym_escape_sequence, + [60019] = 5, + ACTIONS(4442), 1, + anon_sym_LPAREN, + ACTIONS(4444), 1, + anon_sym_LBRACE, + ACTIONS(4446), 1, + anon_sym_LBRACK, + STATE(1424), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60036] = 5, + ACTIONS(4303), 1, + anon_sym_RPAREN, + ACTIONS(4307), 1, + anon_sym_COMMA, + ACTIONS(4309), 1, + anon_sym_PIPE, + STATE(2007), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60053] = 5, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4090), 1, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(1014), 1, + STATE(1019), 1, sym_enum_variant_list, - STATE(2237), 1, + STATE(2233), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60303] = 5, - ACTIONS(4003), 1, + [60070] = 4, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3760), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60085] = 5, + ACTIONS(4309), 1, + anon_sym_PIPE, + ACTIONS(4448), 1, + anon_sym_RPAREN, + ACTIONS(4450), 1, + anon_sym_COMMA, + STATE(1997), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60102] = 4, + ACTIONS(4452), 1, + anon_sym_DQUOTE, + STATE(1863), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4454), 2, + sym__string_content, + sym_escape_sequence, + [60117] = 4, + ACTIONS(4456), 1, + anon_sym_DQUOTE, + STATE(1889), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4458), 2, + sym__string_content, + sym_escape_sequence, + [60132] = 5, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + STATE(452), 1, + sym_declaration_list, + STATE(2224), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60149] = 5, + ACTIONS(4442), 1, anon_sym_LPAREN, - ACTIONS(4005), 1, + ACTIONS(4444), 1, anon_sym_LBRACE, - ACTIONS(4007), 1, + ACTIONS(4446), 1, + anon_sym_LBRACK, + STATE(1427), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60166] = 5, + ACTIONS(3995), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, + anon_sym_LBRACE, + ACTIONS(3999), 1, anon_sym_LBRACK, - STATE(1055), 1, + STATE(1063), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60320] = 4, - ACTIONS(4504), 1, + [60183] = 4, + ACTIONS(4460), 1, anon_sym_DQUOTE, STATE(1889), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4358), 2, + ACTIONS(4458), 2, sym__string_content, sym_escape_sequence, - [60335] = 5, - ACTIONS(3307), 1, + [60198] = 5, + ACTIONS(3325), 1, anon_sym_LBRACE, - ACTIONS(4506), 1, + ACTIONS(4462), 1, sym_identifier, - ACTIONS(4508), 1, + ACTIONS(4464), 1, anon_sym_STAR, - STATE(2090), 1, + STATE(1957), 1, sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60352] = 5, - ACTIONS(4282), 1, + [60215] = 4, + ACTIONS(4468), 1, + anon_sym_COMMA, + STATE(1846), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4466), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [60230] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4466), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [60243] = 5, + ACTIONS(4309), 1, anon_sym_PIPE, - ACTIONS(4510), 1, + ACTIONS(4471), 1, anon_sym_SEMI, - ACTIONS(4512), 1, + ACTIONS(4473), 1, anon_sym_COLON, - ACTIONS(4514), 1, + ACTIONS(4475), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60369] = 4, - ACTIONS(4518), 1, - anon_sym_COMMA, - STATE(1868), 1, - aux_sym_tuple_pattern_repeat1, + [60260] = 5, + ACTIONS(798), 1, + anon_sym_RPAREN, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4324), 1, + anon_sym_COMMA, + STATE(2036), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60277] = 5, + ACTIONS(3325), 1, + anon_sym_LBRACE, + ACTIONS(4145), 1, + sym_identifier, + ACTIONS(4147), 1, + anon_sym_STAR, + STATE(1953), 1, + sym_use_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60294] = 5, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_where, + STATE(489), 1, + sym_declaration_list, + STATE(2217), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60311] = 4, + ACTIONS(4477), 1, + anon_sym_DQUOTE, + STATE(1856), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4479), 2, + sym__string_content, + sym_escape_sequence, + [60326] = 5, + ACTIONS(4481), 1, + anon_sym_LPAREN, + ACTIONS(4483), 1, + anon_sym_LBRACE, + ACTIONS(4485), 1, + anon_sym_LBRACK, + STATE(1045), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60343] = 5, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4283), 1, + anon_sym_RPAREN, + ACTIONS(4285), 1, + anon_sym_COMMA, + STATE(1978), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60360] = 5, + ACTIONS(3995), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, + anon_sym_LBRACE, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(1099), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4516), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [60384] = 5, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3923), 1, - anon_sym_COLON, - STATE(1364), 1, - sym_type_arguments, - STATE(1957), 1, - sym_trait_bounds, + [60377] = 4, + ACTIONS(4487), 1, + anon_sym_DQUOTE, + STATE(1889), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60401] = 3, - ACTIONS(4282), 1, - anon_sym_PIPE, + ACTIONS(4458), 2, + sym__string_content, + sym_escape_sequence, + [60392] = 5, + ACTIONS(4481), 1, + anon_sym_LPAREN, + ACTIONS(4483), 1, + anon_sym_LBRACE, + ACTIONS(4485), 1, + anon_sym_LBRACK, + STATE(1044), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4516), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [60414] = 5, - ACTIONS(3307), 1, - anon_sym_LBRACE, - ACTIONS(4124), 1, - sym_identifier, - ACTIONS(4126), 1, - anon_sym_STAR, - STATE(2049), 1, - sym_use_list, + [60409] = 4, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3794), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60431] = 4, - ACTIONS(4523), 1, + ACTIONS(3574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60424] = 4, + ACTIONS(4489), 1, anon_sym_COMMA, - STATE(1876), 1, + STATE(1792), 1, aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4521), 2, + ACTIONS(2904), 2, anon_sym_SEMI, anon_sym_LBRACE, - [60446] = 5, - ACTIONS(4003), 1, + [60439] = 4, + ACTIONS(4491), 1, + anon_sym_DQUOTE, + STATE(1844), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4493), 2, + sym__string_content, + sym_escape_sequence, + [60454] = 5, + ACTIONS(4495), 1, anon_sym_LPAREN, - ACTIONS(4005), 1, + ACTIONS(4497), 1, anon_sym_LBRACE, - ACTIONS(4007), 1, + ACTIONS(4499), 1, anon_sym_LBRACK, - STATE(1131), 1, + STATE(143), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60463] = 5, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4290), 1, - anon_sym_COMMA, - STATE(2066), 1, - aux_sym_parameters_repeat1, + [60471] = 5, + ACTIONS(4089), 1, + anon_sym_LPAREN, + ACTIONS(4501), 1, + anon_sym_RBRACK, + ACTIONS(4503), 1, + anon_sym_EQ, + STATE(2467), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60480] = 4, - ACTIONS(4525), 1, + [60488] = 4, + ACTIONS(4505), 1, anon_sym_DQUOTE, - STATE(1865), 1, + STATE(1889), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4527), 2, + ACTIONS(4458), 2, sym__string_content, sym_escape_sequence, - [60495] = 4, - ACTIONS(4529), 1, + [60503] = 5, + ACTIONS(4305), 1, + anon_sym_COLON, + ACTIONS(4507), 1, anon_sym_COMMA, - STATE(1827), 1, - aux_sym_where_clause_repeat1, + ACTIONS(4509), 1, + anon_sym_PIPE, + STATE(1944), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2960), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60510] = 5, - ACTIONS(4204), 1, + [60520] = 4, + ACTIONS(3572), 1, + anon_sym_COLON_COLON, + ACTIONS(4511), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60535] = 4, + ACTIONS(4157), 1, + anon_sym_COLON, + ACTIONS(4163), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60550] = 5, + ACTIONS(4495), 1, anon_sym_LPAREN, - ACTIONS(4531), 1, - anon_sym_RBRACK, - ACTIONS(4533), 1, - anon_sym_EQ, - STATE(2346), 1, - sym_meta_arguments, + ACTIONS(4497), 1, + anon_sym_LBRACE, + ACTIONS(4499), 1, + anon_sym_LBRACK, + STATE(92), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60527] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, + [60567] = 5, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(4515), 1, + anon_sym_LBRACE, + ACTIONS(4517), 1, + anon_sym_LBRACK, + STATE(2111), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4535), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [60540] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, + [60584] = 5, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(3926), 1, + anon_sym_COLON, + STATE(1378), 1, + sym_type_arguments, + STATE(1971), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4537), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [60553] = 4, - ACTIONS(3540), 1, + [60601] = 4, + ACTIONS(3572), 1, anon_sym_COLON_COLON, - ACTIONS(4539), 1, + ACTIONS(3652), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, + ACTIONS(3574), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60568] = 4, - ACTIONS(4152), 1, + [60616] = 5, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3866), 1, + anon_sym_LT, + STATE(1733), 1, + sym_parameters, + STATE(2288), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60633] = 4, + ACTIONS(4521), 1, + anon_sym_COMMA, + STATE(1859), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4519), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [60648] = 4, + ACTIONS(4161), 1, anon_sym_COLON, - ACTIONS(4154), 1, + ACTIONS(4163), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, + ACTIONS(3467), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60583] = 3, - ACTIONS(4541), 1, + [60663] = 3, + ACTIONS(4523), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3646), 3, + ACTIONS(3708), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [60596] = 5, - ACTIONS(3822), 1, - anon_sym_LBRACE, - ACTIONS(3824), 1, + [60676] = 5, + ACTIONS(3864), 1, anon_sym_where, - STATE(420), 1, + ACTIONS(3888), 1, + anon_sym_LBRACE, + STATE(301), 1, sym_field_declaration_list, - STATE(2160), 1, + STATE(2237), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60613] = 5, - ACTIONS(4543), 1, + [60693] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1016), 1, + sym_line_comment, + ACTIONS(4525), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4527), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60708] = 5, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(4545), 1, - anon_sym_LBRACE, - ACTIONS(4547), 1, - anon_sym_LBRACK, - STATE(2121), 1, - sym_token_tree, + ACTIONS(3866), 1, + anon_sym_LT, + STATE(1709), 1, + sym_parameters, + STATE(2190), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60725] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60630] = 4, + ACTIONS(3457), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4529), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60738] = 4, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(4549), 1, + ACTIONS(4531), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1138), 2, + STATE(1147), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [60645] = 5, - ACTIONS(3439), 1, + [60753] = 5, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(3888), 1, + anon_sym_LBRACE, + STATE(475), 1, + sym_field_declaration_list, + STATE(2177), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60770] = 5, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3826), 1, + ACTIONS(3866), 1, anon_sym_LT, - STATE(1716), 1, + STATE(1719), 1, sym_parameters, - STATE(2166), 1, + STATE(2320), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60662] = 5, - ACTIONS(3439), 1, + [60787] = 5, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3826), 1, + ACTIONS(3866), 1, anon_sym_LT, - STATE(1675), 1, + STATE(1713), 1, sym_parameters, - STATE(2182), 1, + STATE(2259), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60679] = 5, - ACTIONS(3822), 1, - anon_sym_LBRACE, - ACTIONS(3824), 1, + [60804] = 5, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4533), 1, + anon_sym_RPAREN, + ACTIONS(4535), 1, + anon_sym_COMMA, + STATE(2040), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60821] = 5, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3866), 1, + anon_sym_LT, + STATE(1659), 1, + sym_parameters, + STATE(2316), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60838] = 5, + ACTIONS(3864), 1, anon_sym_where, - STATE(283), 1, - sym_field_declaration_list, - STATE(2173), 1, + ACTIONS(4141), 1, + anon_sym_LBRACE, + STATE(481), 1, + sym_enum_variant_list, + STATE(2172), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60696] = 4, + [60855] = 3, + ACTIONS(4537), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4539), 3, + sym_self, + sym_super, + sym_crate, + [60868] = 3, + ACTIONS(4541), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4543), 3, + sym_self, + sym_super, + sym_crate, + [60881] = 5, + ACTIONS(4309), 1, + anon_sym_PIPE, + ACTIONS(4545), 1, + anon_sym_SEMI, + ACTIONS(4547), 1, + anon_sym_COLON, + ACTIONS(4549), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60898] = 4, ACTIONS(4551), 1, anon_sym_DQUOTE, STATE(1889), 1, @@ -123101,5470 +123783,5493 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4553), 2, sym__string_content, sym_escape_sequence, - [60711] = 4, - ACTIONS(4556), 1, - anon_sym_RBRACE, - ACTIONS(4558), 1, - anon_sym_COMMA, - STATE(1890), 1, - aux_sym_field_declaration_list_repeat1, + [60913] = 5, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3866), 1, + anon_sym_LT, + STATE(1691), 1, + sym_parameters, + STATE(2279), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60725] = 2, + [60930] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4561), 3, + ACTIONS(4556), 3, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [60735] = 4, - ACTIONS(284), 1, + anon_sym_PIPE, + [60943] = 5, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4085), 1, - anon_sym_PLUS, - STATE(1078), 1, - sym_block, + ACTIONS(3864), 1, + anon_sym_where, + STATE(344), 1, + sym_declaration_list, + STATE(2289), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60749] = 4, - ACTIONS(4563), 1, - sym_identifier, - ACTIONS(4565), 1, - anon_sym_ref, - ACTIONS(4567), 1, - sym_mutable_specifier, + [60960] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60763] = 4, - ACTIONS(3854), 1, - anon_sym_RBRACE, - ACTIONS(4569), 1, + ACTIONS(4558), 3, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2153), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, + anon_sym_PIPE, + [60973] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1016), 1, sym_line_comment, - [60777] = 3, - ACTIONS(4573), 1, + ACTIONS(4560), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4562), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60988] = 3, + ACTIONS(4305), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4571), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [60789] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4575), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4564), 2, anon_sym_COMMA, - [60799] = 4, - ACTIONS(4577), 1, - sym_identifier, - ACTIONS(4579), 1, - anon_sym_ref, - ACTIONS(4581), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60813] = 4, - ACTIONS(4583), 1, - sym_identifier, - ACTIONS(4585), 1, - anon_sym_ref, - ACTIONS(4587), 1, - sym_mutable_specifier, + anon_sym_PIPE, + [61000] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60827] = 4, - ACTIONS(4589), 1, - anon_sym_RPAREN, - ACTIONS(4591), 1, + ACTIONS(4566), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61010] = 4, + ACTIONS(4564), 1, + anon_sym_PIPE, + ACTIONS(4568), 1, anon_sym_COMMA, - STATE(1899), 1, - aux_sym_meta_arguments_repeat1, + STATE(1897), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60841] = 4, - ACTIONS(4083), 1, + [61024] = 4, + ACTIONS(4100), 1, anon_sym_LBRACE, - ACTIONS(4594), 1, + ACTIONS(4571), 1, anon_sym_SEMI, - STATE(328), 1, + STATE(278), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60855] = 4, - ACTIONS(3826), 1, - anon_sym_LT, - ACTIONS(4596), 1, - anon_sym_EQ, - STATE(2551), 1, - sym_type_parameters, + [61038] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4102), 1, + anon_sym_PLUS, + STATE(1101), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60869] = 4, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4598), 1, - anon_sym_SEMI, - ACTIONS(4600), 1, - anon_sym_EQ, + [61052] = 4, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(4573), 1, + anon_sym_GT, + STATE(2322), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60883] = 4, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(4602), 1, - anon_sym_SEMI, - STATE(288), 1, - sym_block, + [61066] = 4, + ACTIONS(3854), 1, + anon_sym_RBRACE, + ACTIONS(4575), 1, + anon_sym_COMMA, + STATE(2066), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60897] = 2, + [61080] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4604), 3, + ACTIONS(4577), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [60907] = 2, + [61090] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2371), 3, + ACTIONS(2429), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [60917] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, + [61100] = 4, + ACTIONS(4100), 1, + anon_sym_LBRACE, + ACTIONS(4579), 1, + anon_sym_SEMI, + STATE(379), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4606), 2, - anon_sym_RBRACE, + [61114] = 4, + ACTIONS(3173), 1, + anon_sym_RPAREN, + ACTIONS(4581), 1, anon_sym_COMMA, - [60929] = 3, - ACTIONS(4282), 1, - anon_sym_PIPE, + STATE(2094), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4608), 2, - anon_sym_RBRACE, + [61128] = 4, + ACTIONS(556), 1, + anon_sym_RBRACK, + ACTIONS(4583), 1, anon_sym_COMMA, - [60941] = 4, + STATE(2075), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61142] = 4, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(4585), 1, + anon_sym_SEMI, + STATE(364), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61156] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4085), 1, + ACTIONS(4102), 1, anon_sym_PLUS, - STATE(1130), 1, + STATE(1070), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60955] = 4, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4610), 1, - anon_sym_SEMI, - STATE(2570), 1, - sym_where_clause, + [61170] = 3, + ACTIONS(4589), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60969] = 4, - ACTIONS(4612), 1, - anon_sym_RPAREN, - ACTIONS(4614), 1, + ACTIONS(4587), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1984), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [61182] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60983] = 3, - ACTIONS(4085), 1, + ACTIONS(4591), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [61192] = 4, + ACTIONS(4102), 1, anon_sym_PLUS, + ACTIONS(4593), 1, + anon_sym_SEMI, + ACTIONS(4595), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4616), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60995] = 3, - ACTIONS(4618), 1, - sym_identifier, + [61206] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4620), 2, - anon_sym_default, - anon_sym_union, - [61007] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, + ACTIONS(4597), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61216] = 4, + ACTIONS(4599), 1, + anon_sym_for, + ACTIONS(4601), 1, + anon_sym_loop, + ACTIONS(4603), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4622), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61019] = 3, - ACTIONS(4148), 1, - anon_sym_COLON_COLON, + [61230] = 4, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(4605), 1, + anon_sym_SEMI, + STATE(403), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61031] = 4, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4624), 1, + [61244] = 4, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(4607), 1, anon_sym_SEMI, - ACTIONS(4626), 1, - anon_sym_EQ, + STATE(422), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61045] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, + [61258] = 4, + ACTIONS(4100), 1, + anon_sym_LBRACE, + ACTIONS(4609), 1, + anon_sym_SEMI, + STATE(307), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4628), 2, + [61272] = 4, + ACTIONS(3870), 1, + anon_sym_RBRACE, + ACTIONS(4611), 1, anon_sym_COMMA, - anon_sym_GT, - [61057] = 2, + STATE(1920), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4630), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61067] = 4, - ACTIONS(3826), 1, + [61286] = 4, + ACTIONS(3866), 1, anon_sym_LT, - ACTIONS(4632), 1, + ACTIONS(4613), 1, anon_sym_EQ, - STATE(2501), 1, + STATE(2380), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61081] = 4, - ACTIONS(4634), 1, - anon_sym_for, - ACTIONS(4636), 1, - anon_sym_loop, - ACTIONS(4638), 1, - anon_sym_while, + [61300] = 4, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(3766), 1, + anon_sym_LBRACE, + STATE(1378), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61095] = 3, - ACTIONS(4196), 1, - anon_sym_COLON_COLON, + [61314] = 4, + ACTIONS(4615), 1, + anon_sym_RBRACE, + ACTIONS(4617), 1, + anon_sym_COMMA, + STATE(1920), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61107] = 3, - ACTIONS(4282), 1, - anon_sym_PIPE, + [61328] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4640), 2, + ACTIONS(4620), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [61119] = 4, - ACTIONS(3830), 1, + [61338] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4642), 1, + ACTIONS(4622), 1, anon_sym_SEMI, - STATE(333), 1, + STATE(328), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61133] = 4, - ACTIONS(2626), 1, - anon_sym_LBRACE, - ACTIONS(4644), 1, - anon_sym_COLON_COLON, - STATE(1077), 1, - sym_field_initializer_list, + [61352] = 4, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4624), 1, + anon_sym_SEMI, + STATE(2563), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61147] = 4, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(4646), 1, - anon_sym_SEMI, - STATE(305), 1, - sym_block, + [61366] = 3, + ACTIONS(4273), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61161] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4648), 1, - anon_sym_move, - STATE(1100), 1, - sym_block, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61378] = 3, + ACTIONS(4626), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61175] = 4, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(4650), 1, - anon_sym_SEMI, - STATE(389), 1, - sym_block, + ACTIONS(4628), 2, + anon_sym_default, + anon_sym_union, + [61390] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61189] = 4, - ACTIONS(542), 1, - anon_sym_RBRACK, - ACTIONS(4652), 1, + ACTIONS(4630), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2023), 1, - aux_sym_array_expression_repeat1, + [61402] = 4, + ACTIONS(3325), 1, + anon_sym_LBRACE, + ACTIONS(4632), 1, + sym_identifier, + STATE(1993), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61203] = 4, - ACTIONS(3591), 1, + [61416] = 4, + ACTIONS(3616), 1, anon_sym_COLON_COLON, - ACTIONS(3975), 1, + ACTIONS(3938), 1, anon_sym_BANG, - ACTIONS(4654), 1, + ACTIONS(4634), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61217] = 4, - ACTIONS(384), 1, - anon_sym_RPAREN, - ACTIONS(3239), 1, - anon_sym_COMMA, - STATE(2129), 1, - aux_sym_arguments_repeat1, + [61430] = 4, + ACTIONS(2642), 1, + anon_sym_LBRACE, + ACTIONS(4636), 1, + anon_sym_COLON_COLON, + STATE(1133), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61231] = 3, - ACTIONS(3213), 1, + [61444] = 3, + ACTIONS(4163), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4656), 2, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61456] = 4, + ACTIONS(4638), 1, anon_sym_RPAREN, + ACTIONS(4640), 1, anon_sym_COMMA, - [61243] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4658), 1, - anon_sym_SEMI, - STATE(436), 1, - sym_declaration_list, + STATE(1931), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61257] = 4, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4660), 1, - anon_sym_SEMI, - ACTIONS(4662), 1, - anon_sym_EQ, + [61470] = 4, + ACTIONS(4643), 1, + anon_sym_RBRACE, + ACTIONS(4645), 1, + anon_sym_COMMA, + STATE(1961), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61271] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, + [61484] = 4, + ACTIONS(4100), 1, + anon_sym_LBRACE, + ACTIONS(4647), 1, + anon_sym_SEMI, + STATE(431), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4381), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61283] = 4, - ACTIONS(4664), 1, - anon_sym_COMMA, - ACTIONS(4667), 1, - anon_sym_PIPE, - STATE(1934), 1, - aux_sym_closure_parameters_repeat1, + [61498] = 4, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(4145), 1, + sym_identifier, + STATE(2538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61297] = 4, - ACTIONS(4669), 1, + [61512] = 4, + ACTIONS(4649), 1, anon_sym_RBRACE, - ACTIONS(4671), 1, + ACTIONS(4651), 1, anon_sym_COMMA, - STATE(1894), 1, + STATE(1901), 1, aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61311] = 3, - ACTIONS(4675), 1, + [61526] = 3, + ACTIONS(4655), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4673), 2, + ACTIONS(4653), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61323] = 3, - ACTIONS(3540), 1, - anon_sym_COLON_COLON, + [61538] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61335] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_SEMI, - STATE(434), 1, - sym_declaration_list, + ACTIONS(4657), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61550] = 4, + ACTIONS(3542), 1, + anon_sym_COLON, + ACTIONS(3552), 1, + anon_sym_COLON_COLON, + STATE(1971), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61349] = 3, - ACTIONS(4154), 1, - anon_sym_COLON_COLON, + [61564] = 4, + ACTIONS(384), 1, + anon_sym_RPAREN, + ACTIONS(3231), 1, + anon_sym_COMMA, + STATE(2121), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61361] = 3, - ACTIONS(4679), 1, - sym_identifier, + [61578] = 4, + ACTIONS(4659), 1, + anon_sym_RPAREN, + ACTIONS(4661), 1, + anon_sym_COMMA, + STATE(1931), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4681), 2, - anon_sym_default, - anon_sym_union, - [61373] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3760), 1, - anon_sym_LBRACE, - STATE(1364), 1, - sym_type_arguments, + [61592] = 4, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4663), 1, + anon_sym_as, + ACTIONS(4665), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61387] = 4, - ACTIONS(930), 1, - anon_sym_GT, - ACTIONS(4683), 1, - anon_sym_COMMA, - STATE(2034), 1, - aux_sym_type_arguments_repeat1, + [61606] = 4, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(4667), 1, + sym_identifier, + STATE(2538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61401] = 3, - ACTIONS(4278), 1, - anon_sym_COLON, + [61620] = 3, + ACTIONS(3572), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4667), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [61413] = 4, - ACTIONS(4409), 1, + ACTIONS(3574), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61632] = 4, + ACTIONS(4507), 1, anon_sym_COMMA, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_PIPE, - STATE(1934), 1, + STATE(1897), 1, aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61427] = 2, + [61646] = 4, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(4667), 1, + sym_identifier, + STATE(2528), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2359), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [61437] = 4, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(4687), 1, - anon_sym_GT, - STATE(2306), 1, - sym_lifetime, + [61660] = 4, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(4145), 1, + sym_identifier, + STATE(2528), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61451] = 2, + [61674] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4689), 3, + ACTIONS(4671), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [61461] = 2, + [61684] = 4, + ACTIONS(3542), 1, + anon_sym_COLON, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, + STATE(1971), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4691), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [61471] = 4, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(4693), 1, - anon_sym_SEMI, - STATE(476), 1, - sym_block, + [61698] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61485] = 3, - ACTIONS(4697), 1, - anon_sym_EQ, + ACTIONS(4529), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61710] = 3, + ACTIONS(3195), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4695), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61497] = 4, - ACTIONS(4699), 1, - anon_sym_RBRACE, - ACTIONS(4701), 1, + ACTIONS(4673), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1954), 1, - aux_sym_enum_variant_list_repeat2, + [61722] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4675), 1, + anon_sym_move, + STATE(1061), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61511] = 4, - ACTIONS(3838), 1, - anon_sym_GT, - ACTIONS(4703), 1, + [61736] = 4, + ACTIONS(4507), 1, anon_sym_COMMA, - STATE(2044), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4677), 1, + anon_sym_PIPE, + STATE(1944), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61525] = 4, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(4705), 1, - anon_sym_SEMI, - STATE(396), 1, - sym_block, + [61750] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61539] = 4, - ACTIONS(3844), 1, + ACTIONS(4679), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4707), 1, anon_sym_COMMA, - STATE(2105), 1, - aux_sym_enum_variant_list_repeat2, + [61760] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61553] = 4, - ACTIONS(3844), 1, + ACTIONS(4681), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4707), 1, anon_sym_COMMA, - STATE(2088), 1, - aux_sym_enum_variant_list_repeat2, + [61770] = 4, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4683), 1, + anon_sym_SEMI, + ACTIONS(4685), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61567] = 4, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(4709), 1, - anon_sym_EQ_GT, - ACTIONS(4711), 1, - anon_sym_if, + [61784] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61581] = 2, + ACTIONS(4687), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61794] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4713), 3, + ACTIONS(4689), 3, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, - [61591] = 2, + [61804] = 4, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(4691), 1, + sym_identifier, + STATE(2538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4715), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [61601] = 4, - ACTIONS(3552), 1, - anon_sym_COLON_COLON, - ACTIONS(3558), 1, - anon_sym_COLON, - STATE(1957), 1, - sym_trait_bounds, + [61818] = 3, + ACTIONS(4695), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61615] = 4, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(4717), 1, - anon_sym_SEMI, - STATE(483), 1, - sym_block, + ACTIONS(4693), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61830] = 4, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(4691), 1, + sym_identifier, + STATE(2528), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61629] = 4, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(4290), 1, + [61844] = 4, + ACTIONS(3828), 1, + anon_sym_RBRACE, + ACTIONS(4697), 1, anon_sym_COMMA, - STATE(2075), 1, - aux_sym_parameters_repeat1, + STATE(2081), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61643] = 2, + [61858] = 4, + ACTIONS(2588), 1, + anon_sym_LT2, + ACTIONS(4699), 1, + sym_identifier, + STATE(1048), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4719), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61653] = 4, - ACTIONS(3866), 1, - anon_sym_GT, - ACTIONS(4721), 1, - anon_sym_COMMA, - STATE(2044), 1, - aux_sym_type_parameters_repeat1, + [61872] = 4, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(4701), 1, + anon_sym_SEMI, + STATE(462), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61667] = 4, - ACTIONS(3187), 1, - anon_sym_RPAREN, - ACTIONS(4723), 1, - anon_sym_COMMA, - STATE(1899), 1, - aux_sym_meta_arguments_repeat1, + [61886] = 4, + ACTIONS(4703), 1, + sym_identifier, + ACTIONS(4705), 1, + anon_sym_ref, + ACTIONS(4707), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61681] = 2, + [61900] = 4, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(4709), 1, + sym_identifier, + STATE(2538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4725), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [61691] = 4, - ACTIONS(3830), 1, + [61914] = 4, + ACTIONS(4100), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4711), 1, anon_sym_SEMI, - STATE(364), 1, - sym_declaration_list, + STATE(331), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61705] = 4, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(4290), 1, + [61928] = 4, + ACTIONS(3828), 1, + anon_sym_RBRACE, + ACTIONS(4697), 1, anon_sym_COMMA, - STATE(2066), 1, - aux_sym_parameters_repeat1, + STATE(2074), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61719] = 4, - ACTIONS(594), 1, + [61942] = 4, + ACTIONS(582), 1, anon_sym_LBRACE, - ACTIONS(4729), 1, + ACTIONS(4713), 1, anon_sym_move, - STATE(241), 1, + STATE(234), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61733] = 2, + [61956] = 4, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(4709), 1, + sym_identifier, + STATE(2528), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4731), 3, + [61970] = 3, + ACTIONS(4102), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61743] = 4, - ACTIONS(4733), 1, - anon_sym_for, - ACTIONS(4735), 1, - anon_sym_loop, - ACTIONS(4737), 1, - anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61757] = 2, + ACTIONS(4715), 2, + anon_sym_COMMA, + anon_sym_GT, + [61982] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4739), 3, + ACTIONS(4717), 3, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61767] = 4, - ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4741), 1, - anon_sym_SEMI, - STATE(292), 1, - sym_declaration_list, + anon_sym_COMMA, + [61992] = 4, + ACTIONS(4719), 1, + anon_sym_COMMA, + ACTIONS(4722), 1, + anon_sym_GT, + STATE(1972), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61781] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4743), 1, - anon_sym_SEMI, - STATE(345), 1, - sym_declaration_list, + [62006] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61795] = 4, - ACTIONS(3842), 1, + ACTIONS(4724), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4745), 1, anon_sym_COMMA, - STATE(1890), 1, - aux_sym_field_declaration_list_repeat1, + [62016] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61809] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4747), 3, + ACTIONS(4726), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [61819] = 2, + [62026] = 4, + ACTIONS(3377), 1, + anon_sym_RBRACE, + ACTIONS(4728), 1, + anon_sym_COMMA, + STATE(2141), 1, + aux_sym_use_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62040] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4749), 3, + ACTIONS(4730), 3, anon_sym_LPAREN, anon_sym_RBRACK, anon_sym_EQ, - [61829] = 3, - ACTIONS(4255), 1, - anon_sym_COLON_COLON, + [62050] = 4, + ACTIONS(4283), 1, + anon_sym_RPAREN, + ACTIONS(4285), 1, + anon_sym_COMMA, + STATE(1978), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61841] = 4, - ACTIONS(4751), 1, + [62064] = 4, + ACTIONS(798), 1, + anon_sym_RPAREN, + ACTIONS(4324), 1, anon_sym_COMMA, - ACTIONS(4753), 1, - anon_sym_GT, - STATE(2016), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2044), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61855] = 4, - ACTIONS(3307), 1, - anon_sym_LBRACE, - ACTIONS(4755), 1, - sym_identifier, - STATE(1993), 1, - sym_use_list, + [62078] = 4, + ACTIONS(2465), 1, + anon_sym_PLUS, + ACTIONS(4732), 1, + sym_mutable_specifier, + ACTIONS(4734), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61869] = 4, - ACTIONS(2626), 1, - anon_sym_LBRACE, - ACTIONS(4757), 1, - anon_sym_COLON_COLON, - STATE(1077), 1, - sym_field_initializer_list, + [62092] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61883] = 4, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(4759), 1, + ACTIONS(4736), 3, anon_sym_SEMI, - STATE(332), 1, - sym_block, + anon_sym_RBRACE, + anon_sym_COMMA, + [62102] = 4, + ACTIONS(798), 1, + anon_sym_RPAREN, + ACTIONS(4324), 1, + anon_sym_COMMA, + STATE(2036), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61897] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, + [62116] = 4, + ACTIONS(4738), 1, + sym_identifier, + ACTIONS(4740), 1, + anon_sym_await, + ACTIONS(4742), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4761), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61909] = 4, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4763), 1, - anon_sym_SEMI, - ACTIONS(4765), 1, - anon_sym_EQ, + [62130] = 4, + ACTIONS(2588), 1, + anon_sym_LT2, + ACTIONS(4699), 1, + sym_identifier, + STATE(1000), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61923] = 4, - ACTIONS(4767), 1, - anon_sym_RPAREN, - ACTIONS(4769), 1, - anon_sym_COMMA, - STATE(1984), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [62144] = 4, + ACTIONS(4744), 1, + anon_sym_for, + ACTIONS(4746), 1, + anon_sym_loop, + ACTIONS(4748), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61937] = 4, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4772), 1, - anon_sym_as, - ACTIONS(4774), 1, + [62158] = 4, + ACTIONS(4750), 1, + anon_sym_COMMA, + ACTIONS(4753), 1, anon_sym_GT, + STATE(1985), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61951] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4776), 1, - sym_identifier, - STATE(2416), 1, - sym_type_arguments, + [62172] = 4, + ACTIONS(2642), 1, + anon_sym_LBRACE, + ACTIONS(4755), 1, + anon_sym_COLON_COLON, + STATE(1133), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61965] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4776), 1, - sym_identifier, - STATE(2507), 1, - sym_type_arguments, + [62186] = 4, + ACTIONS(4100), 1, + anon_sym_LBRACE, + ACTIONS(4757), 1, + anon_sym_SEMI, + STATE(395), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61979] = 4, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - ACTIONS(3558), 1, - anon_sym_COLON, - STATE(1957), 1, - sym_trait_bounds, + [62200] = 3, + ACTIONS(2465), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61993] = 4, - ACTIONS(2552), 1, - anon_sym_RPAREN, - ACTIONS(4778), 1, + ACTIONS(4753), 2, anon_sym_COMMA, - STATE(2014), 1, - aux_sym_tuple_type_repeat1, + anon_sym_GT, + [62212] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62007] = 4, - ACTIONS(4409), 1, + ACTIONS(4753), 2, anon_sym_COMMA, - ACTIONS(4780), 1, - anon_sym_PIPE, - STATE(1944), 1, - aux_sym_closure_parameters_repeat1, + anon_sym_GT, + [62224] = 4, + ACTIONS(4100), 1, + anon_sym_LBRACE, + ACTIONS(4759), 1, + anon_sym_SEMI, + STATE(360), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62021] = 3, - ACTIONS(4085), 1, + [62238] = 3, + ACTIONS(4102), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4782), 2, - anon_sym_RPAREN, + ACTIONS(4761), 2, anon_sym_COMMA, - [62033] = 4, - ACTIONS(3800), 1, + anon_sym_GT, + [62250] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4784), 1, + ACTIONS(4763), 1, anon_sym_SEMI, - STATE(1028), 1, + STATE(1034), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62047] = 2, + [62264] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4786), 3, + ACTIONS(4765), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62057] = 4, - ACTIONS(2459), 1, - anon_sym_RPAREN, - ACTIONS(4788), 1, + [62274] = 4, + ACTIONS(4767), 1, + anon_sym_RBRACE, + ACTIONS(4769), 1, anon_sym_COMMA, - STATE(1868), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1994), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62071] = 4, - ACTIONS(4790), 1, - anon_sym_RBRACE, - ACTIONS(4792), 1, - anon_sym_COMMA, - STATE(2012), 1, - aux_sym_struct_pattern_repeat1, + [62288] = 4, + ACTIONS(4100), 1, + anon_sym_LBRACE, + ACTIONS(4772), 1, + anon_sym_SEMI, + STATE(419), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62085] = 3, - ACTIONS(4796), 1, - anon_sym_COLON, + [62302] = 4, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(4774), 1, + anon_sym_SEMI, + STATE(491), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4794), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62097] = 4, - ACTIONS(4079), 1, - anon_sym_RBRACE, - ACTIONS(4798), 1, + [62316] = 4, + ACTIONS(2453), 1, + anon_sym_RPAREN, + ACTIONS(4776), 1, anon_sym_COMMA, - STATE(2043), 1, - aux_sym_struct_pattern_repeat1, + STATE(1846), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62111] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4800), 1, - sym_identifier, - STATE(2416), 1, - sym_type_arguments, + [62330] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62125] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4800), 1, - sym_identifier, - STATE(2507), 1, - sym_type_arguments, + ACTIONS(4778), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62342] = 3, + ACTIONS(4149), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62139] = 4, - ACTIONS(2588), 1, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62354] = 4, + ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(4802), 1, + ACTIONS(4780), 1, sym_identifier, - STATE(838), 1, + STATE(2538), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62153] = 4, - ACTIONS(4804), 1, + [62368] = 4, + ACTIONS(4782), 1, anon_sym_RBRACE, - ACTIONS(4806), 1, + ACTIONS(4784), 1, anon_sym_COMMA, - STATE(2112), 1, + STATE(1975), 1, aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62167] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4124), 1, - sym_identifier, - STATE(2416), 1, - sym_type_arguments, + [62382] = 4, + ACTIONS(2445), 1, + anon_sym_RBRACK, + ACTIONS(4786), 1, + anon_sym_COMMA, + STATE(1846), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62181] = 4, - ACTIONS(4808), 1, - anon_sym_RPAREN, - ACTIONS(4810), 1, - anon_sym_COMMA, - STATE(1984), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [62396] = 4, + ACTIONS(4788), 1, + anon_sym_for, + ACTIONS(4790), 1, + anon_sym_loop, + ACTIONS(4792), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62195] = 4, + [62410] = 4, ACTIONS(2588), 1, anon_sym_LT2, - ACTIONS(4812), 1, + ACTIONS(4794), 1, sym_identifier, - STATE(1209), 1, + STATE(1219), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62209] = 4, - ACTIONS(4814), 1, + [62424] = 4, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(4780), 1, sym_identifier, - ACTIONS(4816), 1, - anon_sym_ref, - ACTIONS(4818), 1, - sym_mutable_specifier, + STATE(2528), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62223] = 4, - ACTIONS(4083), 1, + [62438] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4820), 1, + ACTIONS(4796), 1, anon_sym_SEMI, - STATE(346), 1, - sym_block, + STATE(460), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62237] = 4, - ACTIONS(4822), 1, + [62452] = 4, + ACTIONS(2459), 1, anon_sym_RPAREN, - ACTIONS(4824), 1, + ACTIONS(4798), 1, anon_sym_COMMA, - STATE(1984), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1846), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62251] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4826), 1, - sym_identifier, - STATE(2416), 1, - sym_type_arguments, + [62466] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62265] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4826), 1, - sym_identifier, - STATE(2507), 1, - sym_type_arguments, + ACTIONS(4800), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62478] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62279] = 4, + ACTIONS(4802), 2, + anon_sym_COMMA, + anon_sym_GT, + [62490] = 4, ACTIONS(2588), 1, anon_sym_LT2, - ACTIONS(4812), 1, + ACTIONS(4794), 1, sym_identifier, - STATE(1210), 1, + STATE(1217), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62293] = 2, + [62504] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4828), 3, + ACTIONS(4804), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62303] = 4, - ACTIONS(4051), 1, - anon_sym_RBRACE, - ACTIONS(4830), 1, - anon_sym_COMMA, - STATE(2043), 1, - aux_sym_struct_pattern_repeat1, + [62514] = 4, + ACTIONS(4100), 1, + anon_sym_LBRACE, + ACTIONS(4806), 1, + anon_sym_SEMI, + STATE(442), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62317] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, + [62528] = 3, + ACTIONS(4810), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4832), 2, - anon_sym_RPAREN, + ACTIONS(4808), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [62329] = 4, - ACTIONS(4832), 1, - anon_sym_RPAREN, - ACTIONS(4834), 1, + [62540] = 4, + ACTIONS(4085), 1, + anon_sym_RBRACE, + ACTIONS(4812), 1, anon_sym_COMMA, - STATE(2014), 1, - aux_sym_tuple_type_repeat1, + STATE(1994), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62343] = 4, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, + [62554] = 4, + ACTIONS(930), 1, anon_sym_GT, - STATE(2306), 1, - sym_lifetime, + ACTIONS(4814), 1, + anon_sym_COMMA, + STATE(1985), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62357] = 4, - ACTIONS(4837), 1, - anon_sym_GT, - ACTIONS(4839), 1, - anon_sym_COMMA, - STATE(2029), 1, - aux_sym_for_lifetimes_repeat1, + [62568] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62371] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4841), 1, - sym_identifier, - STATE(2416), 1, - sym_type_arguments, + ACTIONS(4816), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [62578] = 4, + ACTIONS(4047), 1, + anon_sym_RBRACE, + ACTIONS(4818), 1, + anon_sym_COMMA, + STATE(1994), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62385] = 3, - ACTIONS(4085), 1, + [62592] = 3, + ACTIONS(4102), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4843), 2, + ACTIONS(4820), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [62397] = 4, - ACTIONS(3830), 1, + [62604] = 4, + ACTIONS(4100), 1, anon_sym_LBRACE, - ACTIONS(4845), 1, + ACTIONS(4822), 1, anon_sym_SEMI, - STATE(457), 1, - sym_declaration_list, + STATE(409), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62411] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - anon_sym_SEMI, - STATE(448), 1, - sym_declaration_list, + [62618] = 3, + ACTIONS(4127), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62425] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4841), 1, - sym_identifier, - STATE(2507), 1, - sym_type_arguments, + ACTIONS(3467), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62630] = 4, + ACTIONS(4820), 1, + anon_sym_RPAREN, + ACTIONS(4824), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62439] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, + [62644] = 4, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(4827), 1, + anon_sym_GT, + STATE(2322), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4849), 2, - anon_sym_COMMA, - anon_sym_GT, - [62451] = 4, - ACTIONS(3329), 1, - anon_sym_RBRACK, - ACTIONS(4851), 1, - anon_sym_COMMA, - STATE(2023), 1, - aux_sym_array_expression_repeat1, + [62658] = 4, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(4829), 1, + anon_sym_SEMI, + STATE(2510), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62465] = 4, - ACTIONS(3445), 1, + [62672] = 4, + ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(4854), 1, + ACTIONS(4831), 1, sym_identifier, - STATE(2507), 1, + STATE(2528), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62479] = 4, - ACTIONS(4856), 1, - sym_identifier, - ACTIONS(4858), 1, - anon_sym_await, - ACTIONS(4860), 1, - sym_integer_literal, + [62686] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62493] = 4, - ACTIONS(2588), 1, - anon_sym_LT2, - ACTIONS(4802), 1, + ACTIONS(4833), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62698] = 3, + ACTIONS(4835), 1, sym_identifier, - STATE(860), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62507] = 4, - ACTIONS(4862), 1, - anon_sym_for, - ACTIONS(4864), 1, - anon_sym_loop, - ACTIONS(4866), 1, - anon_sym_while, + ACTIONS(4837), 2, + anon_sym_default, + anon_sym_union, + [62710] = 4, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(4839), 1, + anon_sym_SEMI, + STATE(975), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62521] = 4, - ACTIONS(3445), 1, + [62724] = 4, + ACTIONS(3455), 1, anon_sym_LT2, - ACTIONS(4854), 1, + ACTIONS(4831), 1, sym_identifier, - STATE(2416), 1, + STATE(2538), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62535] = 4, - ACTIONS(4868), 1, - anon_sym_COMMA, - ACTIONS(4871), 1, - anon_sym_GT, - STATE(2029), 1, - aux_sym_for_lifetimes_repeat1, + [62738] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62549] = 4, - ACTIONS(4085), 1, + ACTIONS(4841), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [62748] = 4, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4873), 1, + ACTIONS(4843), 1, anon_sym_SEMI, - ACTIONS(4875), 1, + ACTIONS(4845), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62563] = 4, - ACTIONS(3824), 1, + [62762] = 4, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4877), 1, + ACTIONS(4847), 1, anon_sym_SEMI, - STATE(2574), 1, + STATE(2529), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62577] = 4, - ACTIONS(4298), 1, + [62776] = 4, + ACTIONS(4334), 1, anon_sym_COMMA, - ACTIONS(4300), 1, + ACTIONS(4336), 1, anon_sym_GT, STATE(2104), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62591] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4124), 1, - sym_identifier, - STATE(2507), 1, - sym_type_arguments, + [62790] = 3, + ACTIONS(4851), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62605] = 4, - ACTIONS(4879), 1, + ACTIONS(4849), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4882), 1, - anon_sym_GT, - STATE(2034), 1, - aux_sym_type_arguments_repeat1, + [62802] = 4, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(4853), 1, + anon_sym_SEMI, + STATE(962), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62619] = 3, - ACTIONS(2508), 1, - anon_sym_PLUS, + [62816] = 4, + ACTIONS(4855), 1, + anon_sym_RBRACE, + ACTIONS(4857), 1, + anon_sym_COMMA, + STATE(2014), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4882), 2, + [62830] = 4, + ACTIONS(796), 1, + anon_sym_RPAREN, + ACTIONS(4859), 1, anon_sym_COMMA, - anon_sym_GT, - [62631] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, + STATE(2044), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4882), 2, - anon_sym_COMMA, + [62844] = 4, + ACTIONS(4827), 1, anon_sym_GT, - [62643] = 3, - ACTIONS(4464), 1, - anon_sym_EQ, + ACTIONS(4861), 1, + anon_sym_COMMA, + STATE(1972), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4494), 2, - anon_sym_COMMA, - anon_sym_GT, - [62655] = 4, - ACTIONS(3800), 1, + [62858] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4884), 1, + ACTIONS(4863), 1, anon_sym_SEMI, - STATE(963), 1, + STATE(967), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62669] = 3, - ACTIONS(4085), 1, + [62872] = 3, + ACTIONS(4102), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4886), 2, + ACTIONS(4865), 2, anon_sym_COMMA, anon_sym_GT, - [62681] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4888), 1, - sym_identifier, - STATE(2416), 1, - sym_type_arguments, + [62884] = 4, + ACTIONS(4867), 1, + anon_sym_RPAREN, + ACTIONS(4869), 1, + anon_sym_COMMA, + STATE(1931), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62695] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4888), 1, - sym_identifier, - STATE(2507), 1, - sym_type_arguments, + [62898] = 4, + ACTIONS(4871), 1, + anon_sym_RBRACE, + ACTIONS(4873), 1, + anon_sym_COMMA, + STATE(2088), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62709] = 4, - ACTIONS(4437), 1, - anon_sym_COMMA, - ACTIONS(4439), 1, - anon_sym_GT, - STATE(1942), 1, - aux_sym_type_arguments_repeat1, + [62912] = 4, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + anon_sym_SEMI, + STATE(951), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62723] = 4, - ACTIONS(4890), 1, - anon_sym_RBRACE, - ACTIONS(4892), 1, - anon_sym_COMMA, - STATE(2043), 1, - aux_sym_struct_pattern_repeat1, + [62926] = 3, + ACTIONS(3195), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62737] = 4, - ACTIONS(4494), 1, - anon_sym_GT, - ACTIONS(4895), 1, + ACTIONS(4311), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62938] = 4, + ACTIONS(4397), 1, + anon_sym_RPAREN, + ACTIONS(4877), 1, anon_sym_COMMA, STATE(2044), 1, - aux_sym_type_parameters_repeat1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62751] = 4, - ACTIONS(3824), 1, + [62952] = 4, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(4898), 1, + ACTIONS(4880), 1, anon_sym_SEMI, - STATE(2543), 1, + STATE(2549), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62765] = 4, - ACTIONS(4900), 1, - anon_sym_RBRACE, - ACTIONS(4902), 1, - anon_sym_COMMA, - STATE(2073), 1, - aux_sym_field_declaration_list_repeat1, + [62966] = 4, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(4882), 1, + anon_sym_SEMI, + STATE(940), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62779] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, + [62980] = 4, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(4884), 1, + sym_identifier, + STATE(2538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4904), 2, - anon_sym_COMMA, - anon_sym_GT, - [62791] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4906), 1, + [62994] = 4, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4886), 1, anon_sym_SEMI, - STATE(438), 1, - sym_declaration_list, + ACTIONS(4888), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62805] = 2, + [63008] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4908), 3, - anon_sym_SEMI, + ACTIONS(4890), 2, anon_sym_RBRACE, anon_sym_COMMA, - [62815] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4910), 1, - anon_sym_SEMI, - STATE(392), 1, - sym_declaration_list, + [63020] = 3, + ACTIONS(4377), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62829] = 4, - ACTIONS(4085), 1, + ACTIONS(4399), 2, + anon_sym_COMMA, + anon_sym_GT, + [63032] = 3, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4912), 1, - anon_sym_SEMI, - ACTIONS(4914), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62843] = 2, + ACTIONS(4397), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63044] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4916), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4892), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [62853] = 4, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(4918), 1, + [63056] = 4, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(4894), 1, anon_sym_SEMI, - STATE(2506), 1, - sym_where_clause, + STATE(905), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62867] = 4, - ACTIONS(4269), 1, - anon_sym_RPAREN, - ACTIONS(4271), 1, + [63070] = 4, + ACTIONS(4401), 1, anon_sym_COMMA, - STATE(1961), 1, - aux_sym_parameters_repeat1, + ACTIONS(4403), 1, + anon_sym_GT, + STATE(2015), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62881] = 4, - ACTIONS(3830), 1, + [63084] = 4, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(4884), 1, + sym_identifier, + STATE(2528), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63098] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4920), 1, + ACTIONS(4896), 1, anon_sym_SEMI, - STATE(485), 1, + STATE(440), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62895] = 4, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4922), 1, + [63112] = 4, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(4898), 1, anon_sym_SEMI, - ACTIONS(4924), 1, - anon_sym_EQ, + STATE(892), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62909] = 3, - ACTIONS(4282), 1, - anon_sym_PIPE, + [63126] = 4, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(4900), 1, + anon_sym_SEMI, + STATE(887), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4926), 2, - anon_sym_RBRACE, + [63140] = 4, + ACTIONS(4399), 1, + anon_sym_GT, + ACTIONS(4902), 1, anon_sym_COMMA, - [62921] = 4, - ACTIONS(4104), 1, - anon_sym_LBRACE, - ACTIONS(4928), 1, - anon_sym_SEMI, - STATE(866), 1, - sym_block, + STATE(2059), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62935] = 4, - ACTIONS(4104), 1, + [63154] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(4905), 1, anon_sym_SEMI, - STATE(870), 1, - sym_block, + STATE(493), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62949] = 4, - ACTIONS(2508), 1, + [63168] = 3, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4932), 1, - sym_mutable_specifier, - ACTIONS(4934), 1, - sym_self, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62963] = 3, - ACTIONS(4938), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4936), 2, - anon_sym_RBRACE, + ACTIONS(4907), 2, anon_sym_COMMA, - [62975] = 4, - ACTIONS(3800), 1, + anon_sym_GT, + [63180] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4940), 1, + ACTIONS(4909), 1, anon_sym_SEMI, - STATE(906), 1, + STATE(911), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62989] = 4, - ACTIONS(4104), 1, + [63194] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4942), 1, + ACTIONS(4911), 1, anon_sym_SEMI, - STATE(882), 1, - sym_block, + STATE(390), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63003] = 4, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4944), 1, + [63208] = 4, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(4913), 1, anon_sym_SEMI, - ACTIONS(4946), 1, - anon_sym_EQ, + STATE(354), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63017] = 4, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(4948), 1, - anon_sym_SEMI, - STATE(417), 1, - sym_block, + [63222] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63031] = 4, - ACTIONS(798), 1, + ACTIONS(4915), 3, anon_sym_RPAREN, - ACTIONS(4950), 1, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(2075), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63045] = 4, - ACTIONS(4104), 1, - anon_sym_LBRACE, - ACTIONS(4952), 1, - anon_sym_SEMI, - STATE(898), 1, - sym_block, + [63232] = 4, + ACTIONS(4917), 1, + anon_sym_RBRACE, + ACTIONS(4919), 1, + anon_sym_COMMA, + STATE(2066), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63059] = 2, + [63246] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4954), 3, + ACTIONS(4364), 3, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_COMMA, - [63069] = 4, - ACTIONS(4085), 1, + [63256] = 4, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(4956), 1, + ACTIONS(4922), 1, anon_sym_SEMI, - ACTIONS(4958), 1, + ACTIONS(4924), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63083] = 4, - ACTIONS(4104), 1, + [63270] = 4, + ACTIONS(4119), 1, anon_sym_LBRACE, - ACTIONS(4960), 1, + ACTIONS(4926), 1, anon_sym_SEMI, - STATE(917), 1, + STATE(876), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63097] = 3, - ACTIONS(3213), 1, - anon_sym_COLON_COLON, + [63284] = 4, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(4928), 1, + sym_identifier, + STATE(2528), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4308), 2, + [63298] = 4, + ACTIONS(386), 1, anon_sym_RPAREN, + ACTIONS(4930), 1, anon_sym_COMMA, - [63109] = 4, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(4962), 1, - anon_sym_SEMI, - STATE(950), 1, - sym_declaration_list, + STATE(2121), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63123] = 4, - ACTIONS(3796), 1, - anon_sym_RBRACE, - ACTIONS(4964), 1, - anon_sym_COMMA, - STATE(1890), 1, - aux_sym_field_declaration_list_repeat1, + [63312] = 4, + ACTIONS(3455), 1, + anon_sym_LT2, + ACTIONS(4928), 1, + sym_identifier, + STATE(2538), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63137] = 4, - ACTIONS(3800), 1, + [63326] = 4, + ACTIONS(4119), 1, anon_sym_LBRACE, - ACTIONS(4966), 1, + ACTIONS(4932), 1, anon_sym_SEMI, - STATE(959), 1, - sym_declaration_list, + STATE(859), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63151] = 4, - ACTIONS(4453), 1, - anon_sym_RPAREN, - ACTIONS(4968), 1, + [63340] = 4, + ACTIONS(3906), 1, + anon_sym_RBRACE, + ACTIONS(4934), 1, anon_sym_COMMA, - STATE(2075), 1, - aux_sym_parameters_repeat1, + STATE(2081), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63165] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, + [63354] = 4, + ACTIONS(3291), 1, + anon_sym_RBRACK, + ACTIONS(4936), 1, + anon_sym_COMMA, + STATE(2075), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4453), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63177] = 4, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(4971), 1, - anon_sym_SEMI, - ACTIONS(4973), 1, + [63368] = 3, + ACTIONS(4941), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63191] = 4, - ACTIONS(3796), 1, + ACTIONS(4939), 2, anon_sym_RBRACE, - ACTIONS(4964), 1, anon_sym_COMMA, - STATE(1974), 1, - aux_sym_field_declaration_list_repeat1, + [63380] = 4, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4943), 1, + anon_sym_SEMI, + ACTIONS(4945), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63205] = 4, - ACTIONS(4104), 1, - anon_sym_LBRACE, - ACTIONS(4975), 1, + [63394] = 4, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4947), 1, anon_sym_SEMI, - STATE(983), 1, - sym_block, + ACTIONS(4949), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63219] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4977), 1, - sym_identifier, - STATE(2507), 1, - sym_type_arguments, + [63408] = 4, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(4951), 1, + anon_sym_SEMI, + STATE(820), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63233] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4977), 1, - sym_identifier, - STATE(2416), 1, - sym_type_arguments, + [63422] = 4, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(4953), 1, + anon_sym_SEMI, + STATE(817), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63247] = 4, - ACTIONS(4979), 1, + [63436] = 4, + ACTIONS(4955), 1, anon_sym_RBRACE, - ACTIONS(4981), 1, + ACTIONS(4957), 1, anon_sym_COMMA, - STATE(2152), 1, + STATE(2081), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63261] = 4, - ACTIONS(4104), 1, - anon_sym_LBRACE, - ACTIONS(4983), 1, - anon_sym_SEMI, - STATE(990), 1, - sym_block, + [63450] = 4, + ACTIONS(4960), 1, + anon_sym_RBRACE, + ACTIONS(4962), 1, + anon_sym_COMMA, + STATE(2155), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63275] = 4, - ACTIONS(4985), 1, + [63464] = 4, + ACTIONS(4964), 1, anon_sym_RBRACE, - ACTIONS(4987), 1, + ACTIONS(4966), 1, anon_sym_COMMA, - STATE(1997), 1, + STATE(2017), 1, aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63289] = 2, + [63478] = 4, + ACTIONS(4968), 1, + anon_sym_RPAREN, + ACTIONS(4970), 1, + anon_sym_COMMA, + STATE(1931), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4455), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [63299] = 4, - ACTIONS(4104), 1, + [63492] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4972), 1, anon_sym_SEMI, - STATE(1030), 1, - sym_block, + STATE(895), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63313] = 4, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(4991), 1, + [63506] = 4, + ACTIONS(3902), 1, + anon_sym_RBRACE, + ACTIONS(4974), 1, + anon_sym_COMMA, + STATE(1920), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63520] = 4, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(4976), 1, anon_sym_SEMI, - STATE(1039), 1, - sym_declaration_list, + ACTIONS(4978), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63327] = 4, - ACTIONS(3874), 1, + [63534] = 4, + ACTIONS(3882), 1, anon_sym_RBRACE, - ACTIONS(4993), 1, + ACTIONS(4980), 1, anon_sym_COMMA, - STATE(2105), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1920), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63341] = 4, - ACTIONS(4294), 1, + [63548] = 4, + ACTIONS(4330), 1, anon_sym_RPAREN, - ACTIONS(4296), 1, + ACTIONS(4332), 1, anon_sym_COMMA, - STATE(2148), 1, + STATE(2136), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63355] = 2, + [63562] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4995), 3, - anon_sym_SEMI, + ACTIONS(4982), 2, anon_sym_RBRACE, anon_sym_COMMA, - [63365] = 4, - ACTIONS(3830), 1, + [63574] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4997), 1, + ACTIONS(4984), 1, anon_sym_SEMI, - STATE(412), 1, + STATE(995), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63379] = 4, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(4999), 1, - anon_sym_SEMI, - STATE(1046), 1, - sym_declaration_list, + [63588] = 4, + ACTIONS(3882), 1, + anon_sym_RBRACE, + ACTIONS(4980), 1, + anon_sym_COMMA, + STATE(1917), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63393] = 4, - ACTIONS(4104), 1, + [63602] = 4, + ACTIONS(4119), 1, anon_sym_LBRACE, - ACTIONS(5001), 1, + ACTIONS(4986), 1, anon_sym_SEMI, - STATE(872), 1, + STATE(880), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63407] = 4, - ACTIONS(3870), 1, - anon_sym_RBRACE, - ACTIONS(5003), 1, + [63616] = 4, + ACTIONS(4988), 1, + anon_sym_RPAREN, + ACTIONS(4990), 1, anon_sym_COMMA, - STATE(1890), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2094), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63421] = 2, + [63630] = 4, + ACTIONS(3866), 1, + anon_sym_LT, + ACTIONS(4993), 1, + anon_sym_EQ, + STATE(2551), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5005), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [63644] = 4, + ACTIONS(4389), 1, anon_sym_COMMA, - [63431] = 4, - ACTIONS(4476), 1, - anon_sym_COMMA, - ACTIONS(4478), 1, + ACTIONS(4391), 1, anon_sym_GT, - STATE(2142), 1, + STATE(2151), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63445] = 4, - ACTIONS(4083), 1, - anon_sym_LBRACE, - ACTIONS(5007), 1, - anon_sym_SEMI, - STATE(385), 1, - sym_block, + [63658] = 4, + ACTIONS(2536), 1, + anon_sym_RPAREN, + ACTIONS(4995), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63459] = 3, - ACTIONS(5011), 1, - anon_sym_EQ, + [63672] = 4, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(4997), 1, + anon_sym_SEMI, + STATE(1010), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5009), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63471] = 2, + [63686] = 4, + ACTIONS(4100), 1, + anon_sym_LBRACE, + ACTIONS(4999), 1, + anon_sym_SEMI, + STATE(454), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5013), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63481] = 4, - ACTIONS(2542), 1, + [63700] = 4, + ACTIONS(2534), 1, anon_sym_RPAREN, - ACTIONS(5015), 1, + ACTIONS(5001), 1, anon_sym_COMMA, - STATE(2014), 1, + STATE(2021), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63495] = 4, - ACTIONS(2457), 1, - anon_sym_RPAREN, - ACTIONS(5017), 1, - anon_sym_COMMA, - STATE(1868), 1, - aux_sym_tuple_pattern_repeat1, + [63714] = 4, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(5003), 1, + anon_sym_SEMI, + STATE(1038), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63509] = 4, - ACTIONS(3850), 1, + [63728] = 4, + ACTIONS(3892), 1, anon_sym_GT, - ACTIONS(5019), 1, + ACTIONS(5005), 1, anon_sym_COMMA, - STATE(2044), 1, + STATE(2059), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63523] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5021), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63533] = 4, - ACTIONS(3840), 1, - anon_sym_GT, - ACTIONS(5023), 1, + [63742] = 4, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(5007), 1, anon_sym_COMMA, STATE(2044), 1, - aux_sym_type_parameters_repeat1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63547] = 4, - ACTIONS(5025), 1, - anon_sym_RBRACE, - ACTIONS(5027), 1, + [63756] = 4, + ACTIONS(3868), 1, + anon_sym_GT, + ACTIONS(5009), 1, anon_sym_COMMA, - STATE(2105), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2059), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63561] = 4, - ACTIONS(4085), 1, + [63770] = 4, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(5030), 1, + ACTIONS(5011), 1, anon_sym_SEMI, - ACTIONS(5032), 1, + ACTIONS(5013), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63575] = 4, - ACTIONS(3800), 1, + [63784] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(5034), 1, + ACTIONS(5015), 1, anon_sym_SEMI, - STATE(851), 1, + STATE(305), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63589] = 4, - ACTIONS(3800), 1, + [63798] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(5036), 1, + ACTIONS(5017), 1, anon_sym_SEMI, - STATE(1033), 1, + STATE(857), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63603] = 4, - ACTIONS(5038), 1, + [63812] = 4, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(5019), 1, + anon_sym_SEMI, + ACTIONS(5021), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63826] = 4, + ACTIONS(3898), 1, anon_sym_RBRACE, - ACTIONS(5040), 1, + ACTIONS(5023), 1, anon_sym_COMMA, - STATE(2109), 1, - aux_sym_use_list_repeat1, + STATE(2081), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63617] = 4, - ACTIONS(4085), 1, + [63840] = 4, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(5043), 1, + ACTIONS(5025), 1, anon_sym_SEMI, - ACTIONS(5045), 1, + ACTIONS(5027), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63631] = 4, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(5047), 1, - anon_sym_SEMI, - STATE(992), 1, - sym_declaration_list, + [63854] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63645] = 4, - ACTIONS(3407), 1, + ACTIONS(5029), 3, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(5049), 1, + [63864] = 4, + ACTIONS(5031), 1, anon_sym_COMMA, - STATE(2109), 1, - aux_sym_use_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63659] = 4, - ACTIONS(4104), 1, - anon_sym_LBRACE, - ACTIONS(5051), 1, - anon_sym_SEMI, - STATE(999), 1, - sym_block, + ACTIONS(5033), 1, + anon_sym_GT, + STATE(2037), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63673] = 4, - ACTIONS(794), 1, - anon_sym_RPAREN, - ACTIONS(5053), 1, + [63878] = 4, + ACTIONS(540), 1, + anon_sym_RBRACK, + ACTIONS(3221), 1, anon_sym_COMMA, STATE(2075), 1, - aux_sym_parameters_repeat1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63687] = 3, - ACTIONS(5057), 1, + [63892] = 3, + ACTIONS(5037), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5055), 2, + ACTIONS(5035), 2, anon_sym_RBRACE, anon_sym_COMMA, - [63699] = 4, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(5059), 1, + [63904] = 4, + ACTIONS(5039), 1, + sym_identifier, + ACTIONS(5041), 1, + anon_sym_ref, + ACTIONS(5043), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63918] = 4, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(5045), 1, anon_sym_SEMI, - ACTIONS(5061), 1, - anon_sym_RBRACK, + STATE(2498), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63713] = 4, - ACTIONS(3876), 1, - anon_sym_RBRACE, - ACTIONS(5063), 1, - anon_sym_COMMA, - STATE(2105), 1, - aux_sym_enum_variant_list_repeat2, + [63932] = 4, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(5047), 1, + anon_sym_SEMI, + ACTIONS(5049), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63727] = 4, - ACTIONS(4085), 1, + [63946] = 4, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(5065), 1, + ACTIONS(5051), 1, anon_sym_SEMI, - ACTIONS(5067), 1, + ACTIONS(5053), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63741] = 4, - ACTIONS(548), 1, - anon_sym_RBRACK, - ACTIONS(3223), 1, - anon_sym_COMMA, - STATE(2023), 1, - aux_sym_array_expression_repeat1, + [63960] = 4, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, + anon_sym_SEMI, + STATE(872), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63755] = 4, - ACTIONS(5069), 1, + [63974] = 4, + ACTIONS(5057), 1, anon_sym_RBRACE, - ACTIONS(5071), 1, + ACTIONS(5059), 1, anon_sym_COMMA, - STATE(2132), 1, + STATE(2128), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63769] = 2, + [63988] = 4, + ACTIONS(3305), 1, + anon_sym_RPAREN, + ACTIONS(5061), 1, + anon_sym_COMMA, + STATE(2121), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5073), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [63779] = 4, - ACTIONS(3824), 1, + [64002] = 4, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(5075), 1, + ACTIONS(5064), 1, anon_sym_SEMI, STATE(2557), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63793] = 4, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(5077), 1, - anon_sym_SEMI, - STATE(2519), 1, - sym_where_clause, + [64016] = 4, + ACTIONS(4309), 1, + anon_sym_PIPE, + ACTIONS(5066), 1, + anon_sym_EQ_GT, + ACTIONS(5068), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63807] = 4, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(5079), 1, + [64030] = 4, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(5070), 1, anon_sym_SEMI, - ACTIONS(5081), 1, - anon_sym_EQ, + STATE(954), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63821] = 4, - ACTIONS(4104), 1, - anon_sym_LBRACE, - ACTIONS(5083), 1, + [64044] = 4, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(5072), 1, anon_sym_SEMI, - STATE(956), 1, - sym_block, + ACTIONS(5074), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63835] = 4, - ACTIONS(2455), 1, - anon_sym_RBRACK, - ACTIONS(5085), 1, - anon_sym_COMMA, - STATE(1868), 1, - aux_sym_tuple_pattern_repeat1, + [64058] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63849] = 4, - ACTIONS(386), 1, - anon_sym_RPAREN, - ACTIONS(5087), 1, + ACTIONS(5076), 3, + anon_sym_EQ, anon_sym_COMMA, - STATE(2129), 1, - aux_sym_arguments_repeat1, + anon_sym_GT, + [64068] = 4, + ACTIONS(3878), 1, + anon_sym_RBRACE, + ACTIONS(5078), 1, + anon_sym_COMMA, + STATE(2086), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63863] = 4, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(5089), 1, - anon_sym_SEMI, - STATE(940), 1, - sym_declaration_list, + [64082] = 4, + ACTIONS(3878), 1, + anon_sym_RBRACE, + ACTIONS(5078), 1, + anon_sym_COMMA, + STATE(1920), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63877] = 4, - ACTIONS(3275), 1, - anon_sym_RPAREN, - ACTIONS(5091), 1, + [64096] = 4, + ACTIONS(3872), 1, + anon_sym_GT, + ACTIONS(5080), 1, anon_sym_COMMA, - STATE(2129), 1, - aux_sym_arguments_repeat1, + STATE(2059), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63891] = 4, - ACTIONS(3878), 1, - anon_sym_RBRACE, - ACTIONS(5094), 1, - anon_sym_COMMA, - STATE(2094), 1, - aux_sym_field_declaration_list_repeat1, + [64110] = 4, + ACTIONS(5082), 1, + sym_identifier, + ACTIONS(5084), 1, + anon_sym_ref, + ACTIONS(5086), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63905] = 4, - ACTIONS(3800), 1, + [64124] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, + ACTIONS(5088), 1, anon_sym_SEMI, - STATE(831), 1, + STATE(851), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63919] = 4, - ACTIONS(3878), 1, - anon_sym_RBRACE, + [64138] = 4, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(5090), 1, + anon_sym_SEMI, + ACTIONS(5092), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64152] = 4, + ACTIONS(3846), 1, + anon_sym_GT, ACTIONS(5094), 1, anon_sym_COMMA, - STATE(1890), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2059), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63933] = 2, + [64166] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5098), 3, + ACTIONS(5096), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63943] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5100), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [63953] = 4, - ACTIONS(4085), 1, + [64176] = 4, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(5102), 1, + ACTIONS(5098), 1, anon_sym_SEMI, - ACTIONS(5104), 1, + ACTIONS(5100), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63967] = 4, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(5106), 1, - anon_sym_SEMI, - ACTIONS(5108), 1, - anon_sym_EQ, + [64190] = 4, + ACTIONS(790), 1, + anon_sym_RPAREN, + ACTIONS(4316), 1, + anon_sym_COMMA, + STATE(2044), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63981] = 4, - ACTIONS(3800), 1, + [64204] = 4, + ACTIONS(4100), 1, anon_sym_LBRACE, - ACTIONS(5110), 1, + ACTIONS(5102), 1, anon_sym_SEMI, - STATE(905), 1, - sym_declaration_list, + STATE(282), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63995] = 4, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(5112), 1, - anon_sym_SEMI, - STATE(881), 1, - sym_declaration_list, + [64218] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64009] = 4, - ACTIONS(3824), 1, + ACTIONS(5104), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [64228] = 4, + ACTIONS(3864), 1, anon_sym_where, - ACTIONS(5114), 1, + ACTIONS(5106), 1, anon_sym_SEMI, - STATE(2548), 1, + STATE(2546), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64023] = 4, - ACTIONS(4251), 1, - anon_sym_COMMA, - ACTIONS(4253), 1, - anon_sym_GT, - STATE(1952), 1, - aux_sym_type_parameters_repeat1, + [64242] = 4, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(5108), 1, + anon_sym_SEMI, + ACTIONS(5110), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64037] = 4, - ACTIONS(5116), 1, - anon_sym_RPAREN, - ACTIONS(5118), 1, + [64256] = 4, + ACTIONS(5112), 1, + anon_sym_RBRACE, + ACTIONS(5114), 1, anon_sym_COMMA, - STATE(1964), 1, - aux_sym_meta_arguments_repeat1, + STATE(2141), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64051] = 4, - ACTIONS(922), 1, - anon_sym_GT, - ACTIONS(5120), 1, + [64270] = 4, + ACTIONS(790), 1, + anon_sym_RPAREN, + ACTIONS(4316), 1, anon_sym_COMMA, - STATE(2034), 1, - aux_sym_type_arguments_repeat1, + STATE(2103), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64065] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(5122), 1, - anon_sym_SEMI, - STATE(366), 1, - sym_declaration_list, + [64284] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64079] = 4, - ACTIONS(3824), 1, - anon_sym_where, - ACTIONS(5124), 1, + ACTIONS(2433), 3, anon_sym_SEMI, - STATE(2431), 1, - sym_where_clause, + anon_sym_RPAREN, + anon_sym_RBRACE, + [64294] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64093] = 4, - ACTIONS(4104), 1, - anon_sym_LBRACE, - ACTIONS(5126), 1, - anon_sym_SEMI, - STATE(861), 1, - sym_block, + ACTIONS(5117), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [64304] = 4, + ACTIONS(5119), 1, + sym_identifier, + ACTIONS(5121), 1, + anon_sym_ref, + ACTIONS(5123), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64107] = 4, - ACTIONS(3830), 1, + [64318] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, + ACTIONS(5125), 1, anon_sym_SEMI, - STATE(470), 1, + STATE(284), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64121] = 4, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(4310), 1, - anon_sym_COMMA, - STATE(2114), 1, - aux_sym_parameters_repeat1, + [64332] = 4, + ACTIONS(4119), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_SEMI, + STATE(1014), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64135] = 4, - ACTIONS(790), 1, + [64346] = 4, + ACTIONS(5129), 1, anon_sym_RPAREN, - ACTIONS(4310), 1, + ACTIONS(5131), 1, anon_sym_COMMA, - STATE(2075), 1, - aux_sym_parameters_repeat1, + STATE(1905), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64149] = 4, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(5130), 1, + [64360] = 4, + ACTIONS(3864), 1, + anon_sym_where, + ACTIONS(5133), 1, anon_sym_SEMI, - ACTIONS(5132), 1, - anon_sym_EQ, + STATE(2426), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64163] = 4, - ACTIONS(4083), 1, + [64374] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5135), 1, anon_sym_SEMI, - STATE(336), 1, - sym_block, + STATE(1031), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64177] = 4, - ACTIONS(3894), 1, - anon_sym_RBRACE, - ACTIONS(5136), 1, + [64388] = 4, + ACTIONS(928), 1, + anon_sym_GT, + ACTIONS(5137), 1, anon_sym_COMMA, - STATE(2117), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1985), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64191] = 4, - ACTIONS(3894), 1, - anon_sym_RBRACE, - ACTIONS(5136), 1, - anon_sym_COMMA, - STATE(2105), 1, - aux_sym_enum_variant_list_repeat2, + [64402] = 4, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(5139), 1, + anon_sym_SEMI, + STATE(384), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64205] = 4, - ACTIONS(5138), 1, - anon_sym_RBRACE, - ACTIONS(5140), 1, + [64416] = 4, + ACTIONS(4205), 1, anon_sym_COMMA, - STATE(2153), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(4207), 1, + anon_sym_GT, + STATE(2133), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64219] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(291), 1, - sym_declaration_list, + [64430] = 4, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(5141), 1, + anon_sym_SEMI, + ACTIONS(5143), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64230] = 2, + [64444] = 4, + ACTIONS(3838), 1, + anon_sym_RBRACE, + ACTIONS(5145), 1, + anon_sym_COMMA, + STATE(2081), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5143), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64239] = 3, - ACTIONS(5145), 1, - anon_sym_SEMI, - ACTIONS(5147), 1, + [64458] = 4, + ACTIONS(3838), 1, anon_sym_RBRACE, + ACTIONS(5145), 1, + anon_sym_COMMA, + STATE(2109), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64250] = 2, + [64472] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5149), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64259] = 3, - ACTIONS(3439), 1, - anon_sym_LPAREN, - STATE(1375), 1, - sym_parameters, + ACTIONS(5147), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [64482] = 4, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(5149), 1, + anon_sym_SEMI, + STATE(1052), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64270] = 2, + [64496] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5151), 2, - sym_identifier, - sym_metavariable, - [64279] = 3, - ACTIONS(3822), 1, + [64507] = 3, + ACTIONS(4141), 1, anon_sym_LBRACE, - STATE(375), 1, - sym_field_declaration_list, + STATE(482), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64290] = 3, - ACTIONS(4164), 1, + [64518] = 3, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(327), 1, + STATE(919), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64301] = 3, - ACTIONS(15), 1, + [64529] = 3, + ACTIONS(3862), 1, anon_sym_LBRACE, - STATE(149), 1, - sym_block, + STATE(882), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64312] = 3, - ACTIONS(5153), 1, - sym_identifier, - ACTIONS(5155), 1, - sym_mutable_specifier, + [64540] = 3, + ACTIONS(3862), 1, + anon_sym_LBRACE, + STATE(978), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64323] = 3, - ACTIONS(4039), 1, - anon_sym_RBRACE, - ACTIONS(5145), 1, + [64551] = 3, + ACTIONS(5153), 1, anon_sym_SEMI, + ACTIONS(5155), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64334] = 3, - ACTIONS(5157), 1, - anon_sym_SEMI, - ACTIONS(5159), 1, - anon_sym_as, + [64562] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64345] = 3, - ACTIONS(3439), 1, - anon_sym_LPAREN, - STATE(1719), 1, - sym_parameters, + ACTIONS(5157), 2, + sym_identifier, + sym_metavariable, + [64571] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(149), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64356] = 3, - ACTIONS(4021), 1, - anon_sym_RPAREN, - ACTIONS(5145), 1, - anon_sym_SEMI, + [64582] = 3, + ACTIONS(5159), 1, + sym_identifier, + ACTIONS(5161), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64367] = 3, - ACTIONS(3836), 1, - anon_sym_LBRACE, - STATE(841), 1, - sym_field_declaration_list, + [64593] = 3, + ACTIONS(5163), 1, + anon_sym_SEMI, + ACTIONS(5165), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64378] = 3, - ACTIONS(4563), 1, + [64604] = 3, + ACTIONS(5119), 1, sym_identifier, - ACTIONS(4567), 1, + ACTIONS(5123), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64389] = 3, - ACTIONS(3836), 1, - anon_sym_LBRACE, - STATE(944), 1, - sym_field_declaration_list, + [64615] = 3, + ACTIONS(5163), 1, + anon_sym_SEMI, + ACTIONS(5167), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64400] = 3, - ACTIONS(3822), 1, - anon_sym_LBRACE, - STATE(322), 1, - sym_field_declaration_list, + [64626] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1390), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64411] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(5161), 1, - anon_sym_SEMI, + [64637] = 3, + ACTIONS(4141), 1, + anon_sym_LBRACE, + STATE(287), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64422] = 3, - ACTIONS(3822), 1, - anon_sym_LBRACE, - STATE(315), 1, - sym_field_declaration_list, + [64648] = 3, + ACTIONS(3616), 1, + anon_sym_COLON_COLON, + ACTIONS(5169), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64433] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(465), 1, - sym_declaration_list, + [64659] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, + ACTIONS(5171), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64444] = 3, - ACTIONS(3830), 1, + [64670] = 3, + ACTIONS(3888), 1, anon_sym_LBRACE, - STATE(308), 1, - sym_declaration_list, + STATE(297), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64455] = 3, - ACTIONS(4164), 1, - anon_sym_LBRACE, - STATE(272), 1, - sym_enum_variant_list, + [64681] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(5173), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64466] = 3, - ACTIONS(4090), 1, + [64692] = 3, + ACTIONS(3888), 1, anon_sym_LBRACE, - STATE(819), 1, - sym_enum_variant_list, + STATE(308), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64477] = 3, - ACTIONS(4282), 1, + [64703] = 3, + ACTIONS(4309), 1, anon_sym_PIPE, - ACTIONS(5163), 1, - anon_sym_EQ, + ACTIONS(5175), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64488] = 3, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(5165), 1, - anon_sym_in, + [64714] = 3, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(309), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64499] = 3, - ACTIONS(4282), 1, + [64725] = 3, + ACTIONS(4309), 1, anon_sym_PIPE, - ACTIONS(5167), 1, + ACTIONS(5177), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64510] = 3, - ACTIONS(4282), 1, + [64736] = 3, + ACTIONS(4309), 1, anon_sym_PIPE, - ACTIONS(5169), 1, + ACTIONS(5179), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64521] = 3, - ACTIONS(3439), 1, - anon_sym_LPAREN, - STATE(1731), 1, - sym_parameters, + [64747] = 3, + ACTIONS(3816), 1, + anon_sym_LBRACE, + STATE(855), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64532] = 3, - ACTIONS(3800), 1, + [64758] = 3, + ACTIONS(3862), 1, anon_sym_LBRACE, - STATE(826), 1, - sym_declaration_list, + STATE(803), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64543] = 3, - ACTIONS(4282), 1, + [64769] = 3, + ACTIONS(4309), 1, anon_sym_PIPE, - ACTIONS(5171), 1, + ACTIONS(5181), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64554] = 3, - ACTIONS(4282), 1, + [64780] = 3, + ACTIONS(4309), 1, anon_sym_PIPE, - ACTIONS(5173), 1, + ACTIONS(5183), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64565] = 3, - ACTIONS(3800), 1, + [64791] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(932), 1, + STATE(984), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64576] = 3, - ACTIONS(4085), 1, + [64802] = 3, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(5175), 1, + ACTIONS(5185), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64587] = 3, - ACTIONS(3836), 1, - anon_sym_LBRACE, - STATE(798), 1, - sym_field_declaration_list, + [64813] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, + ACTIONS(5187), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64598] = 3, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(5177), 1, - anon_sym_in, + [64824] = 3, + ACTIONS(3816), 1, + anon_sym_LBRACE, + STATE(815), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64609] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(5179), 1, - anon_sym_SEMI, + [64835] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1677), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64620] = 3, - ACTIONS(3800), 1, + [64846] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(795), 1, + STATE(924), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64631] = 3, - ACTIONS(3800), 1, + [64857] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(946), 1, + STATE(917), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64642] = 3, - ACTIONS(5181), 1, - sym_identifier, - ACTIONS(5183), 1, - sym_mutable_specifier, + [64868] = 3, + ACTIONS(3816), 1, + anon_sym_LBRACE, + STATE(821), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64653] = 2, + [64879] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4589), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64662] = 3, - ACTIONS(4015), 1, + ACTIONS(5189), 2, anon_sym_RBRACE, - ACTIONS(5145), 1, - anon_sym_SEMI, + anon_sym_COMMA, + [64888] = 3, + ACTIONS(4017), 1, + anon_sym_COLON_COLON, + ACTIONS(5191), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64673] = 3, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(5185), 1, - anon_sym_EQ, + [64899] = 3, + ACTIONS(3862), 1, + anon_sym_LBRACE, + STATE(822), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64684] = 3, - ACTIONS(3800), 1, - anon_sym_LBRACE, - STATE(805), 1, - sym_declaration_list, + [64910] = 3, + ACTIONS(4005), 1, + anon_sym_COLON_COLON, + ACTIONS(5191), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64695] = 3, - ACTIONS(3800), 1, - anon_sym_LBRACE, - STATE(809), 1, - sym_declaration_list, + [64921] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64706] = 3, - ACTIONS(4090), 1, + ACTIONS(5193), 2, + sym_identifier, + sym_metavariable, + [64930] = 3, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(962), 1, + STATE(870), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64717] = 2, + [64941] = 3, + ACTIONS(4015), 1, + anon_sym_COLON_COLON, + ACTIONS(5191), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5187), 2, - sym_identifier, - sym_metavariable, - [64726] = 3, - ACTIONS(3836), 1, - anon_sym_LBRACE, - STATE(813), 1, - sym_field_declaration_list, + [64952] = 3, + ACTIONS(4015), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64737] = 3, - ACTIONS(3836), 1, + [64963] = 3, + ACTIONS(3862), 1, anon_sym_LBRACE, - STATE(969), 1, + STATE(854), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64748] = 3, - ACTIONS(4085), 1, + [64974] = 3, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(5189), 1, + ACTIONS(5197), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64759] = 3, - ACTIONS(3836), 1, + [64985] = 3, + ACTIONS(3862), 1, anon_sym_LBRACE, - STATE(974), 1, + STATE(836), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64770] = 3, - ACTIONS(3800), 1, + [64996] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(975), 1, + STATE(835), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64781] = 3, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(5191), 1, - anon_sym_EQ, + [65007] = 3, + ACTIONS(4005), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64792] = 2, + [65018] = 3, + ACTIONS(4017), 1, + anon_sym_COLON_COLON, + ACTIONS(5195), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4890), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64801] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(300), 1, - sym_declaration_list, + [65029] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, + ACTIONS(5199), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64812] = 3, - ACTIONS(2962), 1, - anon_sym_COLON, - ACTIONS(4085), 1, - anon_sym_PLUS, + [65040] = 3, + ACTIONS(3616), 1, + anon_sym_COLON_COLON, + ACTIONS(5201), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64823] = 3, - ACTIONS(2966), 1, - anon_sym_COLON, - ACTIONS(4085), 1, - anon_sym_PLUS, + [65051] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, + ACTIONS(5203), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64834] = 3, - ACTIONS(4001), 1, - anon_sym_RPAREN, - ACTIONS(5145), 1, - anon_sym_SEMI, + [65062] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64845] = 3, - ACTIONS(4282), 1, + ACTIONS(4988), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65071] = 3, + ACTIONS(4309), 1, anon_sym_PIPE, - ACTIONS(5193), 1, + ACTIONS(5205), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64856] = 3, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(2306), 1, - sym_lifetime, + [65082] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64867] = 3, + ACTIONS(5207), 2, + sym_identifier, + sym_metavariable, + [65091] = 3, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1978), 1, + STATE(2112), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64878] = 2, + [65102] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, + ACTIONS(5209), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5195), 2, - sym_identifier, - sym_metavariable, - [64887] = 3, - ACTIONS(4013), 1, - anon_sym_COLON_COLON, - ACTIONS(5197), 1, - anon_sym_RPAREN, + [65113] = 3, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(294), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64898] = 3, - ACTIONS(4017), 1, - anon_sym_COLON_COLON, - ACTIONS(5197), 1, - anon_sym_RPAREN, + [65124] = 3, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(295), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64909] = 3, - ACTIONS(4019), 1, - anon_sym_COLON_COLON, - ACTIONS(5197), 1, - anon_sym_RPAREN, + [65135] = 3, + ACTIONS(2580), 1, + anon_sym_LPAREN, + STATE(853), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64920] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(130), 1, - sym_block, + [65146] = 3, + ACTIONS(5211), 1, + sym_identifier, + ACTIONS(5213), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64931] = 3, - ACTIONS(3591), 1, - anon_sym_COLON_COLON, - ACTIONS(5199), 1, - anon_sym_RPAREN, + [65157] = 3, + ACTIONS(5215), 1, + anon_sym_LBRACK, + ACTIONS(5217), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64942] = 2, + [65168] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5201), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64951] = 3, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(5203), 1, - anon_sym_in, + ACTIONS(5219), 2, + sym_identifier, + sym_metavariable, + [65177] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(5221), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64962] = 2, + [65188] = 3, + ACTIONS(3888), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5025), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64971] = 2, + [65199] = 3, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(318), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5205), 2, - sym_identifier, - sym_metavariable, - [64980] = 3, - ACTIONS(2580), 1, - anon_sym_LPAREN, - STATE(849), 1, - sym_parameters, + [65210] = 3, + ACTIONS(5223), 1, + anon_sym_LT, + STATE(676), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64991] = 3, - ACTIONS(4282), 1, + [65221] = 3, + ACTIONS(4309), 1, anon_sym_PIPE, - ACTIONS(5207), 1, + ACTIONS(5225), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65002] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5038), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65011] = 3, - ACTIONS(5209), 1, + [65232] = 3, + ACTIONS(5227), 1, anon_sym_LBRACK, - ACTIONS(5211), 1, + ACTIONS(5229), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65022] = 3, - ACTIONS(3830), 1, + [65243] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(402), 1, + STATE(443), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65033] = 3, - ACTIONS(4278), 1, - anon_sym_COLON, - ACTIONS(4282), 1, - anon_sym_PIPE, + [65254] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65044] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(404), 1, - sym_declaration_list, + ACTIONS(4955), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65263] = 3, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(2322), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65055] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(5213), 1, - anon_sym_SEMI, + [65274] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(59), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65066] = 3, - ACTIONS(4055), 1, - anon_sym_COLON, - ACTIONS(4085), 1, - anon_sym_PLUS, + [65285] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65077] = 2, + ACTIONS(4917), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65294] = 3, + ACTIONS(4108), 1, + anon_sym_LBRACE, + STATE(890), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5215), 2, - sym_identifier, - sym_metavariable, - [65086] = 3, - ACTIONS(3800), 1, + [65305] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(1037), 1, + STATE(447), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65097] = 3, - ACTIONS(2998), 1, - anon_sym_COLON, - ACTIONS(4085), 1, + [65316] = 3, + ACTIONS(3816), 1, + anon_sym_LBRACE, + STATE(818), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65327] = 3, + ACTIONS(4102), 1, anon_sym_PLUS, + ACTIONS(5231), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65108] = 3, - ACTIONS(4090), 1, + [65338] = 3, + ACTIONS(3888), 1, anon_sym_LBRACE, - STATE(886), 1, - sym_enum_variant_list, + STATE(466), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65119] = 3, - ACTIONS(5217), 1, - anon_sym_LBRACK, - ACTIONS(5219), 1, - anon_sym_BANG, + [65349] = 3, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(490), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65130] = 3, - ACTIONS(4085), 1, + [65360] = 3, + ACTIONS(4102), 1, anon_sym_PLUS, - ACTIONS(5221), 1, + ACTIONS(5233), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65141] = 3, - ACTIONS(3800), 1, + [65371] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(1024), 1, + STATE(840), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65152] = 3, - ACTIONS(3800), 1, + [65382] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(1017), 1, + STATE(841), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65163] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(433), 1, - sym_declaration_list, + [65393] = 3, + ACTIONS(4305), 1, + anon_sym_COLON, + ACTIONS(4309), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65174] = 3, - ACTIONS(3822), 1, - anon_sym_LBRACE, - STATE(278), 1, - sym_field_declaration_list, + [65404] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65185] = 3, - ACTIONS(4013), 1, - anon_sym_COLON_COLON, - ACTIONS(5223), 1, + ACTIONS(5235), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [65413] = 3, + ACTIONS(4053), 1, + anon_sym_RBRACE, + ACTIONS(5163), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65196] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(55), 1, - sym_closure_parameters, + [65424] = 3, + ACTIONS(2642), 1, + anon_sym_LBRACE, + STATE(1133), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65207] = 3, - ACTIONS(3439), 1, - anon_sym_LPAREN, - STATE(1378), 1, - sym_parameters, + [65435] = 3, + ACTIONS(4141), 1, + anon_sym_LBRACE, + STATE(342), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65218] = 3, - ACTIONS(3822), 1, + [65446] = 3, + ACTIONS(5237), 1, + anon_sym_LPAREN, + ACTIONS(5239), 1, anon_sym_LBRACE, - STATE(282), 1, - sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65229] = 3, - ACTIONS(5225), 1, - sym_identifier, - ACTIONS(5227), 1, - sym_mutable_specifier, + [65457] = 3, + ACTIONS(5241), 1, + anon_sym_LPAREN, + ACTIONS(5243), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65240] = 3, - ACTIONS(5229), 1, - anon_sym_SEMI, - ACTIONS(5231), 1, - anon_sym_as, + [65468] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1062), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65251] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(452), 1, - sym_declaration_list, + [65479] = 3, + ACTIONS(4067), 1, + anon_sym_COLON, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65262] = 3, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(1077), 1, - sym_field_initializer_list, + [65490] = 3, + ACTIONS(4055), 1, + anon_sym_RBRACE, + ACTIONS(5163), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65273] = 3, - ACTIONS(4017), 1, - anon_sym_COLON_COLON, - ACTIONS(5223), 1, - anon_sym_RPAREN, + [65501] = 3, + ACTIONS(3888), 1, + anon_sym_LBRACE, + STATE(274), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65284] = 2, + [65512] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1078), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4453), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65293] = 3, - ACTIONS(5233), 1, - anon_sym_LPAREN, - ACTIONS(5235), 1, + [65523] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, + STATE(1144), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65304] = 3, - ACTIONS(4027), 1, - anon_sym_RBRACE, - ACTIONS(5145), 1, - anon_sym_SEMI, + [65534] = 3, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(269), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65315] = 3, - ACTIONS(5237), 1, - anon_sym_LPAREN, - ACTIONS(5239), 1, + [65545] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, + STATE(160), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65326] = 3, - ACTIONS(4029), 1, - anon_sym_RBRACE, - ACTIONS(5145), 1, + [65556] = 3, + ACTIONS(5245), 1, anon_sym_SEMI, + ACTIONS(5247), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65337] = 2, + [65567] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5138), 2, - anon_sym_RBRACE, + ACTIONS(4397), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [65346] = 3, - ACTIONS(3822), 1, - anon_sym_LBRACE, - STATE(447), 1, - sym_field_declaration_list, + [65576] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1725), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65357] = 3, - ACTIONS(3604), 1, - anon_sym_COLON_COLON, - ACTIONS(5241), 1, - anon_sym_BANG, + [65587] = 3, + ACTIONS(3862), 1, + anon_sym_LBRACE, + STATE(925), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65368] = 3, - ACTIONS(284), 1, + [65598] = 3, + ACTIONS(582), 1, anon_sym_LBRACE, - STATE(1107), 1, + STATE(238), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65379] = 3, - ACTIONS(3800), 1, + [65609] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(910), 1, + STATE(934), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65390] = 3, - ACTIONS(284), 1, + [65620] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(1149), 1, - sym_block, + STATE(933), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65401] = 3, - ACTIONS(3830), 1, + [65631] = 3, + ACTIONS(3862), 1, anon_sym_LBRACE, - STATE(430), 1, - sym_declaration_list, + STATE(943), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65412] = 2, + [65642] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4308), 2, - anon_sym_RPAREN, + ACTIONS(4399), 2, anon_sym_COMMA, - [65421] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1123), 1, - sym_block, + anon_sym_GT, + [65651] = 3, + ACTIONS(3926), 1, + anon_sym_COLON, + STATE(1971), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65432] = 3, - ACTIONS(3585), 1, - anon_sym_COLON_COLON, - ACTIONS(5241), 1, - anon_sym_BANG, + [65662] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65443] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(133), 1, - sym_block, + ACTIONS(2371), 2, + anon_sym_COMMA, + anon_sym_GT, + [65671] = 3, + ACTIONS(3866), 1, + anon_sym_LT, + STATE(681), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65454] = 3, - ACTIONS(3439), 1, + [65682] = 3, + ACTIONS(2580), 1, anon_sym_LPAREN, - STATE(1730), 1, + STATE(979), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65465] = 3, - ACTIONS(4019), 1, - anon_sym_COLON_COLON, - ACTIONS(5223), 1, - anon_sym_RPAREN, + [65693] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65476] = 3, - ACTIONS(5243), 1, - anon_sym_SEMI, - ACTIONS(5245), 1, - anon_sym_as, + ACTIONS(4529), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65702] = 3, + ACTIONS(3888), 1, + anon_sym_LBRACE, + STATE(298), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65487] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(456), 1, - sym_declaration_list, + [65713] = 3, + ACTIONS(5163), 1, + anon_sym_SEMI, + ACTIONS(5249), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65498] = 3, - ACTIONS(594), 1, + [65724] = 3, + ACTIONS(582), 1, anon_sym_LBRACE, - STATE(243), 1, + STATE(237), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65509] = 3, - ACTIONS(5247), 1, - anon_sym_LT, - STATE(728), 1, - sym_type_parameters, + [65735] = 3, + ACTIONS(5163), 1, + anon_sym_SEMI, + ACTIONS(5251), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65520] = 3, - ACTIONS(594), 1, + [65746] = 3, + ACTIONS(582), 1, anon_sym_LBRACE, - STATE(227), 1, + STATE(240), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65531] = 3, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(5249), 1, - anon_sym_in, + [65757] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65542] = 2, + ACTIONS(5253), 2, + sym_float_literal, + sym_integer_literal, + [65766] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4381), 2, + ACTIONS(4311), 2, anon_sym_RPAREN, anon_sym_COMMA, - [65551] = 3, - ACTIONS(594), 1, + [65775] = 3, + ACTIONS(582), 1, anon_sym_LBRACE, - STATE(251), 1, + STATE(239), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65562] = 3, - ACTIONS(3822), 1, - anon_sym_LBRACE, - STATE(477), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65573] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5251), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65582] = 3, - ACTIONS(3836), 1, - anon_sym_LBRACE, - STATE(921), 1, - sym_field_declaration_list, + [65786] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1711), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65593] = 3, - ACTIONS(5145), 1, - anon_sym_SEMI, - ACTIONS(5253), 1, - anon_sym_RPAREN, + [65797] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1394), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65604] = 3, - ACTIONS(5145), 1, - anon_sym_SEMI, + [65808] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(5255), 1, - anon_sym_RPAREN, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65615] = 3, - ACTIONS(3591), 1, - anon_sym_COLON_COLON, + [65819] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, ACTIONS(5257), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65626] = 3, - ACTIONS(3800), 1, - anon_sym_LBRACE, - STATE(927), 1, - sym_declaration_list, + [65830] = 3, + ACTIONS(2958), 1, + anon_sym_COLON, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65637] = 3, - ACTIONS(3836), 1, + [65841] = 3, + ACTIONS(4108), 1, anon_sym_LBRACE, - STATE(933), 1, - sym_field_declaration_list, + STATE(1020), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65648] = 2, + [65852] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(5259), 2, - sym_float_literal, - sym_integer_literal, - [65657] = 3, - ACTIONS(3439), 1, + anon_sym_const, + sym_mutable_specifier, + [65861] = 3, + ACTIONS(4049), 1, + anon_sym_RBRACE, + ACTIONS(5163), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65872] = 3, + ACTIONS(3449), 1, anon_sym_LPAREN, - STATE(1700), 1, + STATE(1395), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65668] = 3, - ACTIONS(3439), 1, + [65883] = 3, + ACTIONS(3449), 1, anon_sym_LPAREN, - STATE(1668), 1, + STATE(1736), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65679] = 3, - ACTIONS(4164), 1, + [65894] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(356), 1, + STATE(448), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65905] = 3, + ACTIONS(4141), 1, + anon_sym_LBRACE, + STATE(399), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65690] = 3, - ACTIONS(5145), 1, - anon_sym_SEMI, - ACTIONS(5261), 1, - anon_sym_RPAREN, + [65916] = 3, + ACTIONS(3552), 1, + anon_sym_COLON_COLON, + ACTIONS(3654), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65701] = 2, + [65927] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5263), 2, - anon_sym_RPAREN, + ACTIONS(4564), 2, anon_sym_COMMA, - [65710] = 3, - ACTIONS(4282), 1, anon_sym_PIPE, - ACTIONS(5265), 1, - anon_sym_in, + [65936] = 3, + ACTIONS(4045), 1, + anon_sym_RPAREN, + ACTIONS(5163), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65721] = 2, + [65947] = 3, + ACTIONS(4041), 1, + anon_sym_RBRACE, + ACTIONS(5163), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5267), 2, - anon_sym_const, - sym_mutable_specifier, - [65730] = 2, + [65958] = 3, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(345), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4667), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [65739] = 3, - ACTIONS(3439), 1, - anon_sym_LPAREN, - STATE(1374), 1, - sym_parameters, + [65969] = 3, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(366), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65750] = 3, - ACTIONS(3552), 1, - anon_sym_COLON_COLON, - ACTIONS(3664), 1, - anon_sym_BANG, + [65980] = 3, + ACTIONS(4009), 1, + anon_sym_RPAREN, + ACTIONS(5163), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65761] = 3, - ACTIONS(594), 1, + [65991] = 3, + ACTIONS(582), 1, anon_sym_LBRACE, - STATE(228), 1, + STATE(233), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65772] = 3, - ACTIONS(2580), 1, - anon_sym_LPAREN, - STATE(973), 1, - sym_parameters, + [66002] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65783] = 3, - ACTIONS(5145), 1, + ACTIONS(4767), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66011] = 3, + ACTIONS(4102), 1, + anon_sym_PLUS, + ACTIONS(5261), 1, anon_sym_SEMI, - ACTIONS(5269), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65794] = 3, - ACTIONS(5145), 1, + [66022] = 3, + ACTIONS(4025), 1, + anon_sym_RPAREN, + ACTIONS(5163), 1, anon_sym_SEMI, - ACTIONS(5271), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65805] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(369), 1, - sym_declaration_list, + [66033] = 3, + ACTIONS(2964), 1, + anon_sym_COLON, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65816] = 2, + [66044] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4882), 2, + ACTIONS(4159), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [65825] = 3, - ACTIONS(3822), 1, - anon_sym_LBRACE, - STATE(421), 1, - sym_field_declaration_list, + [66053] = 3, + ACTIONS(2980), 1, + anon_sym_COLON, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65836] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(406), 1, - sym_declaration_list, + [66064] = 3, + ACTIONS(4039), 1, + anon_sym_RPAREN, + ACTIONS(5163), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65847] = 2, + [66075] = 3, + ACTIONS(3451), 1, + anon_sym_BANG, + ACTIONS(5263), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4871), 2, - anon_sym_COMMA, - anon_sym_GT, - [65856] = 3, - ACTIONS(5273), 1, - anon_sym_SEMI, - ACTIONS(5275), 1, - anon_sym_as, + [66086] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65867] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(5277), 1, - anon_sym_SEMI, + ACTIONS(4753), 2, + anon_sym_COMMA, + anon_sym_GT, + [66095] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65878] = 3, - ACTIONS(3983), 1, + ACTIONS(5265), 2, anon_sym_RPAREN, - ACTIONS(5145), 1, - anon_sym_SEMI, + anon_sym_COMMA, + [66104] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65889] = 3, + [66115] = 3, ACTIONS(2588), 1, anon_sym_LT2, - STATE(1129), 1, + STATE(1138), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65900] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(5279), 1, - anon_sym_SEMI, + [66126] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65911] = 3, - ACTIONS(4049), 1, - anon_sym_RPAREN, - ACTIONS(5145), 1, - anon_sym_SEMI, + ACTIONS(5267), 2, + sym_identifier, + sym_metavariable, + [66135] = 3, + ACTIONS(2942), 1, + anon_sym_COLON, + ACTIONS(4102), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65922] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1122), 1, - sym_block, + [66146] = 3, + ACTIONS(2580), 1, + anon_sym_LPAREN, + STATE(988), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65933] = 3, - ACTIONS(3441), 1, - anon_sym_BANG, - ACTIONS(5281), 1, - anon_sym_COLON_COLON, + [66157] = 3, + ACTIONS(4703), 1, + sym_identifier, + ACTIONS(4707), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65944] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(62), 1, - sym_closure_parameters, + [66168] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65955] = 3, - ACTIONS(4085), 1, - anon_sym_PLUS, - ACTIONS(5283), 1, - anon_sym_GT, + ACTIONS(5269), 2, + anon_sym_const, + sym_mutable_specifier, + [66177] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1668), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65966] = 2, + [66188] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5285), 2, + ACTIONS(5271), 2, anon_sym_RPAREN, anon_sym_COMMA, - [65975] = 3, - ACTIONS(4814), 1, - sym_identifier, - ACTIONS(4818), 1, - sym_mutable_specifier, + [66197] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, + ACTIONS(5273), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65986] = 3, - ACTIONS(3439), 1, - anon_sym_LPAREN, - STATE(1689), 1, - sym_parameters, + [66208] = 3, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(402), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65997] = 3, - ACTIONS(5145), 1, - anon_sym_SEMI, - ACTIONS(5287), 1, - anon_sym_RBRACE, + [66219] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1699), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66008] = 3, - ACTIONS(2948), 1, - anon_sym_COLON, - ACTIONS(4085), 1, - anon_sym_PLUS, + [66230] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1143), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66019] = 2, + [66241] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4494), 2, + ACTIONS(4722), 2, anon_sym_COMMA, anon_sym_GT, - [66028] = 3, - ACTIONS(5289), 1, - anon_sym_LPAREN, - ACTIONS(5291), 1, + [66250] = 3, + ACTIONS(900), 1, anon_sym_LBRACE, + STATE(1482), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66039] = 3, - ACTIONS(2580), 1, - anon_sym_LPAREN, - STATE(967), 1, - sym_parameters, + [66261] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66050] = 3, - ACTIONS(4090), 1, - anon_sym_LBRACE, - STATE(1015), 1, - sym_enum_variant_list, + ACTIONS(5275), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66270] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(66), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66061] = 3, - ACTIONS(5293), 1, - anon_sym_LPAREN, - ACTIONS(5295), 1, - anon_sym_LBRACE, + [66281] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66072] = 3, - ACTIONS(900), 1, + ACTIONS(5277), 2, + sym_identifier, + sym_metavariable, + [66290] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1468), 1, + STATE(1075), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66083] = 3, - ACTIONS(5145), 1, + [66301] = 3, + ACTIONS(5163), 1, anon_sym_SEMI, - ACTIONS(5297), 1, + ACTIONS(5279), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66094] = 2, + [66312] = 3, + ACTIONS(5163), 1, + anon_sym_SEMI, + ACTIONS(5281), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4150), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66103] = 3, - ACTIONS(3826), 1, - anon_sym_LT, - STATE(755), 1, - sym_type_parameters, + [66323] = 3, + ACTIONS(5163), 1, + anon_sym_SEMI, + ACTIONS(5283), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66114] = 3, - ACTIONS(3596), 1, - anon_sym_BANG, - ACTIONS(5299), 1, - anon_sym_COLON_COLON, + [66334] = 3, + ACTIONS(5285), 1, + anon_sym_SEMI, + ACTIONS(5287), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66125] = 3, - ACTIONS(594), 1, - anon_sym_LBRACE, - STATE(247), 1, - sym_block, + [66345] = 3, + ACTIONS(5163), 1, + anon_sym_SEMI, + ACTIONS(5289), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66136] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1135), 1, - sym_block, + [66356] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66147] = 2, + ACTIONS(5112), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66365] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, + ACTIONS(5291), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5301), 2, - anon_sym_const, - sym_mutable_specifier, - [66156] = 2, + [66376] = 3, + ACTIONS(5293), 1, + anon_sym_SEMI, + ACTIONS(5295), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5303), 2, - anon_sym_const, - sym_mutable_specifier, - [66165] = 2, + [66387] = 3, + ACTIONS(3888), 1, + anon_sym_LBRACE, + STATE(476), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5305), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66174] = 3, - ACTIONS(3923), 1, - anon_sym_COLON, - STATE(1957), 1, - sym_trait_bounds, + [66398] = 3, + ACTIONS(5297), 1, + anon_sym_LPAREN, + ACTIONS(5299), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66185] = 2, + [66409] = 3, + ACTIONS(5301), 1, + anon_sym_LPAREN, + ACTIONS(5303), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4556), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66194] = 3, - ACTIONS(4164), 1, + [66420] = 3, + ACTIONS(3888), 1, anon_sym_LBRACE, - STATE(359), 1, - sym_enum_variant_list, + STATE(479), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66205] = 2, + [66431] = 3, + ACTIONS(3598), 1, + anon_sym_COLON_COLON, + ACTIONS(5305), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5307), 2, - sym_identifier, - sym_metavariable, - [66214] = 3, - ACTIONS(2690), 1, + [66442] = 3, + ACTIONS(3606), 1, anon_sym_COLON_COLON, - ACTIONS(3960), 1, + ACTIONS(5305), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66225] = 2, + [66453] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2439), 2, - anon_sym_COMMA, - anon_sym_GT, - [66234] = 3, - ACTIONS(4282), 1, - anon_sym_PIPE, - ACTIONS(5309), 1, - anon_sym_EQ, + ACTIONS(5307), 2, + anon_sym_const, + sym_mutable_specifier, + [66462] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66245] = 2, - ACTIONS(5311), 1, - sym_identifier, + ACTIONS(4615), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66471] = 3, + ACTIONS(2672), 1, + anon_sym_COLON_COLON, + ACTIONS(3947), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66253] = 2, - ACTIONS(5297), 1, - anon_sym_SEMI, + [66482] = 3, + ACTIONS(5309), 1, + sym_identifier, + ACTIONS(5311), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66261] = 2, + [66493] = 3, + ACTIONS(3622), 1, + anon_sym_BANG, ACTIONS(5313), 1, - anon_sym_RBRACK, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66269] = 2, + [66504] = 2, ACTIONS(5315), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66277] = 2, - ACTIONS(5317), 1, + [66512] = 2, + ACTIONS(3193), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66285] = 2, - ACTIONS(4826), 1, + [66520] = 2, + ACTIONS(4709), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66293] = 2, - ACTIONS(5319), 1, + [66528] = 2, + ACTIONS(5317), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66301] = 2, - ACTIONS(4841), 1, - sym_identifier, + [66536] = 2, + ACTIONS(5279), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66309] = 2, - ACTIONS(5321), 1, - anon_sym_RBRACK, + [66544] = 2, + ACTIONS(5319), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66317] = 2, - ACTIONS(4804), 1, - anon_sym_RBRACE, + [66552] = 2, + ACTIONS(5321), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66325] = 2, + [66560] = 2, ACTIONS(5323), 1, - sym_identifier, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66333] = 2, + [66568] = 2, ACTIONS(5325), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66341] = 2, - ACTIONS(4812), 1, + [66576] = 2, + ACTIONS(5327), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66349] = 2, - ACTIONS(5327), 1, + [66584] = 2, + ACTIONS(5329), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66357] = 2, - ACTIONS(5329), 1, - sym_identifier, + [66592] = 2, + ACTIONS(5283), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66365] = 2, - ACTIONS(5331), 1, + [66600] = 2, + ACTIONS(4667), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66373] = 2, - ACTIONS(4802), 1, + [66608] = 2, + ACTIONS(5331), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66381] = 2, + [66616] = 2, ACTIONS(5333), 1, - sym_identifier, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66389] = 2, + [66624] = 2, + ACTIONS(4665), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66632] = 2, ACTIONS(5335), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66397] = 2, + [66640] = 2, ACTIONS(5337), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66405] = 2, - ACTIONS(4800), 1, - sym_identifier, + [66648] = 2, + ACTIONS(4649), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66413] = 2, + [66656] = 2, ACTIONS(5339), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66421] = 2, + [66664] = 2, ACTIONS(5341), 1, - anon_sym_SEMI, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66429] = 2, + [66672] = 2, ACTIONS(5343), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66437] = 2, + [66680] = 2, ACTIONS(5345), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66445] = 2, + [66688] = 2, ACTIONS(5347), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66453] = 2, + [66696] = 2, ACTIONS(5349), 1, - anon_sym_COLON, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66704] = 2, + ACTIONS(5351), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66712] = 2, + ACTIONS(5353), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66461] = 2, - ACTIONS(4900), 1, - anon_sym_RBRACE, + [66720] = 2, + ACTIONS(5355), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66469] = 2, - ACTIONS(5351), 1, + [66728] = 2, + ACTIONS(4632), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66477] = 2, - ACTIONS(2471), 1, - anon_sym_PLUS, + [66736] = 2, + ACTIONS(3241), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66485] = 2, - ACTIONS(5353), 1, - sym_identifier, + [66744] = 2, + ACTIONS(3616), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66493] = 2, - ACTIONS(5355), 1, - anon_sym_RPAREN, + [66752] = 2, + ACTIONS(3530), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66501] = 2, + [66760] = 2, ACTIONS(5357), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66509] = 2, - ACTIONS(4776), 1, - sym_identifier, + [66768] = 2, + ACTIONS(5359), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66517] = 2, - ACTIONS(5359), 1, + [66776] = 2, + ACTIONS(5361), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66525] = 2, - ACTIONS(4774), 1, - anon_sym_GT, + [66784] = 2, + ACTIONS(5363), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66533] = 2, - ACTIONS(5361), 1, + [66792] = 2, + ACTIONS(5365), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66541] = 2, - ACTIONS(5363), 1, + [66800] = 2, + ACTIONS(5367), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66549] = 2, - ACTIONS(5365), 1, + [66808] = 2, + ACTIONS(4699), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66557] = 2, - ACTIONS(5367), 1, - anon_sym_LBRACK, + [66816] = 2, + ACTIONS(3195), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66565] = 2, + [66824] = 2, ACTIONS(5369), 1, - sym_identifier, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66573] = 2, + [66832] = 2, + ACTIONS(4643), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66840] = 2, ACTIONS(5371), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66581] = 2, + [66848] = 2, ACTIONS(5373), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66589] = 2, + [66856] = 2, ACTIONS(5375), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66597] = 2, + [66864] = 2, ACTIONS(5377), 1, - anon_sym_COLON_COLON, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66605] = 2, + [66872] = 2, ACTIONS(5379), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66613] = 2, - ACTIONS(3241), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66621] = 2, - ACTIONS(3530), 1, - anon_sym_COLON_COLON, + [66880] = 2, + ACTIONS(4691), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66629] = 2, + [66888] = 2, ACTIONS(5381), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66637] = 2, + [66896] = 2, ACTIONS(5383), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66645] = 2, + [66904] = 2, ACTIONS(5385), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66653] = 2, - ACTIONS(3213), 1, - anon_sym_COLON_COLON, + [66912] = 2, + ACTIONS(5387), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66661] = 2, - ACTIONS(5387), 1, - anon_sym_COLON_COLON, + [66920] = 2, + ACTIONS(5389), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66669] = 2, - ACTIONS(5389), 1, + [66928] = 2, + ACTIONS(4780), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66677] = 2, + [66936] = 2, ACTIONS(5391), 1, - anon_sym_fn, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66685] = 2, + [66944] = 2, ACTIONS(5393), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66693] = 2, + [66952] = 2, ACTIONS(5395), 1, - sym_self, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66701] = 2, - ACTIONS(4755), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66709] = 2, + [66960] = 2, ACTIONS(5397), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66717] = 2, + [66968] = 2, ACTIONS(5399), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66725] = 2, + [66976] = 2, ACTIONS(5401), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66733] = 2, + [66984] = 2, ACTIONS(5403), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66741] = 2, + [66992] = 2, ACTIONS(5405), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66749] = 2, + [67000] = 2, ACTIONS(5407), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66757] = 2, + [67008] = 2, ACTIONS(5409), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66765] = 2, + [67016] = 2, ACTIONS(5411), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66773] = 2, - ACTIONS(5413), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66781] = 2, - ACTIONS(4888), 1, + [67024] = 2, + ACTIONS(4145), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66789] = 2, - ACTIONS(5415), 1, + [67032] = 2, + ACTIONS(5413), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66797] = 2, - ACTIONS(5417), 1, + [67040] = 2, + ACTIONS(5415), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66805] = 2, - ACTIONS(5419), 1, - anon_sym_RBRACE, + [67048] = 2, + ACTIONS(2672), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66813] = 2, - ACTIONS(2690), 1, - anon_sym_COLON_COLON, + [67056] = 2, + ACTIONS(5417), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66821] = 2, - ACTIONS(2714), 1, + [67064] = 2, + ACTIONS(5313), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66829] = 2, - ACTIONS(5299), 1, - anon_sym_COLON_COLON, + [67072] = 2, + ACTIONS(3237), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66837] = 2, - ACTIONS(4124), 1, - sym_identifier, + [67080] = 2, + ACTIONS(5419), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66845] = 2, + [67088] = 2, ACTIONS(5421), 1, - anon_sym_fn, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66853] = 2, + [67096] = 2, ACTIONS(5423), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66861] = 2, + [67104] = 2, ACTIONS(5425), 1, - sym_identifier, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66869] = 2, - ACTIONS(5427), 1, - sym_identifier, + [67112] = 2, + ACTIONS(4041), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66877] = 2, - ACTIONS(4854), 1, - sym_identifier, + [67120] = 2, + ACTIONS(2489), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66885] = 2, - ACTIONS(5429), 1, - sym_identifier, + [67128] = 2, + ACTIONS(2465), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66893] = 2, - ACTIONS(2508), 1, - anon_sym_PLUS, + [67136] = 2, + ACTIONS(5427), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67144] = 2, + ACTIONS(5429), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66901] = 2, + [67152] = 2, ACTIONS(5431), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66909] = 2, + [67160] = 2, ACTIONS(5433), 1, - anon_sym_fn, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66917] = 2, + [67168] = 2, ACTIONS(5435), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66925] = 2, + [67176] = 2, ACTIONS(5437), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66933] = 2, + [67184] = 2, ACTIONS(5439), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66941] = 2, - ACTIONS(5441), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66949] = 2, - ACTIONS(5443), 1, + [67192] = 2, + ACTIONS(5441), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66957] = 2, - ACTIONS(5445), 1, - sym_identifier, + [67200] = 2, + ACTIONS(540), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66965] = 2, - ACTIONS(5447), 1, - anon_sym_RPAREN, + [67208] = 2, + ACTIONS(5443), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66973] = 2, - ACTIONS(5449), 1, - anon_sym_RBRACE, + [67216] = 2, + ACTIONS(5445), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66981] = 2, - ACTIONS(2401), 1, + [67224] = 2, + ACTIONS(5447), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66989] = 2, - ACTIONS(5451), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66997] = 2, - ACTIONS(5453), 1, - anon_sym_COLON_COLON, + [67232] = 2, + ACTIONS(4794), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67005] = 2, - ACTIONS(5455), 1, + [67240] = 2, + ACTIONS(5449), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67013] = 2, - ACTIONS(5457), 1, - anon_sym_RBRACK, + [67248] = 2, + ACTIONS(4049), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67021] = 2, + [67256] = 2, ACTIONS(3550), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67029] = 2, - ACTIONS(5459), 1, + [67264] = 2, + ACTIONS(5451), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67037] = 2, - ACTIONS(3211), 1, - sym_identifier, + [67272] = 2, + ACTIONS(4448), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67045] = 2, - ACTIONS(548), 1, - anon_sym_RBRACK, + [67280] = 2, + ACTIONS(4782), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67053] = 2, - ACTIONS(5461), 1, + [67288] = 2, + ACTIONS(5453), 1, anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67061] = 2, - ACTIONS(5463), 1, - anon_sym_RBRACK, + [67296] = 2, + ACTIONS(5455), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67069] = 2, - ACTIONS(4269), 1, - anon_sym_RPAREN, + [67304] = 2, + ACTIONS(4884), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67077] = 2, - ACTIONS(5465), 1, + [67312] = 2, + ACTIONS(5457), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67085] = 2, - ACTIONS(4506), 1, + [67320] = 2, + ACTIONS(5459), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67093] = 2, - ACTIONS(5271), 1, - anon_sym_SEMI, + [67328] = 2, + ACTIONS(5461), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67101] = 2, - ACTIONS(5467), 1, - sym_identifier, + [67336] = 2, + ACTIONS(5129), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67109] = 2, - ACTIONS(5469), 1, + [67344] = 2, + ACTIONS(5463), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67117] = 2, - ACTIONS(4669), 1, - anon_sym_RBRACE, + [67352] = 2, + ACTIONS(5465), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67125] = 2, - ACTIONS(5471), 1, + [67360] = 2, + ACTIONS(5467), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67133] = 2, - ACTIONS(4441), 1, - anon_sym_RPAREN, + [67368] = 2, + ACTIONS(5469), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67141] = 2, - ACTIONS(4154), 1, + [67376] = 2, + ACTIONS(4163), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67149] = 2, + [67384] = 2, + ACTIONS(5471), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67392] = 2, ACTIONS(5473), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67157] = 2, + [67400] = 2, ACTIONS(5475), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67165] = 2, - ACTIONS(4699), 1, - anon_sym_RBRACE, + [67408] = 2, + ACTIONS(4831), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67173] = 2, + [67416] = 2, ACTIONS(5477), 1, - anon_sym_SEMI, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67181] = 2, - ACTIONS(5479), 1, - anon_sym_RPAREN, + [67424] = 2, + ACTIONS(4434), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67189] = 2, - ACTIONS(5481), 1, - anon_sym_SEMI, + [67432] = 2, + ACTIONS(5479), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67197] = 2, - ACTIONS(5483), 1, - anon_sym_fn, + [67440] = 2, + ACTIONS(5481), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67205] = 2, - ACTIONS(5287), 1, - anon_sym_SEMI, + [67448] = 2, + ACTIONS(5483), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67213] = 2, + [67456] = 2, ACTIONS(5485), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67221] = 2, - ACTIONS(4790), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67229] = 2, + [67464] = 2, ACTIONS(5487), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67237] = 2, + [67472] = 2, ACTIONS(5489), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67245] = 2, + [67480] = 2, ACTIONS(5491), 1, - anon_sym_LPAREN, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67253] = 2, - ACTIONS(2413), 1, - anon_sym_EQ_GT, + [67488] = 2, + ACTIONS(5493), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67261] = 2, - ACTIONS(3591), 1, - anon_sym_COLON_COLON, + [67496] = 2, + ACTIONS(5495), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67269] = 2, - ACTIONS(5493), 1, - anon_sym_RBRACK, + [67504] = 2, + ACTIONS(5497), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67277] = 2, - ACTIONS(4449), 1, - anon_sym_RBRACK, + [67512] = 2, + ACTIONS(5499), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67285] = 2, - ACTIONS(5495), 1, + [67520] = 2, + ACTIONS(5501), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67293] = 2, - ACTIONS(5497), 1, + [67528] = 2, + ACTIONS(5503), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67301] = 2, - ACTIONS(5499), 1, - sym_identifier, + [67536] = 2, + ACTIONS(5505), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67309] = 2, - ACTIONS(5501), 1, - anon_sym_EQ_GT, + [67544] = 2, + ACTIONS(5507), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67317] = 2, - ACTIONS(5503), 1, - anon_sym_EQ_GT, + [67552] = 2, + ACTIONS(5509), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67325] = 2, - ACTIONS(5505), 1, + [67560] = 2, + ACTIONS(5511), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67333] = 2, + [67568] = 2, ACTIONS(374), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67341] = 2, - ACTIONS(5507), 1, + [67576] = 2, + ACTIONS(5513), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67349] = 2, - ACTIONS(5509), 1, - anon_sym_RBRACE, + [67584] = 2, + ACTIONS(5515), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67357] = 2, - ACTIONS(5511), 1, + [67592] = 2, + ACTIONS(4055), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67365] = 2, - ACTIONS(4029), 1, - anon_sym_SEMI, + [67600] = 2, + ACTIONS(4462), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67373] = 2, - ACTIONS(5513), 1, - anon_sym_RPAREN, + [67608] = 2, + ACTIONS(4928), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67381] = 2, - ACTIONS(4027), 1, - anon_sym_SEMI, + [67616] = 2, + ACTIONS(5517), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67389] = 2, - ACTIONS(5515), 1, - anon_sym_COLON, + [67624] = 2, + ACTIONS(5519), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67397] = 2, - ACTIONS(5517), 1, + [67632] = 2, + ACTIONS(5521), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67405] = 2, - ACTIONS(5519), 1, - anon_sym_COLON, + [67640] = 2, + ACTIONS(4283), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67413] = 2, - ACTIONS(5521), 1, - anon_sym_COLON, + [67648] = 2, + ACTIONS(5523), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67421] = 2, - ACTIONS(5523), 1, - sym_identifier, + [67656] = 2, + ACTIONS(4053), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67429] = 2, - ACTIONS(4017), 1, + [67664] = 2, + ACTIONS(4005), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67437] = 2, - ACTIONS(4977), 1, - sym_identifier, + [67672] = 2, + ACTIONS(5525), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67445] = 2, - ACTIONS(5525), 1, - anon_sym_RBRACK, + [67680] = 2, + ACTIONS(5527), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67453] = 2, - ACTIONS(2692), 1, + [67688] = 2, + ACTIONS(2674), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67461] = 2, - ACTIONS(5527), 1, + [67696] = 2, + ACTIONS(5529), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67469] = 2, - ACTIONS(3467), 1, + [67704] = 2, + ACTIONS(3501), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67477] = 2, - ACTIONS(5529), 1, - sym_identifier, + [67712] = 2, + ACTIONS(5531), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67485] = 2, - ACTIONS(5531), 1, + [67720] = 2, + ACTIONS(5533), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67493] = 2, - ACTIONS(2788), 1, + [67728] = 2, + ACTIONS(2962), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67501] = 2, - ACTIONS(5533), 1, - anon_sym_EQ, + [67736] = 2, + ACTIONS(5535), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67509] = 2, - ACTIONS(5535), 1, - sym_identifier, + [67744] = 2, + ACTIONS(5537), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67517] = 2, - ACTIONS(5537), 1, + [67752] = 2, + ACTIONS(5539), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67525] = 2, - ACTIONS(4979), 1, + [67760] = 2, + ACTIONS(4960), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67533] = 2, - ACTIONS(5539), 1, + [67768] = 2, + ACTIONS(5541), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67541] = 2, - ACTIONS(5541), 1, - anon_sym_SEMI, + [67776] = 2, + ACTIONS(5543), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67549] = 2, - ACTIONS(2686), 1, - anon_sym_COLON_COLON, + [67784] = 2, + ACTIONS(4330), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67557] = 2, - ACTIONS(5543), 1, + [67792] = 2, + ACTIONS(5545), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67565] = 2, - ACTIONS(5545), 1, + [67800] = 2, + ACTIONS(5547), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67573] = 2, - ACTIONS(5547), 1, + [67808] = 2, + ACTIONS(5549), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67581] = 2, - ACTIONS(4255), 1, + [67816] = 2, + ACTIONS(4273), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67589] = 2, - ACTIONS(5549), 1, + [67824] = 2, + ACTIONS(5551), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67597] = 2, - ACTIONS(5551), 1, - sym_identifier, + [67832] = 2, + ACTIONS(4303), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67605] = 2, - ACTIONS(4196), 1, + [67840] = 2, + ACTIONS(4149), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67613] = 2, + [67848] = 2, ACTIONS(5553), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67621] = 2, + [67856] = 2, ACTIONS(5555), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67629] = 2, - ACTIONS(4148), 1, + [67864] = 2, + ACTIONS(4127), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67637] = 2, + [67872] = 2, ACTIONS(5557), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67645] = 2, - ACTIONS(5559), 1, + [67880] = 2, + ACTIONS(4855), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67888] = 2, + ACTIONS(5163), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67653] = 2, - ACTIONS(5561), 1, - anon_sym_RPAREN, + [67896] = 2, + ACTIONS(5559), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67661] = 2, - ACTIONS(4294), 1, - anon_sym_RPAREN, + [67904] = 2, + ACTIONS(5561), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67669] = 2, + [67912] = 2, ACTIONS(5563), 1, - anon_sym_fn, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67677] = 2, + [67920] = 2, ACTIONS(5565), 1, - anon_sym_COLON, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67685] = 2, + [67928] = 2, ACTIONS(5567), 1, - anon_sym_LBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67693] = 2, + [67936] = 2, ACTIONS(5569), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67701] = 2, + [67944] = 2, ACTIONS(5571), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67709] = 2, - ACTIONS(3227), 1, - anon_sym_RPAREN, + [67952] = 2, + ACTIONS(2786), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67717] = 2, + [67960] = 2, ACTIONS(5573), 1, - anon_sym_RBRACE, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67725] = 2, + [67968] = 2, ACTIONS(5575), 1, - anon_sym_SEMI, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67733] = 2, + [67976] = 2, ACTIONS(5577), 1, - anon_sym_COLON, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67741] = 2, + [67984] = 2, ACTIONS(5579), 1, - anon_sym_LBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67749] = 2, + [67992] = 2, ACTIONS(5581), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67757] = 2, - ACTIONS(4015), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67765] = 2, - ACTIONS(5145), 1, - anon_sym_SEMI, + [68000] = 2, + ACTIONS(5583), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67773] = 2, - ACTIONS(5583), 1, + [68008] = 2, + ACTIONS(5585), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67781] = 2, - ACTIONS(5585), 1, - anon_sym_SEMI, + [68016] = 2, + ACTIONS(4871), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67789] = 2, + [68024] = 2, ACTIONS(5587), 1, - anon_sym_EQ_GT, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67797] = 2, - ACTIONS(3552), 1, + [68032] = 2, + ACTIONS(2746), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67805] = 2, + [68040] = 2, ACTIONS(5589), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67813] = 2, + [68048] = 2, ACTIONS(5591), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67821] = 2, - ACTIONS(5069), 1, - anon_sym_RBRACE, + [68056] = 2, + ACTIONS(2375), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67829] = 2, + [68064] = 2, ACTIONS(5593), 1, - anon_sym_EQ_GT, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67837] = 2, - ACTIONS(5595), 1, - anon_sym_SEMI, + [68072] = 2, + ACTIONS(3552), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67845] = 2, - ACTIONS(5597), 1, + [68080] = 2, + ACTIONS(5595), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67853] = 2, - ACTIONS(5599), 1, - sym_identifier, + [68088] = 2, + ACTIONS(2437), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67861] = 2, - ACTIONS(5601), 1, - sym_identifier, + [68096] = 2, + ACTIONS(5597), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67869] = 2, - ACTIONS(5603), 1, + [68104] = 2, + ACTIONS(5599), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67877] = 2, - ACTIONS(5605), 1, + [68112] = 2, + ACTIONS(5601), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67885] = 2, - ACTIONS(4039), 1, + [68120] = 2, + ACTIONS(5603), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67893] = 2, - ACTIONS(5607), 1, + [68128] = 2, + ACTIONS(5605), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67901] = 2, - ACTIONS(5609), 1, + [68136] = 2, + ACTIONS(5607), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67909] = 2, - ACTIONS(5281), 1, + [68144] = 2, + ACTIONS(5263), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67917] = 2, - ACTIONS(5611), 1, + [68152] = 2, + ACTIONS(5609), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67925] = 2, + [68160] = 2, + ACTIONS(5611), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68168] = 2, ACTIONS(5613), 1, - anon_sym_SEMI, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67933] = 2, + [68176] = 2, ACTIONS(5615), 1, - anon_sym_COLON, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67941] = 2, + [68184] = 2, ACTIONS(5617), 1, - anon_sym_LBRACK, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67949] = 2, + [68192] = 2, ACTIONS(5619), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67957] = 2, + [68200] = 2, ACTIONS(5621), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67965] = 2, + [68208] = 2, ACTIONS(5623), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67973] = 2, - ACTIONS(5625), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67981] = 2, - ACTIONS(5627), 1, - sym_identifier, + [68216] = 2, + ACTIONS(5057), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67989] = 2, - ACTIONS(5629), 1, + [68224] = 2, + ACTIONS(5625), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67997] = 2, - ACTIONS(5116), 1, - anon_sym_RPAREN, + [68232] = 2, + ACTIONS(5627), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68005] = 2, - ACTIONS(3491), 1, + [68240] = 2, + ACTIONS(3477), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68013] = 2, - ACTIONS(5631), 1, + [68248] = 2, + ACTIONS(5629), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68021] = 2, - ACTIONS(4985), 1, - anon_sym_RBRACE, + [68256] = 2, + ACTIONS(5631), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68029] = 2, + [68264] = 2, ACTIONS(5633), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68037] = 2, - ACTIONS(4276), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68045] = 2, + [68272] = 2, ACTIONS(5635), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68053] = 2, + [68280] = 2, ACTIONS(5637), 1, - anon_sym_SEMI, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68061] = 2, + [68288] = 2, ACTIONS(5639), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68069] = 2, + [68296] = 2, ACTIONS(5641), 1, - anon_sym_fn, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68077] = 2, + [68304] = 2, ACTIONS(5643), 1, - sym_identifier, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68085] = 2, + [68312] = 2, ACTIONS(5645), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68320] = 2, + ACTIONS(5167), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68093] = 2, + [68328] = 2, ACTIONS(5647), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68101] = 2, + [68336] = 2, ACTIONS(5649), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68109] = 2, - ACTIONS(5651), 1, + [68344] = 2, + ACTIONS(5165), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68117] = 2, - ACTIONS(5653), 1, - anon_sym_COLON, + [68352] = 2, + ACTIONS(5651), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68125] = 2, - ACTIONS(5655), 1, + [68360] = 2, + ACTIONS(5653), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68133] = 2, - ACTIONS(5657), 1, - anon_sym_SEMI, + [68368] = 2, + ACTIONS(4964), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68141] = 2, - ACTIONS(5147), 1, - anon_sym_SEMI, + [68376] = 2, + ACTIONS(5655), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68149] = 2, - ACTIONS(5659), 1, + [68384] = 2, + ACTIONS(5657), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -128572,1934 +129277,1929 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(655)] = 0, - [SMALL_STATE(656)] = 129, - [SMALL_STATE(657)] = 258, - [SMALL_STATE(658)] = 387, - [SMALL_STATE(659)] = 516, - [SMALL_STATE(660)] = 645, - [SMALL_STATE(661)] = 774, - [SMALL_STATE(662)] = 903, - [SMALL_STATE(663)] = 1032, - [SMALL_STATE(664)] = 1161, - [SMALL_STATE(665)] = 1290, - [SMALL_STATE(666)] = 1419, - [SMALL_STATE(667)] = 1548, - [SMALL_STATE(668)] = 1677, - [SMALL_STATE(669)] = 1806, - [SMALL_STATE(670)] = 1935, - [SMALL_STATE(671)] = 2064, - [SMALL_STATE(672)] = 2193, - [SMALL_STATE(673)] = 2322, - [SMALL_STATE(674)] = 2451, - [SMALL_STATE(675)] = 2580, - [SMALL_STATE(676)] = 2709, - [SMALL_STATE(677)] = 2838, - [SMALL_STATE(678)] = 2967, - [SMALL_STATE(679)] = 3096, - [SMALL_STATE(680)] = 3225, - [SMALL_STATE(681)] = 3354, - [SMALL_STATE(682)] = 3483, - [SMALL_STATE(683)] = 3612, - [SMALL_STATE(684)] = 3741, - [SMALL_STATE(685)] = 3870, - [SMALL_STATE(686)] = 3999, - [SMALL_STATE(687)] = 4128, - [SMALL_STATE(688)] = 4257, - [SMALL_STATE(689)] = 4386, - [SMALL_STATE(690)] = 4515, - [SMALL_STATE(691)] = 4644, - [SMALL_STATE(692)] = 4773, - [SMALL_STATE(693)] = 4902, - [SMALL_STATE(694)] = 5031, - [SMALL_STATE(695)] = 5160, - [SMALL_STATE(696)] = 5289, - [SMALL_STATE(697)] = 5418, - [SMALL_STATE(698)] = 5547, - [SMALL_STATE(699)] = 5676, - [SMALL_STATE(700)] = 5805, - [SMALL_STATE(701)] = 5934, - [SMALL_STATE(702)] = 6063, - [SMALL_STATE(703)] = 6192, - [SMALL_STATE(704)] = 6321, - [SMALL_STATE(705)] = 6450, - [SMALL_STATE(706)] = 6579, - [SMALL_STATE(707)] = 6708, - [SMALL_STATE(708)] = 6837, - [SMALL_STATE(709)] = 6966, - [SMALL_STATE(710)] = 7095, - [SMALL_STATE(711)] = 7224, - [SMALL_STATE(712)] = 7353, - [SMALL_STATE(713)] = 7482, - [SMALL_STATE(714)] = 7611, - [SMALL_STATE(715)] = 7740, - [SMALL_STATE(716)] = 7811, - [SMALL_STATE(717)] = 7940, - [SMALL_STATE(718)] = 8069, - [SMALL_STATE(719)] = 8198, - [SMALL_STATE(720)] = 8327, - [SMALL_STATE(721)] = 8456, - [SMALL_STATE(722)] = 8585, - [SMALL_STATE(723)] = 8714, - [SMALL_STATE(724)] = 8843, - [SMALL_STATE(725)] = 8972, - [SMALL_STATE(726)] = 9101, - [SMALL_STATE(727)] = 9230, - [SMALL_STATE(728)] = 9359, - [SMALL_STATE(729)] = 9488, - [SMALL_STATE(730)] = 9617, - [SMALL_STATE(731)] = 9746, - [SMALL_STATE(732)] = 9875, - [SMALL_STATE(733)] = 10004, - [SMALL_STATE(734)] = 10135, - [SMALL_STATE(735)] = 10264, - [SMALL_STATE(736)] = 10393, - [SMALL_STATE(737)] = 10522, - [SMALL_STATE(738)] = 10651, - [SMALL_STATE(739)] = 10780, - [SMALL_STATE(740)] = 10909, - [SMALL_STATE(741)] = 11038, - [SMALL_STATE(742)] = 11167, - [SMALL_STATE(743)] = 11296, - [SMALL_STATE(744)] = 11425, - [SMALL_STATE(745)] = 11554, - [SMALL_STATE(746)] = 11683, - [SMALL_STATE(747)] = 11812, - [SMALL_STATE(748)] = 11941, - [SMALL_STATE(749)] = 12070, - [SMALL_STATE(750)] = 12199, - [SMALL_STATE(751)] = 12328, - [SMALL_STATE(752)] = 12457, - [SMALL_STATE(753)] = 12586, - [SMALL_STATE(754)] = 12715, - [SMALL_STATE(755)] = 12844, - [SMALL_STATE(756)] = 12973, - [SMALL_STATE(757)] = 13102, - [SMALL_STATE(758)] = 13231, - [SMALL_STATE(759)] = 13360, - [SMALL_STATE(760)] = 13489, - [SMALL_STATE(761)] = 13618, - [SMALL_STATE(762)] = 13747, - [SMALL_STATE(763)] = 13876, - [SMALL_STATE(764)] = 14005, - [SMALL_STATE(765)] = 14134, - [SMALL_STATE(766)] = 14200, - [SMALL_STATE(767)] = 14266, - [SMALL_STATE(768)] = 14332, - [SMALL_STATE(769)] = 14398, - [SMALL_STATE(770)] = 14460, - [SMALL_STATE(771)] = 14530, - [SMALL_STATE(772)] = 14597, - [SMALL_STATE(773)] = 14664, - [SMALL_STATE(774)] = 14728, - [SMALL_STATE(775)] = 14788, - [SMALL_STATE(776)] = 14844, - [SMALL_STATE(777)] = 14904, - [SMALL_STATE(778)] = 14968, - [SMALL_STATE(779)] = 15024, - [SMALL_STATE(780)] = 15080, - [SMALL_STATE(781)] = 15144, - [SMALL_STATE(782)] = 15208, - [SMALL_STATE(783)] = 15264, - [SMALL_STATE(784)] = 15320, - [SMALL_STATE(785)] = 15380, - [SMALL_STATE(786)] = 15442, - [SMALL_STATE(787)] = 15502, - [SMALL_STATE(788)] = 15559, - [SMALL_STATE(789)] = 15618, - [SMALL_STATE(790)] = 15675, - [SMALL_STATE(791)] = 15732, - [SMALL_STATE(792)] = 15787, - [SMALL_STATE(793)] = 15846, - [SMALL_STATE(794)] = 15903, - [SMALL_STATE(795)] = 15962, - [SMALL_STATE(796)] = 16016, - [SMALL_STATE(797)] = 16070, - [SMALL_STATE(798)] = 16124, - [SMALL_STATE(799)] = 16178, - [SMALL_STATE(800)] = 16232, - [SMALL_STATE(801)] = 16290, - [SMALL_STATE(802)] = 16344, - [SMALL_STATE(803)] = 16398, - [SMALL_STATE(804)] = 16454, - [SMALL_STATE(805)] = 16512, - [SMALL_STATE(806)] = 16566, - [SMALL_STATE(807)] = 16620, - [SMALL_STATE(808)] = 16678, - [SMALL_STATE(809)] = 16732, - [SMALL_STATE(810)] = 16786, - [SMALL_STATE(811)] = 16840, - [SMALL_STATE(812)] = 16894, - [SMALL_STATE(813)] = 16948, - [SMALL_STATE(814)] = 17002, - [SMALL_STATE(815)] = 17056, - [SMALL_STATE(816)] = 17110, - [SMALL_STATE(817)] = 17164, - [SMALL_STATE(818)] = 17218, - [SMALL_STATE(819)] = 17272, - [SMALL_STATE(820)] = 17326, - [SMALL_STATE(821)] = 17380, - [SMALL_STATE(822)] = 17434, - [SMALL_STATE(823)] = 17488, - [SMALL_STATE(824)] = 17542, - [SMALL_STATE(825)] = 17596, - [SMALL_STATE(826)] = 17650, - [SMALL_STATE(827)] = 17704, - [SMALL_STATE(828)] = 17758, - [SMALL_STATE(829)] = 17812, - [SMALL_STATE(830)] = 17866, - [SMALL_STATE(831)] = 17920, - [SMALL_STATE(832)] = 17974, - [SMALL_STATE(833)] = 18028, - [SMALL_STATE(834)] = 18082, - [SMALL_STATE(835)] = 18136, - [SMALL_STATE(836)] = 18190, - [SMALL_STATE(837)] = 18244, - [SMALL_STATE(838)] = 18298, - [SMALL_STATE(839)] = 18354, - [SMALL_STATE(840)] = 18410, - [SMALL_STATE(841)] = 18464, - [SMALL_STATE(842)] = 18518, - [SMALL_STATE(843)] = 18572, - [SMALL_STATE(844)] = 18626, - [SMALL_STATE(845)] = 18680, - [SMALL_STATE(846)] = 18736, - [SMALL_STATE(847)] = 18790, - [SMALL_STATE(848)] = 18844, - [SMALL_STATE(849)] = 18898, - [SMALL_STATE(850)] = 18954, - [SMALL_STATE(851)] = 19008, - [SMALL_STATE(852)] = 19062, - [SMALL_STATE(853)] = 19116, - [SMALL_STATE(854)] = 19170, - [SMALL_STATE(855)] = 19226, - [SMALL_STATE(856)] = 19280, - [SMALL_STATE(857)] = 19334, - [SMALL_STATE(858)] = 19388, - [SMALL_STATE(859)] = 19442, - [SMALL_STATE(860)] = 19496, - [SMALL_STATE(861)] = 19552, - [SMALL_STATE(862)] = 19606, - [SMALL_STATE(863)] = 19660, - [SMALL_STATE(864)] = 19714, - [SMALL_STATE(865)] = 19768, - [SMALL_STATE(866)] = 19822, - [SMALL_STATE(867)] = 19876, - [SMALL_STATE(868)] = 19930, - [SMALL_STATE(869)] = 19984, - [SMALL_STATE(870)] = 20038, - [SMALL_STATE(871)] = 20092, - [SMALL_STATE(872)] = 20146, - [SMALL_STATE(873)] = 20200, - [SMALL_STATE(874)] = 20254, - [SMALL_STATE(875)] = 20308, - [SMALL_STATE(876)] = 20362, - [SMALL_STATE(877)] = 20416, - [SMALL_STATE(878)] = 20470, - [SMALL_STATE(879)] = 20524, - [SMALL_STATE(880)] = 20578, - [SMALL_STATE(881)] = 20632, - [SMALL_STATE(882)] = 20686, - [SMALL_STATE(883)] = 20740, - [SMALL_STATE(884)] = 20794, - [SMALL_STATE(885)] = 20848, - [SMALL_STATE(886)] = 20902, - [SMALL_STATE(887)] = 20956, - [SMALL_STATE(888)] = 21010, - [SMALL_STATE(889)] = 21064, - [SMALL_STATE(890)] = 21118, - [SMALL_STATE(891)] = 21172, - [SMALL_STATE(892)] = 21226, - [SMALL_STATE(893)] = 21280, - [SMALL_STATE(894)] = 21334, - [SMALL_STATE(895)] = 21388, - [SMALL_STATE(896)] = 21442, - [SMALL_STATE(897)] = 21496, - [SMALL_STATE(898)] = 21550, - [SMALL_STATE(899)] = 21604, - [SMALL_STATE(900)] = 21658, - [SMALL_STATE(901)] = 21712, - [SMALL_STATE(902)] = 21766, - [SMALL_STATE(903)] = 21820, - [SMALL_STATE(904)] = 21874, - [SMALL_STATE(905)] = 21928, - [SMALL_STATE(906)] = 21982, - [SMALL_STATE(907)] = 22036, - [SMALL_STATE(908)] = 22090, - [SMALL_STATE(909)] = 22144, - [SMALL_STATE(910)] = 22198, - [SMALL_STATE(911)] = 22252, - [SMALL_STATE(912)] = 22306, - [SMALL_STATE(913)] = 22360, - [SMALL_STATE(914)] = 22414, - [SMALL_STATE(915)] = 22468, - [SMALL_STATE(916)] = 22522, - [SMALL_STATE(917)] = 22576, - [SMALL_STATE(918)] = 22630, - [SMALL_STATE(919)] = 22684, - [SMALL_STATE(920)] = 22738, - [SMALL_STATE(921)] = 22792, - [SMALL_STATE(922)] = 22846, - [SMALL_STATE(923)] = 22900, - [SMALL_STATE(924)] = 22954, - [SMALL_STATE(925)] = 23008, - [SMALL_STATE(926)] = 23062, - [SMALL_STATE(927)] = 23116, - [SMALL_STATE(928)] = 23170, - [SMALL_STATE(929)] = 23224, - [SMALL_STATE(930)] = 23278, - [SMALL_STATE(931)] = 23332, - [SMALL_STATE(932)] = 23386, - [SMALL_STATE(933)] = 23440, - [SMALL_STATE(934)] = 23494, - [SMALL_STATE(935)] = 23548, - [SMALL_STATE(936)] = 23602, - [SMALL_STATE(937)] = 23656, - [SMALL_STATE(938)] = 23710, - [SMALL_STATE(939)] = 23764, - [SMALL_STATE(940)] = 23818, - [SMALL_STATE(941)] = 23872, - [SMALL_STATE(942)] = 23926, - [SMALL_STATE(943)] = 23980, - [SMALL_STATE(944)] = 24034, - [SMALL_STATE(945)] = 24088, - [SMALL_STATE(946)] = 24142, - [SMALL_STATE(947)] = 24196, - [SMALL_STATE(948)] = 24250, - [SMALL_STATE(949)] = 24304, - [SMALL_STATE(950)] = 24358, - [SMALL_STATE(951)] = 24412, - [SMALL_STATE(952)] = 24466, - [SMALL_STATE(953)] = 24520, - [SMALL_STATE(954)] = 24574, - [SMALL_STATE(955)] = 24628, - [SMALL_STATE(956)] = 24684, - [SMALL_STATE(957)] = 24738, - [SMALL_STATE(958)] = 24792, - [SMALL_STATE(959)] = 24846, - [SMALL_STATE(960)] = 24900, - [SMALL_STATE(961)] = 24956, - [SMALL_STATE(962)] = 25010, - [SMALL_STATE(963)] = 25064, - [SMALL_STATE(964)] = 25118, - [SMALL_STATE(965)] = 25172, - [SMALL_STATE(966)] = 25226, - [SMALL_STATE(967)] = 25280, - [SMALL_STATE(968)] = 25336, - [SMALL_STATE(969)] = 25390, - [SMALL_STATE(970)] = 25444, - [SMALL_STATE(971)] = 25498, - [SMALL_STATE(972)] = 25552, - [SMALL_STATE(973)] = 25606, - [SMALL_STATE(974)] = 25662, - [SMALL_STATE(975)] = 25716, - [SMALL_STATE(976)] = 25770, - [SMALL_STATE(977)] = 25824, - [SMALL_STATE(978)] = 25878, - [SMALL_STATE(979)] = 25932, - [SMALL_STATE(980)] = 25986, - [SMALL_STATE(981)] = 26040, - [SMALL_STATE(982)] = 26094, - [SMALL_STATE(983)] = 26150, - [SMALL_STATE(984)] = 26204, - [SMALL_STATE(985)] = 26258, - [SMALL_STATE(986)] = 26312, - [SMALL_STATE(987)] = 26366, - [SMALL_STATE(988)] = 26420, - [SMALL_STATE(989)] = 26474, - [SMALL_STATE(990)] = 26528, - [SMALL_STATE(991)] = 26582, - [SMALL_STATE(992)] = 26636, - [SMALL_STATE(993)] = 26690, - [SMALL_STATE(994)] = 26746, - [SMALL_STATE(995)] = 26800, - [SMALL_STATE(996)] = 26854, - [SMALL_STATE(997)] = 26908, - [SMALL_STATE(998)] = 26962, - [SMALL_STATE(999)] = 27016, - [SMALL_STATE(1000)] = 27070, - [SMALL_STATE(1001)] = 27126, - [SMALL_STATE(1002)] = 27180, - [SMALL_STATE(1003)] = 27234, - [SMALL_STATE(1004)] = 27288, - [SMALL_STATE(1005)] = 27342, - [SMALL_STATE(1006)] = 27396, - [SMALL_STATE(1007)] = 27450, - [SMALL_STATE(1008)] = 27504, - [SMALL_STATE(1009)] = 27558, - [SMALL_STATE(1010)] = 27612, - [SMALL_STATE(1011)] = 27666, - [SMALL_STATE(1012)] = 27720, - [SMALL_STATE(1013)] = 27776, - [SMALL_STATE(1014)] = 27830, - [SMALL_STATE(1015)] = 27884, - [SMALL_STATE(1016)] = 27938, - [SMALL_STATE(1017)] = 27992, - [SMALL_STATE(1018)] = 28046, - [SMALL_STATE(1019)] = 28100, - [SMALL_STATE(1020)] = 28154, - [SMALL_STATE(1021)] = 28208, - [SMALL_STATE(1022)] = 28262, - [SMALL_STATE(1023)] = 28316, - [SMALL_STATE(1024)] = 28370, - [SMALL_STATE(1025)] = 28424, - [SMALL_STATE(1026)] = 28478, - [SMALL_STATE(1027)] = 28532, - [SMALL_STATE(1028)] = 28586, - [SMALL_STATE(1029)] = 28640, - [SMALL_STATE(1030)] = 28694, - [SMALL_STATE(1031)] = 28748, - [SMALL_STATE(1032)] = 28802, - [SMALL_STATE(1033)] = 28856, - [SMALL_STATE(1034)] = 28910, - [SMALL_STATE(1035)] = 28964, - [SMALL_STATE(1036)] = 29018, - [SMALL_STATE(1037)] = 29072, - [SMALL_STATE(1038)] = 29126, - [SMALL_STATE(1039)] = 29180, - [SMALL_STATE(1040)] = 29234, - [SMALL_STATE(1041)] = 29288, - [SMALL_STATE(1042)] = 29342, - [SMALL_STATE(1043)] = 29396, - [SMALL_STATE(1044)] = 29450, - [SMALL_STATE(1045)] = 29504, - [SMALL_STATE(1046)] = 29558, - [SMALL_STATE(1047)] = 29612, - [SMALL_STATE(1048)] = 29666, - [SMALL_STATE(1049)] = 29720, - [SMALL_STATE(1050)] = 29774, - [SMALL_STATE(1051)] = 29828, - [SMALL_STATE(1052)] = 29882, - [SMALL_STATE(1053)] = 29936, - [SMALL_STATE(1054)] = 29989, - [SMALL_STATE(1055)] = 30042, - [SMALL_STATE(1056)] = 30095, - [SMALL_STATE(1057)] = 30150, - [SMALL_STATE(1058)] = 30203, - [SMALL_STATE(1059)] = 30258, - [SMALL_STATE(1060)] = 30311, - [SMALL_STATE(1061)] = 30364, - [SMALL_STATE(1062)] = 30417, - [SMALL_STATE(1063)] = 30470, - [SMALL_STATE(1064)] = 30523, - [SMALL_STATE(1065)] = 30576, - [SMALL_STATE(1066)] = 30629, - [SMALL_STATE(1067)] = 30682, - [SMALL_STATE(1068)] = 30735, - [SMALL_STATE(1069)] = 30788, - [SMALL_STATE(1070)] = 30841, - [SMALL_STATE(1071)] = 30896, - [SMALL_STATE(1072)] = 30949, - [SMALL_STATE(1073)] = 31004, - [SMALL_STATE(1074)] = 31057, - [SMALL_STATE(1075)] = 31110, - [SMALL_STATE(1076)] = 31163, - [SMALL_STATE(1077)] = 31216, - [SMALL_STATE(1078)] = 31269, - [SMALL_STATE(1079)] = 31322, - [SMALL_STATE(1080)] = 31375, - [SMALL_STATE(1081)] = 31428, - [SMALL_STATE(1082)] = 31481, - [SMALL_STATE(1083)] = 31534, - [SMALL_STATE(1084)] = 31587, - [SMALL_STATE(1085)] = 31640, - [SMALL_STATE(1086)] = 31693, - [SMALL_STATE(1087)] = 31746, - [SMALL_STATE(1088)] = 31799, - [SMALL_STATE(1089)] = 31852, - [SMALL_STATE(1090)] = 31905, - [SMALL_STATE(1091)] = 31958, - [SMALL_STATE(1092)] = 32011, - [SMALL_STATE(1093)] = 32064, - [SMALL_STATE(1094)] = 32117, - [SMALL_STATE(1095)] = 32170, - [SMALL_STATE(1096)] = 32223, - [SMALL_STATE(1097)] = 32276, - [SMALL_STATE(1098)] = 32329, - [SMALL_STATE(1099)] = 32382, - [SMALL_STATE(1100)] = 32435, - [SMALL_STATE(1101)] = 32488, - [SMALL_STATE(1102)] = 32541, - [SMALL_STATE(1103)] = 32594, - [SMALL_STATE(1104)] = 32647, - [SMALL_STATE(1105)] = 32736, - [SMALL_STATE(1106)] = 32789, - [SMALL_STATE(1107)] = 32842, - [SMALL_STATE(1108)] = 32895, - [SMALL_STATE(1109)] = 32948, - [SMALL_STATE(1110)] = 33001, - [SMALL_STATE(1111)] = 33054, - [SMALL_STATE(1112)] = 33107, - [SMALL_STATE(1113)] = 33196, - [SMALL_STATE(1114)] = 33249, - [SMALL_STATE(1115)] = 33302, - [SMALL_STATE(1116)] = 33355, - [SMALL_STATE(1117)] = 33408, - [SMALL_STATE(1118)] = 33461, - [SMALL_STATE(1119)] = 33514, - [SMALL_STATE(1120)] = 33567, - [SMALL_STATE(1121)] = 33620, - [SMALL_STATE(1122)] = 33673, - [SMALL_STATE(1123)] = 33726, - [SMALL_STATE(1124)] = 33779, - [SMALL_STATE(1125)] = 33832, - [SMALL_STATE(1126)] = 33885, - [SMALL_STATE(1127)] = 33938, - [SMALL_STATE(1128)] = 33991, - [SMALL_STATE(1129)] = 34044, - [SMALL_STATE(1130)] = 34097, - [SMALL_STATE(1131)] = 34150, - [SMALL_STATE(1132)] = 34203, - [SMALL_STATE(1133)] = 34256, - [SMALL_STATE(1134)] = 34309, - [SMALL_STATE(1135)] = 34362, - [SMALL_STATE(1136)] = 34415, - [SMALL_STATE(1137)] = 34468, - [SMALL_STATE(1138)] = 34521, - [SMALL_STATE(1139)] = 34578, - [SMALL_STATE(1140)] = 34631, - [SMALL_STATE(1141)] = 34684, - [SMALL_STATE(1142)] = 34737, - [SMALL_STATE(1143)] = 34790, - [SMALL_STATE(1144)] = 34843, - [SMALL_STATE(1145)] = 34896, - [SMALL_STATE(1146)] = 34949, - [SMALL_STATE(1147)] = 35002, - [SMALL_STATE(1148)] = 35055, - [SMALL_STATE(1149)] = 35108, - [SMALL_STATE(1150)] = 35161, - [SMALL_STATE(1151)] = 35214, - [SMALL_STATE(1152)] = 35267, - [SMALL_STATE(1153)] = 35320, - [SMALL_STATE(1154)] = 35372, - [SMALL_STATE(1155)] = 35452, - [SMALL_STATE(1156)] = 35532, - [SMALL_STATE(1157)] = 35592, - [SMALL_STATE(1158)] = 35668, - [SMALL_STATE(1159)] = 35728, - [SMALL_STATE(1160)] = 35788, - [SMALL_STATE(1161)] = 35866, - [SMALL_STATE(1162)] = 35946, - [SMALL_STATE(1163)] = 36032, - [SMALL_STATE(1164)] = 36112, - [SMALL_STATE(1165)] = 36198, - [SMALL_STATE(1166)] = 36268, - [SMALL_STATE(1167)] = 36332, - [SMALL_STATE(1168)] = 36392, - [SMALL_STATE(1169)] = 36444, - [SMALL_STATE(1170)] = 36506, - [SMALL_STATE(1171)] = 36586, - [SMALL_STATE(1172)] = 36654, - [SMALL_STATE(1173)] = 36714, - [SMALL_STATE(1174)] = 36786, - [SMALL_STATE(1175)] = 36866, - [SMALL_STATE(1176)] = 36932, - [SMALL_STATE(1177)] = 36983, - [SMALL_STATE(1178)] = 37070, - [SMALL_STATE(1179)] = 37155, - [SMALL_STATE(1180)] = 37242, - [SMALL_STATE(1181)] = 37293, - [SMALL_STATE(1182)] = 37378, - [SMALL_STATE(1183)] = 37465, - [SMALL_STATE(1184)] = 37552, - [SMALL_STATE(1185)] = 37609, - [SMALL_STATE(1186)] = 37688, - [SMALL_STATE(1187)] = 37764, - [SMALL_STATE(1188)] = 37818, - [SMALL_STATE(1189)] = 37894, - [SMALL_STATE(1190)] = 37970, - [SMALL_STATE(1191)] = 38046, - [SMALL_STATE(1192)] = 38102, - [SMALL_STATE(1193)] = 38151, - [SMALL_STATE(1194)] = 38240, - [SMALL_STATE(1195)] = 38289, - [SMALL_STATE(1196)] = 38338, - [SMALL_STATE(1197)] = 38387, - [SMALL_STATE(1198)] = 38460, - [SMALL_STATE(1199)] = 38513, - [SMALL_STATE(1200)] = 38564, - [SMALL_STATE(1201)] = 38613, - [SMALL_STATE(1202)] = 38664, - [SMALL_STATE(1203)] = 38713, - [SMALL_STATE(1204)] = 38762, - [SMALL_STATE(1205)] = 38851, - [SMALL_STATE(1206)] = 38900, - [SMALL_STATE(1207)] = 38953, - [SMALL_STATE(1208)] = 39002, - [SMALL_STATE(1209)] = 39088, - [SMALL_STATE(1210)] = 39138, - [SMALL_STATE(1211)] = 39188, - [SMALL_STATE(1212)] = 39266, - [SMALL_STATE(1213)] = 39344, - [SMALL_STATE(1214)] = 39430, - [SMALL_STATE(1215)] = 39480, - [SMALL_STATE(1216)] = 39530, - [SMALL_STATE(1217)] = 39613, - [SMALL_STATE(1218)] = 39672, - [SMALL_STATE(1219)] = 39753, - [SMALL_STATE(1220)] = 39836, - [SMALL_STATE(1221)] = 39919, - [SMALL_STATE(1222)] = 39976, - [SMALL_STATE(1223)] = 40059, - [SMALL_STATE(1224)] = 40142, - [SMALL_STATE(1225)] = 40223, - [SMALL_STATE(1226)] = 40306, - [SMALL_STATE(1227)] = 40389, - [SMALL_STATE(1228)] = 40472, - [SMALL_STATE(1229)] = 40555, - [SMALL_STATE(1230)] = 40636, - [SMALL_STATE(1231)] = 40709, - [SMALL_STATE(1232)] = 40792, - [SMALL_STATE(1233)] = 40847, - [SMALL_STATE(1234)] = 40922, - [SMALL_STATE(1235)] = 41005, - [SMALL_STATE(1236)] = 41088, - [SMALL_STATE(1237)] = 41171, - [SMALL_STATE(1238)] = 41246, - [SMALL_STATE(1239)] = 41321, - [SMALL_STATE(1240)] = 41404, - [SMALL_STATE(1241)] = 41459, - [SMALL_STATE(1242)] = 41534, - [SMALL_STATE(1243)] = 41615, - [SMALL_STATE(1244)] = 41696, - [SMALL_STATE(1245)] = 41751, - [SMALL_STATE(1246)] = 41806, - [SMALL_STATE(1247)] = 41889, - [SMALL_STATE(1248)] = 41956, - [SMALL_STATE(1249)] = 42037, - [SMALL_STATE(1250)] = 42118, - [SMALL_STATE(1251)] = 42201, - [SMALL_STATE(1252)] = 42284, - [SMALL_STATE(1253)] = 42367, - [SMALL_STATE(1254)] = 42450, - [SMALL_STATE(1255)] = 42533, - [SMALL_STATE(1256)] = 42616, - [SMALL_STATE(1257)] = 42699, - [SMALL_STATE(1258)] = 42782, - [SMALL_STATE(1259)] = 42865, - [SMALL_STATE(1260)] = 42930, - [SMALL_STATE(1261)] = 43001, - [SMALL_STATE(1262)] = 43064, - [SMALL_STATE(1263)] = 43147, - [SMALL_STATE(1264)] = 43230, - [SMALL_STATE(1265)] = 43313, - [SMALL_STATE(1266)] = 43374, - [SMALL_STATE(1267)] = 43457, - [SMALL_STATE(1268)] = 43540, - [SMALL_STATE(1269)] = 43611, - [SMALL_STATE(1270)] = 43692, - [SMALL_STATE(1271)] = 43767, - [SMALL_STATE(1272)] = 43850, - [SMALL_STATE(1273)] = 43933, - [SMALL_STATE(1274)] = 44016, - [SMALL_STATE(1275)] = 44099, - [SMALL_STATE(1276)] = 44180, - [SMALL_STATE(1277)] = 44263, - [SMALL_STATE(1278)] = 44346, - [SMALL_STATE(1279)] = 44427, - [SMALL_STATE(1280)] = 44510, - [SMALL_STATE(1281)] = 44593, - [SMALL_STATE(1282)] = 44674, - [SMALL_STATE(1283)] = 44757, - [SMALL_STATE(1284)] = 44832, - [SMALL_STATE(1285)] = 44915, - [SMALL_STATE(1286)] = 44998, - [SMALL_STATE(1287)] = 45081, - [SMALL_STATE(1288)] = 45164, - [SMALL_STATE(1289)] = 45247, - [SMALL_STATE(1290)] = 45330, - [SMALL_STATE(1291)] = 45411, - [SMALL_STATE(1292)] = 45494, - [SMALL_STATE(1293)] = 45574, - [SMALL_STATE(1294)] = 45654, - [SMALL_STATE(1295)] = 45734, - [SMALL_STATE(1296)] = 45814, - [SMALL_STATE(1297)] = 45894, - [SMALL_STATE(1298)] = 45974, - [SMALL_STATE(1299)] = 46054, - [SMALL_STATE(1300)] = 46134, - [SMALL_STATE(1301)] = 46214, - [SMALL_STATE(1302)] = 46294, - [SMALL_STATE(1303)] = 46374, - [SMALL_STATE(1304)] = 46454, - [SMALL_STATE(1305)] = 46534, - [SMALL_STATE(1306)] = 46614, - [SMALL_STATE(1307)] = 46694, - [SMALL_STATE(1308)] = 46774, - [SMALL_STATE(1309)] = 46854, - [SMALL_STATE(1310)] = 46934, - [SMALL_STATE(1311)] = 47014, - [SMALL_STATE(1312)] = 47094, - [SMALL_STATE(1313)] = 47174, - [SMALL_STATE(1314)] = 47254, - [SMALL_STATE(1315)] = 47334, - [SMALL_STATE(1316)] = 47414, - [SMALL_STATE(1317)] = 47494, - [SMALL_STATE(1318)] = 47574, - [SMALL_STATE(1319)] = 47654, - [SMALL_STATE(1320)] = 47734, - [SMALL_STATE(1321)] = 47802, - [SMALL_STATE(1322)] = 47882, - [SMALL_STATE(1323)] = 47962, - [SMALL_STATE(1324)] = 48030, - [SMALL_STATE(1325)] = 48110, - [SMALL_STATE(1326)] = 48175, - [SMALL_STATE(1327)] = 48240, - [SMALL_STATE(1328)] = 48305, - [SMALL_STATE(1329)] = 48370, - [SMALL_STATE(1330)] = 48435, - [SMALL_STATE(1331)] = 48475, - [SMALL_STATE(1332)] = 48515, - [SMALL_STATE(1333)] = 48555, - [SMALL_STATE(1334)] = 48607, - [SMALL_STATE(1335)] = 48659, - [SMALL_STATE(1336)] = 48689, - [SMALL_STATE(1337)] = 48719, - [SMALL_STATE(1338)] = 48759, - [SMALL_STATE(1339)] = 48801, - [SMALL_STATE(1340)] = 48830, - [SMALL_STATE(1341)] = 48859, - [SMALL_STATE(1342)] = 48888, - [SMALL_STATE(1343)] = 48917, - [SMALL_STATE(1344)] = 48954, - [SMALL_STATE(1345)] = 48983, - [SMALL_STATE(1346)] = 49012, - [SMALL_STATE(1347)] = 49041, - [SMALL_STATE(1348)] = 49070, - [SMALL_STATE(1349)] = 49107, - [SMALL_STATE(1350)] = 49139, - [SMALL_STATE(1351)] = 49193, - [SMALL_STATE(1352)] = 49219, - [SMALL_STATE(1353)] = 49245, - [SMALL_STATE(1354)] = 49299, - [SMALL_STATE(1355)] = 49325, - [SMALL_STATE(1356)] = 49357, - [SMALL_STATE(1357)] = 49389, - [SMALL_STATE(1358)] = 49414, - [SMALL_STATE(1359)] = 49437, - [SMALL_STATE(1360)] = 49483, - [SMALL_STATE(1361)] = 49527, - [SMALL_STATE(1362)] = 49557, - [SMALL_STATE(1363)] = 49601, - [SMALL_STATE(1364)] = 49623, - [SMALL_STATE(1365)] = 49647, - [SMALL_STATE(1366)] = 49671, - [SMALL_STATE(1367)] = 49695, - [SMALL_STATE(1368)] = 49719, - [SMALL_STATE(1369)] = 49743, - [SMALL_STATE(1370)] = 49765, - [SMALL_STATE(1371)] = 49787, - [SMALL_STATE(1372)] = 49809, - [SMALL_STATE(1373)] = 49833, - [SMALL_STATE(1374)] = 49857, - [SMALL_STATE(1375)] = 49880, - [SMALL_STATE(1376)] = 49903, - [SMALL_STATE(1377)] = 49930, - [SMALL_STATE(1378)] = 49953, - [SMALL_STATE(1379)] = 49976, - [SMALL_STATE(1380)] = 49997, - [SMALL_STATE(1381)] = 50020, - [SMALL_STATE(1382)] = 50041, - [SMALL_STATE(1383)] = 50066, - [SMALL_STATE(1384)] = 50087, - [SMALL_STATE(1385)] = 50110, - [SMALL_STATE(1386)] = 50135, - [SMALL_STATE(1387)] = 50160, - [SMALL_STATE(1388)] = 50183, - [SMALL_STATE(1389)] = 50206, - [SMALL_STATE(1390)] = 50231, - [SMALL_STATE(1391)] = 50276, - [SMALL_STATE(1392)] = 50301, - [SMALL_STATE(1393)] = 50326, - [SMALL_STATE(1394)] = 50347, - [SMALL_STATE(1395)] = 50368, - [SMALL_STATE(1396)] = 50388, - [SMALL_STATE(1397)] = 50408, - [SMALL_STATE(1398)] = 50428, - [SMALL_STATE(1399)] = 50448, - [SMALL_STATE(1400)] = 50468, - [SMALL_STATE(1401)] = 50490, - [SMALL_STATE(1402)] = 50510, - [SMALL_STATE(1403)] = 50530, - [SMALL_STATE(1404)] = 50550, - [SMALL_STATE(1405)] = 50572, - [SMALL_STATE(1406)] = 50592, - [SMALL_STATE(1407)] = 50612, - [SMALL_STATE(1408)] = 50632, - [SMALL_STATE(1409)] = 50652, - [SMALL_STATE(1410)] = 50672, - [SMALL_STATE(1411)] = 50692, - [SMALL_STATE(1412)] = 50712, - [SMALL_STATE(1413)] = 50732, - [SMALL_STATE(1414)] = 50752, - [SMALL_STATE(1415)] = 50772, - [SMALL_STATE(1416)] = 50792, - [SMALL_STATE(1417)] = 50812, - [SMALL_STATE(1418)] = 50832, - [SMALL_STATE(1419)] = 50852, - [SMALL_STATE(1420)] = 50874, - [SMALL_STATE(1421)] = 50894, - [SMALL_STATE(1422)] = 50914, - [SMALL_STATE(1423)] = 50934, - [SMALL_STATE(1424)] = 50958, - [SMALL_STATE(1425)] = 50978, - [SMALL_STATE(1426)] = 50998, - [SMALL_STATE(1427)] = 51021, - [SMALL_STATE(1428)] = 51044, - [SMALL_STATE(1429)] = 51067, - [SMALL_STATE(1430)] = 51090, - [SMALL_STATE(1431)] = 51115, - [SMALL_STATE(1432)] = 51140, - [SMALL_STATE(1433)] = 51175, - [SMALL_STATE(1434)] = 51200, - [SMALL_STATE(1435)] = 51225, - [SMALL_STATE(1436)] = 51250, - [SMALL_STATE(1437)] = 51273, - [SMALL_STATE(1438)] = 51298, - [SMALL_STATE(1439)] = 51323, - [SMALL_STATE(1440)] = 51346, - [SMALL_STATE(1441)] = 51367, - [SMALL_STATE(1442)] = 51390, - [SMALL_STATE(1443)] = 51413, - [SMALL_STATE(1444)] = 51434, - [SMALL_STATE(1445)] = 51457, - [SMALL_STATE(1446)] = 51478, - [SMALL_STATE(1447)] = 51501, - [SMALL_STATE(1448)] = 51526, - [SMALL_STATE(1449)] = 51549, - [SMALL_STATE(1450)] = 51572, - [SMALL_STATE(1451)] = 51592, - [SMALL_STATE(1452)] = 51612, - [SMALL_STATE(1453)] = 51632, - [SMALL_STATE(1454)] = 51652, - [SMALL_STATE(1455)] = 51672, - [SMALL_STATE(1456)] = 51692, - [SMALL_STATE(1457)] = 51724, - [SMALL_STATE(1458)] = 51756, - [SMALL_STATE(1459)] = 51776, - [SMALL_STATE(1460)] = 51796, - [SMALL_STATE(1461)] = 51816, - [SMALL_STATE(1462)] = 51836, - [SMALL_STATE(1463)] = 51856, - [SMALL_STATE(1464)] = 51876, - [SMALL_STATE(1465)] = 51896, - [SMALL_STATE(1466)] = 51922, - [SMALL_STATE(1467)] = 51942, - [SMALL_STATE(1468)] = 51968, - [SMALL_STATE(1469)] = 51988, - [SMALL_STATE(1470)] = 52020, - [SMALL_STATE(1471)] = 52040, - [SMALL_STATE(1472)] = 52072, - [SMALL_STATE(1473)] = 52092, - [SMALL_STATE(1474)] = 52112, - [SMALL_STATE(1475)] = 52144, - [SMALL_STATE(1476)] = 52164, - [SMALL_STATE(1477)] = 52196, - [SMALL_STATE(1478)] = 52220, - [SMALL_STATE(1479)] = 52240, - [SMALL_STATE(1480)] = 52260, - [SMALL_STATE(1481)] = 52280, - [SMALL_STATE(1482)] = 52300, - [SMALL_STATE(1483)] = 52332, - [SMALL_STATE(1484)] = 52356, - [SMALL_STATE(1485)] = 52380, - [SMALL_STATE(1486)] = 52400, - [SMALL_STATE(1487)] = 52420, - [SMALL_STATE(1488)] = 52440, - [SMALL_STATE(1489)] = 52472, - [SMALL_STATE(1490)] = 52496, - [SMALL_STATE(1491)] = 52516, - [SMALL_STATE(1492)] = 52536, - [SMALL_STATE(1493)] = 52556, - [SMALL_STATE(1494)] = 52576, - [SMALL_STATE(1495)] = 52596, - [SMALL_STATE(1496)] = 52621, - [SMALL_STATE(1497)] = 52644, - [SMALL_STATE(1498)] = 52671, - [SMALL_STATE(1499)] = 52700, - [SMALL_STATE(1500)] = 52725, - [SMALL_STATE(1501)] = 52750, - [SMALL_STATE(1502)] = 52773, - [SMALL_STATE(1503)] = 52804, - [SMALL_STATE(1504)] = 52829, - [SMALL_STATE(1505)] = 52862, - [SMALL_STATE(1506)] = 52887, - [SMALL_STATE(1507)] = 52920, - [SMALL_STATE(1508)] = 52945, - [SMALL_STATE(1509)] = 52978, - [SMALL_STATE(1510)] = 53011, - [SMALL_STATE(1511)] = 53034, - [SMALL_STATE(1512)] = 53064, - [SMALL_STATE(1513)] = 53086, - [SMALL_STATE(1514)] = 53112, - [SMALL_STATE(1515)] = 53142, - [SMALL_STATE(1516)] = 53172, - [SMALL_STATE(1517)] = 53202, - [SMALL_STATE(1518)] = 53232, - [SMALL_STATE(1519)] = 53264, - [SMALL_STATE(1520)] = 53286, - [SMALL_STATE(1521)] = 53312, - [SMALL_STATE(1522)] = 53344, - [SMALL_STATE(1523)] = 53374, - [SMALL_STATE(1524)] = 53404, - [SMALL_STATE(1525)] = 53434, - [SMALL_STATE(1526)] = 53464, - [SMALL_STATE(1527)] = 53486, - [SMALL_STATE(1528)] = 53512, - [SMALL_STATE(1529)] = 53542, - [SMALL_STATE(1530)] = 53574, - [SMALL_STATE(1531)] = 53600, - [SMALL_STATE(1532)] = 53626, - [SMALL_STATE(1533)] = 53648, - [SMALL_STATE(1534)] = 53680, - [SMALL_STATE(1535)] = 53706, - [SMALL_STATE(1536)] = 53736, - [SMALL_STATE(1537)] = 53766, - [SMALL_STATE(1538)] = 53796, - [SMALL_STATE(1539)] = 53826, - [SMALL_STATE(1540)] = 53852, - [SMALL_STATE(1541)] = 53882, - [SMALL_STATE(1542)] = 53912, - [SMALL_STATE(1543)] = 53942, - [SMALL_STATE(1544)] = 53972, - [SMALL_STATE(1545)] = 54002, - [SMALL_STATE(1546)] = 54032, - [SMALL_STATE(1547)] = 54058, - [SMALL_STATE(1548)] = 54080, - [SMALL_STATE(1549)] = 54102, - [SMALL_STATE(1550)] = 54132, - [SMALL_STATE(1551)] = 54158, - [SMALL_STATE(1552)] = 54184, - [SMALL_STATE(1553)] = 54210, - [SMALL_STATE(1554)] = 54237, - [SMALL_STATE(1555)] = 54262, - [SMALL_STATE(1556)] = 54281, - [SMALL_STATE(1557)] = 54296, - [SMALL_STATE(1558)] = 54323, - [SMALL_STATE(1559)] = 54350, - [SMALL_STATE(1560)] = 54369, - [SMALL_STATE(1561)] = 54388, - [SMALL_STATE(1562)] = 54407, - [SMALL_STATE(1563)] = 54430, - [SMALL_STATE(1564)] = 54451, - [SMALL_STATE(1565)] = 54480, - [SMALL_STATE(1566)] = 54507, - [SMALL_STATE(1567)] = 54534, - [SMALL_STATE(1568)] = 54553, - [SMALL_STATE(1569)] = 54580, - [SMALL_STATE(1570)] = 54609, - [SMALL_STATE(1571)] = 54636, - [SMALL_STATE(1572)] = 54665, - [SMALL_STATE(1573)] = 54684, - [SMALL_STATE(1574)] = 54707, - [SMALL_STATE(1575)] = 54734, - [SMALL_STATE(1576)] = 54761, - [SMALL_STATE(1577)] = 54788, - [SMALL_STATE(1578)] = 54809, - [SMALL_STATE(1579)] = 54836, - [SMALL_STATE(1580)] = 54855, - [SMALL_STATE(1581)] = 54878, - [SMALL_STATE(1582)] = 54905, - [SMALL_STATE(1583)] = 54928, - [SMALL_STATE(1584)] = 54947, - [SMALL_STATE(1585)] = 54970, - [SMALL_STATE(1586)] = 54999, - [SMALL_STATE(1587)] = 55018, - [SMALL_STATE(1588)] = 55045, - [SMALL_STATE(1589)] = 55074, - [SMALL_STATE(1590)] = 55101, - [SMALL_STATE(1591)] = 55120, - [SMALL_STATE(1592)] = 55139, - [SMALL_STATE(1593)] = 55168, - [SMALL_STATE(1594)] = 55195, - [SMALL_STATE(1595)] = 55221, - [SMALL_STATE(1596)] = 55245, - [SMALL_STATE(1597)] = 55271, - [SMALL_STATE(1598)] = 55287, - [SMALL_STATE(1599)] = 55303, - [SMALL_STATE(1600)] = 55319, - [SMALL_STATE(1601)] = 55345, - [SMALL_STATE(1602)] = 55359, - [SMALL_STATE(1603)] = 55373, - [SMALL_STATE(1604)] = 55399, - [SMALL_STATE(1605)] = 55425, - [SMALL_STATE(1606)] = 55451, - [SMALL_STATE(1607)] = 55465, - [SMALL_STATE(1608)] = 55479, - [SMALL_STATE(1609)] = 55493, - [SMALL_STATE(1610)] = 55519, - [SMALL_STATE(1611)] = 55545, - [SMALL_STATE(1612)] = 55571, - [SMALL_STATE(1613)] = 55597, - [SMALL_STATE(1614)] = 55611, - [SMALL_STATE(1615)] = 55627, - [SMALL_STATE(1616)] = 55653, - [SMALL_STATE(1617)] = 55679, - [SMALL_STATE(1618)] = 55705, - [SMALL_STATE(1619)] = 55731, - [SMALL_STATE(1620)] = 55757, - [SMALL_STATE(1621)] = 55783, - [SMALL_STATE(1622)] = 55805, - [SMALL_STATE(1623)] = 55827, - [SMALL_STATE(1624)] = 55853, - [SMALL_STATE(1625)] = 55877, - [SMALL_STATE(1626)] = 55893, - [SMALL_STATE(1627)] = 55907, - [SMALL_STATE(1628)] = 55923, - [SMALL_STATE(1629)] = 55949, - [SMALL_STATE(1630)] = 55973, - [SMALL_STATE(1631)] = 55989, - [SMALL_STATE(1632)] = 56015, - [SMALL_STATE(1633)] = 56041, - [SMALL_STATE(1634)] = 56067, - [SMALL_STATE(1635)] = 56091, - [SMALL_STATE(1636)] = 56117, - [SMALL_STATE(1637)] = 56143, - [SMALL_STATE(1638)] = 56159, - [SMALL_STATE(1639)] = 56185, - [SMALL_STATE(1640)] = 56209, - [SMALL_STATE(1641)] = 56232, - [SMALL_STATE(1642)] = 56255, - [SMALL_STATE(1643)] = 56278, - [SMALL_STATE(1644)] = 56295, - [SMALL_STATE(1645)] = 56318, - [SMALL_STATE(1646)] = 56341, - [SMALL_STATE(1647)] = 56364, - [SMALL_STATE(1648)] = 56387, - [SMALL_STATE(1649)] = 56410, - [SMALL_STATE(1650)] = 56433, - [SMALL_STATE(1651)] = 56450, - [SMALL_STATE(1652)] = 56473, - [SMALL_STATE(1653)] = 56496, - [SMALL_STATE(1654)] = 56519, - [SMALL_STATE(1655)] = 56542, - [SMALL_STATE(1656)] = 56565, - [SMALL_STATE(1657)] = 56582, - [SMALL_STATE(1658)] = 56599, - [SMALL_STATE(1659)] = 56622, - [SMALL_STATE(1660)] = 56645, - [SMALL_STATE(1661)] = 56662, - [SMALL_STATE(1662)] = 56685, - [SMALL_STATE(1663)] = 56708, - [SMALL_STATE(1664)] = 56731, - [SMALL_STATE(1665)] = 56754, - [SMALL_STATE(1666)] = 56771, - [SMALL_STATE(1667)] = 56794, - [SMALL_STATE(1668)] = 56817, - [SMALL_STATE(1669)] = 56840, - [SMALL_STATE(1670)] = 56863, - [SMALL_STATE(1671)] = 56886, - [SMALL_STATE(1672)] = 56909, - [SMALL_STATE(1673)] = 56932, - [SMALL_STATE(1674)] = 56955, - [SMALL_STATE(1675)] = 56978, - [SMALL_STATE(1676)] = 57001, - [SMALL_STATE(1677)] = 57018, - [SMALL_STATE(1678)] = 57039, - [SMALL_STATE(1679)] = 57058, - [SMALL_STATE(1680)] = 57081, - [SMALL_STATE(1681)] = 57104, - [SMALL_STATE(1682)] = 57127, - [SMALL_STATE(1683)] = 57144, - [SMALL_STATE(1684)] = 57167, - [SMALL_STATE(1685)] = 57190, - [SMALL_STATE(1686)] = 57205, - [SMALL_STATE(1687)] = 57228, - [SMALL_STATE(1688)] = 57251, - [SMALL_STATE(1689)] = 57274, - [SMALL_STATE(1690)] = 57297, - [SMALL_STATE(1691)] = 57320, - [SMALL_STATE(1692)] = 57343, - [SMALL_STATE(1693)] = 57366, - [SMALL_STATE(1694)] = 57389, - [SMALL_STATE(1695)] = 57412, - [SMALL_STATE(1696)] = 57435, - [SMALL_STATE(1697)] = 57458, - [SMALL_STATE(1698)] = 57481, - [SMALL_STATE(1699)] = 57504, - [SMALL_STATE(1700)] = 57521, - [SMALL_STATE(1701)] = 57544, - [SMALL_STATE(1702)] = 57567, - [SMALL_STATE(1703)] = 57588, - [SMALL_STATE(1704)] = 57611, - [SMALL_STATE(1705)] = 57634, - [SMALL_STATE(1706)] = 57655, - [SMALL_STATE(1707)] = 57676, - [SMALL_STATE(1708)] = 57693, - [SMALL_STATE(1709)] = 57716, - [SMALL_STATE(1710)] = 57733, - [SMALL_STATE(1711)] = 57756, - [SMALL_STATE(1712)] = 57775, - [SMALL_STATE(1713)] = 57796, - [SMALL_STATE(1714)] = 57819, - [SMALL_STATE(1715)] = 57836, - [SMALL_STATE(1716)] = 57851, - [SMALL_STATE(1717)] = 57874, - [SMALL_STATE(1718)] = 57891, - [SMALL_STATE(1719)] = 57914, - [SMALL_STATE(1720)] = 57937, - [SMALL_STATE(1721)] = 57960, - [SMALL_STATE(1722)] = 57983, - [SMALL_STATE(1723)] = 58006, - [SMALL_STATE(1724)] = 58029, - [SMALL_STATE(1725)] = 58052, - [SMALL_STATE(1726)] = 58075, - [SMALL_STATE(1727)] = 58098, - [SMALL_STATE(1728)] = 58119, - [SMALL_STATE(1729)] = 58142, - [SMALL_STATE(1730)] = 58159, - [SMALL_STATE(1731)] = 58182, - [SMALL_STATE(1732)] = 58205, - [SMALL_STATE(1733)] = 58228, - [SMALL_STATE(1734)] = 58251, - [SMALL_STATE(1735)] = 58270, - [SMALL_STATE(1736)] = 58287, - [SMALL_STATE(1737)] = 58299, - [SMALL_STATE(1738)] = 58313, - [SMALL_STATE(1739)] = 58331, - [SMALL_STATE(1740)] = 58349, - [SMALL_STATE(1741)] = 58367, - [SMALL_STATE(1742)] = 58387, - [SMALL_STATE(1743)] = 58407, - [SMALL_STATE(1744)] = 58423, - [SMALL_STATE(1745)] = 58435, - [SMALL_STATE(1746)] = 58447, - [SMALL_STATE(1747)] = 58467, - [SMALL_STATE(1748)] = 58479, - [SMALL_STATE(1749)] = 58499, - [SMALL_STATE(1750)] = 58517, - [SMALL_STATE(1751)] = 58535, - [SMALL_STATE(1752)] = 58551, - [SMALL_STATE(1753)] = 58569, - [SMALL_STATE(1754)] = 58585, - [SMALL_STATE(1755)] = 58605, - [SMALL_STATE(1756)] = 58617, - [SMALL_STATE(1757)] = 58631, - [SMALL_STATE(1758)] = 58647, - [SMALL_STATE(1759)] = 58663, - [SMALL_STATE(1760)] = 58679, - [SMALL_STATE(1761)] = 58697, - [SMALL_STATE(1762)] = 58709, - [SMALL_STATE(1763)] = 58721, - [SMALL_STATE(1764)] = 58733, - [SMALL_STATE(1765)] = 58745, - [SMALL_STATE(1766)] = 58757, - [SMALL_STATE(1767)] = 58773, - [SMALL_STATE(1768)] = 58789, - [SMALL_STATE(1769)] = 58801, - [SMALL_STATE(1770)] = 58813, - [SMALL_STATE(1771)] = 58825, - [SMALL_STATE(1772)] = 58837, - [SMALL_STATE(1773)] = 58853, - [SMALL_STATE(1774)] = 58865, - [SMALL_STATE(1775)] = 58881, - [SMALL_STATE(1776)] = 58897, - [SMALL_STATE(1777)] = 58913, - [SMALL_STATE(1778)] = 58925, - [SMALL_STATE(1779)] = 58937, - [SMALL_STATE(1780)] = 58949, - [SMALL_STATE(1781)] = 58961, - [SMALL_STATE(1782)] = 58973, - [SMALL_STATE(1783)] = 58991, - [SMALL_STATE(1784)] = 59011, - [SMALL_STATE(1785)] = 59027, - [SMALL_STATE(1786)] = 59039, - [SMALL_STATE(1787)] = 59054, - [SMALL_STATE(1788)] = 59071, - [SMALL_STATE(1789)] = 59086, - [SMALL_STATE(1790)] = 59101, - [SMALL_STATE(1791)] = 59116, - [SMALL_STATE(1792)] = 59131, - [SMALL_STATE(1793)] = 59146, - [SMALL_STATE(1794)] = 59161, - [SMALL_STATE(1795)] = 59176, - [SMALL_STATE(1796)] = 59193, - [SMALL_STATE(1797)] = 59210, - [SMALL_STATE(1798)] = 59223, - [SMALL_STATE(1799)] = 59240, - [SMALL_STATE(1800)] = 59255, - [SMALL_STATE(1801)] = 59272, - [SMALL_STATE(1802)] = 59289, - [SMALL_STATE(1803)] = 59304, - [SMALL_STATE(1804)] = 59321, - [SMALL_STATE(1805)] = 59334, - [SMALL_STATE(1806)] = 59347, - [SMALL_STATE(1807)] = 59364, - [SMALL_STATE(1808)] = 59381, - [SMALL_STATE(1809)] = 59396, - [SMALL_STATE(1810)] = 59411, - [SMALL_STATE(1811)] = 59428, - [SMALL_STATE(1812)] = 59445, - [SMALL_STATE(1813)] = 59460, - [SMALL_STATE(1814)] = 59477, - [SMALL_STATE(1815)] = 59494, - [SMALL_STATE(1816)] = 59509, - [SMALL_STATE(1817)] = 59526, - [SMALL_STATE(1818)] = 59541, - [SMALL_STATE(1819)] = 59558, - [SMALL_STATE(1820)] = 59575, - [SMALL_STATE(1821)] = 59592, - [SMALL_STATE(1822)] = 59609, - [SMALL_STATE(1823)] = 59626, - [SMALL_STATE(1824)] = 59643, - [SMALL_STATE(1825)] = 59658, - [SMALL_STATE(1826)] = 59675, - [SMALL_STATE(1827)] = 59688, - [SMALL_STATE(1828)] = 59703, - [SMALL_STATE(1829)] = 59720, - [SMALL_STATE(1830)] = 59737, - [SMALL_STATE(1831)] = 59754, - [SMALL_STATE(1832)] = 59771, - [SMALL_STATE(1833)] = 59788, - [SMALL_STATE(1834)] = 59805, - [SMALL_STATE(1835)] = 59822, - [SMALL_STATE(1836)] = 59839, - [SMALL_STATE(1837)] = 59856, - [SMALL_STATE(1838)] = 59869, - [SMALL_STATE(1839)] = 59882, - [SMALL_STATE(1840)] = 59899, - [SMALL_STATE(1841)] = 59916, - [SMALL_STATE(1842)] = 59933, - [SMALL_STATE(1843)] = 59950, - [SMALL_STATE(1844)] = 59967, - [SMALL_STATE(1845)] = 59982, - [SMALL_STATE(1846)] = 59999, - [SMALL_STATE(1847)] = 60016, - [SMALL_STATE(1848)] = 60033, - [SMALL_STATE(1849)] = 60050, - [SMALL_STATE(1850)] = 60067, - [SMALL_STATE(1851)] = 60084, - [SMALL_STATE(1852)] = 60101, - [SMALL_STATE(1853)] = 60118, - [SMALL_STATE(1854)] = 60135, - [SMALL_STATE(1855)] = 60152, - [SMALL_STATE(1856)] = 60169, - [SMALL_STATE(1857)] = 60186, - [SMALL_STATE(1858)] = 60203, - [SMALL_STATE(1859)] = 60220, - [SMALL_STATE(1860)] = 60235, - [SMALL_STATE(1861)] = 60252, - [SMALL_STATE(1862)] = 60269, - [SMALL_STATE(1863)] = 60286, - [SMALL_STATE(1864)] = 60303, - [SMALL_STATE(1865)] = 60320, - [SMALL_STATE(1866)] = 60335, - [SMALL_STATE(1867)] = 60352, - [SMALL_STATE(1868)] = 60369, - [SMALL_STATE(1869)] = 60384, - [SMALL_STATE(1870)] = 60401, - [SMALL_STATE(1871)] = 60414, - [SMALL_STATE(1872)] = 60431, - [SMALL_STATE(1873)] = 60446, - [SMALL_STATE(1874)] = 60463, - [SMALL_STATE(1875)] = 60480, - [SMALL_STATE(1876)] = 60495, - [SMALL_STATE(1877)] = 60510, - [SMALL_STATE(1878)] = 60527, - [SMALL_STATE(1879)] = 60540, - [SMALL_STATE(1880)] = 60553, - [SMALL_STATE(1881)] = 60568, - [SMALL_STATE(1882)] = 60583, - [SMALL_STATE(1883)] = 60596, - [SMALL_STATE(1884)] = 60613, - [SMALL_STATE(1885)] = 60630, - [SMALL_STATE(1886)] = 60645, - [SMALL_STATE(1887)] = 60662, - [SMALL_STATE(1888)] = 60679, - [SMALL_STATE(1889)] = 60696, - [SMALL_STATE(1890)] = 60711, - [SMALL_STATE(1891)] = 60725, - [SMALL_STATE(1892)] = 60735, - [SMALL_STATE(1893)] = 60749, - [SMALL_STATE(1894)] = 60763, - [SMALL_STATE(1895)] = 60777, - [SMALL_STATE(1896)] = 60789, - [SMALL_STATE(1897)] = 60799, - [SMALL_STATE(1898)] = 60813, - [SMALL_STATE(1899)] = 60827, - [SMALL_STATE(1900)] = 60841, - [SMALL_STATE(1901)] = 60855, - [SMALL_STATE(1902)] = 60869, - [SMALL_STATE(1903)] = 60883, - [SMALL_STATE(1904)] = 60897, - [SMALL_STATE(1905)] = 60907, - [SMALL_STATE(1906)] = 60917, - [SMALL_STATE(1907)] = 60929, - [SMALL_STATE(1908)] = 60941, - [SMALL_STATE(1909)] = 60955, - [SMALL_STATE(1910)] = 60969, - [SMALL_STATE(1911)] = 60983, - [SMALL_STATE(1912)] = 60995, - [SMALL_STATE(1913)] = 61007, - [SMALL_STATE(1914)] = 61019, - [SMALL_STATE(1915)] = 61031, - [SMALL_STATE(1916)] = 61045, - [SMALL_STATE(1917)] = 61057, - [SMALL_STATE(1918)] = 61067, - [SMALL_STATE(1919)] = 61081, - [SMALL_STATE(1920)] = 61095, - [SMALL_STATE(1921)] = 61107, - [SMALL_STATE(1922)] = 61119, - [SMALL_STATE(1923)] = 61133, - [SMALL_STATE(1924)] = 61147, - [SMALL_STATE(1925)] = 61161, - [SMALL_STATE(1926)] = 61175, - [SMALL_STATE(1927)] = 61189, - [SMALL_STATE(1928)] = 61203, - [SMALL_STATE(1929)] = 61217, - [SMALL_STATE(1930)] = 61231, - [SMALL_STATE(1931)] = 61243, - [SMALL_STATE(1932)] = 61257, - [SMALL_STATE(1933)] = 61271, - [SMALL_STATE(1934)] = 61283, - [SMALL_STATE(1935)] = 61297, - [SMALL_STATE(1936)] = 61311, - [SMALL_STATE(1937)] = 61323, - [SMALL_STATE(1938)] = 61335, - [SMALL_STATE(1939)] = 61349, - [SMALL_STATE(1940)] = 61361, - [SMALL_STATE(1941)] = 61373, - [SMALL_STATE(1942)] = 61387, - [SMALL_STATE(1943)] = 61401, - [SMALL_STATE(1944)] = 61413, - [SMALL_STATE(1945)] = 61427, - [SMALL_STATE(1946)] = 61437, - [SMALL_STATE(1947)] = 61451, - [SMALL_STATE(1948)] = 61461, - [SMALL_STATE(1949)] = 61471, - [SMALL_STATE(1950)] = 61485, - [SMALL_STATE(1951)] = 61497, - [SMALL_STATE(1952)] = 61511, - [SMALL_STATE(1953)] = 61525, - [SMALL_STATE(1954)] = 61539, - [SMALL_STATE(1955)] = 61553, - [SMALL_STATE(1956)] = 61567, - [SMALL_STATE(1957)] = 61581, - [SMALL_STATE(1958)] = 61591, - [SMALL_STATE(1959)] = 61601, - [SMALL_STATE(1960)] = 61615, - [SMALL_STATE(1961)] = 61629, - [SMALL_STATE(1962)] = 61643, - [SMALL_STATE(1963)] = 61653, - [SMALL_STATE(1964)] = 61667, - [SMALL_STATE(1965)] = 61681, - [SMALL_STATE(1966)] = 61691, - [SMALL_STATE(1967)] = 61705, - [SMALL_STATE(1968)] = 61719, - [SMALL_STATE(1969)] = 61733, - [SMALL_STATE(1970)] = 61743, - [SMALL_STATE(1971)] = 61757, - [SMALL_STATE(1972)] = 61767, - [SMALL_STATE(1973)] = 61781, - [SMALL_STATE(1974)] = 61795, - [SMALL_STATE(1975)] = 61809, - [SMALL_STATE(1976)] = 61819, - [SMALL_STATE(1977)] = 61829, - [SMALL_STATE(1978)] = 61841, - [SMALL_STATE(1979)] = 61855, - [SMALL_STATE(1980)] = 61869, - [SMALL_STATE(1981)] = 61883, - [SMALL_STATE(1982)] = 61897, - [SMALL_STATE(1983)] = 61909, - [SMALL_STATE(1984)] = 61923, - [SMALL_STATE(1985)] = 61937, - [SMALL_STATE(1986)] = 61951, - [SMALL_STATE(1987)] = 61965, - [SMALL_STATE(1988)] = 61979, - [SMALL_STATE(1989)] = 61993, - [SMALL_STATE(1990)] = 62007, - [SMALL_STATE(1991)] = 62021, - [SMALL_STATE(1992)] = 62033, - [SMALL_STATE(1993)] = 62047, - [SMALL_STATE(1994)] = 62057, - [SMALL_STATE(1995)] = 62071, - [SMALL_STATE(1996)] = 62085, - [SMALL_STATE(1997)] = 62097, - [SMALL_STATE(1998)] = 62111, - [SMALL_STATE(1999)] = 62125, - [SMALL_STATE(2000)] = 62139, - [SMALL_STATE(2001)] = 62153, - [SMALL_STATE(2002)] = 62167, - [SMALL_STATE(2003)] = 62181, - [SMALL_STATE(2004)] = 62195, - [SMALL_STATE(2005)] = 62209, - [SMALL_STATE(2006)] = 62223, - [SMALL_STATE(2007)] = 62237, - [SMALL_STATE(2008)] = 62251, - [SMALL_STATE(2009)] = 62265, - [SMALL_STATE(2010)] = 62279, - [SMALL_STATE(2011)] = 62293, - [SMALL_STATE(2012)] = 62303, - [SMALL_STATE(2013)] = 62317, - [SMALL_STATE(2014)] = 62329, - [SMALL_STATE(2015)] = 62343, - [SMALL_STATE(2016)] = 62357, - [SMALL_STATE(2017)] = 62371, - [SMALL_STATE(2018)] = 62385, - [SMALL_STATE(2019)] = 62397, - [SMALL_STATE(2020)] = 62411, - [SMALL_STATE(2021)] = 62425, - [SMALL_STATE(2022)] = 62439, - [SMALL_STATE(2023)] = 62451, - [SMALL_STATE(2024)] = 62465, - [SMALL_STATE(2025)] = 62479, - [SMALL_STATE(2026)] = 62493, - [SMALL_STATE(2027)] = 62507, - [SMALL_STATE(2028)] = 62521, - [SMALL_STATE(2029)] = 62535, - [SMALL_STATE(2030)] = 62549, - [SMALL_STATE(2031)] = 62563, - [SMALL_STATE(2032)] = 62577, - [SMALL_STATE(2033)] = 62591, - [SMALL_STATE(2034)] = 62605, - [SMALL_STATE(2035)] = 62619, - [SMALL_STATE(2036)] = 62631, - [SMALL_STATE(2037)] = 62643, - [SMALL_STATE(2038)] = 62655, - [SMALL_STATE(2039)] = 62669, - [SMALL_STATE(2040)] = 62681, - [SMALL_STATE(2041)] = 62695, - [SMALL_STATE(2042)] = 62709, - [SMALL_STATE(2043)] = 62723, - [SMALL_STATE(2044)] = 62737, - [SMALL_STATE(2045)] = 62751, - [SMALL_STATE(2046)] = 62765, - [SMALL_STATE(2047)] = 62779, - [SMALL_STATE(2048)] = 62791, - [SMALL_STATE(2049)] = 62805, - [SMALL_STATE(2050)] = 62815, - [SMALL_STATE(2051)] = 62829, - [SMALL_STATE(2052)] = 62843, - [SMALL_STATE(2053)] = 62853, - [SMALL_STATE(2054)] = 62867, - [SMALL_STATE(2055)] = 62881, - [SMALL_STATE(2056)] = 62895, - [SMALL_STATE(2057)] = 62909, - [SMALL_STATE(2058)] = 62921, - [SMALL_STATE(2059)] = 62935, - [SMALL_STATE(2060)] = 62949, - [SMALL_STATE(2061)] = 62963, - [SMALL_STATE(2062)] = 62975, - [SMALL_STATE(2063)] = 62989, - [SMALL_STATE(2064)] = 63003, - [SMALL_STATE(2065)] = 63017, - [SMALL_STATE(2066)] = 63031, - [SMALL_STATE(2067)] = 63045, - [SMALL_STATE(2068)] = 63059, - [SMALL_STATE(2069)] = 63069, - [SMALL_STATE(2070)] = 63083, - [SMALL_STATE(2071)] = 63097, - [SMALL_STATE(2072)] = 63109, - [SMALL_STATE(2073)] = 63123, - [SMALL_STATE(2074)] = 63137, - [SMALL_STATE(2075)] = 63151, - [SMALL_STATE(2076)] = 63165, - [SMALL_STATE(2077)] = 63177, - [SMALL_STATE(2078)] = 63191, - [SMALL_STATE(2079)] = 63205, - [SMALL_STATE(2080)] = 63219, - [SMALL_STATE(2081)] = 63233, - [SMALL_STATE(2082)] = 63247, - [SMALL_STATE(2083)] = 63261, - [SMALL_STATE(2084)] = 63275, - [SMALL_STATE(2085)] = 63289, - [SMALL_STATE(2086)] = 63299, - [SMALL_STATE(2087)] = 63313, - [SMALL_STATE(2088)] = 63327, - [SMALL_STATE(2089)] = 63341, - [SMALL_STATE(2090)] = 63355, - [SMALL_STATE(2091)] = 63365, - [SMALL_STATE(2092)] = 63379, - [SMALL_STATE(2093)] = 63393, - [SMALL_STATE(2094)] = 63407, - [SMALL_STATE(2095)] = 63421, - [SMALL_STATE(2096)] = 63431, - [SMALL_STATE(2097)] = 63445, - [SMALL_STATE(2098)] = 63459, - [SMALL_STATE(2099)] = 63471, - [SMALL_STATE(2100)] = 63481, - [SMALL_STATE(2101)] = 63495, - [SMALL_STATE(2102)] = 63509, - [SMALL_STATE(2103)] = 63523, - [SMALL_STATE(2104)] = 63533, - [SMALL_STATE(2105)] = 63547, - [SMALL_STATE(2106)] = 63561, - [SMALL_STATE(2107)] = 63575, - [SMALL_STATE(2108)] = 63589, - [SMALL_STATE(2109)] = 63603, - [SMALL_STATE(2110)] = 63617, - [SMALL_STATE(2111)] = 63631, - [SMALL_STATE(2112)] = 63645, - [SMALL_STATE(2113)] = 63659, - [SMALL_STATE(2114)] = 63673, - [SMALL_STATE(2115)] = 63687, - [SMALL_STATE(2116)] = 63699, - [SMALL_STATE(2117)] = 63713, - [SMALL_STATE(2118)] = 63727, - [SMALL_STATE(2119)] = 63741, - [SMALL_STATE(2120)] = 63755, - [SMALL_STATE(2121)] = 63769, - [SMALL_STATE(2122)] = 63779, - [SMALL_STATE(2123)] = 63793, - [SMALL_STATE(2124)] = 63807, - [SMALL_STATE(2125)] = 63821, - [SMALL_STATE(2126)] = 63835, - [SMALL_STATE(2127)] = 63849, - [SMALL_STATE(2128)] = 63863, - [SMALL_STATE(2129)] = 63877, - [SMALL_STATE(2130)] = 63891, - [SMALL_STATE(2131)] = 63905, - [SMALL_STATE(2132)] = 63919, - [SMALL_STATE(2133)] = 63933, - [SMALL_STATE(2134)] = 63943, - [SMALL_STATE(2135)] = 63953, - [SMALL_STATE(2136)] = 63967, - [SMALL_STATE(2137)] = 63981, - [SMALL_STATE(2138)] = 63995, - [SMALL_STATE(2139)] = 64009, - [SMALL_STATE(2140)] = 64023, - [SMALL_STATE(2141)] = 64037, - [SMALL_STATE(2142)] = 64051, - [SMALL_STATE(2143)] = 64065, - [SMALL_STATE(2144)] = 64079, - [SMALL_STATE(2145)] = 64093, - [SMALL_STATE(2146)] = 64107, - [SMALL_STATE(2147)] = 64121, - [SMALL_STATE(2148)] = 64135, - [SMALL_STATE(2149)] = 64149, - [SMALL_STATE(2150)] = 64163, - [SMALL_STATE(2151)] = 64177, - [SMALL_STATE(2152)] = 64191, - [SMALL_STATE(2153)] = 64205, - [SMALL_STATE(2154)] = 64219, - [SMALL_STATE(2155)] = 64230, - [SMALL_STATE(2156)] = 64239, - [SMALL_STATE(2157)] = 64250, - [SMALL_STATE(2158)] = 64259, - [SMALL_STATE(2159)] = 64270, - [SMALL_STATE(2160)] = 64279, - [SMALL_STATE(2161)] = 64290, - [SMALL_STATE(2162)] = 64301, - [SMALL_STATE(2163)] = 64312, - [SMALL_STATE(2164)] = 64323, - [SMALL_STATE(2165)] = 64334, - [SMALL_STATE(2166)] = 64345, - [SMALL_STATE(2167)] = 64356, - [SMALL_STATE(2168)] = 64367, - [SMALL_STATE(2169)] = 64378, - [SMALL_STATE(2170)] = 64389, - [SMALL_STATE(2171)] = 64400, - [SMALL_STATE(2172)] = 64411, - [SMALL_STATE(2173)] = 64422, - [SMALL_STATE(2174)] = 64433, - [SMALL_STATE(2175)] = 64444, - [SMALL_STATE(2176)] = 64455, - [SMALL_STATE(2177)] = 64466, - [SMALL_STATE(2178)] = 64477, - [SMALL_STATE(2179)] = 64488, - [SMALL_STATE(2180)] = 64499, - [SMALL_STATE(2181)] = 64510, - [SMALL_STATE(2182)] = 64521, - [SMALL_STATE(2183)] = 64532, - [SMALL_STATE(2184)] = 64543, - [SMALL_STATE(2185)] = 64554, - [SMALL_STATE(2186)] = 64565, - [SMALL_STATE(2187)] = 64576, - [SMALL_STATE(2188)] = 64587, - [SMALL_STATE(2189)] = 64598, - [SMALL_STATE(2190)] = 64609, - [SMALL_STATE(2191)] = 64620, - [SMALL_STATE(2192)] = 64631, - [SMALL_STATE(2193)] = 64642, - [SMALL_STATE(2194)] = 64653, - [SMALL_STATE(2195)] = 64662, - [SMALL_STATE(2196)] = 64673, - [SMALL_STATE(2197)] = 64684, - [SMALL_STATE(2198)] = 64695, - [SMALL_STATE(2199)] = 64706, - [SMALL_STATE(2200)] = 64717, - [SMALL_STATE(2201)] = 64726, - [SMALL_STATE(2202)] = 64737, - [SMALL_STATE(2203)] = 64748, - [SMALL_STATE(2204)] = 64759, - [SMALL_STATE(2205)] = 64770, - [SMALL_STATE(2206)] = 64781, - [SMALL_STATE(2207)] = 64792, - [SMALL_STATE(2208)] = 64801, - [SMALL_STATE(2209)] = 64812, - [SMALL_STATE(2210)] = 64823, - [SMALL_STATE(2211)] = 64834, - [SMALL_STATE(2212)] = 64845, - [SMALL_STATE(2213)] = 64856, - [SMALL_STATE(2214)] = 64867, - [SMALL_STATE(2215)] = 64878, - [SMALL_STATE(2216)] = 64887, - [SMALL_STATE(2217)] = 64898, - [SMALL_STATE(2218)] = 64909, - [SMALL_STATE(2219)] = 64920, - [SMALL_STATE(2220)] = 64931, - [SMALL_STATE(2221)] = 64942, - [SMALL_STATE(2222)] = 64951, - [SMALL_STATE(2223)] = 64962, - [SMALL_STATE(2224)] = 64971, - [SMALL_STATE(2225)] = 64980, - [SMALL_STATE(2226)] = 64991, - [SMALL_STATE(2227)] = 65002, - [SMALL_STATE(2228)] = 65011, - [SMALL_STATE(2229)] = 65022, - [SMALL_STATE(2230)] = 65033, - [SMALL_STATE(2231)] = 65044, - [SMALL_STATE(2232)] = 65055, - [SMALL_STATE(2233)] = 65066, - [SMALL_STATE(2234)] = 65077, - [SMALL_STATE(2235)] = 65086, - [SMALL_STATE(2236)] = 65097, - [SMALL_STATE(2237)] = 65108, - [SMALL_STATE(2238)] = 65119, - [SMALL_STATE(2239)] = 65130, - [SMALL_STATE(2240)] = 65141, - [SMALL_STATE(2241)] = 65152, - [SMALL_STATE(2242)] = 65163, - [SMALL_STATE(2243)] = 65174, - [SMALL_STATE(2244)] = 65185, - [SMALL_STATE(2245)] = 65196, - [SMALL_STATE(2246)] = 65207, - [SMALL_STATE(2247)] = 65218, - [SMALL_STATE(2248)] = 65229, - [SMALL_STATE(2249)] = 65240, - [SMALL_STATE(2250)] = 65251, - [SMALL_STATE(2251)] = 65262, - [SMALL_STATE(2252)] = 65273, - [SMALL_STATE(2253)] = 65284, - [SMALL_STATE(2254)] = 65293, - [SMALL_STATE(2255)] = 65304, - [SMALL_STATE(2256)] = 65315, - [SMALL_STATE(2257)] = 65326, - [SMALL_STATE(2258)] = 65337, - [SMALL_STATE(2259)] = 65346, - [SMALL_STATE(2260)] = 65357, - [SMALL_STATE(2261)] = 65368, - [SMALL_STATE(2262)] = 65379, - [SMALL_STATE(2263)] = 65390, - [SMALL_STATE(2264)] = 65401, - [SMALL_STATE(2265)] = 65412, - [SMALL_STATE(2266)] = 65421, - [SMALL_STATE(2267)] = 65432, - [SMALL_STATE(2268)] = 65443, - [SMALL_STATE(2269)] = 65454, - [SMALL_STATE(2270)] = 65465, - [SMALL_STATE(2271)] = 65476, - [SMALL_STATE(2272)] = 65487, - [SMALL_STATE(2273)] = 65498, - [SMALL_STATE(2274)] = 65509, - [SMALL_STATE(2275)] = 65520, - [SMALL_STATE(2276)] = 65531, - [SMALL_STATE(2277)] = 65542, - [SMALL_STATE(2278)] = 65551, - [SMALL_STATE(2279)] = 65562, - [SMALL_STATE(2280)] = 65573, - [SMALL_STATE(2281)] = 65582, - [SMALL_STATE(2282)] = 65593, - [SMALL_STATE(2283)] = 65604, - [SMALL_STATE(2284)] = 65615, - [SMALL_STATE(2285)] = 65626, - [SMALL_STATE(2286)] = 65637, - [SMALL_STATE(2287)] = 65648, - [SMALL_STATE(2288)] = 65657, - [SMALL_STATE(2289)] = 65668, - [SMALL_STATE(2290)] = 65679, - [SMALL_STATE(2291)] = 65690, - [SMALL_STATE(2292)] = 65701, - [SMALL_STATE(2293)] = 65710, - [SMALL_STATE(2294)] = 65721, - [SMALL_STATE(2295)] = 65730, - [SMALL_STATE(2296)] = 65739, - [SMALL_STATE(2297)] = 65750, - [SMALL_STATE(2298)] = 65761, - [SMALL_STATE(2299)] = 65772, - [SMALL_STATE(2300)] = 65783, - [SMALL_STATE(2301)] = 65794, - [SMALL_STATE(2302)] = 65805, - [SMALL_STATE(2303)] = 65816, - [SMALL_STATE(2304)] = 65825, - [SMALL_STATE(2305)] = 65836, - [SMALL_STATE(2306)] = 65847, - [SMALL_STATE(2307)] = 65856, - [SMALL_STATE(2308)] = 65867, - [SMALL_STATE(2309)] = 65878, - [SMALL_STATE(2310)] = 65889, - [SMALL_STATE(2311)] = 65900, - [SMALL_STATE(2312)] = 65911, - [SMALL_STATE(2313)] = 65922, - [SMALL_STATE(2314)] = 65933, - [SMALL_STATE(2315)] = 65944, - [SMALL_STATE(2316)] = 65955, - [SMALL_STATE(2317)] = 65966, - [SMALL_STATE(2318)] = 65975, - [SMALL_STATE(2319)] = 65986, - [SMALL_STATE(2320)] = 65997, - [SMALL_STATE(2321)] = 66008, - [SMALL_STATE(2322)] = 66019, - [SMALL_STATE(2323)] = 66028, - [SMALL_STATE(2324)] = 66039, - [SMALL_STATE(2325)] = 66050, - [SMALL_STATE(2326)] = 66061, - [SMALL_STATE(2327)] = 66072, - [SMALL_STATE(2328)] = 66083, - [SMALL_STATE(2329)] = 66094, - [SMALL_STATE(2330)] = 66103, - [SMALL_STATE(2331)] = 66114, - [SMALL_STATE(2332)] = 66125, - [SMALL_STATE(2333)] = 66136, - [SMALL_STATE(2334)] = 66147, - [SMALL_STATE(2335)] = 66156, - [SMALL_STATE(2336)] = 66165, - [SMALL_STATE(2337)] = 66174, - [SMALL_STATE(2338)] = 66185, - [SMALL_STATE(2339)] = 66194, - [SMALL_STATE(2340)] = 66205, - [SMALL_STATE(2341)] = 66214, - [SMALL_STATE(2342)] = 66225, - [SMALL_STATE(2343)] = 66234, - [SMALL_STATE(2344)] = 66245, - [SMALL_STATE(2345)] = 66253, - [SMALL_STATE(2346)] = 66261, - [SMALL_STATE(2347)] = 66269, - [SMALL_STATE(2348)] = 66277, - [SMALL_STATE(2349)] = 66285, - [SMALL_STATE(2350)] = 66293, - [SMALL_STATE(2351)] = 66301, - [SMALL_STATE(2352)] = 66309, - [SMALL_STATE(2353)] = 66317, - [SMALL_STATE(2354)] = 66325, - [SMALL_STATE(2355)] = 66333, - [SMALL_STATE(2356)] = 66341, - [SMALL_STATE(2357)] = 66349, - [SMALL_STATE(2358)] = 66357, - [SMALL_STATE(2359)] = 66365, - [SMALL_STATE(2360)] = 66373, - [SMALL_STATE(2361)] = 66381, - [SMALL_STATE(2362)] = 66389, - [SMALL_STATE(2363)] = 66397, - [SMALL_STATE(2364)] = 66405, - [SMALL_STATE(2365)] = 66413, - [SMALL_STATE(2366)] = 66421, - [SMALL_STATE(2367)] = 66429, - [SMALL_STATE(2368)] = 66437, - [SMALL_STATE(2369)] = 66445, - [SMALL_STATE(2370)] = 66453, - [SMALL_STATE(2371)] = 66461, - [SMALL_STATE(2372)] = 66469, - [SMALL_STATE(2373)] = 66477, - [SMALL_STATE(2374)] = 66485, - [SMALL_STATE(2375)] = 66493, - [SMALL_STATE(2376)] = 66501, - [SMALL_STATE(2377)] = 66509, - [SMALL_STATE(2378)] = 66517, - [SMALL_STATE(2379)] = 66525, - [SMALL_STATE(2380)] = 66533, - [SMALL_STATE(2381)] = 66541, - [SMALL_STATE(2382)] = 66549, - [SMALL_STATE(2383)] = 66557, - [SMALL_STATE(2384)] = 66565, - [SMALL_STATE(2385)] = 66573, - [SMALL_STATE(2386)] = 66581, - [SMALL_STATE(2387)] = 66589, - [SMALL_STATE(2388)] = 66597, - [SMALL_STATE(2389)] = 66605, - [SMALL_STATE(2390)] = 66613, - [SMALL_STATE(2391)] = 66621, - [SMALL_STATE(2392)] = 66629, - [SMALL_STATE(2393)] = 66637, - [SMALL_STATE(2394)] = 66645, - [SMALL_STATE(2395)] = 66653, - [SMALL_STATE(2396)] = 66661, - [SMALL_STATE(2397)] = 66669, - [SMALL_STATE(2398)] = 66677, - [SMALL_STATE(2399)] = 66685, - [SMALL_STATE(2400)] = 66693, - [SMALL_STATE(2401)] = 66701, - [SMALL_STATE(2402)] = 66709, - [SMALL_STATE(2403)] = 66717, - [SMALL_STATE(2404)] = 66725, - [SMALL_STATE(2405)] = 66733, - [SMALL_STATE(2406)] = 66741, - [SMALL_STATE(2407)] = 66749, - [SMALL_STATE(2408)] = 66757, - [SMALL_STATE(2409)] = 66765, - [SMALL_STATE(2410)] = 66773, - [SMALL_STATE(2411)] = 66781, - [SMALL_STATE(2412)] = 66789, - [SMALL_STATE(2413)] = 66797, - [SMALL_STATE(2414)] = 66805, - [SMALL_STATE(2415)] = 66813, - [SMALL_STATE(2416)] = 66821, - [SMALL_STATE(2417)] = 66829, - [SMALL_STATE(2418)] = 66837, - [SMALL_STATE(2419)] = 66845, - [SMALL_STATE(2420)] = 66853, - [SMALL_STATE(2421)] = 66861, - [SMALL_STATE(2422)] = 66869, - [SMALL_STATE(2423)] = 66877, - [SMALL_STATE(2424)] = 66885, - [SMALL_STATE(2425)] = 66893, - [SMALL_STATE(2426)] = 66901, - [SMALL_STATE(2427)] = 66909, - [SMALL_STATE(2428)] = 66917, - [SMALL_STATE(2429)] = 66925, - [SMALL_STATE(2430)] = 66933, - [SMALL_STATE(2431)] = 66941, - [SMALL_STATE(2432)] = 66949, - [SMALL_STATE(2433)] = 66957, - [SMALL_STATE(2434)] = 66965, - [SMALL_STATE(2435)] = 66973, - [SMALL_STATE(2436)] = 66981, - [SMALL_STATE(2437)] = 66989, - [SMALL_STATE(2438)] = 66997, - [SMALL_STATE(2439)] = 67005, - [SMALL_STATE(2440)] = 67013, - [SMALL_STATE(2441)] = 67021, - [SMALL_STATE(2442)] = 67029, - [SMALL_STATE(2443)] = 67037, - [SMALL_STATE(2444)] = 67045, - [SMALL_STATE(2445)] = 67053, - [SMALL_STATE(2446)] = 67061, - [SMALL_STATE(2447)] = 67069, - [SMALL_STATE(2448)] = 67077, - [SMALL_STATE(2449)] = 67085, - [SMALL_STATE(2450)] = 67093, - [SMALL_STATE(2451)] = 67101, - [SMALL_STATE(2452)] = 67109, - [SMALL_STATE(2453)] = 67117, - [SMALL_STATE(2454)] = 67125, - [SMALL_STATE(2455)] = 67133, - [SMALL_STATE(2456)] = 67141, - [SMALL_STATE(2457)] = 67149, - [SMALL_STATE(2458)] = 67157, - [SMALL_STATE(2459)] = 67165, - [SMALL_STATE(2460)] = 67173, - [SMALL_STATE(2461)] = 67181, - [SMALL_STATE(2462)] = 67189, - [SMALL_STATE(2463)] = 67197, - [SMALL_STATE(2464)] = 67205, - [SMALL_STATE(2465)] = 67213, - [SMALL_STATE(2466)] = 67221, - [SMALL_STATE(2467)] = 67229, - [SMALL_STATE(2468)] = 67237, - [SMALL_STATE(2469)] = 67245, - [SMALL_STATE(2470)] = 67253, - [SMALL_STATE(2471)] = 67261, - [SMALL_STATE(2472)] = 67269, - [SMALL_STATE(2473)] = 67277, - [SMALL_STATE(2474)] = 67285, - [SMALL_STATE(2475)] = 67293, - [SMALL_STATE(2476)] = 67301, - [SMALL_STATE(2477)] = 67309, - [SMALL_STATE(2478)] = 67317, - [SMALL_STATE(2479)] = 67325, - [SMALL_STATE(2480)] = 67333, - [SMALL_STATE(2481)] = 67341, - [SMALL_STATE(2482)] = 67349, - [SMALL_STATE(2483)] = 67357, - [SMALL_STATE(2484)] = 67365, - [SMALL_STATE(2485)] = 67373, - [SMALL_STATE(2486)] = 67381, - [SMALL_STATE(2487)] = 67389, - [SMALL_STATE(2488)] = 67397, - [SMALL_STATE(2489)] = 67405, - [SMALL_STATE(2490)] = 67413, - [SMALL_STATE(2491)] = 67421, - [SMALL_STATE(2492)] = 67429, - [SMALL_STATE(2493)] = 67437, - [SMALL_STATE(2494)] = 67445, - [SMALL_STATE(2495)] = 67453, - [SMALL_STATE(2496)] = 67461, - [SMALL_STATE(2497)] = 67469, - [SMALL_STATE(2498)] = 67477, - [SMALL_STATE(2499)] = 67485, - [SMALL_STATE(2500)] = 67493, - [SMALL_STATE(2501)] = 67501, - [SMALL_STATE(2502)] = 67509, - [SMALL_STATE(2503)] = 67517, - [SMALL_STATE(2504)] = 67525, - [SMALL_STATE(2505)] = 67533, - [SMALL_STATE(2506)] = 67541, - [SMALL_STATE(2507)] = 67549, - [SMALL_STATE(2508)] = 67557, - [SMALL_STATE(2509)] = 67565, - [SMALL_STATE(2510)] = 67573, - [SMALL_STATE(2511)] = 67581, - [SMALL_STATE(2512)] = 67589, - [SMALL_STATE(2513)] = 67597, - [SMALL_STATE(2514)] = 67605, - [SMALL_STATE(2515)] = 67613, - [SMALL_STATE(2516)] = 67621, - [SMALL_STATE(2517)] = 67629, - [SMALL_STATE(2518)] = 67637, - [SMALL_STATE(2519)] = 67645, - [SMALL_STATE(2520)] = 67653, - [SMALL_STATE(2521)] = 67661, - [SMALL_STATE(2522)] = 67669, - [SMALL_STATE(2523)] = 67677, - [SMALL_STATE(2524)] = 67685, - [SMALL_STATE(2525)] = 67693, - [SMALL_STATE(2526)] = 67701, - [SMALL_STATE(2527)] = 67709, - [SMALL_STATE(2528)] = 67717, - [SMALL_STATE(2529)] = 67725, - [SMALL_STATE(2530)] = 67733, - [SMALL_STATE(2531)] = 67741, - [SMALL_STATE(2532)] = 67749, - [SMALL_STATE(2533)] = 67757, - [SMALL_STATE(2534)] = 67765, - [SMALL_STATE(2535)] = 67773, - [SMALL_STATE(2536)] = 67781, - [SMALL_STATE(2537)] = 67789, - [SMALL_STATE(2538)] = 67797, - [SMALL_STATE(2539)] = 67805, - [SMALL_STATE(2540)] = 67813, - [SMALL_STATE(2541)] = 67821, - [SMALL_STATE(2542)] = 67829, - [SMALL_STATE(2543)] = 67837, - [SMALL_STATE(2544)] = 67845, - [SMALL_STATE(2545)] = 67853, - [SMALL_STATE(2546)] = 67861, - [SMALL_STATE(2547)] = 67869, - [SMALL_STATE(2548)] = 67877, - [SMALL_STATE(2549)] = 67885, - [SMALL_STATE(2550)] = 67893, - [SMALL_STATE(2551)] = 67901, - [SMALL_STATE(2552)] = 67909, - [SMALL_STATE(2553)] = 67917, - [SMALL_STATE(2554)] = 67925, - [SMALL_STATE(2555)] = 67933, - [SMALL_STATE(2556)] = 67941, - [SMALL_STATE(2557)] = 67949, - [SMALL_STATE(2558)] = 67957, - [SMALL_STATE(2559)] = 67965, - [SMALL_STATE(2560)] = 67973, - [SMALL_STATE(2561)] = 67981, - [SMALL_STATE(2562)] = 67989, - [SMALL_STATE(2563)] = 67997, - [SMALL_STATE(2564)] = 68005, - [SMALL_STATE(2565)] = 68013, - [SMALL_STATE(2566)] = 68021, - [SMALL_STATE(2567)] = 68029, - [SMALL_STATE(2568)] = 68037, - [SMALL_STATE(2569)] = 68045, - [SMALL_STATE(2570)] = 68053, - [SMALL_STATE(2571)] = 68061, - [SMALL_STATE(2572)] = 68069, - [SMALL_STATE(2573)] = 68077, - [SMALL_STATE(2574)] = 68085, - [SMALL_STATE(2575)] = 68093, - [SMALL_STATE(2576)] = 68101, - [SMALL_STATE(2577)] = 68109, - [SMALL_STATE(2578)] = 68117, - [SMALL_STATE(2579)] = 68125, - [SMALL_STATE(2580)] = 68133, - [SMALL_STATE(2581)] = 68141, - [SMALL_STATE(2582)] = 68149, + [SMALL_STATE(660)] = 0, + [SMALL_STATE(661)] = 129, + [SMALL_STATE(662)] = 258, + [SMALL_STATE(663)] = 387, + [SMALL_STATE(664)] = 516, + [SMALL_STATE(665)] = 645, + [SMALL_STATE(666)] = 774, + [SMALL_STATE(667)] = 903, + [SMALL_STATE(668)] = 1032, + [SMALL_STATE(669)] = 1161, + [SMALL_STATE(670)] = 1290, + [SMALL_STATE(671)] = 1419, + [SMALL_STATE(672)] = 1548, + [SMALL_STATE(673)] = 1677, + [SMALL_STATE(674)] = 1806, + [SMALL_STATE(675)] = 1935, + [SMALL_STATE(676)] = 2064, + [SMALL_STATE(677)] = 2193, + [SMALL_STATE(678)] = 2322, + [SMALL_STATE(679)] = 2451, + [SMALL_STATE(680)] = 2580, + [SMALL_STATE(681)] = 2709, + [SMALL_STATE(682)] = 2838, + [SMALL_STATE(683)] = 2967, + [SMALL_STATE(684)] = 3096, + [SMALL_STATE(685)] = 3225, + [SMALL_STATE(686)] = 3354, + [SMALL_STATE(687)] = 3483, + [SMALL_STATE(688)] = 3612, + [SMALL_STATE(689)] = 3741, + [SMALL_STATE(690)] = 3870, + [SMALL_STATE(691)] = 3999, + [SMALL_STATE(692)] = 4128, + [SMALL_STATE(693)] = 4257, + [SMALL_STATE(694)] = 4386, + [SMALL_STATE(695)] = 4515, + [SMALL_STATE(696)] = 4644, + [SMALL_STATE(697)] = 4773, + [SMALL_STATE(698)] = 4902, + [SMALL_STATE(699)] = 5031, + [SMALL_STATE(700)] = 5160, + [SMALL_STATE(701)] = 5289, + [SMALL_STATE(702)] = 5418, + [SMALL_STATE(703)] = 5547, + [SMALL_STATE(704)] = 5676, + [SMALL_STATE(705)] = 5805, + [SMALL_STATE(706)] = 5934, + [SMALL_STATE(707)] = 6063, + [SMALL_STATE(708)] = 6192, + [SMALL_STATE(709)] = 6321, + [SMALL_STATE(710)] = 6450, + [SMALL_STATE(711)] = 6579, + [SMALL_STATE(712)] = 6708, + [SMALL_STATE(713)] = 6837, + [SMALL_STATE(714)] = 6966, + [SMALL_STATE(715)] = 7095, + [SMALL_STATE(716)] = 7226, + [SMALL_STATE(717)] = 7297, + [SMALL_STATE(718)] = 7426, + [SMALL_STATE(719)] = 7555, + [SMALL_STATE(720)] = 7684, + [SMALL_STATE(721)] = 7813, + [SMALL_STATE(722)] = 7942, + [SMALL_STATE(723)] = 8071, + [SMALL_STATE(724)] = 8200, + [SMALL_STATE(725)] = 8329, + [SMALL_STATE(726)] = 8458, + [SMALL_STATE(727)] = 8587, + [SMALL_STATE(728)] = 8716, + [SMALL_STATE(729)] = 8845, + [SMALL_STATE(730)] = 8974, + [SMALL_STATE(731)] = 9103, + [SMALL_STATE(732)] = 9232, + [SMALL_STATE(733)] = 9361, + [SMALL_STATE(734)] = 9490, + [SMALL_STATE(735)] = 9619, + [SMALL_STATE(736)] = 9748, + [SMALL_STATE(737)] = 9877, + [SMALL_STATE(738)] = 10006, + [SMALL_STATE(739)] = 10135, + [SMALL_STATE(740)] = 10264, + [SMALL_STATE(741)] = 10393, + [SMALL_STATE(742)] = 10522, + [SMALL_STATE(743)] = 10651, + [SMALL_STATE(744)] = 10780, + [SMALL_STATE(745)] = 10909, + [SMALL_STATE(746)] = 11038, + [SMALL_STATE(747)] = 11167, + [SMALL_STATE(748)] = 11296, + [SMALL_STATE(749)] = 11425, + [SMALL_STATE(750)] = 11554, + [SMALL_STATE(751)] = 11683, + [SMALL_STATE(752)] = 11812, + [SMALL_STATE(753)] = 11941, + [SMALL_STATE(754)] = 12070, + [SMALL_STATE(755)] = 12199, + [SMALL_STATE(756)] = 12328, + [SMALL_STATE(757)] = 12457, + [SMALL_STATE(758)] = 12586, + [SMALL_STATE(759)] = 12715, + [SMALL_STATE(760)] = 12844, + [SMALL_STATE(761)] = 12973, + [SMALL_STATE(762)] = 13102, + [SMALL_STATE(763)] = 13231, + [SMALL_STATE(764)] = 13360, + [SMALL_STATE(765)] = 13489, + [SMALL_STATE(766)] = 13618, + [SMALL_STATE(767)] = 13747, + [SMALL_STATE(768)] = 13876, + [SMALL_STATE(769)] = 14005, + [SMALL_STATE(770)] = 14134, + [SMALL_STATE(771)] = 14200, + [SMALL_STATE(772)] = 14266, + [SMALL_STATE(773)] = 14332, + [SMALL_STATE(774)] = 14398, + [SMALL_STATE(775)] = 14460, + [SMALL_STATE(776)] = 14530, + [SMALL_STATE(777)] = 14597, + [SMALL_STATE(778)] = 14664, + [SMALL_STATE(779)] = 14720, + [SMALL_STATE(780)] = 14780, + [SMALL_STATE(781)] = 14840, + [SMALL_STATE(782)] = 14900, + [SMALL_STATE(783)] = 14964, + [SMALL_STATE(784)] = 15028, + [SMALL_STATE(785)] = 15088, + [SMALL_STATE(786)] = 15152, + [SMALL_STATE(787)] = 15208, + [SMALL_STATE(788)] = 15264, + [SMALL_STATE(789)] = 15320, + [SMALL_STATE(790)] = 15384, + [SMALL_STATE(791)] = 15440, + [SMALL_STATE(792)] = 15502, + [SMALL_STATE(793)] = 15561, + [SMALL_STATE(794)] = 15618, + [SMALL_STATE(795)] = 15677, + [SMALL_STATE(796)] = 15736, + [SMALL_STATE(797)] = 15793, + [SMALL_STATE(798)] = 15850, + [SMALL_STATE(799)] = 15905, + [SMALL_STATE(800)] = 15962, + [SMALL_STATE(801)] = 16016, + [SMALL_STATE(802)] = 16070, + [SMALL_STATE(803)] = 16124, + [SMALL_STATE(804)] = 16178, + [SMALL_STATE(805)] = 16232, + [SMALL_STATE(806)] = 16286, + [SMALL_STATE(807)] = 16340, + [SMALL_STATE(808)] = 16396, + [SMALL_STATE(809)] = 16450, + [SMALL_STATE(810)] = 16506, + [SMALL_STATE(811)] = 16560, + [SMALL_STATE(812)] = 16614, + [SMALL_STATE(813)] = 16668, + [SMALL_STATE(814)] = 16722, + [SMALL_STATE(815)] = 16776, + [SMALL_STATE(816)] = 16830, + [SMALL_STATE(817)] = 16884, + [SMALL_STATE(818)] = 16938, + [SMALL_STATE(819)] = 16992, + [SMALL_STATE(820)] = 17046, + [SMALL_STATE(821)] = 17100, + [SMALL_STATE(822)] = 17154, + [SMALL_STATE(823)] = 17208, + [SMALL_STATE(824)] = 17262, + [SMALL_STATE(825)] = 17316, + [SMALL_STATE(826)] = 17370, + [SMALL_STATE(827)] = 17424, + [SMALL_STATE(828)] = 17480, + [SMALL_STATE(829)] = 17534, + [SMALL_STATE(830)] = 17588, + [SMALL_STATE(831)] = 17642, + [SMALL_STATE(832)] = 17696, + [SMALL_STATE(833)] = 17750, + [SMALL_STATE(834)] = 17804, + [SMALL_STATE(835)] = 17860, + [SMALL_STATE(836)] = 17914, + [SMALL_STATE(837)] = 17968, + [SMALL_STATE(838)] = 18022, + [SMALL_STATE(839)] = 18076, + [SMALL_STATE(840)] = 18130, + [SMALL_STATE(841)] = 18184, + [SMALL_STATE(842)] = 18238, + [SMALL_STATE(843)] = 18292, + [SMALL_STATE(844)] = 18346, + [SMALL_STATE(845)] = 18400, + [SMALL_STATE(846)] = 18454, + [SMALL_STATE(847)] = 18508, + [SMALL_STATE(848)] = 18562, + [SMALL_STATE(849)] = 18616, + [SMALL_STATE(850)] = 18670, + [SMALL_STATE(851)] = 18724, + [SMALL_STATE(852)] = 18778, + [SMALL_STATE(853)] = 18832, + [SMALL_STATE(854)] = 18888, + [SMALL_STATE(855)] = 18942, + [SMALL_STATE(856)] = 18996, + [SMALL_STATE(857)] = 19050, + [SMALL_STATE(858)] = 19104, + [SMALL_STATE(859)] = 19158, + [SMALL_STATE(860)] = 19212, + [SMALL_STATE(861)] = 19266, + [SMALL_STATE(862)] = 19320, + [SMALL_STATE(863)] = 19374, + [SMALL_STATE(864)] = 19428, + [SMALL_STATE(865)] = 19482, + [SMALL_STATE(866)] = 19536, + [SMALL_STATE(867)] = 19590, + [SMALL_STATE(868)] = 19644, + [SMALL_STATE(869)] = 19698, + [SMALL_STATE(870)] = 19752, + [SMALL_STATE(871)] = 19806, + [SMALL_STATE(872)] = 19860, + [SMALL_STATE(873)] = 19914, + [SMALL_STATE(874)] = 19968, + [SMALL_STATE(875)] = 20022, + [SMALL_STATE(876)] = 20076, + [SMALL_STATE(877)] = 20130, + [SMALL_STATE(878)] = 20184, + [SMALL_STATE(879)] = 20238, + [SMALL_STATE(880)] = 20292, + [SMALL_STATE(881)] = 20346, + [SMALL_STATE(882)] = 20400, + [SMALL_STATE(883)] = 20454, + [SMALL_STATE(884)] = 20508, + [SMALL_STATE(885)] = 20562, + [SMALL_STATE(886)] = 20616, + [SMALL_STATE(887)] = 20674, + [SMALL_STATE(888)] = 20728, + [SMALL_STATE(889)] = 20782, + [SMALL_STATE(890)] = 20836, + [SMALL_STATE(891)] = 20890, + [SMALL_STATE(892)] = 20944, + [SMALL_STATE(893)] = 20998, + [SMALL_STATE(894)] = 21052, + [SMALL_STATE(895)] = 21106, + [SMALL_STATE(896)] = 21160, + [SMALL_STATE(897)] = 21214, + [SMALL_STATE(898)] = 21268, + [SMALL_STATE(899)] = 21322, + [SMALL_STATE(900)] = 21376, + [SMALL_STATE(901)] = 21430, + [SMALL_STATE(902)] = 21484, + [SMALL_STATE(903)] = 21538, + [SMALL_STATE(904)] = 21592, + [SMALL_STATE(905)] = 21650, + [SMALL_STATE(906)] = 21704, + [SMALL_STATE(907)] = 21758, + [SMALL_STATE(908)] = 21812, + [SMALL_STATE(909)] = 21866, + [SMALL_STATE(910)] = 21920, + [SMALL_STATE(911)] = 21974, + [SMALL_STATE(912)] = 22028, + [SMALL_STATE(913)] = 22082, + [SMALL_STATE(914)] = 22136, + [SMALL_STATE(915)] = 22190, + [SMALL_STATE(916)] = 22244, + [SMALL_STATE(917)] = 22298, + [SMALL_STATE(918)] = 22352, + [SMALL_STATE(919)] = 22406, + [SMALL_STATE(920)] = 22460, + [SMALL_STATE(921)] = 22514, + [SMALL_STATE(922)] = 22568, + [SMALL_STATE(923)] = 22622, + [SMALL_STATE(924)] = 22676, + [SMALL_STATE(925)] = 22730, + [SMALL_STATE(926)] = 22784, + [SMALL_STATE(927)] = 22838, + [SMALL_STATE(928)] = 22892, + [SMALL_STATE(929)] = 22946, + [SMALL_STATE(930)] = 23000, + [SMALL_STATE(931)] = 23054, + [SMALL_STATE(932)] = 23108, + [SMALL_STATE(933)] = 23162, + [SMALL_STATE(934)] = 23216, + [SMALL_STATE(935)] = 23270, + [SMALL_STATE(936)] = 23324, + [SMALL_STATE(937)] = 23378, + [SMALL_STATE(938)] = 23432, + [SMALL_STATE(939)] = 23486, + [SMALL_STATE(940)] = 23540, + [SMALL_STATE(941)] = 23594, + [SMALL_STATE(942)] = 23648, + [SMALL_STATE(943)] = 23702, + [SMALL_STATE(944)] = 23756, + [SMALL_STATE(945)] = 23810, + [SMALL_STATE(946)] = 23864, + [SMALL_STATE(947)] = 23918, + [SMALL_STATE(948)] = 23976, + [SMALL_STATE(949)] = 24030, + [SMALL_STATE(950)] = 24084, + [SMALL_STATE(951)] = 24138, + [SMALL_STATE(952)] = 24192, + [SMALL_STATE(953)] = 24246, + [SMALL_STATE(954)] = 24300, + [SMALL_STATE(955)] = 24354, + [SMALL_STATE(956)] = 24408, + [SMALL_STATE(957)] = 24462, + [SMALL_STATE(958)] = 24516, + [SMALL_STATE(959)] = 24570, + [SMALL_STATE(960)] = 24624, + [SMALL_STATE(961)] = 24678, + [SMALL_STATE(962)] = 24732, + [SMALL_STATE(963)] = 24786, + [SMALL_STATE(964)] = 24840, + [SMALL_STATE(965)] = 24896, + [SMALL_STATE(966)] = 24952, + [SMALL_STATE(967)] = 25006, + [SMALL_STATE(968)] = 25060, + [SMALL_STATE(969)] = 25114, + [SMALL_STATE(970)] = 25168, + [SMALL_STATE(971)] = 25222, + [SMALL_STATE(972)] = 25276, + [SMALL_STATE(973)] = 25330, + [SMALL_STATE(974)] = 25384, + [SMALL_STATE(975)] = 25438, + [SMALL_STATE(976)] = 25492, + [SMALL_STATE(977)] = 25546, + [SMALL_STATE(978)] = 25600, + [SMALL_STATE(979)] = 25654, + [SMALL_STATE(980)] = 25710, + [SMALL_STATE(981)] = 25764, + [SMALL_STATE(982)] = 25818, + [SMALL_STATE(983)] = 25872, + [SMALL_STATE(984)] = 25926, + [SMALL_STATE(985)] = 25980, + [SMALL_STATE(986)] = 26034, + [SMALL_STATE(987)] = 26088, + [SMALL_STATE(988)] = 26142, + [SMALL_STATE(989)] = 26198, + [SMALL_STATE(990)] = 26252, + [SMALL_STATE(991)] = 26306, + [SMALL_STATE(992)] = 26360, + [SMALL_STATE(993)] = 26414, + [SMALL_STATE(994)] = 26470, + [SMALL_STATE(995)] = 26524, + [SMALL_STATE(996)] = 26578, + [SMALL_STATE(997)] = 26632, + [SMALL_STATE(998)] = 26686, + [SMALL_STATE(999)] = 26740, + [SMALL_STATE(1000)] = 26794, + [SMALL_STATE(1001)] = 26850, + [SMALL_STATE(1002)] = 26906, + [SMALL_STATE(1003)] = 26960, + [SMALL_STATE(1004)] = 27014, + [SMALL_STATE(1005)] = 27068, + [SMALL_STATE(1006)] = 27122, + [SMALL_STATE(1007)] = 27176, + [SMALL_STATE(1008)] = 27230, + [SMALL_STATE(1009)] = 27284, + [SMALL_STATE(1010)] = 27340, + [SMALL_STATE(1011)] = 27394, + [SMALL_STATE(1012)] = 27448, + [SMALL_STATE(1013)] = 27502, + [SMALL_STATE(1014)] = 27556, + [SMALL_STATE(1015)] = 27610, + [SMALL_STATE(1016)] = 27664, + [SMALL_STATE(1017)] = 27718, + [SMALL_STATE(1018)] = 27772, + [SMALL_STATE(1019)] = 27826, + [SMALL_STATE(1020)] = 27880, + [SMALL_STATE(1021)] = 27934, + [SMALL_STATE(1022)] = 27988, + [SMALL_STATE(1023)] = 28042, + [SMALL_STATE(1024)] = 28096, + [SMALL_STATE(1025)] = 28150, + [SMALL_STATE(1026)] = 28204, + [SMALL_STATE(1027)] = 28258, + [SMALL_STATE(1028)] = 28314, + [SMALL_STATE(1029)] = 28368, + [SMALL_STATE(1030)] = 28422, + [SMALL_STATE(1031)] = 28476, + [SMALL_STATE(1032)] = 28530, + [SMALL_STATE(1033)] = 28584, + [SMALL_STATE(1034)] = 28638, + [SMALL_STATE(1035)] = 28692, + [SMALL_STATE(1036)] = 28746, + [SMALL_STATE(1037)] = 28800, + [SMALL_STATE(1038)] = 28854, + [SMALL_STATE(1039)] = 28908, + [SMALL_STATE(1040)] = 28962, + [SMALL_STATE(1041)] = 29016, + [SMALL_STATE(1042)] = 29070, + [SMALL_STATE(1043)] = 29124, + [SMALL_STATE(1044)] = 29178, + [SMALL_STATE(1045)] = 29232, + [SMALL_STATE(1046)] = 29286, + [SMALL_STATE(1047)] = 29340, + [SMALL_STATE(1048)] = 29394, + [SMALL_STATE(1049)] = 29450, + [SMALL_STATE(1050)] = 29504, + [SMALL_STATE(1051)] = 29558, + [SMALL_STATE(1052)] = 29612, + [SMALL_STATE(1053)] = 29666, + [SMALL_STATE(1054)] = 29720, + [SMALL_STATE(1055)] = 29774, + [SMALL_STATE(1056)] = 29828, + [SMALL_STATE(1057)] = 29882, + [SMALL_STATE(1058)] = 29936, + [SMALL_STATE(1059)] = 29989, + [SMALL_STATE(1060)] = 30042, + [SMALL_STATE(1061)] = 30095, + [SMALL_STATE(1062)] = 30148, + [SMALL_STATE(1063)] = 30201, + [SMALL_STATE(1064)] = 30254, + [SMALL_STATE(1065)] = 30307, + [SMALL_STATE(1066)] = 30360, + [SMALL_STATE(1067)] = 30413, + [SMALL_STATE(1068)] = 30466, + [SMALL_STATE(1069)] = 30519, + [SMALL_STATE(1070)] = 30572, + [SMALL_STATE(1071)] = 30625, + [SMALL_STATE(1072)] = 30678, + [SMALL_STATE(1073)] = 30731, + [SMALL_STATE(1074)] = 30784, + [SMALL_STATE(1075)] = 30837, + [SMALL_STATE(1076)] = 30890, + [SMALL_STATE(1077)] = 30943, + [SMALL_STATE(1078)] = 30996, + [SMALL_STATE(1079)] = 31049, + [SMALL_STATE(1080)] = 31102, + [SMALL_STATE(1081)] = 31155, + [SMALL_STATE(1082)] = 31208, + [SMALL_STATE(1083)] = 31261, + [SMALL_STATE(1084)] = 31314, + [SMALL_STATE(1085)] = 31367, + [SMALL_STATE(1086)] = 31422, + [SMALL_STATE(1087)] = 31475, + [SMALL_STATE(1088)] = 31528, + [SMALL_STATE(1089)] = 31583, + [SMALL_STATE(1090)] = 31636, + [SMALL_STATE(1091)] = 31689, + [SMALL_STATE(1092)] = 31742, + [SMALL_STATE(1093)] = 31795, + [SMALL_STATE(1094)] = 31848, + [SMALL_STATE(1095)] = 31901, + [SMALL_STATE(1096)] = 31954, + [SMALL_STATE(1097)] = 32007, + [SMALL_STATE(1098)] = 32060, + [SMALL_STATE(1099)] = 32113, + [SMALL_STATE(1100)] = 32166, + [SMALL_STATE(1101)] = 32219, + [SMALL_STATE(1102)] = 32272, + [SMALL_STATE(1103)] = 32325, + [SMALL_STATE(1104)] = 32414, + [SMALL_STATE(1105)] = 32503, + [SMALL_STATE(1106)] = 32556, + [SMALL_STATE(1107)] = 32609, + [SMALL_STATE(1108)] = 32662, + [SMALL_STATE(1109)] = 32715, + [SMALL_STATE(1110)] = 32768, + [SMALL_STATE(1111)] = 32821, + [SMALL_STATE(1112)] = 32874, + [SMALL_STATE(1113)] = 32927, + [SMALL_STATE(1114)] = 32980, + [SMALL_STATE(1115)] = 33033, + [SMALL_STATE(1116)] = 33086, + [SMALL_STATE(1117)] = 33139, + [SMALL_STATE(1118)] = 33192, + [SMALL_STATE(1119)] = 33245, + [SMALL_STATE(1120)] = 33300, + [SMALL_STATE(1121)] = 33353, + [SMALL_STATE(1122)] = 33406, + [SMALL_STATE(1123)] = 33459, + [SMALL_STATE(1124)] = 33512, + [SMALL_STATE(1125)] = 33565, + [SMALL_STATE(1126)] = 33618, + [SMALL_STATE(1127)] = 33671, + [SMALL_STATE(1128)] = 33724, + [SMALL_STATE(1129)] = 33777, + [SMALL_STATE(1130)] = 33830, + [SMALL_STATE(1131)] = 33883, + [SMALL_STATE(1132)] = 33936, + [SMALL_STATE(1133)] = 33989, + [SMALL_STATE(1134)] = 34042, + [SMALL_STATE(1135)] = 34095, + [SMALL_STATE(1136)] = 34148, + [SMALL_STATE(1137)] = 34201, + [SMALL_STATE(1138)] = 34254, + [SMALL_STATE(1139)] = 34307, + [SMALL_STATE(1140)] = 34360, + [SMALL_STATE(1141)] = 34413, + [SMALL_STATE(1142)] = 34466, + [SMALL_STATE(1143)] = 34519, + [SMALL_STATE(1144)] = 34572, + [SMALL_STATE(1145)] = 34625, + [SMALL_STATE(1146)] = 34678, + [SMALL_STATE(1147)] = 34731, + [SMALL_STATE(1148)] = 34788, + [SMALL_STATE(1149)] = 34841, + [SMALL_STATE(1150)] = 34896, + [SMALL_STATE(1151)] = 34949, + [SMALL_STATE(1152)] = 35002, + [SMALL_STATE(1153)] = 35055, + [SMALL_STATE(1154)] = 35108, + [SMALL_STATE(1155)] = 35161, + [SMALL_STATE(1156)] = 35214, + [SMALL_STATE(1157)] = 35267, + [SMALL_STATE(1158)] = 35320, + [SMALL_STATE(1159)] = 35396, + [SMALL_STATE(1160)] = 35476, + [SMALL_STATE(1161)] = 35536, + [SMALL_STATE(1162)] = 35622, + [SMALL_STATE(1163)] = 35682, + [SMALL_STATE(1164)] = 35762, + [SMALL_STATE(1165)] = 35832, + [SMALL_STATE(1166)] = 35912, + [SMALL_STATE(1167)] = 35964, + [SMALL_STATE(1168)] = 36032, + [SMALL_STATE(1169)] = 36092, + [SMALL_STATE(1170)] = 36178, + [SMALL_STATE(1171)] = 36256, + [SMALL_STATE(1172)] = 36308, + [SMALL_STATE(1173)] = 36370, + [SMALL_STATE(1174)] = 36430, + [SMALL_STATE(1175)] = 36510, + [SMALL_STATE(1176)] = 36570, + [SMALL_STATE(1177)] = 36636, + [SMALL_STATE(1178)] = 36716, + [SMALL_STATE(1179)] = 36788, + [SMALL_STATE(1180)] = 36852, + [SMALL_STATE(1181)] = 36932, + [SMALL_STATE(1182)] = 37017, + [SMALL_STATE(1183)] = 37068, + [SMALL_STATE(1184)] = 37125, + [SMALL_STATE(1185)] = 37176, + [SMALL_STATE(1186)] = 37263, + [SMALL_STATE(1187)] = 37350, + [SMALL_STATE(1188)] = 37429, + [SMALL_STATE(1189)] = 37514, + [SMALL_STATE(1190)] = 37601, + [SMALL_STATE(1191)] = 37688, + [SMALL_STATE(1192)] = 37744, + [SMALL_STATE(1193)] = 37820, + [SMALL_STATE(1194)] = 37896, + [SMALL_STATE(1195)] = 37950, + [SMALL_STATE(1196)] = 38026, + [SMALL_STATE(1197)] = 38102, + [SMALL_STATE(1198)] = 38153, + [SMALL_STATE(1199)] = 38204, + [SMALL_STATE(1200)] = 38253, + [SMALL_STATE(1201)] = 38326, + [SMALL_STATE(1202)] = 38375, + [SMALL_STATE(1203)] = 38424, + [SMALL_STATE(1204)] = 38477, + [SMALL_STATE(1205)] = 38566, + [SMALL_STATE(1206)] = 38619, + [SMALL_STATE(1207)] = 38668, + [SMALL_STATE(1208)] = 38717, + [SMALL_STATE(1209)] = 38806, + [SMALL_STATE(1210)] = 38855, + [SMALL_STATE(1211)] = 38904, + [SMALL_STATE(1212)] = 38953, + [SMALL_STATE(1213)] = 39002, + [SMALL_STATE(1214)] = 39080, + [SMALL_STATE(1215)] = 39130, + [SMALL_STATE(1216)] = 39216, + [SMALL_STATE(1217)] = 39294, + [SMALL_STATE(1218)] = 39344, + [SMALL_STATE(1219)] = 39430, + [SMALL_STATE(1220)] = 39480, + [SMALL_STATE(1221)] = 39530, + [SMALL_STATE(1222)] = 39605, + [SMALL_STATE(1223)] = 39688, + [SMALL_STATE(1224)] = 39769, + [SMALL_STATE(1225)] = 39852, + [SMALL_STATE(1226)] = 39933, + [SMALL_STATE(1227)] = 40016, + [SMALL_STATE(1228)] = 40099, + [SMALL_STATE(1229)] = 40182, + [SMALL_STATE(1230)] = 40265, + [SMALL_STATE(1231)] = 40348, + [SMALL_STATE(1232)] = 40429, + [SMALL_STATE(1233)] = 40510, + [SMALL_STATE(1234)] = 40593, + [SMALL_STATE(1235)] = 40676, + [SMALL_STATE(1236)] = 40757, + [SMALL_STATE(1237)] = 40840, + [SMALL_STATE(1238)] = 40923, + [SMALL_STATE(1239)] = 41006, + [SMALL_STATE(1240)] = 41081, + [SMALL_STATE(1241)] = 41162, + [SMALL_STATE(1242)] = 41245, + [SMALL_STATE(1243)] = 41328, + [SMALL_STATE(1244)] = 41387, + [SMALL_STATE(1245)] = 41470, + [SMALL_STATE(1246)] = 41553, + [SMALL_STATE(1247)] = 41616, + [SMALL_STATE(1248)] = 41681, + [SMALL_STATE(1249)] = 41762, + [SMALL_STATE(1250)] = 41845, + [SMALL_STATE(1251)] = 41928, + [SMALL_STATE(1252)] = 42011, + [SMALL_STATE(1253)] = 42094, + [SMALL_STATE(1254)] = 42177, + [SMALL_STATE(1255)] = 42250, + [SMALL_STATE(1256)] = 42321, + [SMALL_STATE(1257)] = 42382, + [SMALL_STATE(1258)] = 42457, + [SMALL_STATE(1259)] = 42514, + [SMALL_STATE(1260)] = 42595, + [SMALL_STATE(1261)] = 42676, + [SMALL_STATE(1262)] = 42759, + [SMALL_STATE(1263)] = 42842, + [SMALL_STATE(1264)] = 42925, + [SMALL_STATE(1265)] = 43008, + [SMALL_STATE(1266)] = 43091, + [SMALL_STATE(1267)] = 43174, + [SMALL_STATE(1268)] = 43255, + [SMALL_STATE(1269)] = 43338, + [SMALL_STATE(1270)] = 43421, + [SMALL_STATE(1271)] = 43504, + [SMALL_STATE(1272)] = 43587, + [SMALL_STATE(1273)] = 43670, + [SMALL_STATE(1274)] = 43745, + [SMALL_STATE(1275)] = 43828, + [SMALL_STATE(1276)] = 43911, + [SMALL_STATE(1277)] = 43994, + [SMALL_STATE(1278)] = 44061, + [SMALL_STATE(1279)] = 44144, + [SMALL_STATE(1280)] = 44225, + [SMALL_STATE(1281)] = 44280, + [SMALL_STATE(1282)] = 44363, + [SMALL_STATE(1283)] = 44434, + [SMALL_STATE(1284)] = 44517, + [SMALL_STATE(1285)] = 44572, + [SMALL_STATE(1286)] = 44627, + [SMALL_STATE(1287)] = 44710, + [SMALL_STATE(1288)] = 44793, + [SMALL_STATE(1289)] = 44876, + [SMALL_STATE(1290)] = 44951, + [SMALL_STATE(1291)] = 45034, + [SMALL_STATE(1292)] = 45089, + [SMALL_STATE(1293)] = 45170, + [SMALL_STATE(1294)] = 45253, + [SMALL_STATE(1295)] = 45336, + [SMALL_STATE(1296)] = 45419, + [SMALL_STATE(1297)] = 45494, + [SMALL_STATE(1298)] = 45575, + [SMALL_STATE(1299)] = 45656, + [SMALL_STATE(1300)] = 45724, + [SMALL_STATE(1301)] = 45804, + [SMALL_STATE(1302)] = 45884, + [SMALL_STATE(1303)] = 45964, + [SMALL_STATE(1304)] = 46044, + [SMALL_STATE(1305)] = 46124, + [SMALL_STATE(1306)] = 46204, + [SMALL_STATE(1307)] = 46284, + [SMALL_STATE(1308)] = 46364, + [SMALL_STATE(1309)] = 46444, + [SMALL_STATE(1310)] = 46524, + [SMALL_STATE(1311)] = 46604, + [SMALL_STATE(1312)] = 46672, + [SMALL_STATE(1313)] = 46752, + [SMALL_STATE(1314)] = 46832, + [SMALL_STATE(1315)] = 46912, + [SMALL_STATE(1316)] = 46992, + [SMALL_STATE(1317)] = 47072, + [SMALL_STATE(1318)] = 47152, + [SMALL_STATE(1319)] = 47232, + [SMALL_STATE(1320)] = 47312, + [SMALL_STATE(1321)] = 47392, + [SMALL_STATE(1322)] = 47472, + [SMALL_STATE(1323)] = 47552, + [SMALL_STATE(1324)] = 47632, + [SMALL_STATE(1325)] = 47712, + [SMALL_STATE(1326)] = 47792, + [SMALL_STATE(1327)] = 47872, + [SMALL_STATE(1328)] = 47952, + [SMALL_STATE(1329)] = 48032, + [SMALL_STATE(1330)] = 48112, + [SMALL_STATE(1331)] = 48192, + [SMALL_STATE(1332)] = 48272, + [SMALL_STATE(1333)] = 48352, + [SMALL_STATE(1334)] = 48432, + [SMALL_STATE(1335)] = 48512, + [SMALL_STATE(1336)] = 48577, + [SMALL_STATE(1337)] = 48642, + [SMALL_STATE(1338)] = 48707, + [SMALL_STATE(1339)] = 48772, + [SMALL_STATE(1340)] = 48837, + [SMALL_STATE(1341)] = 48877, + [SMALL_STATE(1342)] = 48917, + [SMALL_STATE(1343)] = 48957, + [SMALL_STATE(1344)] = 49009, + [SMALL_STATE(1345)] = 49061, + [SMALL_STATE(1346)] = 49091, + [SMALL_STATE(1347)] = 49121, + [SMALL_STATE(1348)] = 49161, + [SMALL_STATE(1349)] = 49203, + [SMALL_STATE(1350)] = 49232, + [SMALL_STATE(1351)] = 49261, + [SMALL_STATE(1352)] = 49290, + [SMALL_STATE(1353)] = 49319, + [SMALL_STATE(1354)] = 49348, + [SMALL_STATE(1355)] = 49385, + [SMALL_STATE(1356)] = 49414, + [SMALL_STATE(1357)] = 49443, + [SMALL_STATE(1358)] = 49480, + [SMALL_STATE(1359)] = 49509, + [SMALL_STATE(1360)] = 49541, + [SMALL_STATE(1361)] = 49567, + [SMALL_STATE(1362)] = 49599, + [SMALL_STATE(1363)] = 49625, + [SMALL_STATE(1364)] = 49679, + [SMALL_STATE(1365)] = 49705, + [SMALL_STATE(1366)] = 49759, + [SMALL_STATE(1367)] = 49791, + [SMALL_STATE(1368)] = 49816, + [SMALL_STATE(1369)] = 49839, + [SMALL_STATE(1370)] = 49863, + [SMALL_STATE(1371)] = 49887, + [SMALL_STATE(1372)] = 49931, + [SMALL_STATE(1373)] = 49953, + [SMALL_STATE(1374)] = 49975, + [SMALL_STATE(1375)] = 49997, + [SMALL_STATE(1376)] = 50019, + [SMALL_STATE(1377)] = 50043, + [SMALL_STATE(1378)] = 50067, + [SMALL_STATE(1379)] = 50091, + [SMALL_STATE(1380)] = 50137, + [SMALL_STATE(1381)] = 50161, + [SMALL_STATE(1382)] = 50205, + [SMALL_STATE(1383)] = 50229, + [SMALL_STATE(1384)] = 50259, + [SMALL_STATE(1385)] = 50304, + [SMALL_STATE(1386)] = 50327, + [SMALL_STATE(1387)] = 50348, + [SMALL_STATE(1388)] = 50373, + [SMALL_STATE(1389)] = 50394, + [SMALL_STATE(1390)] = 50419, + [SMALL_STATE(1391)] = 50442, + [SMALL_STATE(1392)] = 50467, + [SMALL_STATE(1393)] = 50490, + [SMALL_STATE(1394)] = 50515, + [SMALL_STATE(1395)] = 50538, + [SMALL_STATE(1396)] = 50561, + [SMALL_STATE(1397)] = 50586, + [SMALL_STATE(1398)] = 50611, + [SMALL_STATE(1399)] = 50632, + [SMALL_STATE(1400)] = 50655, + [SMALL_STATE(1401)] = 50682, + [SMALL_STATE(1402)] = 50705, + [SMALL_STATE(1403)] = 50728, + [SMALL_STATE(1404)] = 50749, + [SMALL_STATE(1405)] = 50770, + [SMALL_STATE(1406)] = 50790, + [SMALL_STATE(1407)] = 50810, + [SMALL_STATE(1408)] = 50830, + [SMALL_STATE(1409)] = 50850, + [SMALL_STATE(1410)] = 50870, + [SMALL_STATE(1411)] = 50890, + [SMALL_STATE(1412)] = 50910, + [SMALL_STATE(1413)] = 50930, + [SMALL_STATE(1414)] = 50950, + [SMALL_STATE(1415)] = 50970, + [SMALL_STATE(1416)] = 50990, + [SMALL_STATE(1417)] = 51010, + [SMALL_STATE(1418)] = 51030, + [SMALL_STATE(1419)] = 51050, + [SMALL_STATE(1420)] = 51070, + [SMALL_STATE(1421)] = 51090, + [SMALL_STATE(1422)] = 51110, + [SMALL_STATE(1423)] = 51130, + [SMALL_STATE(1424)] = 51150, + [SMALL_STATE(1425)] = 51170, + [SMALL_STATE(1426)] = 51190, + [SMALL_STATE(1427)] = 51210, + [SMALL_STATE(1428)] = 51230, + [SMALL_STATE(1429)] = 51252, + [SMALL_STATE(1430)] = 51272, + [SMALL_STATE(1431)] = 51294, + [SMALL_STATE(1432)] = 51314, + [SMALL_STATE(1433)] = 51334, + [SMALL_STATE(1434)] = 51358, + [SMALL_STATE(1435)] = 51378, + [SMALL_STATE(1436)] = 51400, + [SMALL_STATE(1437)] = 51425, + [SMALL_STATE(1438)] = 51450, + [SMALL_STATE(1439)] = 51473, + [SMALL_STATE(1440)] = 51496, + [SMALL_STATE(1441)] = 51521, + [SMALL_STATE(1442)] = 51546, + [SMALL_STATE(1443)] = 51569, + [SMALL_STATE(1444)] = 51592, + [SMALL_STATE(1445)] = 51615, + [SMALL_STATE(1446)] = 51638, + [SMALL_STATE(1447)] = 51661, + [SMALL_STATE(1448)] = 51684, + [SMALL_STATE(1449)] = 51709, + [SMALL_STATE(1450)] = 51732, + [SMALL_STATE(1451)] = 51755, + [SMALL_STATE(1452)] = 51778, + [SMALL_STATE(1453)] = 51803, + [SMALL_STATE(1454)] = 51824, + [SMALL_STATE(1455)] = 51849, + [SMALL_STATE(1456)] = 51870, + [SMALL_STATE(1457)] = 51891, + [SMALL_STATE(1458)] = 51926, + [SMALL_STATE(1459)] = 51949, + [SMALL_STATE(1460)] = 51974, + [SMALL_STATE(1461)] = 51994, + [SMALL_STATE(1462)] = 52014, + [SMALL_STATE(1463)] = 52046, + [SMALL_STATE(1464)] = 52078, + [SMALL_STATE(1465)] = 52098, + [SMALL_STATE(1466)] = 52130, + [SMALL_STATE(1467)] = 52162, + [SMALL_STATE(1468)] = 52182, + [SMALL_STATE(1469)] = 52202, + [SMALL_STATE(1470)] = 52222, + [SMALL_STATE(1471)] = 52248, + [SMALL_STATE(1472)] = 52268, + [SMALL_STATE(1473)] = 52288, + [SMALL_STATE(1474)] = 52308, + [SMALL_STATE(1475)] = 52340, + [SMALL_STATE(1476)] = 52360, + [SMALL_STATE(1477)] = 52380, + [SMALL_STATE(1478)] = 52412, + [SMALL_STATE(1479)] = 52432, + [SMALL_STATE(1480)] = 52456, + [SMALL_STATE(1481)] = 52480, + [SMALL_STATE(1482)] = 52504, + [SMALL_STATE(1483)] = 52524, + [SMALL_STATE(1484)] = 52544, + [SMALL_STATE(1485)] = 52564, + [SMALL_STATE(1486)] = 52588, + [SMALL_STATE(1487)] = 52620, + [SMALL_STATE(1488)] = 52640, + [SMALL_STATE(1489)] = 52672, + [SMALL_STATE(1490)] = 52692, + [SMALL_STATE(1491)] = 52712, + [SMALL_STATE(1492)] = 52732, + [SMALL_STATE(1493)] = 52752, + [SMALL_STATE(1494)] = 52772, + [SMALL_STATE(1495)] = 52792, + [SMALL_STATE(1496)] = 52812, + [SMALL_STATE(1497)] = 52832, + [SMALL_STATE(1498)] = 52852, + [SMALL_STATE(1499)] = 52872, + [SMALL_STATE(1500)] = 52892, + [SMALL_STATE(1501)] = 52912, + [SMALL_STATE(1502)] = 52932, + [SMALL_STATE(1503)] = 52952, + [SMALL_STATE(1504)] = 52978, + [SMALL_STATE(1505)] = 52998, + [SMALL_STATE(1506)] = 53025, + [SMALL_STATE(1507)] = 53058, + [SMALL_STATE(1508)] = 53091, + [SMALL_STATE(1509)] = 53120, + [SMALL_STATE(1510)] = 53145, + [SMALL_STATE(1511)] = 53176, + [SMALL_STATE(1512)] = 53199, + [SMALL_STATE(1513)] = 53222, + [SMALL_STATE(1514)] = 53245, + [SMALL_STATE(1515)] = 53278, + [SMALL_STATE(1516)] = 53311, + [SMALL_STATE(1517)] = 53337, + [SMALL_STATE(1518)] = 53367, + [SMALL_STATE(1519)] = 53389, + [SMALL_STATE(1520)] = 53411, + [SMALL_STATE(1521)] = 53433, + [SMALL_STATE(1522)] = 53455, + [SMALL_STATE(1523)] = 53485, + [SMALL_STATE(1524)] = 53511, + [SMALL_STATE(1525)] = 53541, + [SMALL_STATE(1526)] = 53571, + [SMALL_STATE(1527)] = 53601, + [SMALL_STATE(1528)] = 53631, + [SMALL_STATE(1529)] = 53657, + [SMALL_STATE(1530)] = 53683, + [SMALL_STATE(1531)] = 53705, + [SMALL_STATE(1532)] = 53735, + [SMALL_STATE(1533)] = 53761, + [SMALL_STATE(1534)] = 53791, + [SMALL_STATE(1535)] = 53817, + [SMALL_STATE(1536)] = 53843, + [SMALL_STATE(1537)] = 53869, + [SMALL_STATE(1538)] = 53901, + [SMALL_STATE(1539)] = 53931, + [SMALL_STATE(1540)] = 53961, + [SMALL_STATE(1541)] = 53991, + [SMALL_STATE(1542)] = 54023, + [SMALL_STATE(1543)] = 54053, + [SMALL_STATE(1544)] = 54083, + [SMALL_STATE(1545)] = 54109, + [SMALL_STATE(1546)] = 54139, + [SMALL_STATE(1547)] = 54161, + [SMALL_STATE(1548)] = 54193, + [SMALL_STATE(1549)] = 54223, + [SMALL_STATE(1550)] = 54253, + [SMALL_STATE(1551)] = 54283, + [SMALL_STATE(1552)] = 54309, + [SMALL_STATE(1553)] = 54339, + [SMALL_STATE(1554)] = 54369, + [SMALL_STATE(1555)] = 54399, + [SMALL_STATE(1556)] = 54425, + [SMALL_STATE(1557)] = 54455, + [SMALL_STATE(1558)] = 54487, + [SMALL_STATE(1559)] = 54502, + [SMALL_STATE(1560)] = 54529, + [SMALL_STATE(1561)] = 54556, + [SMALL_STATE(1562)] = 54585, + [SMALL_STATE(1563)] = 54604, + [SMALL_STATE(1564)] = 54631, + [SMALL_STATE(1565)] = 54658, + [SMALL_STATE(1566)] = 54681, + [SMALL_STATE(1567)] = 54700, + [SMALL_STATE(1568)] = 54723, + [SMALL_STATE(1569)] = 54752, + [SMALL_STATE(1570)] = 54771, + [SMALL_STATE(1571)] = 54800, + [SMALL_STATE(1572)] = 54829, + [SMALL_STATE(1573)] = 54852, + [SMALL_STATE(1574)] = 54871, + [SMALL_STATE(1575)] = 54898, + [SMALL_STATE(1576)] = 54925, + [SMALL_STATE(1577)] = 54944, + [SMALL_STATE(1578)] = 54967, + [SMALL_STATE(1579)] = 54986, + [SMALL_STATE(1580)] = 55009, + [SMALL_STATE(1581)] = 55036, + [SMALL_STATE(1582)] = 55063, + [SMALL_STATE(1583)] = 55082, + [SMALL_STATE(1584)] = 55101, + [SMALL_STATE(1585)] = 55128, + [SMALL_STATE(1586)] = 55147, + [SMALL_STATE(1587)] = 55174, + [SMALL_STATE(1588)] = 55201, + [SMALL_STATE(1589)] = 55228, + [SMALL_STATE(1590)] = 55255, + [SMALL_STATE(1591)] = 55284, + [SMALL_STATE(1592)] = 55305, + [SMALL_STATE(1593)] = 55324, + [SMALL_STATE(1594)] = 55349, + [SMALL_STATE(1595)] = 55370, + [SMALL_STATE(1596)] = 55397, + [SMALL_STATE(1597)] = 55426, + [SMALL_STATE(1598)] = 55453, + [SMALL_STATE(1599)] = 55472, + [SMALL_STATE(1600)] = 55486, + [SMALL_STATE(1601)] = 55512, + [SMALL_STATE(1602)] = 55534, + [SMALL_STATE(1603)] = 55560, + [SMALL_STATE(1604)] = 55586, + [SMALL_STATE(1605)] = 55612, + [SMALL_STATE(1606)] = 55638, + [SMALL_STATE(1607)] = 55654, + [SMALL_STATE(1608)] = 55680, + [SMALL_STATE(1609)] = 55706, + [SMALL_STATE(1610)] = 55722, + [SMALL_STATE(1611)] = 55738, + [SMALL_STATE(1612)] = 55764, + [SMALL_STATE(1613)] = 55790, + [SMALL_STATE(1614)] = 55806, + [SMALL_STATE(1615)] = 55822, + [SMALL_STATE(1616)] = 55848, + [SMALL_STATE(1617)] = 55862, + [SMALL_STATE(1618)] = 55888, + [SMALL_STATE(1619)] = 55914, + [SMALL_STATE(1620)] = 55928, + [SMALL_STATE(1621)] = 55944, + [SMALL_STATE(1622)] = 55970, + [SMALL_STATE(1623)] = 55994, + [SMALL_STATE(1624)] = 56020, + [SMALL_STATE(1625)] = 56036, + [SMALL_STATE(1626)] = 56050, + [SMALL_STATE(1627)] = 56076, + [SMALL_STATE(1628)] = 56102, + [SMALL_STATE(1629)] = 56116, + [SMALL_STATE(1630)] = 56142, + [SMALL_STATE(1631)] = 56168, + [SMALL_STATE(1632)] = 56182, + [SMALL_STATE(1633)] = 56204, + [SMALL_STATE(1634)] = 56228, + [SMALL_STATE(1635)] = 56242, + [SMALL_STATE(1636)] = 56266, + [SMALL_STATE(1637)] = 56292, + [SMALL_STATE(1638)] = 56308, + [SMALL_STATE(1639)] = 56334, + [SMALL_STATE(1640)] = 56360, + [SMALL_STATE(1641)] = 56386, + [SMALL_STATE(1642)] = 56412, + [SMALL_STATE(1643)] = 56436, + [SMALL_STATE(1644)] = 56460, + [SMALL_STATE(1645)] = 56486, + [SMALL_STATE(1646)] = 56507, + [SMALL_STATE(1647)] = 56524, + [SMALL_STATE(1648)] = 56541, + [SMALL_STATE(1649)] = 56564, + [SMALL_STATE(1650)] = 56587, + [SMALL_STATE(1651)] = 56610, + [SMALL_STATE(1652)] = 56633, + [SMALL_STATE(1653)] = 56656, + [SMALL_STATE(1654)] = 56679, + [SMALL_STATE(1655)] = 56702, + [SMALL_STATE(1656)] = 56725, + [SMALL_STATE(1657)] = 56742, + [SMALL_STATE(1658)] = 56759, + [SMALL_STATE(1659)] = 56782, + [SMALL_STATE(1660)] = 56805, + [SMALL_STATE(1661)] = 56828, + [SMALL_STATE(1662)] = 56845, + [SMALL_STATE(1663)] = 56862, + [SMALL_STATE(1664)] = 56879, + [SMALL_STATE(1665)] = 56902, + [SMALL_STATE(1666)] = 56919, + [SMALL_STATE(1667)] = 56942, + [SMALL_STATE(1668)] = 56963, + [SMALL_STATE(1669)] = 56986, + [SMALL_STATE(1670)] = 57009, + [SMALL_STATE(1671)] = 57032, + [SMALL_STATE(1672)] = 57047, + [SMALL_STATE(1673)] = 57070, + [SMALL_STATE(1674)] = 57093, + [SMALL_STATE(1675)] = 57116, + [SMALL_STATE(1676)] = 57139, + [SMALL_STATE(1677)] = 57156, + [SMALL_STATE(1678)] = 57179, + [SMALL_STATE(1679)] = 57202, + [SMALL_STATE(1680)] = 57225, + [SMALL_STATE(1681)] = 57244, + [SMALL_STATE(1682)] = 57263, + [SMALL_STATE(1683)] = 57286, + [SMALL_STATE(1684)] = 57309, + [SMALL_STATE(1685)] = 57332, + [SMALL_STATE(1686)] = 57355, + [SMALL_STATE(1687)] = 57378, + [SMALL_STATE(1688)] = 57401, + [SMALL_STATE(1689)] = 57418, + [SMALL_STATE(1690)] = 57441, + [SMALL_STATE(1691)] = 57464, + [SMALL_STATE(1692)] = 57487, + [SMALL_STATE(1693)] = 57508, + [SMALL_STATE(1694)] = 57531, + [SMALL_STATE(1695)] = 57554, + [SMALL_STATE(1696)] = 57575, + [SMALL_STATE(1697)] = 57596, + [SMALL_STATE(1698)] = 57613, + [SMALL_STATE(1699)] = 57636, + [SMALL_STATE(1700)] = 57659, + [SMALL_STATE(1701)] = 57682, + [SMALL_STATE(1702)] = 57705, + [SMALL_STATE(1703)] = 57728, + [SMALL_STATE(1704)] = 57751, + [SMALL_STATE(1705)] = 57772, + [SMALL_STATE(1706)] = 57795, + [SMALL_STATE(1707)] = 57818, + [SMALL_STATE(1708)] = 57841, + [SMALL_STATE(1709)] = 57864, + [SMALL_STATE(1710)] = 57887, + [SMALL_STATE(1711)] = 57910, + [SMALL_STATE(1712)] = 57933, + [SMALL_STATE(1713)] = 57956, + [SMALL_STATE(1714)] = 57979, + [SMALL_STATE(1715)] = 58002, + [SMALL_STATE(1716)] = 58025, + [SMALL_STATE(1717)] = 58042, + [SMALL_STATE(1718)] = 58065, + [SMALL_STATE(1719)] = 58088, + [SMALL_STATE(1720)] = 58111, + [SMALL_STATE(1721)] = 58134, + [SMALL_STATE(1722)] = 58157, + [SMALL_STATE(1723)] = 58180, + [SMALL_STATE(1724)] = 58203, + [SMALL_STATE(1725)] = 58226, + [SMALL_STATE(1726)] = 58249, + [SMALL_STATE(1727)] = 58272, + [SMALL_STATE(1728)] = 58289, + [SMALL_STATE(1729)] = 58312, + [SMALL_STATE(1730)] = 58327, + [SMALL_STATE(1731)] = 58350, + [SMALL_STATE(1732)] = 58373, + [SMALL_STATE(1733)] = 58396, + [SMALL_STATE(1734)] = 58419, + [SMALL_STATE(1735)] = 58442, + [SMALL_STATE(1736)] = 58459, + [SMALL_STATE(1737)] = 58482, + [SMALL_STATE(1738)] = 58505, + [SMALL_STATE(1739)] = 58528, + [SMALL_STATE(1740)] = 58545, + [SMALL_STATE(1741)] = 58564, + [SMALL_STATE(1742)] = 58576, + [SMALL_STATE(1743)] = 58592, + [SMALL_STATE(1744)] = 58610, + [SMALL_STATE(1745)] = 58622, + [SMALL_STATE(1746)] = 58634, + [SMALL_STATE(1747)] = 58652, + [SMALL_STATE(1748)] = 58664, + [SMALL_STATE(1749)] = 58684, + [SMALL_STATE(1750)] = 58700, + [SMALL_STATE(1751)] = 58716, + [SMALL_STATE(1752)] = 58736, + [SMALL_STATE(1753)] = 58748, + [SMALL_STATE(1754)] = 58764, + [SMALL_STATE(1755)] = 58780, + [SMALL_STATE(1756)] = 58800, + [SMALL_STATE(1757)] = 58816, + [SMALL_STATE(1758)] = 58832, + [SMALL_STATE(1759)] = 58844, + [SMALL_STATE(1760)] = 58862, + [SMALL_STATE(1761)] = 58880, + [SMALL_STATE(1762)] = 58900, + [SMALL_STATE(1763)] = 58914, + [SMALL_STATE(1764)] = 58930, + [SMALL_STATE(1765)] = 58948, + [SMALL_STATE(1766)] = 58966, + [SMALL_STATE(1767)] = 58978, + [SMALL_STATE(1768)] = 58990, + [SMALL_STATE(1769)] = 59002, + [SMALL_STATE(1770)] = 59018, + [SMALL_STATE(1771)] = 59030, + [SMALL_STATE(1772)] = 59042, + [SMALL_STATE(1773)] = 59058, + [SMALL_STATE(1774)] = 59074, + [SMALL_STATE(1775)] = 59092, + [SMALL_STATE(1776)] = 59112, + [SMALL_STATE(1777)] = 59124, + [SMALL_STATE(1778)] = 59136, + [SMALL_STATE(1779)] = 59148, + [SMALL_STATE(1780)] = 59160, + [SMALL_STATE(1781)] = 59172, + [SMALL_STATE(1782)] = 59188, + [SMALL_STATE(1783)] = 59204, + [SMALL_STATE(1784)] = 59216, + [SMALL_STATE(1785)] = 59228, + [SMALL_STATE(1786)] = 59240, + [SMALL_STATE(1787)] = 59254, + [SMALL_STATE(1788)] = 59272, + [SMALL_STATE(1789)] = 59292, + [SMALL_STATE(1790)] = 59304, + [SMALL_STATE(1791)] = 59316, + [SMALL_STATE(1792)] = 59333, + [SMALL_STATE(1793)] = 59348, + [SMALL_STATE(1794)] = 59363, + [SMALL_STATE(1795)] = 59376, + [SMALL_STATE(1796)] = 59389, + [SMALL_STATE(1797)] = 59404, + [SMALL_STATE(1798)] = 59421, + [SMALL_STATE(1799)] = 59438, + [SMALL_STATE(1800)] = 59455, + [SMALL_STATE(1801)] = 59472, + [SMALL_STATE(1802)] = 59489, + [SMALL_STATE(1803)] = 59506, + [SMALL_STATE(1804)] = 59523, + [SMALL_STATE(1805)] = 59540, + [SMALL_STATE(1806)] = 59557, + [SMALL_STATE(1807)] = 59574, + [SMALL_STATE(1808)] = 59589, + [SMALL_STATE(1809)] = 59606, + [SMALL_STATE(1810)] = 59623, + [SMALL_STATE(1811)] = 59640, + [SMALL_STATE(1812)] = 59657, + [SMALL_STATE(1813)] = 59674, + [SMALL_STATE(1814)] = 59691, + [SMALL_STATE(1815)] = 59708, + [SMALL_STATE(1816)] = 59725, + [SMALL_STATE(1817)] = 59738, + [SMALL_STATE(1818)] = 59755, + [SMALL_STATE(1819)] = 59770, + [SMALL_STATE(1820)] = 59787, + [SMALL_STATE(1821)] = 59804, + [SMALL_STATE(1822)] = 59821, + [SMALL_STATE(1823)] = 59838, + [SMALL_STATE(1824)] = 59855, + [SMALL_STATE(1825)] = 59872, + [SMALL_STATE(1826)] = 59889, + [SMALL_STATE(1827)] = 59904, + [SMALL_STATE(1828)] = 59919, + [SMALL_STATE(1829)] = 59936, + [SMALL_STATE(1830)] = 59953, + [SMALL_STATE(1831)] = 59970, + [SMALL_STATE(1832)] = 59987, + [SMALL_STATE(1833)] = 60004, + [SMALL_STATE(1834)] = 60019, + [SMALL_STATE(1835)] = 60036, + [SMALL_STATE(1836)] = 60053, + [SMALL_STATE(1837)] = 60070, + [SMALL_STATE(1838)] = 60085, + [SMALL_STATE(1839)] = 60102, + [SMALL_STATE(1840)] = 60117, + [SMALL_STATE(1841)] = 60132, + [SMALL_STATE(1842)] = 60149, + [SMALL_STATE(1843)] = 60166, + [SMALL_STATE(1844)] = 60183, + [SMALL_STATE(1845)] = 60198, + [SMALL_STATE(1846)] = 60215, + [SMALL_STATE(1847)] = 60230, + [SMALL_STATE(1848)] = 60243, + [SMALL_STATE(1849)] = 60260, + [SMALL_STATE(1850)] = 60277, + [SMALL_STATE(1851)] = 60294, + [SMALL_STATE(1852)] = 60311, + [SMALL_STATE(1853)] = 60326, + [SMALL_STATE(1854)] = 60343, + [SMALL_STATE(1855)] = 60360, + [SMALL_STATE(1856)] = 60377, + [SMALL_STATE(1857)] = 60392, + [SMALL_STATE(1858)] = 60409, + [SMALL_STATE(1859)] = 60424, + [SMALL_STATE(1860)] = 60439, + [SMALL_STATE(1861)] = 60454, + [SMALL_STATE(1862)] = 60471, + [SMALL_STATE(1863)] = 60488, + [SMALL_STATE(1864)] = 60503, + [SMALL_STATE(1865)] = 60520, + [SMALL_STATE(1866)] = 60535, + [SMALL_STATE(1867)] = 60550, + [SMALL_STATE(1868)] = 60567, + [SMALL_STATE(1869)] = 60584, + [SMALL_STATE(1870)] = 60601, + [SMALL_STATE(1871)] = 60616, + [SMALL_STATE(1872)] = 60633, + [SMALL_STATE(1873)] = 60648, + [SMALL_STATE(1874)] = 60663, + [SMALL_STATE(1875)] = 60676, + [SMALL_STATE(1876)] = 60693, + [SMALL_STATE(1877)] = 60708, + [SMALL_STATE(1878)] = 60725, + [SMALL_STATE(1879)] = 60738, + [SMALL_STATE(1880)] = 60753, + [SMALL_STATE(1881)] = 60770, + [SMALL_STATE(1882)] = 60787, + [SMALL_STATE(1883)] = 60804, + [SMALL_STATE(1884)] = 60821, + [SMALL_STATE(1885)] = 60838, + [SMALL_STATE(1886)] = 60855, + [SMALL_STATE(1887)] = 60868, + [SMALL_STATE(1888)] = 60881, + [SMALL_STATE(1889)] = 60898, + [SMALL_STATE(1890)] = 60913, + [SMALL_STATE(1891)] = 60930, + [SMALL_STATE(1892)] = 60943, + [SMALL_STATE(1893)] = 60960, + [SMALL_STATE(1894)] = 60973, + [SMALL_STATE(1895)] = 60988, + [SMALL_STATE(1896)] = 61000, + [SMALL_STATE(1897)] = 61010, + [SMALL_STATE(1898)] = 61024, + [SMALL_STATE(1899)] = 61038, + [SMALL_STATE(1900)] = 61052, + [SMALL_STATE(1901)] = 61066, + [SMALL_STATE(1902)] = 61080, + [SMALL_STATE(1903)] = 61090, + [SMALL_STATE(1904)] = 61100, + [SMALL_STATE(1905)] = 61114, + [SMALL_STATE(1906)] = 61128, + [SMALL_STATE(1907)] = 61142, + [SMALL_STATE(1908)] = 61156, + [SMALL_STATE(1909)] = 61170, + [SMALL_STATE(1910)] = 61182, + [SMALL_STATE(1911)] = 61192, + [SMALL_STATE(1912)] = 61206, + [SMALL_STATE(1913)] = 61216, + [SMALL_STATE(1914)] = 61230, + [SMALL_STATE(1915)] = 61244, + [SMALL_STATE(1916)] = 61258, + [SMALL_STATE(1917)] = 61272, + [SMALL_STATE(1918)] = 61286, + [SMALL_STATE(1919)] = 61300, + [SMALL_STATE(1920)] = 61314, + [SMALL_STATE(1921)] = 61328, + [SMALL_STATE(1922)] = 61338, + [SMALL_STATE(1923)] = 61352, + [SMALL_STATE(1924)] = 61366, + [SMALL_STATE(1925)] = 61378, + [SMALL_STATE(1926)] = 61390, + [SMALL_STATE(1927)] = 61402, + [SMALL_STATE(1928)] = 61416, + [SMALL_STATE(1929)] = 61430, + [SMALL_STATE(1930)] = 61444, + [SMALL_STATE(1931)] = 61456, + [SMALL_STATE(1932)] = 61470, + [SMALL_STATE(1933)] = 61484, + [SMALL_STATE(1934)] = 61498, + [SMALL_STATE(1935)] = 61512, + [SMALL_STATE(1936)] = 61526, + [SMALL_STATE(1937)] = 61538, + [SMALL_STATE(1938)] = 61550, + [SMALL_STATE(1939)] = 61564, + [SMALL_STATE(1940)] = 61578, + [SMALL_STATE(1941)] = 61592, + [SMALL_STATE(1942)] = 61606, + [SMALL_STATE(1943)] = 61620, + [SMALL_STATE(1944)] = 61632, + [SMALL_STATE(1945)] = 61646, + [SMALL_STATE(1946)] = 61660, + [SMALL_STATE(1947)] = 61674, + [SMALL_STATE(1948)] = 61684, + [SMALL_STATE(1949)] = 61698, + [SMALL_STATE(1950)] = 61710, + [SMALL_STATE(1951)] = 61722, + [SMALL_STATE(1952)] = 61736, + [SMALL_STATE(1953)] = 61750, + [SMALL_STATE(1954)] = 61760, + [SMALL_STATE(1955)] = 61770, + [SMALL_STATE(1956)] = 61784, + [SMALL_STATE(1957)] = 61794, + [SMALL_STATE(1958)] = 61804, + [SMALL_STATE(1959)] = 61818, + [SMALL_STATE(1960)] = 61830, + [SMALL_STATE(1961)] = 61844, + [SMALL_STATE(1962)] = 61858, + [SMALL_STATE(1963)] = 61872, + [SMALL_STATE(1964)] = 61886, + [SMALL_STATE(1965)] = 61900, + [SMALL_STATE(1966)] = 61914, + [SMALL_STATE(1967)] = 61928, + [SMALL_STATE(1968)] = 61942, + [SMALL_STATE(1969)] = 61956, + [SMALL_STATE(1970)] = 61970, + [SMALL_STATE(1971)] = 61982, + [SMALL_STATE(1972)] = 61992, + [SMALL_STATE(1973)] = 62006, + [SMALL_STATE(1974)] = 62016, + [SMALL_STATE(1975)] = 62026, + [SMALL_STATE(1976)] = 62040, + [SMALL_STATE(1977)] = 62050, + [SMALL_STATE(1978)] = 62064, + [SMALL_STATE(1979)] = 62078, + [SMALL_STATE(1980)] = 62092, + [SMALL_STATE(1981)] = 62102, + [SMALL_STATE(1982)] = 62116, + [SMALL_STATE(1983)] = 62130, + [SMALL_STATE(1984)] = 62144, + [SMALL_STATE(1985)] = 62158, + [SMALL_STATE(1986)] = 62172, + [SMALL_STATE(1987)] = 62186, + [SMALL_STATE(1988)] = 62200, + [SMALL_STATE(1989)] = 62212, + [SMALL_STATE(1990)] = 62224, + [SMALL_STATE(1991)] = 62238, + [SMALL_STATE(1992)] = 62250, + [SMALL_STATE(1993)] = 62264, + [SMALL_STATE(1994)] = 62274, + [SMALL_STATE(1995)] = 62288, + [SMALL_STATE(1996)] = 62302, + [SMALL_STATE(1997)] = 62316, + [SMALL_STATE(1998)] = 62330, + [SMALL_STATE(1999)] = 62342, + [SMALL_STATE(2000)] = 62354, + [SMALL_STATE(2001)] = 62368, + [SMALL_STATE(2002)] = 62382, + [SMALL_STATE(2003)] = 62396, + [SMALL_STATE(2004)] = 62410, + [SMALL_STATE(2005)] = 62424, + [SMALL_STATE(2006)] = 62438, + [SMALL_STATE(2007)] = 62452, + [SMALL_STATE(2008)] = 62466, + [SMALL_STATE(2009)] = 62478, + [SMALL_STATE(2010)] = 62490, + [SMALL_STATE(2011)] = 62504, + [SMALL_STATE(2012)] = 62514, + [SMALL_STATE(2013)] = 62528, + [SMALL_STATE(2014)] = 62540, + [SMALL_STATE(2015)] = 62554, + [SMALL_STATE(2016)] = 62568, + [SMALL_STATE(2017)] = 62578, + [SMALL_STATE(2018)] = 62592, + [SMALL_STATE(2019)] = 62604, + [SMALL_STATE(2020)] = 62618, + [SMALL_STATE(2021)] = 62630, + [SMALL_STATE(2022)] = 62644, + [SMALL_STATE(2023)] = 62658, + [SMALL_STATE(2024)] = 62672, + [SMALL_STATE(2025)] = 62686, + [SMALL_STATE(2026)] = 62698, + [SMALL_STATE(2027)] = 62710, + [SMALL_STATE(2028)] = 62724, + [SMALL_STATE(2029)] = 62738, + [SMALL_STATE(2030)] = 62748, + [SMALL_STATE(2031)] = 62762, + [SMALL_STATE(2032)] = 62776, + [SMALL_STATE(2033)] = 62790, + [SMALL_STATE(2034)] = 62802, + [SMALL_STATE(2035)] = 62816, + [SMALL_STATE(2036)] = 62830, + [SMALL_STATE(2037)] = 62844, + [SMALL_STATE(2038)] = 62858, + [SMALL_STATE(2039)] = 62872, + [SMALL_STATE(2040)] = 62884, + [SMALL_STATE(2041)] = 62898, + [SMALL_STATE(2042)] = 62912, + [SMALL_STATE(2043)] = 62926, + [SMALL_STATE(2044)] = 62938, + [SMALL_STATE(2045)] = 62952, + [SMALL_STATE(2046)] = 62966, + [SMALL_STATE(2047)] = 62980, + [SMALL_STATE(2048)] = 62994, + [SMALL_STATE(2049)] = 63008, + [SMALL_STATE(2050)] = 63020, + [SMALL_STATE(2051)] = 63032, + [SMALL_STATE(2052)] = 63044, + [SMALL_STATE(2053)] = 63056, + [SMALL_STATE(2054)] = 63070, + [SMALL_STATE(2055)] = 63084, + [SMALL_STATE(2056)] = 63098, + [SMALL_STATE(2057)] = 63112, + [SMALL_STATE(2058)] = 63126, + [SMALL_STATE(2059)] = 63140, + [SMALL_STATE(2060)] = 63154, + [SMALL_STATE(2061)] = 63168, + [SMALL_STATE(2062)] = 63180, + [SMALL_STATE(2063)] = 63194, + [SMALL_STATE(2064)] = 63208, + [SMALL_STATE(2065)] = 63222, + [SMALL_STATE(2066)] = 63232, + [SMALL_STATE(2067)] = 63246, + [SMALL_STATE(2068)] = 63256, + [SMALL_STATE(2069)] = 63270, + [SMALL_STATE(2070)] = 63284, + [SMALL_STATE(2071)] = 63298, + [SMALL_STATE(2072)] = 63312, + [SMALL_STATE(2073)] = 63326, + [SMALL_STATE(2074)] = 63340, + [SMALL_STATE(2075)] = 63354, + [SMALL_STATE(2076)] = 63368, + [SMALL_STATE(2077)] = 63380, + [SMALL_STATE(2078)] = 63394, + [SMALL_STATE(2079)] = 63408, + [SMALL_STATE(2080)] = 63422, + [SMALL_STATE(2081)] = 63436, + [SMALL_STATE(2082)] = 63450, + [SMALL_STATE(2083)] = 63464, + [SMALL_STATE(2084)] = 63478, + [SMALL_STATE(2085)] = 63492, + [SMALL_STATE(2086)] = 63506, + [SMALL_STATE(2087)] = 63520, + [SMALL_STATE(2088)] = 63534, + [SMALL_STATE(2089)] = 63548, + [SMALL_STATE(2090)] = 63562, + [SMALL_STATE(2091)] = 63574, + [SMALL_STATE(2092)] = 63588, + [SMALL_STATE(2093)] = 63602, + [SMALL_STATE(2094)] = 63616, + [SMALL_STATE(2095)] = 63630, + [SMALL_STATE(2096)] = 63644, + [SMALL_STATE(2097)] = 63658, + [SMALL_STATE(2098)] = 63672, + [SMALL_STATE(2099)] = 63686, + [SMALL_STATE(2100)] = 63700, + [SMALL_STATE(2101)] = 63714, + [SMALL_STATE(2102)] = 63728, + [SMALL_STATE(2103)] = 63742, + [SMALL_STATE(2104)] = 63756, + [SMALL_STATE(2105)] = 63770, + [SMALL_STATE(2106)] = 63784, + [SMALL_STATE(2107)] = 63798, + [SMALL_STATE(2108)] = 63812, + [SMALL_STATE(2109)] = 63826, + [SMALL_STATE(2110)] = 63840, + [SMALL_STATE(2111)] = 63854, + [SMALL_STATE(2112)] = 63864, + [SMALL_STATE(2113)] = 63878, + [SMALL_STATE(2114)] = 63892, + [SMALL_STATE(2115)] = 63904, + [SMALL_STATE(2116)] = 63918, + [SMALL_STATE(2117)] = 63932, + [SMALL_STATE(2118)] = 63946, + [SMALL_STATE(2119)] = 63960, + [SMALL_STATE(2120)] = 63974, + [SMALL_STATE(2121)] = 63988, + [SMALL_STATE(2122)] = 64002, + [SMALL_STATE(2123)] = 64016, + [SMALL_STATE(2124)] = 64030, + [SMALL_STATE(2125)] = 64044, + [SMALL_STATE(2126)] = 64058, + [SMALL_STATE(2127)] = 64068, + [SMALL_STATE(2128)] = 64082, + [SMALL_STATE(2129)] = 64096, + [SMALL_STATE(2130)] = 64110, + [SMALL_STATE(2131)] = 64124, + [SMALL_STATE(2132)] = 64138, + [SMALL_STATE(2133)] = 64152, + [SMALL_STATE(2134)] = 64166, + [SMALL_STATE(2135)] = 64176, + [SMALL_STATE(2136)] = 64190, + [SMALL_STATE(2137)] = 64204, + [SMALL_STATE(2138)] = 64218, + [SMALL_STATE(2139)] = 64228, + [SMALL_STATE(2140)] = 64242, + [SMALL_STATE(2141)] = 64256, + [SMALL_STATE(2142)] = 64270, + [SMALL_STATE(2143)] = 64284, + [SMALL_STATE(2144)] = 64294, + [SMALL_STATE(2145)] = 64304, + [SMALL_STATE(2146)] = 64318, + [SMALL_STATE(2147)] = 64332, + [SMALL_STATE(2148)] = 64346, + [SMALL_STATE(2149)] = 64360, + [SMALL_STATE(2150)] = 64374, + [SMALL_STATE(2151)] = 64388, + [SMALL_STATE(2152)] = 64402, + [SMALL_STATE(2153)] = 64416, + [SMALL_STATE(2154)] = 64430, + [SMALL_STATE(2155)] = 64444, + [SMALL_STATE(2156)] = 64458, + [SMALL_STATE(2157)] = 64472, + [SMALL_STATE(2158)] = 64482, + [SMALL_STATE(2159)] = 64496, + [SMALL_STATE(2160)] = 64507, + [SMALL_STATE(2161)] = 64518, + [SMALL_STATE(2162)] = 64529, + [SMALL_STATE(2163)] = 64540, + [SMALL_STATE(2164)] = 64551, + [SMALL_STATE(2165)] = 64562, + [SMALL_STATE(2166)] = 64571, + [SMALL_STATE(2167)] = 64582, + [SMALL_STATE(2168)] = 64593, + [SMALL_STATE(2169)] = 64604, + [SMALL_STATE(2170)] = 64615, + [SMALL_STATE(2171)] = 64626, + [SMALL_STATE(2172)] = 64637, + [SMALL_STATE(2173)] = 64648, + [SMALL_STATE(2174)] = 64659, + [SMALL_STATE(2175)] = 64670, + [SMALL_STATE(2176)] = 64681, + [SMALL_STATE(2177)] = 64692, + [SMALL_STATE(2178)] = 64703, + [SMALL_STATE(2179)] = 64714, + [SMALL_STATE(2180)] = 64725, + [SMALL_STATE(2181)] = 64736, + [SMALL_STATE(2182)] = 64747, + [SMALL_STATE(2183)] = 64758, + [SMALL_STATE(2184)] = 64769, + [SMALL_STATE(2185)] = 64780, + [SMALL_STATE(2186)] = 64791, + [SMALL_STATE(2187)] = 64802, + [SMALL_STATE(2188)] = 64813, + [SMALL_STATE(2189)] = 64824, + [SMALL_STATE(2190)] = 64835, + [SMALL_STATE(2191)] = 64846, + [SMALL_STATE(2192)] = 64857, + [SMALL_STATE(2193)] = 64868, + [SMALL_STATE(2194)] = 64879, + [SMALL_STATE(2195)] = 64888, + [SMALL_STATE(2196)] = 64899, + [SMALL_STATE(2197)] = 64910, + [SMALL_STATE(2198)] = 64921, + [SMALL_STATE(2199)] = 64930, + [SMALL_STATE(2200)] = 64941, + [SMALL_STATE(2201)] = 64952, + [SMALL_STATE(2202)] = 64963, + [SMALL_STATE(2203)] = 64974, + [SMALL_STATE(2204)] = 64985, + [SMALL_STATE(2205)] = 64996, + [SMALL_STATE(2206)] = 65007, + [SMALL_STATE(2207)] = 65018, + [SMALL_STATE(2208)] = 65029, + [SMALL_STATE(2209)] = 65040, + [SMALL_STATE(2210)] = 65051, + [SMALL_STATE(2211)] = 65062, + [SMALL_STATE(2212)] = 65071, + [SMALL_STATE(2213)] = 65082, + [SMALL_STATE(2214)] = 65091, + [SMALL_STATE(2215)] = 65102, + [SMALL_STATE(2216)] = 65113, + [SMALL_STATE(2217)] = 65124, + [SMALL_STATE(2218)] = 65135, + [SMALL_STATE(2219)] = 65146, + [SMALL_STATE(2220)] = 65157, + [SMALL_STATE(2221)] = 65168, + [SMALL_STATE(2222)] = 65177, + [SMALL_STATE(2223)] = 65188, + [SMALL_STATE(2224)] = 65199, + [SMALL_STATE(2225)] = 65210, + [SMALL_STATE(2226)] = 65221, + [SMALL_STATE(2227)] = 65232, + [SMALL_STATE(2228)] = 65243, + [SMALL_STATE(2229)] = 65254, + [SMALL_STATE(2230)] = 65263, + [SMALL_STATE(2231)] = 65274, + [SMALL_STATE(2232)] = 65285, + [SMALL_STATE(2233)] = 65294, + [SMALL_STATE(2234)] = 65305, + [SMALL_STATE(2235)] = 65316, + [SMALL_STATE(2236)] = 65327, + [SMALL_STATE(2237)] = 65338, + [SMALL_STATE(2238)] = 65349, + [SMALL_STATE(2239)] = 65360, + [SMALL_STATE(2240)] = 65371, + [SMALL_STATE(2241)] = 65382, + [SMALL_STATE(2242)] = 65393, + [SMALL_STATE(2243)] = 65404, + [SMALL_STATE(2244)] = 65413, + [SMALL_STATE(2245)] = 65424, + [SMALL_STATE(2246)] = 65435, + [SMALL_STATE(2247)] = 65446, + [SMALL_STATE(2248)] = 65457, + [SMALL_STATE(2249)] = 65468, + [SMALL_STATE(2250)] = 65479, + [SMALL_STATE(2251)] = 65490, + [SMALL_STATE(2252)] = 65501, + [SMALL_STATE(2253)] = 65512, + [SMALL_STATE(2254)] = 65523, + [SMALL_STATE(2255)] = 65534, + [SMALL_STATE(2256)] = 65545, + [SMALL_STATE(2257)] = 65556, + [SMALL_STATE(2258)] = 65567, + [SMALL_STATE(2259)] = 65576, + [SMALL_STATE(2260)] = 65587, + [SMALL_STATE(2261)] = 65598, + [SMALL_STATE(2262)] = 65609, + [SMALL_STATE(2263)] = 65620, + [SMALL_STATE(2264)] = 65631, + [SMALL_STATE(2265)] = 65642, + [SMALL_STATE(2266)] = 65651, + [SMALL_STATE(2267)] = 65662, + [SMALL_STATE(2268)] = 65671, + [SMALL_STATE(2269)] = 65682, + [SMALL_STATE(2270)] = 65693, + [SMALL_STATE(2271)] = 65702, + [SMALL_STATE(2272)] = 65713, + [SMALL_STATE(2273)] = 65724, + [SMALL_STATE(2274)] = 65735, + [SMALL_STATE(2275)] = 65746, + [SMALL_STATE(2276)] = 65757, + [SMALL_STATE(2277)] = 65766, + [SMALL_STATE(2278)] = 65775, + [SMALL_STATE(2279)] = 65786, + [SMALL_STATE(2280)] = 65797, + [SMALL_STATE(2281)] = 65808, + [SMALL_STATE(2282)] = 65819, + [SMALL_STATE(2283)] = 65830, + [SMALL_STATE(2284)] = 65841, + [SMALL_STATE(2285)] = 65852, + [SMALL_STATE(2286)] = 65861, + [SMALL_STATE(2287)] = 65872, + [SMALL_STATE(2288)] = 65883, + [SMALL_STATE(2289)] = 65894, + [SMALL_STATE(2290)] = 65905, + [SMALL_STATE(2291)] = 65916, + [SMALL_STATE(2292)] = 65927, + [SMALL_STATE(2293)] = 65936, + [SMALL_STATE(2294)] = 65947, + [SMALL_STATE(2295)] = 65958, + [SMALL_STATE(2296)] = 65969, + [SMALL_STATE(2297)] = 65980, + [SMALL_STATE(2298)] = 65991, + [SMALL_STATE(2299)] = 66002, + [SMALL_STATE(2300)] = 66011, + [SMALL_STATE(2301)] = 66022, + [SMALL_STATE(2302)] = 66033, + [SMALL_STATE(2303)] = 66044, + [SMALL_STATE(2304)] = 66053, + [SMALL_STATE(2305)] = 66064, + [SMALL_STATE(2306)] = 66075, + [SMALL_STATE(2307)] = 66086, + [SMALL_STATE(2308)] = 66095, + [SMALL_STATE(2309)] = 66104, + [SMALL_STATE(2310)] = 66115, + [SMALL_STATE(2311)] = 66126, + [SMALL_STATE(2312)] = 66135, + [SMALL_STATE(2313)] = 66146, + [SMALL_STATE(2314)] = 66157, + [SMALL_STATE(2315)] = 66168, + [SMALL_STATE(2316)] = 66177, + [SMALL_STATE(2317)] = 66188, + [SMALL_STATE(2318)] = 66197, + [SMALL_STATE(2319)] = 66208, + [SMALL_STATE(2320)] = 66219, + [SMALL_STATE(2321)] = 66230, + [SMALL_STATE(2322)] = 66241, + [SMALL_STATE(2323)] = 66250, + [SMALL_STATE(2324)] = 66261, + [SMALL_STATE(2325)] = 66270, + [SMALL_STATE(2326)] = 66281, + [SMALL_STATE(2327)] = 66290, + [SMALL_STATE(2328)] = 66301, + [SMALL_STATE(2329)] = 66312, + [SMALL_STATE(2330)] = 66323, + [SMALL_STATE(2331)] = 66334, + [SMALL_STATE(2332)] = 66345, + [SMALL_STATE(2333)] = 66356, + [SMALL_STATE(2334)] = 66365, + [SMALL_STATE(2335)] = 66376, + [SMALL_STATE(2336)] = 66387, + [SMALL_STATE(2337)] = 66398, + [SMALL_STATE(2338)] = 66409, + [SMALL_STATE(2339)] = 66420, + [SMALL_STATE(2340)] = 66431, + [SMALL_STATE(2341)] = 66442, + [SMALL_STATE(2342)] = 66453, + [SMALL_STATE(2343)] = 66462, + [SMALL_STATE(2344)] = 66471, + [SMALL_STATE(2345)] = 66482, + [SMALL_STATE(2346)] = 66493, + [SMALL_STATE(2347)] = 66504, + [SMALL_STATE(2348)] = 66512, + [SMALL_STATE(2349)] = 66520, + [SMALL_STATE(2350)] = 66528, + [SMALL_STATE(2351)] = 66536, + [SMALL_STATE(2352)] = 66544, + [SMALL_STATE(2353)] = 66552, + [SMALL_STATE(2354)] = 66560, + [SMALL_STATE(2355)] = 66568, + [SMALL_STATE(2356)] = 66576, + [SMALL_STATE(2357)] = 66584, + [SMALL_STATE(2358)] = 66592, + [SMALL_STATE(2359)] = 66600, + [SMALL_STATE(2360)] = 66608, + [SMALL_STATE(2361)] = 66616, + [SMALL_STATE(2362)] = 66624, + [SMALL_STATE(2363)] = 66632, + [SMALL_STATE(2364)] = 66640, + [SMALL_STATE(2365)] = 66648, + [SMALL_STATE(2366)] = 66656, + [SMALL_STATE(2367)] = 66664, + [SMALL_STATE(2368)] = 66672, + [SMALL_STATE(2369)] = 66680, + [SMALL_STATE(2370)] = 66688, + [SMALL_STATE(2371)] = 66696, + [SMALL_STATE(2372)] = 66704, + [SMALL_STATE(2373)] = 66712, + [SMALL_STATE(2374)] = 66720, + [SMALL_STATE(2375)] = 66728, + [SMALL_STATE(2376)] = 66736, + [SMALL_STATE(2377)] = 66744, + [SMALL_STATE(2378)] = 66752, + [SMALL_STATE(2379)] = 66760, + [SMALL_STATE(2380)] = 66768, + [SMALL_STATE(2381)] = 66776, + [SMALL_STATE(2382)] = 66784, + [SMALL_STATE(2383)] = 66792, + [SMALL_STATE(2384)] = 66800, + [SMALL_STATE(2385)] = 66808, + [SMALL_STATE(2386)] = 66816, + [SMALL_STATE(2387)] = 66824, + [SMALL_STATE(2388)] = 66832, + [SMALL_STATE(2389)] = 66840, + [SMALL_STATE(2390)] = 66848, + [SMALL_STATE(2391)] = 66856, + [SMALL_STATE(2392)] = 66864, + [SMALL_STATE(2393)] = 66872, + [SMALL_STATE(2394)] = 66880, + [SMALL_STATE(2395)] = 66888, + [SMALL_STATE(2396)] = 66896, + [SMALL_STATE(2397)] = 66904, + [SMALL_STATE(2398)] = 66912, + [SMALL_STATE(2399)] = 66920, + [SMALL_STATE(2400)] = 66928, + [SMALL_STATE(2401)] = 66936, + [SMALL_STATE(2402)] = 66944, + [SMALL_STATE(2403)] = 66952, + [SMALL_STATE(2404)] = 66960, + [SMALL_STATE(2405)] = 66968, + [SMALL_STATE(2406)] = 66976, + [SMALL_STATE(2407)] = 66984, + [SMALL_STATE(2408)] = 66992, + [SMALL_STATE(2409)] = 67000, + [SMALL_STATE(2410)] = 67008, + [SMALL_STATE(2411)] = 67016, + [SMALL_STATE(2412)] = 67024, + [SMALL_STATE(2413)] = 67032, + [SMALL_STATE(2414)] = 67040, + [SMALL_STATE(2415)] = 67048, + [SMALL_STATE(2416)] = 67056, + [SMALL_STATE(2417)] = 67064, + [SMALL_STATE(2418)] = 67072, + [SMALL_STATE(2419)] = 67080, + [SMALL_STATE(2420)] = 67088, + [SMALL_STATE(2421)] = 67096, + [SMALL_STATE(2422)] = 67104, + [SMALL_STATE(2423)] = 67112, + [SMALL_STATE(2424)] = 67120, + [SMALL_STATE(2425)] = 67128, + [SMALL_STATE(2426)] = 67136, + [SMALL_STATE(2427)] = 67144, + [SMALL_STATE(2428)] = 67152, + [SMALL_STATE(2429)] = 67160, + [SMALL_STATE(2430)] = 67168, + [SMALL_STATE(2431)] = 67176, + [SMALL_STATE(2432)] = 67184, + [SMALL_STATE(2433)] = 67192, + [SMALL_STATE(2434)] = 67200, + [SMALL_STATE(2435)] = 67208, + [SMALL_STATE(2436)] = 67216, + [SMALL_STATE(2437)] = 67224, + [SMALL_STATE(2438)] = 67232, + [SMALL_STATE(2439)] = 67240, + [SMALL_STATE(2440)] = 67248, + [SMALL_STATE(2441)] = 67256, + [SMALL_STATE(2442)] = 67264, + [SMALL_STATE(2443)] = 67272, + [SMALL_STATE(2444)] = 67280, + [SMALL_STATE(2445)] = 67288, + [SMALL_STATE(2446)] = 67296, + [SMALL_STATE(2447)] = 67304, + [SMALL_STATE(2448)] = 67312, + [SMALL_STATE(2449)] = 67320, + [SMALL_STATE(2450)] = 67328, + [SMALL_STATE(2451)] = 67336, + [SMALL_STATE(2452)] = 67344, + [SMALL_STATE(2453)] = 67352, + [SMALL_STATE(2454)] = 67360, + [SMALL_STATE(2455)] = 67368, + [SMALL_STATE(2456)] = 67376, + [SMALL_STATE(2457)] = 67384, + [SMALL_STATE(2458)] = 67392, + [SMALL_STATE(2459)] = 67400, + [SMALL_STATE(2460)] = 67408, + [SMALL_STATE(2461)] = 67416, + [SMALL_STATE(2462)] = 67424, + [SMALL_STATE(2463)] = 67432, + [SMALL_STATE(2464)] = 67440, + [SMALL_STATE(2465)] = 67448, + [SMALL_STATE(2466)] = 67456, + [SMALL_STATE(2467)] = 67464, + [SMALL_STATE(2468)] = 67472, + [SMALL_STATE(2469)] = 67480, + [SMALL_STATE(2470)] = 67488, + [SMALL_STATE(2471)] = 67496, + [SMALL_STATE(2472)] = 67504, + [SMALL_STATE(2473)] = 67512, + [SMALL_STATE(2474)] = 67520, + [SMALL_STATE(2475)] = 67528, + [SMALL_STATE(2476)] = 67536, + [SMALL_STATE(2477)] = 67544, + [SMALL_STATE(2478)] = 67552, + [SMALL_STATE(2479)] = 67560, + [SMALL_STATE(2480)] = 67568, + [SMALL_STATE(2481)] = 67576, + [SMALL_STATE(2482)] = 67584, + [SMALL_STATE(2483)] = 67592, + [SMALL_STATE(2484)] = 67600, + [SMALL_STATE(2485)] = 67608, + [SMALL_STATE(2486)] = 67616, + [SMALL_STATE(2487)] = 67624, + [SMALL_STATE(2488)] = 67632, + [SMALL_STATE(2489)] = 67640, + [SMALL_STATE(2490)] = 67648, + [SMALL_STATE(2491)] = 67656, + [SMALL_STATE(2492)] = 67664, + [SMALL_STATE(2493)] = 67672, + [SMALL_STATE(2494)] = 67680, + [SMALL_STATE(2495)] = 67688, + [SMALL_STATE(2496)] = 67696, + [SMALL_STATE(2497)] = 67704, + [SMALL_STATE(2498)] = 67712, + [SMALL_STATE(2499)] = 67720, + [SMALL_STATE(2500)] = 67728, + [SMALL_STATE(2501)] = 67736, + [SMALL_STATE(2502)] = 67744, + [SMALL_STATE(2503)] = 67752, + [SMALL_STATE(2504)] = 67760, + [SMALL_STATE(2505)] = 67768, + [SMALL_STATE(2506)] = 67776, + [SMALL_STATE(2507)] = 67784, + [SMALL_STATE(2508)] = 67792, + [SMALL_STATE(2509)] = 67800, + [SMALL_STATE(2510)] = 67808, + [SMALL_STATE(2511)] = 67816, + [SMALL_STATE(2512)] = 67824, + [SMALL_STATE(2513)] = 67832, + [SMALL_STATE(2514)] = 67840, + [SMALL_STATE(2515)] = 67848, + [SMALL_STATE(2516)] = 67856, + [SMALL_STATE(2517)] = 67864, + [SMALL_STATE(2518)] = 67872, + [SMALL_STATE(2519)] = 67880, + [SMALL_STATE(2520)] = 67888, + [SMALL_STATE(2521)] = 67896, + [SMALL_STATE(2522)] = 67904, + [SMALL_STATE(2523)] = 67912, + [SMALL_STATE(2524)] = 67920, + [SMALL_STATE(2525)] = 67928, + [SMALL_STATE(2526)] = 67936, + [SMALL_STATE(2527)] = 67944, + [SMALL_STATE(2528)] = 67952, + [SMALL_STATE(2529)] = 67960, + [SMALL_STATE(2530)] = 67968, + [SMALL_STATE(2531)] = 67976, + [SMALL_STATE(2532)] = 67984, + [SMALL_STATE(2533)] = 67992, + [SMALL_STATE(2534)] = 68000, + [SMALL_STATE(2535)] = 68008, + [SMALL_STATE(2536)] = 68016, + [SMALL_STATE(2537)] = 68024, + [SMALL_STATE(2538)] = 68032, + [SMALL_STATE(2539)] = 68040, + [SMALL_STATE(2540)] = 68048, + [SMALL_STATE(2541)] = 68056, + [SMALL_STATE(2542)] = 68064, + [SMALL_STATE(2543)] = 68072, + [SMALL_STATE(2544)] = 68080, + [SMALL_STATE(2545)] = 68088, + [SMALL_STATE(2546)] = 68096, + [SMALL_STATE(2547)] = 68104, + [SMALL_STATE(2548)] = 68112, + [SMALL_STATE(2549)] = 68120, + [SMALL_STATE(2550)] = 68128, + [SMALL_STATE(2551)] = 68136, + [SMALL_STATE(2552)] = 68144, + [SMALL_STATE(2553)] = 68152, + [SMALL_STATE(2554)] = 68160, + [SMALL_STATE(2555)] = 68168, + [SMALL_STATE(2556)] = 68176, + [SMALL_STATE(2557)] = 68184, + [SMALL_STATE(2558)] = 68192, + [SMALL_STATE(2559)] = 68200, + [SMALL_STATE(2560)] = 68208, + [SMALL_STATE(2561)] = 68216, + [SMALL_STATE(2562)] = 68224, + [SMALL_STATE(2563)] = 68232, + [SMALL_STATE(2564)] = 68240, + [SMALL_STATE(2565)] = 68248, + [SMALL_STATE(2566)] = 68256, + [SMALL_STATE(2567)] = 68264, + [SMALL_STATE(2568)] = 68272, + [SMALL_STATE(2569)] = 68280, + [SMALL_STATE(2570)] = 68288, + [SMALL_STATE(2571)] = 68296, + [SMALL_STATE(2572)] = 68304, + [SMALL_STATE(2573)] = 68312, + [SMALL_STATE(2574)] = 68320, + [SMALL_STATE(2575)] = 68328, + [SMALL_STATE(2576)] = 68336, + [SMALL_STATE(2577)] = 68344, + [SMALL_STATE(2578)] = 68352, + [SMALL_STATE(2579)] = 68360, + [SMALL_STATE(2580)] = 68368, + [SMALL_STATE(2581)] = 68376, + [SMALL_STATE(2582)] = 68384, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -130507,2737 +131207,2736 @@ static const TSParseActionEntry ts_parse_actions[] = { [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(1156), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1156), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(265), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1940), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(33), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(103), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1056), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2582), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1526), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1547), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(792), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(785), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2579), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2159), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(611), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(53), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(654), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(614), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2162), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(174), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2575), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1357), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1897), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2565), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2562), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2516), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1184), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1505), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1328), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(60), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2238), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1484), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(641), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2505), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(54), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(570), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2245), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1068), - [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1793), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1057), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1058), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2500), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1367), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1058), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1162), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(436), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1925), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(39), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(107), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1088), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2582), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1530), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1519), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(795), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(791), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2579), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2165), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(624), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(67), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(656), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(621), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2166), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(171), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2575), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1367), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2130), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2565), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2562), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2516), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1183), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1509), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1338), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(64), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2227), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1481), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(647), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2505), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(53), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(585), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2231), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1130), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1839), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1072), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1119), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2500), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1380), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1119), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(781), - [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(36), - [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(9), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(33), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(103), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1056), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2582), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1925), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2261), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(792), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(804), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(621), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(58), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2313), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(165), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2266), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(59), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(641), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2505), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(54), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), - [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(570), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2245), - [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1068), - [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1793), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1057), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1058), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2500), - [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1058), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(789), + [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(39), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(16), + [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), + [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(107), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1088), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2582), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1951), + [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2249), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(795), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(904), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(630), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(60), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2327), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(172), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2253), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(56), + [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(647), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2505), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(53), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(585), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2231), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1130), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1839), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1072), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1119), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2500), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1119), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 143), [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 143), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 59), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 59), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 134), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 134), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 236), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 236), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 91), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 91), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 219), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 219), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 193), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 193), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 99), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 99), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 172), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 172), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 91), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 91), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 99), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 99), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 172), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 172), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 59), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 59), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 193), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 193), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 219), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 219), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 134), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 134), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 236), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 236), + [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 113), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 113), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 156), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 156), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 156), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 156), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 113), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 113), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2267), - [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(808), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1912), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2471), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1563), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1598), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1591), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2380), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2234), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(644), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(635), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2344), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1357), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1898), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2384), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2385), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2386), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1928), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1590), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1325), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2228), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1489), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(641), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2401), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2391), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1365), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2391), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(260), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(489), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(506), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(507), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2469), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(585), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1817), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(567), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(565), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 129), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 129), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 130), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 130), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 122), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 122), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 234), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 234), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 124), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 124), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 76), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 76), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 122), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 122), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 131), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 131), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 235), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 235), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 124), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 124), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 122), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 122), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 124), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 124), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 132), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 132), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 185), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 185), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 133), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 133), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 233), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 233), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 183), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 183), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 207), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 207), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 206), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 206), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 182), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 182), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 167), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 167), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 237), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 237), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 232), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 232), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 228), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 228), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 216), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 216), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 238), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 238), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 181), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 181), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 214), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 214), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 231), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 231), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 89), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 89), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 224), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 224), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 170), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 170), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 76), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 76), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 239), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 239), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 178), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 178), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 53), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 53), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 95), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 95), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 170), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 170), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 124), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 124), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 76), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 76), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 76), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 76), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 170), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 170), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 230), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 230), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 88), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 88), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 158), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 158), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 209), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 209), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 137), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 137), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 87), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 87), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 188), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 188), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 83), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 83), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 177), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 177), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 138), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 138), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 129), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 129), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 76), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 76), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 139), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 139), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 241), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 241), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 93), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 93), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 164), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 164), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 83), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 83), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 51), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 51), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 175), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 175), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 94), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 94), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 104), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 104), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 175), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 175), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 173), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 173), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 121), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 121), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 61), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 61), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 94), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 94), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 118), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 118), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 95), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 95), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 182), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 182), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 242), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 242), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 97), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 97), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 76), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 76), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 221), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 221), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 117), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 117), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 239), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 239), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 243), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 243), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 75), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 75), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 171), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 171), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 61), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 61), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 223), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 223), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 168), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 168), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 138), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 138), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 211), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 211), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 188), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 188), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 119), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 119), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 150), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 150), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 190), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 190), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 51), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 51), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 72), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 72), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 163), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 163), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 74), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 74), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 51), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 51), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 73), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 73), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 105), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 105), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 66), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 66), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 162), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 162), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 227), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 227), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 204), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 204), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 202), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 202), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 51), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 51), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 147), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 147), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 51), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 51), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 72), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 72), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 94), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 94), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 149), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 149), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 110), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 110), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(264), + [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(500), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(509), + [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(502), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2361), + [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(574), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1852), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(576), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(569), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2340), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(813), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2026), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2377), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1594), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1613), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1566), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2363), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2221), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(651), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(645), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2368), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1367), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2115), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2369), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2347), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2371), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1928), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1578), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1336), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2220), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1485), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(647), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2375), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2378), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1377), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2378), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 66), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 66), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 51), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 51), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 72), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 72), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 158), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 158), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 218), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 218), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 129), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 129), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 175), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 175), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 173), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 173), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 177), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 177), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 71), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 71), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 68), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 68), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 170), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 170), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 76), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 76), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 124), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 124), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 51), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 51), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 74), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 74), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 171), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 171), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 72), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 72), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 170), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 170), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 168), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 168), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 178), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 178), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 51), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 51), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 61), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 61), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 75), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 75), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 119), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 119), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 243), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 243), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 170), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 170), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 76), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 76), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 239), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 239), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 181), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 181), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 163), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 163), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 162), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 162), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 182), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 182), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 83), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 83), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 242), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 242), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 51), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 51), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 76), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 76), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 83), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 83), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 87), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 87), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 88), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 88), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 76), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 76), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 241), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 241), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 76), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 76), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 182), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 182), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 89), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 89), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 216), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 216), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 158), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 158), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 93), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 93), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 94), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 94), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 215), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 215), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 214), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 214), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 155), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 155), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 95), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 95), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 153), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 153), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 183), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 183), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 97), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 97), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 53), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 53), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 211), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 211), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 124), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 124), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 150), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 150), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 210), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 210), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 209), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 209), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 208), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 208), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 175), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 175), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 188), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 188), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 104), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 104), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 113), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 113), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 221), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 221), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 239), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 239), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 223), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 223), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 51), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 51), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 207), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 207), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 206), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 206), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 167), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 167), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 93), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 93), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 185), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 185), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 238), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 238), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 228), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 228), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 237), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 237), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 139), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 139), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 138), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 138), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 137), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 137), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 95), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 95), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 164), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 164), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 235), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 235), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 224), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 224), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 234), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 234), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 188), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 188), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 233), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 233), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 51), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 51), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 94), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 94), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 138), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 138), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 190), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 190), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 94), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 94), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 232), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 232), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 231), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 231), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 224), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 224), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 230), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 230), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 117), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 117), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 202), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 202), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 209), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 209), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 149), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 149), [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 195), [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 195), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 197), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 197), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 198), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 198), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 215), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 215), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 185), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 185), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 113), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 113), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 68), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 68), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 124), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 124), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 210), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 210), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 71), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 71), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 209), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 209), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 218), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 218), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 94), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 94), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 109), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 109), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 93), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 93), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 51), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 51), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 224), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 224), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 158), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 158), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 208), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 208), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 153), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 153), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 155), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 155), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(490), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(552), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(549), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(545), - [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2452), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(585), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1817), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(567), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(490), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(503), - [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(543), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(542), - [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(529), - [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(503), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(591), - [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1824), - [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(601), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 118), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 118), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 197), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 197), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 94), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 94), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 198), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 198), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 133), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 133), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 204), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 204), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 132), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 132), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 185), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 185), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 124), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 124), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 122), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 122), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 124), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 124), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 131), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 131), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 122), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 122), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 76), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 76), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 124), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 124), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 122), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 122), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 130), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 130), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 129), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 129), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 73), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 73), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 121), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 121), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 61), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 61), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 227), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 227), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(506), + [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(545), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(547), + [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(546), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(506), + [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(608), + [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1833), + [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(595), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(510), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(520), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(519), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(518), + [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2452), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(574), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1852), + [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(576), + [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(510), [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1432), - [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(571), - [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(574), - [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1376), - [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2327), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1791), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1457), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(591), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(571), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1400), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2323), + [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1793), [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2481), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(633), - [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(641), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(638), + [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(647), [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2468), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1455), - [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(619), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(616), - [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1458), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2287), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1419), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1875), - [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1384), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1939), - [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1939), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1471), + [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(618), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(615), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1464), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2276), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1428), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1860), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1385), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1930), + [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1930), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 184), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 184), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, .production_id = 48), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, .production_id = 48), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2481), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 184), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 184), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, .production_id = 48), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, .production_id = 48), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2481), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 108), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 108), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 70), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 70), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 196), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 196), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 113), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 113), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 113), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 156), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 156), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 156), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 127), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 127), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 135), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 135), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 111), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 111), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 92), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 92), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 62), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 62), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 60), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 60), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 61), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 61), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 61), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 61), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 103), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 103), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 90), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 90), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 62), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 62), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), - [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2524), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 62), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 62), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 144), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 144), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 152), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 152), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 146), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 146), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 108), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 108), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 70), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 70), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 65), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 65), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 146), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 146), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 90), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 90), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 144), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 144), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 156), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 156), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 156), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 62), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 62), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 135), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 135), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 152), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 152), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 92), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 92), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 111), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 111), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 127), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 127), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 103), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 103), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 60), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 60), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 61), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 61), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 196), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 196), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 61), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 61), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2524), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 113), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 113), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 113), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 62), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 62), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 62), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 62), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 220), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 136), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 174), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 125), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 128), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 113), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 156), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 187), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 157), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 174), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 113), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 136), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 156), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 187), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 125), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 31), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 3, .production_id = 31), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 157), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 58), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 58), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 54), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 54), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), - [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), - [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), - [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 54), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 54), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 58), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 58), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1577), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1555), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(592), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(499), - [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(500), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1, .production_id = 1), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 49), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 66), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1379), - [4287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(191), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 225), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 61), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 199), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 225), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 103), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 199), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 159), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 103), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 159), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(606), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(496), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), + [3972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), + [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1591), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1598), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1, .production_id = 1), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 49), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 66), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 159), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 61), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1386), + [4321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(199), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 225), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 61), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 199), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 159), [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 61), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 62), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [4364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1181), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 112), - [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 126), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(612), - [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 1), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 86), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 103), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 225), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 103), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 199), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 62), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1181), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 112), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 126), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(639), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 1), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), [4553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1889), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1557), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1197), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 200), - [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 222), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 61), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 103), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 192), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 191), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(596), - [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 64), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 64), - [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__built_in_attr_path, 1, .production_id = 1), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 161), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 160), - [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 160), SHIFT_REPEAT(564), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 98), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(656), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 93), - [4851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(88), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2213), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(254), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 142), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1677), - [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1575), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 102), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 80), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 141), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 79), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(195), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 78), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 77), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [5027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1565), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [5040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1329), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 57), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(42), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [5140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1580), - [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 125), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 84), - [5285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 82), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 2, .production_id = 82), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 81), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 82), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5531] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 125), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 31), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 86), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(598), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1564), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 161), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 160), + [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 160), SHIFT_REPEAT(570), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 80), + [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 79), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 78), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 93), + [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 64), + [4719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2230), + [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 77), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__built_in_attr_path, 1, .production_id = 1), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(258), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 142), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1667), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 141), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 191), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 192), + [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 98), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(697), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 61), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 57), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(200), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 200), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 103), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1597), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 102), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1565), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(81), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1589), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 222), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1200), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [5061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(40), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 64), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1337), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 84), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 82), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 2, .production_id = 82), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 82), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 81), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5533] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 3, .production_id = 31), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), }; #ifdef __cplusplus From 467fd2c4526f146afbdbe17b9fd4088e11d61968 Mon Sep 17 00:00:00 2001 From: ninevra Date: Tue, 8 Mar 2022 00:53:51 -0800 Subject: [PATCH 7/7] Alias delim_token_tree to token_tree --- corpus/declarations.txt | 14 +- grammar.js | 2 +- src/grammar.json | 9 +- src/node-types.json | 45 +- src/parser.c | 121116 ++++++++++++++++++------------------- 5 files changed, 60533 insertions(+), 60653 deletions(-) diff --git a/corpus/declarations.txt b/corpus/declarations.txt index 7dad8b8e..670ed463 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -1048,7 +1048,7 @@ foo(#[bar(some tokens are special in other contexts: $/';()*()+.)] x); arguments: (arguments (attribute_item (attr_item (identifier) - arguments: (delim_token_tree (identifier) (identifier)))) + arguments: (token_tree (identifier) (identifier)))) (identifier) (identifier)))) (expression_statement @@ -1057,7 +1057,7 @@ foo(#[bar(some tokens are special in other contexts: $/';()*()+.)] x); arguments: (arguments (attribute_item (attr_item (identifier) - arguments: (delim_token_tree + arguments: (token_tree (identifier) (identifier) (identifier) @@ -1065,8 +1065,8 @@ foo(#[bar(some tokens are special in other contexts: $/';()*()+.)] x); (identifier) (identifier) (identifier) - (delim_token_tree) - (delim_token_tree)))) + (token_tree) + (token_tree)))) (identifier))))) ================================================================================ @@ -1102,15 +1102,15 @@ pub enum Error { (enum_variant_list (attribute_item (attr_item (identifier) - (delim_token_tree + (token_tree (string_literal) (identifier) - (delim_token_tree (integer_literal))))) + (token_tree (integer_literal))))) (enum_variant (identifier) (ordered_field_declaration_list (type_identifier))) (attribute_item (attr_item (identifier) - (delim_token_tree + (token_tree (string_literal) (identifier) (identifier) diff --git a/grammar.js b/grammar.js index f77532f6..2f4649c1 100644 --- a/grammar.js +++ b/grammar.js @@ -279,7 +279,7 @@ module.exports = grammar({ $._path, optional(choice( seq('=', field('value', $._expression)), - field('arguments', $.delim_token_tree) + field('arguments', alias($.delim_token_tree, $.token_tree)) )) ), diff --git a/src/grammar.json b/src/grammar.json index 3a8dccf3..9b3aad2a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -987,8 +987,13 @@ "type": "FIELD", "name": "arguments", "content": { - "type": "SYMBOL", - "name": "delim_token_tree" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "delim_token_tree" + }, + "named": true, + "value": "token_tree" } } ] diff --git a/src/node-types.json b/src/node-types.json index 664bbc0d..41603377 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -648,7 +648,7 @@ "required": false, "types": [ { - "type": "delim_token_tree", + "type": "token_tree", "named": true } ] @@ -1401,49 +1401,6 @@ ] } }, - { - "type": "delim_token_tree", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_literal", - "named": true - }, - { - "type": "crate", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "mutable_specifier", - "named": true - }, - { - "type": "primitive_type", - "named": true - }, - { - "type": "self", - "named": true - }, - { - "type": "super", - "named": true - }, - { - "type": "token_tree", - "named": true - } - ] - } - }, { "type": "dynamic_type", "named": true, diff --git a/src/parser.c b/src/parser.c index c501ee34..092c33bd 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2583 -#define LARGE_STATE_COUNT 660 +#define STATE_COUNT 2582 +#define LARGE_STATE_COUNT 659 #define SYMBOL_COUNT 368 #define ALIAS_COUNT 3 #define TOKEN_COUNT 183 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 244 +#define PRODUCTION_ID_COUNT 243 enum { sym_identifier = 1, @@ -660,7 +660,7 @@ static const char * const ts_symbol_names[] = { [sym__expression_except_range] = "_expression_except_range", [sym__expression] = "_expression", [sym_macro_invocation] = "macro_invocation", - [sym_delim_token_tree] = "delim_token_tree", + [sym_delim_token_tree] = "token_tree", [sym__delim_tokens] = "_delim_tokens", [sym__non_delim_token] = "_non_delim_token", [sym_scoped_identifier] = "scoped_identifier", @@ -1034,7 +1034,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__expression_except_range] = sym__expression_except_range, [sym__expression] = sym__expression, [sym_macro_invocation] = sym_macro_invocation, - [sym_delim_token_tree] = sym_delim_token_tree, + [sym_delim_token_tree] = sym_token_tree, [sym__delim_tokens] = sym__delim_tokens, [sym__non_delim_token] = sym__non_delim_token, [sym_scoped_identifier] = sym_scoped_identifier, @@ -2738,197 +2738,197 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [45] = {.index = 47, .length = 2}, [46] = {.index = 37, .length = 2}, [47] = {.index = 1, .length = 1}, - [49] = {.index = 49, .length = 1}, - [50] = {.index = 50, .length = 2}, - [51] = {.index = 52, .length = 3}, - [52] = {.index = 55, .length = 2}, - [53] = {.index = 57, .length = 3}, + [48] = {.index = 49, .length = 1}, + [49] = {.index = 50, .length = 2}, + [50] = {.index = 52, .length = 3}, + [51] = {.index = 55, .length = 2}, + [52] = {.index = 57, .length = 3}, + [54] = {.index = 60, .length = 1}, [55] = {.index = 60, .length = 1}, - [56] = {.index = 60, .length = 1}, - [57] = {.index = 49, .length = 1}, - [59] = {.index = 61, .length = 3}, - [60] = {.index = 64, .length = 1}, - [61] = {.index = 65, .length = 1}, + [56] = {.index = 49, .length = 1}, + [58] = {.index = 61, .length = 3}, + [59] = {.index = 64, .length = 1}, + [60] = {.index = 65, .length = 1}, + [62] = {.index = 66, .length = 2}, [63] = {.index = 66, .length = 2}, - [64] = {.index = 66, .length = 2}, - [65] = {.index = 68, .length = 1}, - [66] = {.index = 69, .length = 2}, - [67] = {.index = 71, .length = 3}, - [68] = {.index = 74, .length = 2}, + [64] = {.index = 68, .length = 1}, + [65] = {.index = 69, .length = 2}, + [66] = {.index = 71, .length = 3}, + [67] = {.index = 74, .length = 2}, + [68] = {.index = 76, .length = 2}, [69] = {.index = 76, .length = 2}, - [70] = {.index = 76, .length = 2}, - [71] = {.index = 78, .length = 1}, - [72] = {.index = 79, .length = 2}, - [73] = {.index = 81, .length = 3}, - [74] = {.index = 84, .length = 2}, - [75] = {.index = 86, .length = 2}, - [76] = {.index = 88, .length = 2}, - [77] = {.index = 90, .length = 2}, - [78] = {.index = 92, .length = 2}, - [79] = {.index = 90, .length = 2}, - [80] = {.index = 92, .length = 2}, + [70] = {.index = 78, .length = 1}, + [71] = {.index = 79, .length = 2}, + [72] = {.index = 81, .length = 3}, + [73] = {.index = 84, .length = 2}, + [74] = {.index = 86, .length = 2}, + [75] = {.index = 88, .length = 2}, + [76] = {.index = 90, .length = 2}, + [77] = {.index = 92, .length = 2}, + [78] = {.index = 90, .length = 2}, + [79] = {.index = 92, .length = 2}, + [80] = {.index = 94, .length = 1}, [81] = {.index = 94, .length = 1}, - [82] = {.index = 94, .length = 1}, - [83] = {.index = 95, .length = 1}, - [84] = {.index = 96, .length = 2}, + [82] = {.index = 95, .length = 1}, + [83] = {.index = 96, .length = 2}, + [84] = {.index = 98, .length = 2}, [85] = {.index = 98, .length = 2}, - [86] = {.index = 98, .length = 2}, - [87] = {.index = 88, .length = 2}, - [88] = {.index = 95, .length = 1}, - [89] = {.index = 100, .length = 1}, - [90] = {.index = 101, .length = 3}, - [91] = {.index = 104, .length = 1}, - [92] = {.index = 105, .length = 1}, - [93] = {.index = 106, .length = 2}, - [94] = {.index = 108, .length = 3}, - [95] = {.index = 111, .length = 3}, - [96] = {.index = 114, .length = 4}, - [97] = {.index = 118, .length = 3}, - [98] = {.index = 1, .length = 1}, - [99] = {.index = 121, .length = 3}, - [100] = {.index = 124, .length = 2}, + [86] = {.index = 88, .length = 2}, + [87] = {.index = 95, .length = 1}, + [88] = {.index = 100, .length = 1}, + [89] = {.index = 101, .length = 3}, + [90] = {.index = 104, .length = 1}, + [91] = {.index = 105, .length = 1}, + [92] = {.index = 106, .length = 2}, + [93] = {.index = 108, .length = 3}, + [94] = {.index = 111, .length = 3}, + [95] = {.index = 114, .length = 4}, + [96] = {.index = 118, .length = 3}, + [97] = {.index = 1, .length = 1}, + [98] = {.index = 121, .length = 3}, + [99] = {.index = 124, .length = 2}, + [100] = {.index = 126, .length = 2}, [101] = {.index = 126, .length = 2}, - [102] = {.index = 126, .length = 2}, - [103] = {.index = 128, .length = 1}, - [104] = {.index = 129, .length = 2}, - [105] = {.index = 131, .length = 3}, - [106] = {.index = 134, .length = 3}, - [107] = {.index = 137, .length = 3}, - [108] = {.index = 140, .length = 1}, - [109] = {.index = 129, .length = 2}, - [110] = {.index = 131, .length = 3}, - [111] = {.index = 134, .length = 3}, - [112] = {.index = 141, .length = 2}, - [113] = {.index = 143, .length = 2}, - [115] = {.index = 145, .length = 3}, - [116] = {.index = 148, .length = 4}, - [117] = {.index = 106, .length = 2}, - [118] = {.index = 152, .length = 3}, - [119] = {.index = 155, .length = 2}, - [120] = {.index = 157, .length = 3}, - [121] = {.index = 160, .length = 2}, - [122] = {.index = 162, .length = 2}, - [123] = {.index = 164, .length = 3}, - [124] = {.index = 167, .length = 3}, - [125] = {.index = 32, .length = 1}, - [126] = {.index = 141, .length = 2}, - [127] = {.index = 170, .length = 3}, - [128] = {.index = 173, .length = 2}, - [129] = {.index = 175, .length = 2}, - [130] = {.index = 177, .length = 3}, - [131] = {.index = 180, .length = 2}, - [132] = {.index = 182, .length = 2}, - [133] = {.index = 184, .length = 1}, - [134] = {.index = 185, .length = 2}, - [135] = {.index = 187, .length = 1}, - [136] = {.index = 173, .length = 2}, - [137] = {.index = 188, .length = 4}, - [138] = {.index = 192, .length = 3}, - [139] = {.index = 195, .length = 4}, - [140] = {.index = 95, .length = 1}, - [141] = {.index = 199, .length = 2}, - [142] = {.index = 201, .length = 2}, - [143] = {.index = 203, .length = 3}, - [144] = {.index = 206, .length = 2}, - [145] = {.index = 208, .length = 3}, - [146] = {.index = 211, .length = 2}, - [147] = {.index = 213, .length = 3}, - [148] = {.index = 216, .length = 4}, - [149] = {.index = 213, .length = 3}, - [150] = {.index = 216, .length = 4}, + [102] = {.index = 128, .length = 1}, + [103] = {.index = 129, .length = 2}, + [104] = {.index = 131, .length = 3}, + [105] = {.index = 134, .length = 3}, + [106] = {.index = 137, .length = 3}, + [107] = {.index = 140, .length = 1}, + [108] = {.index = 129, .length = 2}, + [109] = {.index = 131, .length = 3}, + [110] = {.index = 134, .length = 3}, + [111] = {.index = 141, .length = 2}, + [112] = {.index = 143, .length = 2}, + [114] = {.index = 145, .length = 3}, + [115] = {.index = 148, .length = 4}, + [116] = {.index = 106, .length = 2}, + [117] = {.index = 152, .length = 3}, + [118] = {.index = 155, .length = 2}, + [119] = {.index = 157, .length = 3}, + [120] = {.index = 160, .length = 2}, + [121] = {.index = 162, .length = 2}, + [122] = {.index = 164, .length = 3}, + [123] = {.index = 167, .length = 3}, + [124] = {.index = 32, .length = 1}, + [125] = {.index = 141, .length = 2}, + [126] = {.index = 170, .length = 3}, + [127] = {.index = 173, .length = 2}, + [128] = {.index = 175, .length = 2}, + [129] = {.index = 177, .length = 3}, + [130] = {.index = 180, .length = 2}, + [131] = {.index = 182, .length = 2}, + [132] = {.index = 184, .length = 1}, + [133] = {.index = 185, .length = 2}, + [134] = {.index = 187, .length = 1}, + [135] = {.index = 173, .length = 2}, + [136] = {.index = 188, .length = 4}, + [137] = {.index = 192, .length = 3}, + [138] = {.index = 195, .length = 4}, + [139] = {.index = 95, .length = 1}, + [140] = {.index = 199, .length = 2}, + [141] = {.index = 201, .length = 2}, + [142] = {.index = 203, .length = 3}, + [143] = {.index = 206, .length = 2}, + [144] = {.index = 208, .length = 3}, + [145] = {.index = 211, .length = 2}, + [146] = {.index = 213, .length = 3}, + [147] = {.index = 216, .length = 4}, + [148] = {.index = 213, .length = 3}, + [149] = {.index = 216, .length = 4}, + [150] = {.index = 220, .length = 3}, [151] = {.index = 220, .length = 3}, - [152] = {.index = 220, .length = 3}, - [153] = {.index = 208, .length = 3}, - [154] = {.index = 223, .length = 2}, - [155] = {.index = 225, .length = 2}, - [156] = {.index = 227, .length = 2}, - [157] = {.index = 229, .length = 1}, - [158] = {.index = 230, .length = 2}, - [159] = {.index = 232, .length = 2}, - [160] = {.index = 234, .length = 2}, - [161] = {.index = 201, .length = 2}, - [162] = {.index = 236, .length = 4}, - [163] = {.index = 240, .length = 3}, - [164] = {.index = 243, .length = 2}, - [165] = {.index = 245, .length = 3}, - [166] = {.index = 248, .length = 3}, - [167] = {.index = 243, .length = 2}, - [168] = {.index = 245, .length = 3}, - [169] = {.index = 251, .length = 3}, - [170] = {.index = 254, .length = 3}, - [171] = {.index = 257, .length = 4}, - [172] = {.index = 261, .length = 3}, - [173] = {.index = 264, .length = 2}, - [174] = {.index = 266, .length = 2}, - [175] = {.index = 268, .length = 3}, - [176] = {.index = 271, .length = 4}, - [177] = {.index = 275, .length = 3}, - [178] = {.index = 230, .length = 2}, - [179] = {.index = 278, .length = 2}, - [180] = {.index = 280, .length = 3}, - [181] = {.index = 283, .length = 3}, - [182] = {.index = 286, .length = 2}, - [183] = {.index = 288, .length = 3}, - [184] = {.index = 201, .length = 2}, - [185] = {.index = 291, .length = 3}, - [186] = {.index = 294, .length = 3}, - [187] = {.index = 266, .length = 2}, - [188] = {.index = 297, .length = 4}, - [189] = {.index = 301, .length = 5}, - [190] = {.index = 306, .length = 4}, - [191] = {.index = 310, .length = 2}, - [192] = {.index = 312, .length = 3}, - [193] = {.index = 315, .length = 4}, + [152] = {.index = 208, .length = 3}, + [153] = {.index = 223, .length = 2}, + [154] = {.index = 225, .length = 2}, + [155] = {.index = 227, .length = 2}, + [156] = {.index = 229, .length = 1}, + [157] = {.index = 230, .length = 2}, + [158] = {.index = 232, .length = 2}, + [159] = {.index = 234, .length = 2}, + [160] = {.index = 201, .length = 2}, + [161] = {.index = 236, .length = 4}, + [162] = {.index = 240, .length = 3}, + [163] = {.index = 243, .length = 2}, + [164] = {.index = 245, .length = 3}, + [165] = {.index = 248, .length = 3}, + [166] = {.index = 243, .length = 2}, + [167] = {.index = 245, .length = 3}, + [168] = {.index = 251, .length = 3}, + [169] = {.index = 254, .length = 3}, + [170] = {.index = 257, .length = 4}, + [171] = {.index = 261, .length = 3}, + [172] = {.index = 264, .length = 2}, + [173] = {.index = 266, .length = 2}, + [174] = {.index = 268, .length = 3}, + [175] = {.index = 271, .length = 4}, + [176] = {.index = 275, .length = 3}, + [177] = {.index = 230, .length = 2}, + [178] = {.index = 278, .length = 2}, + [179] = {.index = 280, .length = 3}, + [180] = {.index = 283, .length = 3}, + [181] = {.index = 286, .length = 2}, + [182] = {.index = 288, .length = 3}, + [183] = {.index = 201, .length = 2}, + [184] = {.index = 291, .length = 3}, + [185] = {.index = 294, .length = 3}, + [186] = {.index = 266, .length = 2}, + [187] = {.index = 297, .length = 4}, + [188] = {.index = 301, .length = 5}, + [189] = {.index = 306, .length = 4}, + [190] = {.index = 310, .length = 2}, + [191] = {.index = 312, .length = 3}, + [192] = {.index = 315, .length = 4}, + [193] = {.index = 319, .length = 4}, [194] = {.index = 319, .length = 4}, - [195] = {.index = 319, .length = 4}, - [196] = {.index = 323, .length = 2}, - [197] = {.index = 325, .length = 3}, - [198] = {.index = 328, .length = 2}, - [199] = {.index = 330, .length = 2}, - [200] = {.index = 106, .length = 2}, - [201] = {.index = 332, .length = 3}, - [202] = {.index = 335, .length = 3}, - [203] = {.index = 338, .length = 4}, - [204] = {.index = 335, .length = 3}, - [205] = {.index = 338, .length = 4}, - [206] = {.index = 332, .length = 3}, - [207] = {.index = 342, .length = 4}, - [208] = {.index = 346, .length = 4}, - [209] = {.index = 350, .length = 3}, - [210] = {.index = 353, .length = 4}, - [211] = {.index = 357, .length = 3}, - [212] = {.index = 360, .length = 3}, - [213] = {.index = 363, .length = 3}, - [214] = {.index = 366, .length = 4}, - [215] = {.index = 370, .length = 2}, - [216] = {.index = 372, .length = 3}, - [217] = {.index = 375, .length = 4}, - [218] = {.index = 379, .length = 3}, - [219] = {.index = 382, .length = 3}, - [220] = {.index = 385, .length = 3}, - [221] = {.index = 388, .length = 5}, - [222] = {.index = 393, .length = 2}, - [223] = {.index = 395, .length = 3}, - [224] = {.index = 398, .length = 3}, - [225] = {.index = 401, .length = 2}, + [195] = {.index = 323, .length = 2}, + [196] = {.index = 325, .length = 3}, + [197] = {.index = 328, .length = 2}, + [198] = {.index = 330, .length = 2}, + [199] = {.index = 106, .length = 2}, + [200] = {.index = 332, .length = 3}, + [201] = {.index = 335, .length = 3}, + [202] = {.index = 338, .length = 4}, + [203] = {.index = 335, .length = 3}, + [204] = {.index = 338, .length = 4}, + [205] = {.index = 332, .length = 3}, + [206] = {.index = 342, .length = 4}, + [207] = {.index = 346, .length = 4}, + [208] = {.index = 350, .length = 3}, + [209] = {.index = 353, .length = 4}, + [210] = {.index = 357, .length = 3}, + [211] = {.index = 360, .length = 3}, + [212] = {.index = 363, .length = 3}, + [213] = {.index = 366, .length = 4}, + [214] = {.index = 370, .length = 2}, + [215] = {.index = 372, .length = 3}, + [216] = {.index = 375, .length = 4}, + [217] = {.index = 379, .length = 3}, + [218] = {.index = 382, .length = 3}, + [219] = {.index = 385, .length = 3}, + [220] = {.index = 388, .length = 5}, + [221] = {.index = 393, .length = 2}, + [222] = {.index = 395, .length = 3}, + [223] = {.index = 398, .length = 3}, + [224] = {.index = 401, .length = 2}, + [225] = {.index = 403, .length = 4}, [226] = {.index = 403, .length = 4}, - [227] = {.index = 403, .length = 4}, - [228] = {.index = 407, .length = 4}, - [229] = {.index = 411, .length = 5}, - [230] = {.index = 416, .length = 4}, - [231] = {.index = 420, .length = 2}, - [232] = {.index = 422, .length = 4}, - [233] = {.index = 426, .length = 4}, - [234] = {.index = 430, .length = 3}, - [235] = {.index = 433, .length = 4}, - [236] = {.index = 437, .length = 3}, - [237] = {.index = 440, .length = 3}, - [238] = {.index = 443, .length = 5}, - [239] = {.index = 448, .length = 4}, - [240] = {.index = 452, .length = 5}, - [241] = {.index = 457, .length = 4}, - [242] = {.index = 461, .length = 3}, - [243] = {.index = 464, .length = 5}, + [227] = {.index = 407, .length = 4}, + [228] = {.index = 411, .length = 5}, + [229] = {.index = 416, .length = 4}, + [230] = {.index = 420, .length = 2}, + [231] = {.index = 422, .length = 4}, + [232] = {.index = 426, .length = 4}, + [233] = {.index = 430, .length = 3}, + [234] = {.index = 433, .length = 4}, + [235] = {.index = 437, .length = 3}, + [236] = {.index = 440, .length = 3}, + [237] = {.index = 443, .length = 5}, + [238] = {.index = 448, .length = 4}, + [239] = {.index = 452, .length = 5}, + [240] = {.index = 457, .length = 4}, + [241] = {.index = 461, .length = 3}, + [242] = {.index = 464, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3611,7 +3611,6 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE }, [13] = { [0] = sym_identifier, - [2] = sym_token_tree, }, [14] = { [1] = alias_sym_type_identifier, @@ -3625,9 +3624,6 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [22] = { [0] = alias_sym_type_identifier, }, - [33] = { - [2] = sym_token_tree, - }, [35] = { [2] = alias_sym_type_identifier, }, @@ -3647,85 +3643,85 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [47] = { [1] = sym_identifier, }, - [48] = { - [0] = sym_token_tree, - }, - [50] = { + [49] = { [1] = alias_sym_type_identifier, }, - [51] = { + [50] = { [1] = alias_sym_type_identifier, }, - [54] = { + [53] = { [0] = sym_identifier, [2] = sym_identifier, }, - [56] = { + [55] = { [0] = alias_sym_type_identifier, }, - [57] = { + [56] = { [0] = alias_sym_shorthand_field_identifier, }, - [58] = { + [57] = { [2] = sym_identifier, }, - [62] = { + [61] = { [1] = alias_sym_type_identifier, }, - [63] = { + [62] = { [0] = alias_sym_type_identifier, }, - [69] = { + [68] = { [1] = alias_sym_type_identifier, }, - [72] = { + [71] = { [1] = alias_sym_type_identifier, }, - [73] = { + [72] = { [1] = alias_sym_type_identifier, }, - [74] = { + [73] = { [1] = alias_sym_type_identifier, }, - [76] = { + [75] = { [2] = alias_sym_type_identifier, }, - [77] = { + [76] = { [0] = sym_identifier, }, - [78] = { + [77] = { [0] = sym_identifier, }, - [81] = { + [80] = { [0] = sym_identifier, }, - [85] = { + [84] = { [0] = sym_identifier, }, - [88] = { + [87] = { [2] = alias_sym_type_identifier, }, - [94] = { + [93] = { [1] = alias_sym_type_identifier, }, - [98] = { + [97] = { [1] = alias_sym_shorthand_field_identifier, }, - [101] = { + [100] = { [0] = alias_sym_type_identifier, }, - [104] = { + [103] = { [1] = alias_sym_type_identifier, }, - [105] = { + [104] = { [1] = alias_sym_type_identifier, }, - [106] = { + [105] = { [0] = alias_sym_type_identifier, }, - [114] = { + [113] = { [3] = sym_identifier, }, + [114] = { + [1] = alias_sym_type_identifier, + }, [115] = { [1] = alias_sym_type_identifier, }, @@ -3735,8 +3731,8 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [117] = { [1] = alias_sym_type_identifier, }, - [118] = { - [1] = alias_sym_type_identifier, + [121] = { + [2] = alias_sym_type_identifier, }, [122] = { [2] = alias_sym_type_identifier, @@ -3745,57 +3741,57 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = alias_sym_type_identifier, }, [124] = { - [2] = alias_sym_type_identifier, - }, - [125] = { [0] = sym_identifier, }, - [126] = { + [125] = { [1] = sym_identifier, }, - [128] = { + [127] = { [0] = alias_sym_field_identifier, }, - [131] = { + [130] = { [2] = alias_sym_type_identifier, }, - [132] = { + [131] = { [3] = alias_sym_type_identifier, }, - [140] = { + [139] = { [2] = alias_sym_shorthand_field_identifier, }, - [141] = { + [140] = { [0] = alias_sym_field_identifier, }, - [142] = { + [141] = { [0] = alias_sym_type_identifier, }, - [145] = { + [144] = { [1] = alias_sym_type_identifier, }, - [147] = { + [146] = { [2] = alias_sym_type_identifier, }, - [148] = { + [147] = { [2] = alias_sym_type_identifier, }, - [151] = { + [150] = { [1] = alias_sym_type_identifier, }, - [161] = { + [160] = { [0] = alias_sym_field_identifier, }, + [161] = { + [1] = alias_sym_type_identifier, + }, [162] = { [1] = alias_sym_type_identifier, }, [163] = { - [1] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [164] = { [2] = alias_sym_type_identifier, }, - [165] = { + [168] = { [2] = alias_sym_type_identifier, }, [169] = { @@ -3804,67 +3800,64 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [170] = { [2] = alias_sym_type_identifier, }, - [171] = { - [2] = alias_sym_type_identifier, - }, - [174] = { + [173] = { [1] = alias_sym_field_identifier, }, - [178] = { + [177] = { [2] = alias_sym_type_identifier, }, - [179] = { + [178] = { [3] = alias_sym_type_identifier, }, - [180] = { + [179] = { [3] = alias_sym_type_identifier, }, - [181] = { + [180] = { [3] = alias_sym_type_identifier, }, - [191] = { + [190] = { [1] = alias_sym_field_identifier, }, - [192] = { + [191] = { [0] = alias_sym_type_identifier, }, - [194] = { + [193] = { [2] = alias_sym_type_identifier, }, - [200] = { + [199] = { [1] = alias_sym_field_identifier, }, - [201] = { + [200] = { [2] = alias_sym_type_identifier, }, - [202] = { + [201] = { [3] = alias_sym_type_identifier, }, - [203] = { + [202] = { [3] = alias_sym_type_identifier, }, - [207] = { + [206] = { [2] = alias_sym_type_identifier, }, - [211] = { + [210] = { [2] = alias_sym_type_identifier, }, - [212] = { + [211] = { [3] = alias_sym_type_identifier, }, - [213] = { + [212] = { [3] = alias_sym_type_identifier, }, - [214] = { + [213] = { [3] = alias_sym_type_identifier, }, - [222] = { + [221] = { [2] = alias_sym_field_identifier, }, - [226] = { + [225] = { [3] = alias_sym_type_identifier, }, - [232] = { + [231] = { [3] = alias_sym_type_identifier, }, }; @@ -3873,9 +3866,6 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym_generic_type_with_turbofish, 2, sym_generic_type_with_turbofish, sym_generic_type, - sym_delim_token_tree, 2, - sym_delim_token_tree, - sym_token_tree, 0, }; @@ -13408,47 +13398,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [42] = {.lex_state = 5, .external_lex_state = 2}, [43] = {.lex_state = 5, .external_lex_state = 2}, [44] = {.lex_state = 5, .external_lex_state = 2}, - [45] = {.lex_state = 5, .external_lex_state = 2}, + [45] = {.lex_state = 57, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, - [47] = {.lex_state = 57, .external_lex_state = 2}, - [48] = {.lex_state = 57, .external_lex_state = 2}, - [49] = {.lex_state = 5, .external_lex_state = 2}, + [47] = {.lex_state = 5, .external_lex_state = 2}, + [48] = {.lex_state = 5, .external_lex_state = 2}, + [49] = {.lex_state = 57, .external_lex_state = 2}, [50] = {.lex_state = 5, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, [52] = {.lex_state = 5, .external_lex_state = 2}, [53] = {.lex_state = 5, .external_lex_state = 2}, - [54] = {.lex_state = 5, .external_lex_state = 2}, + [54] = {.lex_state = 57, .external_lex_state = 2}, [55] = {.lex_state = 5, .external_lex_state = 2}, [56] = {.lex_state = 5, .external_lex_state = 2}, - [57] = {.lex_state = 57, .external_lex_state = 2}, + [57] = {.lex_state = 5, .external_lex_state = 2}, [58] = {.lex_state = 5, .external_lex_state = 2}, [59] = {.lex_state = 5, .external_lex_state = 2}, [60] = {.lex_state = 5, .external_lex_state = 2}, - [61] = {.lex_state = 57, .external_lex_state = 2}, - [62] = {.lex_state = 5, .external_lex_state = 2}, + [61] = {.lex_state = 5, .external_lex_state = 2}, + [62] = {.lex_state = 57, .external_lex_state = 2}, [63] = {.lex_state = 5, .external_lex_state = 2}, [64] = {.lex_state = 5, .external_lex_state = 2}, [65] = {.lex_state = 5, .external_lex_state = 2}, [66] = {.lex_state = 5, .external_lex_state = 2}, [67] = {.lex_state = 5, .external_lex_state = 2}, - [68] = {.lex_state = 5, .external_lex_state = 2}, - [69] = {.lex_state = 57, .external_lex_state = 2}, + [68] = {.lex_state = 57, .external_lex_state = 2}, + [69] = {.lex_state = 5, .external_lex_state = 2}, [70] = {.lex_state = 5, .external_lex_state = 2}, [71] = {.lex_state = 5, .external_lex_state = 2}, - [72] = {.lex_state = 5, .external_lex_state = 2}, + [72] = {.lex_state = 57, .external_lex_state = 2}, [73] = {.lex_state = 5, .external_lex_state = 2}, [74] = {.lex_state = 5, .external_lex_state = 2}, - [75] = {.lex_state = 57, .external_lex_state = 2}, - [76] = {.lex_state = 57, .external_lex_state = 2}, + [75] = {.lex_state = 5, .external_lex_state = 2}, + [76] = {.lex_state = 5, .external_lex_state = 2}, [77] = {.lex_state = 5, .external_lex_state = 2}, - [78] = {.lex_state = 57, .external_lex_state = 2}, - [79] = {.lex_state = 57, .external_lex_state = 2}, + [78] = {.lex_state = 5, .external_lex_state = 2}, + [79] = {.lex_state = 5, .external_lex_state = 2}, [80] = {.lex_state = 5, .external_lex_state = 2}, [81] = {.lex_state = 5, .external_lex_state = 2}, [82] = {.lex_state = 5, .external_lex_state = 2}, - [83] = {.lex_state = 5, .external_lex_state = 2}, + [83] = {.lex_state = 57, .external_lex_state = 2}, [84] = {.lex_state = 57, .external_lex_state = 2}, - [85] = {.lex_state = 5, .external_lex_state = 2}, + [85] = {.lex_state = 57, .external_lex_state = 2}, [86] = {.lex_state = 57, .external_lex_state = 2}, [87] = {.lex_state = 5, .external_lex_state = 2}, [88] = {.lex_state = 5, .external_lex_state = 2}, @@ -13458,20 +13448,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [92] = {.lex_state = 57, .external_lex_state = 2}, [93] = {.lex_state = 5, .external_lex_state = 2}, [94] = {.lex_state = 5, .external_lex_state = 2}, - [95] = {.lex_state = 57, .external_lex_state = 2}, + [95] = {.lex_state = 5, .external_lex_state = 2}, [96] = {.lex_state = 5, .external_lex_state = 2}, [97] = {.lex_state = 5, .external_lex_state = 2}, - [98] = {.lex_state = 57, .external_lex_state = 2}, - [99] = {.lex_state = 57, .external_lex_state = 2}, - [100] = {.lex_state = 5, .external_lex_state = 2}, + [98] = {.lex_state = 5, .external_lex_state = 2}, + [99] = {.lex_state = 5, .external_lex_state = 2}, + [100] = {.lex_state = 57, .external_lex_state = 2}, [101] = {.lex_state = 57, .external_lex_state = 2}, - [102] = {.lex_state = 5, .external_lex_state = 2}, + [102] = {.lex_state = 57, .external_lex_state = 2}, [103] = {.lex_state = 5, .external_lex_state = 2}, - [104] = {.lex_state = 5, .external_lex_state = 2}, + [104] = {.lex_state = 57, .external_lex_state = 2}, [105] = {.lex_state = 5, .external_lex_state = 2}, [106] = {.lex_state = 5, .external_lex_state = 2}, [107] = {.lex_state = 5, .external_lex_state = 2}, - [108] = {.lex_state = 5, .external_lex_state = 2}, + [108] = {.lex_state = 57, .external_lex_state = 2}, [109] = {.lex_state = 5, .external_lex_state = 2}, [110] = {.lex_state = 5, .external_lex_state = 2}, [111] = {.lex_state = 5, .external_lex_state = 2}, @@ -13479,21 +13469,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [113] = {.lex_state = 5, .external_lex_state = 2}, [114] = {.lex_state = 5, .external_lex_state = 2}, [115] = {.lex_state = 5, .external_lex_state = 2}, - [116] = {.lex_state = 5, .external_lex_state = 2}, + [116] = {.lex_state = 57, .external_lex_state = 2}, [117] = {.lex_state = 5, .external_lex_state = 2}, [118] = {.lex_state = 5, .external_lex_state = 2}, [119] = {.lex_state = 5, .external_lex_state = 2}, [120] = {.lex_state = 5, .external_lex_state = 2}, - [121] = {.lex_state = 5, .external_lex_state = 2}, - [122] = {.lex_state = 57, .external_lex_state = 2}, + [121] = {.lex_state = 57, .external_lex_state = 2}, + [122] = {.lex_state = 5, .external_lex_state = 2}, [123] = {.lex_state = 57, .external_lex_state = 2}, [124] = {.lex_state = 5, .external_lex_state = 2}, - [125] = {.lex_state = 57, .external_lex_state = 2}, + [125] = {.lex_state = 5, .external_lex_state = 2}, [126] = {.lex_state = 5, .external_lex_state = 2}, [127] = {.lex_state = 5, .external_lex_state = 2}, [128] = {.lex_state = 5, .external_lex_state = 2}, [129] = {.lex_state = 5, .external_lex_state = 2}, - [130] = {.lex_state = 57, .external_lex_state = 2}, + [130] = {.lex_state = 5, .external_lex_state = 2}, [131] = {.lex_state = 5, .external_lex_state = 2}, [132] = {.lex_state = 5, .external_lex_state = 2}, [133] = {.lex_state = 5, .external_lex_state = 2}, @@ -13504,44 +13494,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [138] = {.lex_state = 5, .external_lex_state = 2}, [139] = {.lex_state = 5, .external_lex_state = 2}, [140] = {.lex_state = 5, .external_lex_state = 2}, - [141] = {.lex_state = 57, .external_lex_state = 2}, - [142] = {.lex_state = 57, .external_lex_state = 2}, - [143] = {.lex_state = 57, .external_lex_state = 2}, - [144] = {.lex_state = 5, .external_lex_state = 2}, + [141] = {.lex_state = 5, .external_lex_state = 2}, + [142] = {.lex_state = 5, .external_lex_state = 2}, + [143] = {.lex_state = 5, .external_lex_state = 2}, + [144] = {.lex_state = 57, .external_lex_state = 2}, [145] = {.lex_state = 5, .external_lex_state = 2}, - [146] = {.lex_state = 5, .external_lex_state = 2}, + [146] = {.lex_state = 57, .external_lex_state = 2}, [147] = {.lex_state = 5, .external_lex_state = 2}, [148] = {.lex_state = 5, .external_lex_state = 2}, [149] = {.lex_state = 57, .external_lex_state = 2}, [150] = {.lex_state = 5, .external_lex_state = 2}, - [151] = {.lex_state = 5, .external_lex_state = 2}, + [151] = {.lex_state = 57, .external_lex_state = 2}, [152] = {.lex_state = 5, .external_lex_state = 2}, [153] = {.lex_state = 5, .external_lex_state = 2}, [154] = {.lex_state = 5, .external_lex_state = 2}, [155] = {.lex_state = 5, .external_lex_state = 2}, [156] = {.lex_state = 5, .external_lex_state = 2}, - [157] = {.lex_state = 5, .external_lex_state = 2}, + [157] = {.lex_state = 57, .external_lex_state = 2}, [158] = {.lex_state = 5, .external_lex_state = 2}, - [159] = {.lex_state = 5, .external_lex_state = 2}, - [160] = {.lex_state = 57, .external_lex_state = 2}, - [161] = {.lex_state = 57, .external_lex_state = 2}, - [162] = {.lex_state = 57, .external_lex_state = 2}, + [159] = {.lex_state = 57, .external_lex_state = 2}, + [160] = {.lex_state = 5, .external_lex_state = 2}, + [161] = {.lex_state = 5, .external_lex_state = 2}, + [162] = {.lex_state = 5, .external_lex_state = 2}, [163] = {.lex_state = 57, .external_lex_state = 2}, [164] = {.lex_state = 5, .external_lex_state = 2}, - [165] = {.lex_state = 57, .external_lex_state = 2}, + [165] = {.lex_state = 5, .external_lex_state = 2}, [166] = {.lex_state = 5, .external_lex_state = 2}, [167] = {.lex_state = 5, .external_lex_state = 2}, [168] = {.lex_state = 5, .external_lex_state = 2}, - [169] = {.lex_state = 57, .external_lex_state = 2}, + [169] = {.lex_state = 5, .external_lex_state = 2}, [170] = {.lex_state = 5, .external_lex_state = 2}, - [171] = {.lex_state = 5, .external_lex_state = 2}, + [171] = {.lex_state = 57, .external_lex_state = 2}, [172] = {.lex_state = 5, .external_lex_state = 2}, [173] = {.lex_state = 5, .external_lex_state = 2}, - [174] = {.lex_state = 5, .external_lex_state = 2}, + [174] = {.lex_state = 57, .external_lex_state = 2}, [175] = {.lex_state = 5, .external_lex_state = 2}, [176] = {.lex_state = 5, .external_lex_state = 2}, [177] = {.lex_state = 5, .external_lex_state = 2}, - [178] = {.lex_state = 5, .external_lex_state = 2}, + [178] = {.lex_state = 57, .external_lex_state = 2}, [179] = {.lex_state = 5, .external_lex_state = 2}, [180] = {.lex_state = 5, .external_lex_state = 2}, [181] = {.lex_state = 5, .external_lex_state = 2}, @@ -13549,7 +13539,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [183] = {.lex_state = 5, .external_lex_state = 2}, [184] = {.lex_state = 5, .external_lex_state = 2}, [185] = {.lex_state = 5, .external_lex_state = 2}, - [186] = {.lex_state = 5, .external_lex_state = 2}, + [186] = {.lex_state = 57, .external_lex_state = 2}, [187] = {.lex_state = 5, .external_lex_state = 2}, [188] = {.lex_state = 57, .external_lex_state = 2}, [189] = {.lex_state = 6, .external_lex_state = 2}, @@ -13585,11 +13575,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [219] = {.lex_state = 5, .external_lex_state = 2}, [220] = {.lex_state = 4, .external_lex_state = 3}, [221] = {.lex_state = 4, .external_lex_state = 3}, - [222] = {.lex_state = 1, .external_lex_state = 2}, + [222] = {.lex_state = 4, .external_lex_state = 3}, [223] = {.lex_state = 1, .external_lex_state = 2}, [224] = {.lex_state = 4, .external_lex_state = 3}, [225] = {.lex_state = 4, .external_lex_state = 3}, - [226] = {.lex_state = 4, .external_lex_state = 3}, + [226] = {.lex_state = 1, .external_lex_state = 2}, [227] = {.lex_state = 4, .external_lex_state = 3}, [228] = {.lex_state = 4, .external_lex_state = 3}, [229] = {.lex_state = 1, .external_lex_state = 2}, @@ -13598,18 +13588,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [232] = {.lex_state = 1, .external_lex_state = 2}, [233] = {.lex_state = 1, .external_lex_state = 2}, [234] = {.lex_state = 1, .external_lex_state = 2}, - [235] = {.lex_state = 5, .external_lex_state = 2}, + [235] = {.lex_state = 1, .external_lex_state = 2}, [236] = {.lex_state = 5, .external_lex_state = 2}, [237] = {.lex_state = 1, .external_lex_state = 2}, [238] = {.lex_state = 1, .external_lex_state = 2}, [239] = {.lex_state = 1, .external_lex_state = 2}, [240] = {.lex_state = 1, .external_lex_state = 2}, - [241] = {.lex_state = 1, .external_lex_state = 2}, - [242] = {.lex_state = 5, .external_lex_state = 2}, + [241] = {.lex_state = 5, .external_lex_state = 2}, + [242] = {.lex_state = 1, .external_lex_state = 2}, [243] = {.lex_state = 1, .external_lex_state = 2}, [244] = {.lex_state = 1, .external_lex_state = 2}, - [245] = {.lex_state = 5, .external_lex_state = 2}, - [246] = {.lex_state = 1, .external_lex_state = 2}, + [245] = {.lex_state = 1, .external_lex_state = 2}, + [246] = {.lex_state = 5, .external_lex_state = 2}, [247] = {.lex_state = 1, .external_lex_state = 2}, [248] = {.lex_state = 1, .external_lex_state = 2}, [249] = {.lex_state = 1, .external_lex_state = 2}, @@ -13618,16 +13608,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [252] = {.lex_state = 1, .external_lex_state = 2}, [253] = {.lex_state = 1, .external_lex_state = 2}, [254] = {.lex_state = 1, .external_lex_state = 2}, - [255] = {.lex_state = 1, .external_lex_state = 2}, + [255] = {.lex_state = 5, .external_lex_state = 2}, [256] = {.lex_state = 1, .external_lex_state = 2}, [257] = {.lex_state = 5, .external_lex_state = 2}, [258] = {.lex_state = 5, .external_lex_state = 2}, [259] = {.lex_state = 5, .external_lex_state = 2}, [260] = {.lex_state = 14, .external_lex_state = 3}, [261] = {.lex_state = 14, .external_lex_state = 3}, - [262] = {.lex_state = 14, .external_lex_state = 3}, + [262] = {.lex_state = 11, .external_lex_state = 2}, [263] = {.lex_state = 14, .external_lex_state = 3}, - [264] = {.lex_state = 11, .external_lex_state = 2}, + [264] = {.lex_state = 14, .external_lex_state = 3}, [265] = {.lex_state = 14, .external_lex_state = 3}, [266] = {.lex_state = 58, .external_lex_state = 2}, [267] = {.lex_state = 58, .external_lex_state = 2}, @@ -13636,7 +13626,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [270] = {.lex_state = 58, .external_lex_state = 2}, [271] = {.lex_state = 58, .external_lex_state = 2}, [272] = {.lex_state = 58, .external_lex_state = 2}, - [273] = {.lex_state = 5, .external_lex_state = 2}, + [273] = {.lex_state = 58, .external_lex_state = 2}, [274] = {.lex_state = 58, .external_lex_state = 2}, [275] = {.lex_state = 58, .external_lex_state = 2}, [276] = {.lex_state = 58, .external_lex_state = 2}, @@ -13744,7 +13734,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [378] = {.lex_state = 58, .external_lex_state = 2}, [379] = {.lex_state = 58, .external_lex_state = 2}, [380] = {.lex_state = 58, .external_lex_state = 2}, - [381] = {.lex_state = 5, .external_lex_state = 2}, + [381] = {.lex_state = 58, .external_lex_state = 2}, [382] = {.lex_state = 58, .external_lex_state = 2}, [383] = {.lex_state = 58, .external_lex_state = 2}, [384] = {.lex_state = 58, .external_lex_state = 2}, @@ -13801,7 +13791,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [435] = {.lex_state = 58, .external_lex_state = 2}, [436] = {.lex_state = 58, .external_lex_state = 2}, [437] = {.lex_state = 58, .external_lex_state = 2}, - [438] = {.lex_state = 58, .external_lex_state = 2}, + [438] = {.lex_state = 5, .external_lex_state = 2}, [439] = {.lex_state = 58, .external_lex_state = 2}, [440] = {.lex_state = 58, .external_lex_state = 2}, [441] = {.lex_state = 58, .external_lex_state = 2}, @@ -13835,7 +13825,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [469] = {.lex_state = 58, .external_lex_state = 2}, [470] = {.lex_state = 58, .external_lex_state = 2}, [471] = {.lex_state = 58, .external_lex_state = 2}, - [472] = {.lex_state = 58, .external_lex_state = 2}, + [472] = {.lex_state = 5, .external_lex_state = 2}, [473] = {.lex_state = 58, .external_lex_state = 2}, [474] = {.lex_state = 58, .external_lex_state = 2}, [475] = {.lex_state = 58, .external_lex_state = 2}, @@ -13860,17 +13850,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [494] = {.lex_state = 11, .external_lex_state = 2}, [495] = {.lex_state = 5, .external_lex_state = 2}, [496] = {.lex_state = 11, .external_lex_state = 2}, - [497] = {.lex_state = 11, .external_lex_state = 2}, + [497] = {.lex_state = 5, .external_lex_state = 2}, [498] = {.lex_state = 11, .external_lex_state = 2}, - [499] = {.lex_state = 5, .external_lex_state = 2}, + [499] = {.lex_state = 11, .external_lex_state = 2}, [500] = {.lex_state = 11, .external_lex_state = 2}, [501] = {.lex_state = 11, .external_lex_state = 2}, [502] = {.lex_state = 11, .external_lex_state = 2}, [503] = {.lex_state = 11, .external_lex_state = 2}, [504] = {.lex_state = 11, .external_lex_state = 2}, - [505] = {.lex_state = 11, .external_lex_state = 2}, + [505] = {.lex_state = 5, .external_lex_state = 2}, [506] = {.lex_state = 12, .external_lex_state = 2}, - [507] = {.lex_state = 5, .external_lex_state = 2}, + [507] = {.lex_state = 11, .external_lex_state = 2}, [508] = {.lex_state = 11, .external_lex_state = 2}, [509] = {.lex_state = 11, .external_lex_state = 2}, [510] = {.lex_state = 11, .external_lex_state = 2}, @@ -13882,18 +13872,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [516] = {.lex_state = 11, .external_lex_state = 2}, [517] = {.lex_state = 11, .external_lex_state = 2}, [518] = {.lex_state = 11, .external_lex_state = 2}, - [519] = {.lex_state = 11, .external_lex_state = 2}, - [520] = {.lex_state = 11, .external_lex_state = 2}, - [521] = {.lex_state = 12, .external_lex_state = 2}, - [522] = {.lex_state = 12, .external_lex_state = 2}, + [519] = {.lex_state = 12, .external_lex_state = 2}, + [520] = {.lex_state = 12, .external_lex_state = 2}, + [521] = {.lex_state = 11, .external_lex_state = 2}, + [522] = {.lex_state = 11, .external_lex_state = 2}, [523] = {.lex_state = 12, .external_lex_state = 2}, [524] = {.lex_state = 12, .external_lex_state = 2}, [525] = {.lex_state = 12, .external_lex_state = 2}, [526] = {.lex_state = 11, .external_lex_state = 2}, - [527] = {.lex_state = 11, .external_lex_state = 2}, - [528] = {.lex_state = 11, .external_lex_state = 2}, + [527] = {.lex_state = 12, .external_lex_state = 2}, + [528] = {.lex_state = 12, .external_lex_state = 2}, [529] = {.lex_state = 12, .external_lex_state = 2}, - [530] = {.lex_state = 12, .external_lex_state = 2}, + [530] = {.lex_state = 11, .external_lex_state = 2}, [531] = {.lex_state = 12, .external_lex_state = 2}, [532] = {.lex_state = 12, .external_lex_state = 2}, [533] = {.lex_state = 12, .external_lex_state = 2}, @@ -13902,24 +13892,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [536] = {.lex_state = 12, .external_lex_state = 2}, [537] = {.lex_state = 12, .external_lex_state = 2}, [538] = {.lex_state = 11, .external_lex_state = 2}, - [539] = {.lex_state = 12, .external_lex_state = 2}, + [539] = {.lex_state = 11, .external_lex_state = 2}, [540] = {.lex_state = 12, .external_lex_state = 2}, - [541] = {.lex_state = 11, .external_lex_state = 2}, + [541] = {.lex_state = 12, .external_lex_state = 2}, [542] = {.lex_state = 12, .external_lex_state = 2}, [543] = {.lex_state = 12, .external_lex_state = 2}, [544] = {.lex_state = 11, .external_lex_state = 2}, [545] = {.lex_state = 12, .external_lex_state = 2}, [546] = {.lex_state = 12, .external_lex_state = 2}, [547] = {.lex_state = 12, .external_lex_state = 2}, - [548] = {.lex_state = 12, .external_lex_state = 2}, + [548] = {.lex_state = 11, .external_lex_state = 2}, [549] = {.lex_state = 12, .external_lex_state = 2}, - [550] = {.lex_state = 11, .external_lex_state = 2}, + [550] = {.lex_state = 12, .external_lex_state = 2}, [551] = {.lex_state = 11, .external_lex_state = 2}, [552] = {.lex_state = 11, .external_lex_state = 2}, [553] = {.lex_state = 12, .external_lex_state = 2}, [554] = {.lex_state = 12, .external_lex_state = 2}, [555] = {.lex_state = 12, .external_lex_state = 2}, - [556] = {.lex_state = 12, .external_lex_state = 2}, + [556] = {.lex_state = 11, .external_lex_state = 2}, [557] = {.lex_state = 12, .external_lex_state = 2}, [558] = {.lex_state = 5, .external_lex_state = 2}, [559] = {.lex_state = 4, .external_lex_state = 3}, @@ -13931,84 +13921,84 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [565] = {.lex_state = 4, .external_lex_state = 3}, [566] = {.lex_state = 4, .external_lex_state = 3}, [567] = {.lex_state = 4, .external_lex_state = 3}, - [568] = {.lex_state = 4, .external_lex_state = 3}, - [569] = {.lex_state = 10, .external_lex_state = 2}, + [568] = {.lex_state = 10, .external_lex_state = 2}, + [569] = {.lex_state = 4, .external_lex_state = 3}, [570] = {.lex_state = 4, .external_lex_state = 3}, - [571] = {.lex_state = 5, .external_lex_state = 2}, + [571] = {.lex_state = 11, .external_lex_state = 2}, [572] = {.lex_state = 11, .external_lex_state = 2}, [573] = {.lex_state = 11, .external_lex_state = 2}, - [574] = {.lex_state = 11, .external_lex_state = 2}, + [574] = {.lex_state = 5, .external_lex_state = 2}, [575] = {.lex_state = 11, .external_lex_state = 2}, [576] = {.lex_state = 11, .external_lex_state = 2}, - [577] = {.lex_state = 11, .external_lex_state = 2}, - [578] = {.lex_state = 11, .external_lex_state = 2}, - [579] = {.lex_state = 11, .external_lex_state = 2}, + [577] = {.lex_state = 5, .external_lex_state = 2}, + [578] = {.lex_state = 4, .external_lex_state = 3}, + [579] = {.lex_state = 5, .external_lex_state = 2}, [580] = {.lex_state = 11, .external_lex_state = 2}, [581] = {.lex_state = 11, .external_lex_state = 2}, [582] = {.lex_state = 11, .external_lex_state = 2}, - [583] = {.lex_state = 4, .external_lex_state = 3}, + [583] = {.lex_state = 5, .external_lex_state = 2}, [584] = {.lex_state = 11, .external_lex_state = 2}, - [585] = {.lex_state = 5, .external_lex_state = 2}, - [586] = {.lex_state = 5, .external_lex_state = 2}, + [585] = {.lex_state = 11, .external_lex_state = 2}, + [586] = {.lex_state = 11, .external_lex_state = 2}, [587] = {.lex_state = 11, .external_lex_state = 2}, [588] = {.lex_state = 11, .external_lex_state = 2}, [589] = {.lex_state = 11, .external_lex_state = 2}, [590] = {.lex_state = 11, .external_lex_state = 2}, - [591] = {.lex_state = 5, .external_lex_state = 2}, + [591] = {.lex_state = 11, .external_lex_state = 2}, [592] = {.lex_state = 12, .external_lex_state = 2}, - [593] = {.lex_state = 5, .external_lex_state = 2}, - [594] = {.lex_state = 5, .external_lex_state = 2}, - [595] = {.lex_state = 12, .external_lex_state = 2}, - [596] = {.lex_state = 4, .external_lex_state = 3}, - [597] = {.lex_state = 12, .external_lex_state = 2}, - [598] = {.lex_state = 5, .external_lex_state = 2}, + [593] = {.lex_state = 12, .external_lex_state = 2}, + [594] = {.lex_state = 4, .external_lex_state = 3}, + [595] = {.lex_state = 4, .external_lex_state = 3}, + [596] = {.lex_state = 5, .external_lex_state = 2}, + [597] = {.lex_state = 5, .external_lex_state = 2}, + [598] = {.lex_state = 12, .external_lex_state = 2}, [599] = {.lex_state = 5, .external_lex_state = 2}, - [600] = {.lex_state = 12, .external_lex_state = 2}, - [601] = {.lex_state = 5, .external_lex_state = 2}, - [602] = {.lex_state = 4, .external_lex_state = 3}, - [603] = {.lex_state = 12, .external_lex_state = 2}, - [604] = {.lex_state = 5, .external_lex_state = 2}, - [605] = {.lex_state = 5, .external_lex_state = 2}, + [600] = {.lex_state = 5, .external_lex_state = 2}, + [601] = {.lex_state = 12, .external_lex_state = 2}, + [602] = {.lex_state = 5, .external_lex_state = 2}, + [603] = {.lex_state = 4, .external_lex_state = 3}, + [604] = {.lex_state = 12, .external_lex_state = 2}, + [605] = {.lex_state = 12, .external_lex_state = 2}, [606] = {.lex_state = 4, .external_lex_state = 3}, - [607] = {.lex_state = 12, .external_lex_state = 2}, - [608] = {.lex_state = 12, .external_lex_state = 2}, - [609] = {.lex_state = 4, .external_lex_state = 3}, + [607] = {.lex_state = 5, .external_lex_state = 2}, + [608] = {.lex_state = 5, .external_lex_state = 2}, + [609] = {.lex_state = 5, .external_lex_state = 2}, [610] = {.lex_state = 5, .external_lex_state = 2}, - [611] = {.lex_state = 4, .external_lex_state = 3}, + [611] = {.lex_state = 5, .external_lex_state = 2}, [612] = {.lex_state = 5, .external_lex_state = 2}, [613] = {.lex_state = 5, .external_lex_state = 2}, - [614] = {.lex_state = 4, .external_lex_state = 3}, + [614] = {.lex_state = 5, .external_lex_state = 2}, [615] = {.lex_state = 5, .external_lex_state = 2}, - [616] = {.lex_state = 5, .external_lex_state = 2}, + [616] = {.lex_state = 4, .external_lex_state = 3}, [617] = {.lex_state = 5, .external_lex_state = 2}, [618] = {.lex_state = 5, .external_lex_state = 2}, [619] = {.lex_state = 5, .external_lex_state = 2}, - [620] = {.lex_state = 5, .external_lex_state = 2}, + [620] = {.lex_state = 4, .external_lex_state = 3}, [621] = {.lex_state = 5, .external_lex_state = 2}, [622] = {.lex_state = 5, .external_lex_state = 2}, [623] = {.lex_state = 5, .external_lex_state = 2}, [624] = {.lex_state = 5, .external_lex_state = 2}, - [625] = {.lex_state = 5, .external_lex_state = 2}, + [625] = {.lex_state = 4, .external_lex_state = 3}, [626] = {.lex_state = 5, .external_lex_state = 2}, [627] = {.lex_state = 5, .external_lex_state = 2}, [628] = {.lex_state = 5, .external_lex_state = 2}, [629] = {.lex_state = 5, .external_lex_state = 2}, [630] = {.lex_state = 5, .external_lex_state = 2}, - [631] = {.lex_state = 4, .external_lex_state = 3}, + [631] = {.lex_state = 5, .external_lex_state = 2}, [632] = {.lex_state = 5, .external_lex_state = 2}, [633] = {.lex_state = 5, .external_lex_state = 2}, [634] = {.lex_state = 5, .external_lex_state = 2}, - [635] = {.lex_state = 4, .external_lex_state = 3}, + [635] = {.lex_state = 5, .external_lex_state = 2}, [636] = {.lex_state = 5, .external_lex_state = 2}, [637] = {.lex_state = 5, .external_lex_state = 2}, [638] = {.lex_state = 5, .external_lex_state = 2}, - [639] = {.lex_state = 5, .external_lex_state = 2}, + [639] = {.lex_state = 4, .external_lex_state = 3}, [640] = {.lex_state = 5, .external_lex_state = 2}, [641] = {.lex_state = 5, .external_lex_state = 2}, [642] = {.lex_state = 5, .external_lex_state = 2}, [643] = {.lex_state = 5, .external_lex_state = 2}, [644] = {.lex_state = 5, .external_lex_state = 2}, - [645] = {.lex_state = 5, .external_lex_state = 2}, + [645] = {.lex_state = 4, .external_lex_state = 3}, [646] = {.lex_state = 4, .external_lex_state = 3}, [647] = {.lex_state = 4, .external_lex_state = 3}, [648] = {.lex_state = 4, .external_lex_state = 3}, @@ -14079,7 +14069,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [713] = {.lex_state = 4, .external_lex_state = 3}, [714] = {.lex_state = 4, .external_lex_state = 3}, [715] = {.lex_state = 4, .external_lex_state = 3}, - [716] = {.lex_state = 5, .external_lex_state = 2}, + [716] = {.lex_state = 4, .external_lex_state = 3}, [717] = {.lex_state = 4, .external_lex_state = 3}, [718] = {.lex_state = 4, .external_lex_state = 3}, [719] = {.lex_state = 4, .external_lex_state = 3}, @@ -14115,7 +14105,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [749] = {.lex_state = 4, .external_lex_state = 3}, [750] = {.lex_state = 4, .external_lex_state = 3}, [751] = {.lex_state = 4, .external_lex_state = 3}, - [752] = {.lex_state = 4, .external_lex_state = 3}, + [752] = {.lex_state = 5, .external_lex_state = 2}, [753] = {.lex_state = 4, .external_lex_state = 3}, [754] = {.lex_state = 4, .external_lex_state = 3}, [755] = {.lex_state = 4, .external_lex_state = 3}, @@ -14132,28 +14122,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [766] = {.lex_state = 4, .external_lex_state = 3}, [767] = {.lex_state = 4, .external_lex_state = 3}, [768] = {.lex_state = 4, .external_lex_state = 3}, - [769] = {.lex_state = 4, .external_lex_state = 3}, + [769] = {.lex_state = 5, .external_lex_state = 2}, [770] = {.lex_state = 5, .external_lex_state = 2}, [771] = {.lex_state = 5, .external_lex_state = 2}, [772] = {.lex_state = 5, .external_lex_state = 2}, - [773] = {.lex_state = 5, .external_lex_state = 2}, - [774] = {.lex_state = 6, .external_lex_state = 2}, + [773] = {.lex_state = 6, .external_lex_state = 2}, + [774] = {.lex_state = 3, .external_lex_state = 3}, [775] = {.lex_state = 3, .external_lex_state = 3}, [776] = {.lex_state = 3, .external_lex_state = 3}, - [777] = {.lex_state = 3, .external_lex_state = 3}, - [778] = {.lex_state = 14, .external_lex_state = 3}, - [779] = {.lex_state = 3, .external_lex_state = 3}, - [780] = {.lex_state = 3, .external_lex_state = 3}, - [781] = {.lex_state = 3, .external_lex_state = 3}, - [782] = {.lex_state = 3, .external_lex_state = 3}, - [783] = {.lex_state = 3, .external_lex_state = 3}, + [777] = {.lex_state = 14, .external_lex_state = 3}, + [778] = {.lex_state = 2, .external_lex_state = 3}, + [779] = {.lex_state = 14, .external_lex_state = 3}, + [780] = {.lex_state = 14, .external_lex_state = 3}, + [781] = {.lex_state = 14, .external_lex_state = 3}, + [782] = {.lex_state = 2, .external_lex_state = 3}, + [783] = {.lex_state = 14, .external_lex_state = 3}, [784] = {.lex_state = 3, .external_lex_state = 3}, [785] = {.lex_state = 3, .external_lex_state = 3}, - [786] = {.lex_state = 14, .external_lex_state = 3}, - [787] = {.lex_state = 14, .external_lex_state = 3}, - [788] = {.lex_state = 14, .external_lex_state = 3}, - [789] = {.lex_state = 2, .external_lex_state = 3}, - [790] = {.lex_state = 14, .external_lex_state = 3}, + [786] = {.lex_state = 3, .external_lex_state = 3}, + [787] = {.lex_state = 3, .external_lex_state = 3}, + [788] = {.lex_state = 3, .external_lex_state = 3}, + [789] = {.lex_state = 3, .external_lex_state = 3}, + [790] = {.lex_state = 3, .external_lex_state = 3}, [791] = {.lex_state = 2, .external_lex_state = 3}, [792] = {.lex_state = 2, .external_lex_state = 3}, [793] = {.lex_state = 2, .external_lex_state = 3}, @@ -14162,42 +14152,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [796] = {.lex_state = 2, .external_lex_state = 3}, [797] = {.lex_state = 2, .external_lex_state = 3}, [798] = {.lex_state = 2, .external_lex_state = 3}, - [799] = {.lex_state = 2, .external_lex_state = 3}, + [799] = {.lex_state = 14, .external_lex_state = 3}, [800] = {.lex_state = 14, .external_lex_state = 3}, [801] = {.lex_state = 14, .external_lex_state = 3}, - [802] = {.lex_state = 14, .external_lex_state = 3}, - [803] = {.lex_state = 14, .external_lex_state = 3}, + [802] = {.lex_state = 2, .external_lex_state = 3}, + [803] = {.lex_state = 2, .external_lex_state = 3}, [804] = {.lex_state = 2, .external_lex_state = 3}, - [805] = {.lex_state = 14, .external_lex_state = 3}, - [806] = {.lex_state = 14, .external_lex_state = 3}, - [807] = {.lex_state = 2, .external_lex_state = 3}, + [805] = {.lex_state = 2, .external_lex_state = 3}, + [806] = {.lex_state = 2, .external_lex_state = 3}, + [807] = {.lex_state = 14, .external_lex_state = 3}, [808] = {.lex_state = 14, .external_lex_state = 3}, [809] = {.lex_state = 2, .external_lex_state = 3}, - [810] = {.lex_state = 14, .external_lex_state = 3}, + [810] = {.lex_state = 2, .external_lex_state = 3}, [811] = {.lex_state = 14, .external_lex_state = 3}, - [812] = {.lex_state = 14, .external_lex_state = 3}, - [813] = {.lex_state = 14, .external_lex_state = 3}, - [814] = {.lex_state = 14, .external_lex_state = 3}, - [815] = {.lex_state = 14, .external_lex_state = 3}, - [816] = {.lex_state = 14, .external_lex_state = 3}, - [817] = {.lex_state = 14, .external_lex_state = 3}, - [818] = {.lex_state = 14, .external_lex_state = 3}, + [812] = {.lex_state = 2, .external_lex_state = 3}, + [813] = {.lex_state = 2, .external_lex_state = 3}, + [814] = {.lex_state = 2, .external_lex_state = 3}, + [815] = {.lex_state = 2, .external_lex_state = 3}, + [816] = {.lex_state = 2, .external_lex_state = 3}, + [817] = {.lex_state = 2, .external_lex_state = 3}, + [818] = {.lex_state = 2, .external_lex_state = 3}, [819] = {.lex_state = 14, .external_lex_state = 3}, [820] = {.lex_state = 14, .external_lex_state = 3}, - [821] = {.lex_state = 14, .external_lex_state = 3}, - [822] = {.lex_state = 14, .external_lex_state = 3}, + [821] = {.lex_state = 2, .external_lex_state = 3}, + [822] = {.lex_state = 2, .external_lex_state = 3}, [823] = {.lex_state = 14, .external_lex_state = 3}, [824] = {.lex_state = 14, .external_lex_state = 3}, [825] = {.lex_state = 14, .external_lex_state = 3}, [826] = {.lex_state = 14, .external_lex_state = 3}, - [827] = {.lex_state = 2, .external_lex_state = 3}, - [828] = {.lex_state = 2, .external_lex_state = 3}, + [827] = {.lex_state = 14, .external_lex_state = 3}, + [828] = {.lex_state = 14, .external_lex_state = 3}, [829] = {.lex_state = 14, .external_lex_state = 3}, [830] = {.lex_state = 14, .external_lex_state = 3}, [831] = {.lex_state = 14, .external_lex_state = 3}, [832] = {.lex_state = 14, .external_lex_state = 3}, [833] = {.lex_state = 14, .external_lex_state = 3}, - [834] = {.lex_state = 2, .external_lex_state = 3}, + [834] = {.lex_state = 14, .external_lex_state = 3}, [835] = {.lex_state = 14, .external_lex_state = 3}, [836] = {.lex_state = 14, .external_lex_state = 3}, [837] = {.lex_state = 14, .external_lex_state = 3}, @@ -14206,41 +14196,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [840] = {.lex_state = 14, .external_lex_state = 3}, [841] = {.lex_state = 14, .external_lex_state = 3}, [842] = {.lex_state = 14, .external_lex_state = 3}, - [843] = {.lex_state = 14, .external_lex_state = 3}, + [843] = {.lex_state = 2, .external_lex_state = 3}, [844] = {.lex_state = 14, .external_lex_state = 3}, [845] = {.lex_state = 14, .external_lex_state = 3}, - [846] = {.lex_state = 14, .external_lex_state = 3}, + [846] = {.lex_state = 2, .external_lex_state = 3}, [847] = {.lex_state = 14, .external_lex_state = 3}, [848] = {.lex_state = 14, .external_lex_state = 3}, [849] = {.lex_state = 14, .external_lex_state = 3}, - [850] = {.lex_state = 14, .external_lex_state = 3}, + [850] = {.lex_state = 2, .external_lex_state = 3}, [851] = {.lex_state = 14, .external_lex_state = 3}, [852] = {.lex_state = 14, .external_lex_state = 3}, - [853] = {.lex_state = 2, .external_lex_state = 3}, - [854] = {.lex_state = 14, .external_lex_state = 3}, - [855] = {.lex_state = 14, .external_lex_state = 3}, + [853] = {.lex_state = 3, .external_lex_state = 3}, + [854] = {.lex_state = 9, .external_lex_state = 3}, + [855] = {.lex_state = 2, .external_lex_state = 3}, [856] = {.lex_state = 14, .external_lex_state = 3}, [857] = {.lex_state = 14, .external_lex_state = 3}, [858] = {.lex_state = 14, .external_lex_state = 3}, [859] = {.lex_state = 14, .external_lex_state = 3}, - [860] = {.lex_state = 14, .external_lex_state = 3}, + [860] = {.lex_state = 2, .external_lex_state = 3}, [861] = {.lex_state = 14, .external_lex_state = 3}, [862] = {.lex_state = 14, .external_lex_state = 3}, [863] = {.lex_state = 14, .external_lex_state = 3}, [864] = {.lex_state = 14, .external_lex_state = 3}, - [865] = {.lex_state = 2, .external_lex_state = 3}, + [865] = {.lex_state = 14, .external_lex_state = 3}, [866] = {.lex_state = 14, .external_lex_state = 3}, [867] = {.lex_state = 14, .external_lex_state = 3}, [868] = {.lex_state = 14, .external_lex_state = 3}, [869] = {.lex_state = 14, .external_lex_state = 3}, [870] = {.lex_state = 14, .external_lex_state = 3}, - [871] = {.lex_state = 14, .external_lex_state = 3}, + [871] = {.lex_state = 2, .external_lex_state = 3}, [872] = {.lex_state = 14, .external_lex_state = 3}, [873] = {.lex_state = 14, .external_lex_state = 3}, [874] = {.lex_state = 14, .external_lex_state = 3}, [875] = {.lex_state = 14, .external_lex_state = 3}, [876] = {.lex_state = 14, .external_lex_state = 3}, - [877] = {.lex_state = 2, .external_lex_state = 3}, + [877] = {.lex_state = 14, .external_lex_state = 3}, [878] = {.lex_state = 14, .external_lex_state = 3}, [879] = {.lex_state = 14, .external_lex_state = 3}, [880] = {.lex_state = 14, .external_lex_state = 3}, @@ -14249,16 +14239,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [883] = {.lex_state = 14, .external_lex_state = 3}, [884] = {.lex_state = 14, .external_lex_state = 3}, [885] = {.lex_state = 14, .external_lex_state = 3}, - [886] = {.lex_state = 2, .external_lex_state = 3}, + [886] = {.lex_state = 14, .external_lex_state = 3}, [887] = {.lex_state = 14, .external_lex_state = 3}, - [888] = {.lex_state = 2, .external_lex_state = 3}, + [888] = {.lex_state = 14, .external_lex_state = 3}, [889] = {.lex_state = 14, .external_lex_state = 3}, [890] = {.lex_state = 14, .external_lex_state = 3}, [891] = {.lex_state = 14, .external_lex_state = 3}, [892] = {.lex_state = 14, .external_lex_state = 3}, [893] = {.lex_state = 14, .external_lex_state = 3}, [894] = {.lex_state = 14, .external_lex_state = 3}, - [895] = {.lex_state = 14, .external_lex_state = 3}, + [895] = {.lex_state = 2, .external_lex_state = 3}, [896] = {.lex_state = 14, .external_lex_state = 3}, [897] = {.lex_state = 14, .external_lex_state = 3}, [898] = {.lex_state = 14, .external_lex_state = 3}, @@ -14267,7 +14257,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [901] = {.lex_state = 14, .external_lex_state = 3}, [902] = {.lex_state = 14, .external_lex_state = 3}, [903] = {.lex_state = 14, .external_lex_state = 3}, - [904] = {.lex_state = 2, .external_lex_state = 3}, + [904] = {.lex_state = 14, .external_lex_state = 3}, [905] = {.lex_state = 14, .external_lex_state = 3}, [906] = {.lex_state = 14, .external_lex_state = 3}, [907] = {.lex_state = 14, .external_lex_state = 3}, @@ -14305,14 +14295,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [939] = {.lex_state = 14, .external_lex_state = 3}, [940] = {.lex_state = 14, .external_lex_state = 3}, [941] = {.lex_state = 14, .external_lex_state = 3}, - [942] = {.lex_state = 14, .external_lex_state = 3}, + [942] = {.lex_state = 2, .external_lex_state = 3}, [943] = {.lex_state = 14, .external_lex_state = 3}, [944] = {.lex_state = 14, .external_lex_state = 3}, [945] = {.lex_state = 14, .external_lex_state = 3}, [946] = {.lex_state = 14, .external_lex_state = 3}, - [947] = {.lex_state = 2, .external_lex_state = 3}, - [948] = {.lex_state = 14, .external_lex_state = 3}, - [949] = {.lex_state = 2, .external_lex_state = 3}, + [947] = {.lex_state = 14, .external_lex_state = 3}, + [948] = {.lex_state = 2, .external_lex_state = 3}, + [949] = {.lex_state = 14, .external_lex_state = 3}, [950] = {.lex_state = 14, .external_lex_state = 3}, [951] = {.lex_state = 14, .external_lex_state = 3}, [952] = {.lex_state = 14, .external_lex_state = 3}, @@ -14320,29 +14310,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [954] = {.lex_state = 14, .external_lex_state = 3}, [955] = {.lex_state = 14, .external_lex_state = 3}, [956] = {.lex_state = 14, .external_lex_state = 3}, - [957] = {.lex_state = 9, .external_lex_state = 3}, + [957] = {.lex_state = 14, .external_lex_state = 3}, [958] = {.lex_state = 14, .external_lex_state = 3}, [959] = {.lex_state = 14, .external_lex_state = 3}, [960] = {.lex_state = 14, .external_lex_state = 3}, [961] = {.lex_state = 14, .external_lex_state = 3}, [962] = {.lex_state = 14, .external_lex_state = 3}, [963] = {.lex_state = 14, .external_lex_state = 3}, - [964] = {.lex_state = 2, .external_lex_state = 3}, - [965] = {.lex_state = 2, .external_lex_state = 3}, + [964] = {.lex_state = 14, .external_lex_state = 3}, + [965] = {.lex_state = 14, .external_lex_state = 3}, [966] = {.lex_state = 14, .external_lex_state = 3}, [967] = {.lex_state = 14, .external_lex_state = 3}, [968] = {.lex_state = 14, .external_lex_state = 3}, [969] = {.lex_state = 14, .external_lex_state = 3}, [970] = {.lex_state = 14, .external_lex_state = 3}, [971] = {.lex_state = 14, .external_lex_state = 3}, - [972] = {.lex_state = 2, .external_lex_state = 3}, - [973] = {.lex_state = 2, .external_lex_state = 3}, + [972] = {.lex_state = 14, .external_lex_state = 3}, + [973] = {.lex_state = 14, .external_lex_state = 3}, [974] = {.lex_state = 14, .external_lex_state = 3}, [975] = {.lex_state = 14, .external_lex_state = 3}, [976] = {.lex_state = 14, .external_lex_state = 3}, [977] = {.lex_state = 14, .external_lex_state = 3}, [978] = {.lex_state = 14, .external_lex_state = 3}, - [979] = {.lex_state = 2, .external_lex_state = 3}, + [979] = {.lex_state = 14, .external_lex_state = 3}, [980] = {.lex_state = 14, .external_lex_state = 3}, [981] = {.lex_state = 14, .external_lex_state = 3}, [982] = {.lex_state = 14, .external_lex_state = 3}, @@ -14351,46 +14341,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [985] = {.lex_state = 14, .external_lex_state = 3}, [986] = {.lex_state = 14, .external_lex_state = 3}, [987] = {.lex_state = 14, .external_lex_state = 3}, - [988] = {.lex_state = 2, .external_lex_state = 3}, + [988] = {.lex_state = 14, .external_lex_state = 3}, [989] = {.lex_state = 14, .external_lex_state = 3}, [990] = {.lex_state = 14, .external_lex_state = 3}, [991] = {.lex_state = 14, .external_lex_state = 3}, [992] = {.lex_state = 14, .external_lex_state = 3}, - [993] = {.lex_state = 2, .external_lex_state = 3}, + [993] = {.lex_state = 14, .external_lex_state = 3}, [994] = {.lex_state = 14, .external_lex_state = 3}, [995] = {.lex_state = 14, .external_lex_state = 3}, - [996] = {.lex_state = 14, .external_lex_state = 3}, + [996] = {.lex_state = 2, .external_lex_state = 3}, [997] = {.lex_state = 14, .external_lex_state = 3}, [998] = {.lex_state = 14, .external_lex_state = 3}, [999] = {.lex_state = 14, .external_lex_state = 3}, - [1000] = {.lex_state = 2, .external_lex_state = 3}, - [1001] = {.lex_state = 2, .external_lex_state = 3}, - [1002] = {.lex_state = 2, .external_lex_state = 3}, - [1003] = {.lex_state = 2, .external_lex_state = 3}, + [1000] = {.lex_state = 14, .external_lex_state = 3}, + [1001] = {.lex_state = 14, .external_lex_state = 3}, + [1002] = {.lex_state = 14, .external_lex_state = 3}, + [1003] = {.lex_state = 14, .external_lex_state = 3}, [1004] = {.lex_state = 14, .external_lex_state = 3}, [1005] = {.lex_state = 14, .external_lex_state = 3}, [1006] = {.lex_state = 14, .external_lex_state = 3}, - [1007] = {.lex_state = 3, .external_lex_state = 3}, - [1008] = {.lex_state = 2, .external_lex_state = 3}, - [1009] = {.lex_state = 2, .external_lex_state = 3}, - [1010] = {.lex_state = 14, .external_lex_state = 3}, + [1007] = {.lex_state = 2, .external_lex_state = 3}, + [1008] = {.lex_state = 14, .external_lex_state = 3}, + [1009] = {.lex_state = 14, .external_lex_state = 3}, + [1010] = {.lex_state = 2, .external_lex_state = 3}, [1011] = {.lex_state = 14, .external_lex_state = 3}, [1012] = {.lex_state = 14, .external_lex_state = 3}, - [1013] = {.lex_state = 14, .external_lex_state = 3}, + [1013] = {.lex_state = 2, .external_lex_state = 3}, [1014] = {.lex_state = 14, .external_lex_state = 3}, - [1015] = {.lex_state = 14, .external_lex_state = 3}, + [1015] = {.lex_state = 2, .external_lex_state = 3}, [1016] = {.lex_state = 14, .external_lex_state = 3}, [1017] = {.lex_state = 14, .external_lex_state = 3}, [1018] = {.lex_state = 2, .external_lex_state = 3}, [1019] = {.lex_state = 14, .external_lex_state = 3}, [1020] = {.lex_state = 14, .external_lex_state = 3}, - [1021] = {.lex_state = 14, .external_lex_state = 3}, + [1021] = {.lex_state = 2, .external_lex_state = 3}, [1022] = {.lex_state = 14, .external_lex_state = 3}, - [1023] = {.lex_state = 14, .external_lex_state = 3}, + [1023] = {.lex_state = 2, .external_lex_state = 3}, [1024] = {.lex_state = 14, .external_lex_state = 3}, - [1025] = {.lex_state = 2, .external_lex_state = 3}, + [1025] = {.lex_state = 14, .external_lex_state = 3}, [1026] = {.lex_state = 14, .external_lex_state = 3}, - [1027] = {.lex_state = 2, .external_lex_state = 3}, + [1027] = {.lex_state = 14, .external_lex_state = 3}, [1028] = {.lex_state = 14, .external_lex_state = 3}, [1029] = {.lex_state = 14, .external_lex_state = 3}, [1030] = {.lex_state = 14, .external_lex_state = 3}, @@ -14400,7 +14390,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1034] = {.lex_state = 14, .external_lex_state = 3}, [1035] = {.lex_state = 14, .external_lex_state = 3}, [1036] = {.lex_state = 14, .external_lex_state = 3}, - [1037] = {.lex_state = 2, .external_lex_state = 3}, + [1037] = {.lex_state = 14, .external_lex_state = 3}, [1038] = {.lex_state = 14, .external_lex_state = 3}, [1039] = {.lex_state = 14, .external_lex_state = 3}, [1040] = {.lex_state = 14, .external_lex_state = 3}, @@ -14410,8 +14400,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1044] = {.lex_state = 14, .external_lex_state = 3}, [1045] = {.lex_state = 14, .external_lex_state = 3}, [1046] = {.lex_state = 14, .external_lex_state = 3}, - [1047] = {.lex_state = 2, .external_lex_state = 3}, - [1048] = {.lex_state = 2, .external_lex_state = 3}, + [1047] = {.lex_state = 14, .external_lex_state = 3}, + [1048] = {.lex_state = 14, .external_lex_state = 3}, [1049] = {.lex_state = 14, .external_lex_state = 3}, [1050] = {.lex_state = 14, .external_lex_state = 3}, [1051] = {.lex_state = 14, .external_lex_state = 3}, @@ -14420,11 +14410,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1054] = {.lex_state = 14, .external_lex_state = 3}, [1055] = {.lex_state = 14, .external_lex_state = 3}, [1056] = {.lex_state = 14, .external_lex_state = 3}, - [1057] = {.lex_state = 14, .external_lex_state = 3}, + [1057] = {.lex_state = 2, .external_lex_state = 3}, [1058] = {.lex_state = 2, .external_lex_state = 3}, [1059] = {.lex_state = 2, .external_lex_state = 3}, [1060] = {.lex_state = 2, .external_lex_state = 3}, - [1061] = {.lex_state = 2, .external_lex_state = 3}, + [1061] = {.lex_state = 5, .external_lex_state = 2}, [1062] = {.lex_state = 2, .external_lex_state = 3}, [1063] = {.lex_state = 2, .external_lex_state = 3}, [1064] = {.lex_state = 2, .external_lex_state = 3}, @@ -14444,12 +14434,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1078] = {.lex_state = 2, .external_lex_state = 3}, [1079] = {.lex_state = 2, .external_lex_state = 3}, [1080] = {.lex_state = 2, .external_lex_state = 3}, - [1081] = {.lex_state = 2, .external_lex_state = 3}, + [1081] = {.lex_state = 5, .external_lex_state = 2}, [1082] = {.lex_state = 2, .external_lex_state = 3}, [1083] = {.lex_state = 2, .external_lex_state = 3}, [1084] = {.lex_state = 2, .external_lex_state = 3}, - [1085] = {.lex_state = 5, .external_lex_state = 2}, - [1086] = {.lex_state = 4, .external_lex_state = 3}, + [1085] = {.lex_state = 4, .external_lex_state = 3}, + [1086] = {.lex_state = 2, .external_lex_state = 3}, [1087] = {.lex_state = 2, .external_lex_state = 3}, [1088] = {.lex_state = 2, .external_lex_state = 3}, [1089] = {.lex_state = 2, .external_lex_state = 3}, @@ -14467,8 +14457,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1101] = {.lex_state = 2, .external_lex_state = 3}, [1102] = {.lex_state = 2, .external_lex_state = 3}, [1103] = {.lex_state = 4, .external_lex_state = 3}, - [1104] = {.lex_state = 4, .external_lex_state = 3}, - [1105] = {.lex_state = 2, .external_lex_state = 3}, + [1104] = {.lex_state = 2, .external_lex_state = 3}, + [1105] = {.lex_state = 4, .external_lex_state = 3}, [1106] = {.lex_state = 2, .external_lex_state = 3}, [1107] = {.lex_state = 2, .external_lex_state = 3}, [1108] = {.lex_state = 2, .external_lex_state = 3}, @@ -14477,7 +14467,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1111] = {.lex_state = 2, .external_lex_state = 3}, [1112] = {.lex_state = 2, .external_lex_state = 3}, [1113] = {.lex_state = 2, .external_lex_state = 3}, - [1114] = {.lex_state = 4, .external_lex_state = 3}, + [1114] = {.lex_state = 2, .external_lex_state = 3}, [1115] = {.lex_state = 2, .external_lex_state = 3}, [1116] = {.lex_state = 2, .external_lex_state = 3}, [1117] = {.lex_state = 2, .external_lex_state = 3}, @@ -14494,7 +14484,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1128] = {.lex_state = 2, .external_lex_state = 3}, [1129] = {.lex_state = 2, .external_lex_state = 3}, [1130] = {.lex_state = 2, .external_lex_state = 3}, - [1131] = {.lex_state = 2, .external_lex_state = 3}, + [1131] = {.lex_state = 4, .external_lex_state = 3}, [1132] = {.lex_state = 2, .external_lex_state = 3}, [1133] = {.lex_state = 2, .external_lex_state = 3}, [1134] = {.lex_state = 2, .external_lex_state = 3}, @@ -14508,33 +14498,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1142] = {.lex_state = 2, .external_lex_state = 3}, [1143] = {.lex_state = 2, .external_lex_state = 3}, [1144] = {.lex_state = 2, .external_lex_state = 3}, - [1145] = {.lex_state = 2, .external_lex_state = 3}, + [1145] = {.lex_state = 4, .external_lex_state = 3}, [1146] = {.lex_state = 2, .external_lex_state = 3}, [1147] = {.lex_state = 4, .external_lex_state = 3}, - [1148] = {.lex_state = 2, .external_lex_state = 3}, - [1149] = {.lex_state = 5, .external_lex_state = 2}, + [1148] = {.lex_state = 4, .external_lex_state = 3}, + [1149] = {.lex_state = 2, .external_lex_state = 3}, [1150] = {.lex_state = 2, .external_lex_state = 3}, - [1151] = {.lex_state = 4, .external_lex_state = 3}, + [1151] = {.lex_state = 2, .external_lex_state = 3}, [1152] = {.lex_state = 4, .external_lex_state = 3}, - [1153] = {.lex_state = 2, .external_lex_state = 3}, - [1154] = {.lex_state = 4, .external_lex_state = 3}, - [1155] = {.lex_state = 4, .external_lex_state = 3}, + [1153] = {.lex_state = 4, .external_lex_state = 3}, + [1154] = {.lex_state = 2, .external_lex_state = 3}, + [1155] = {.lex_state = 2, .external_lex_state = 3}, [1156] = {.lex_state = 2, .external_lex_state = 3}, [1157] = {.lex_state = 2, .external_lex_state = 3}, [1158] = {.lex_state = 2, .external_lex_state = 3}, [1159] = {.lex_state = 2, .external_lex_state = 3}, - [1160] = {.lex_state = 2, .external_lex_state = 3}, + [1160] = {.lex_state = 5, .external_lex_state = 2}, [1161] = {.lex_state = 2, .external_lex_state = 3}, [1162] = {.lex_state = 2, .external_lex_state = 3}, - [1163] = {.lex_state = 2, .external_lex_state = 3}, + [1163] = {.lex_state = 5, .external_lex_state = 2}, [1164] = {.lex_state = 2, .external_lex_state = 3}, [1165] = {.lex_state = 2, .external_lex_state = 3}, - [1166] = {.lex_state = 5, .external_lex_state = 2}, + [1166] = {.lex_state = 2, .external_lex_state = 3}, [1167] = {.lex_state = 2, .external_lex_state = 3}, [1168] = {.lex_state = 2, .external_lex_state = 3}, [1169] = {.lex_state = 2, .external_lex_state = 3}, [1170] = {.lex_state = 2, .external_lex_state = 3}, - [1171] = {.lex_state = 5, .external_lex_state = 2}, + [1171] = {.lex_state = 2, .external_lex_state = 3}, [1172] = {.lex_state = 2, .external_lex_state = 3}, [1173] = {.lex_state = 2, .external_lex_state = 3}, [1174] = {.lex_state = 2, .external_lex_state = 3}, @@ -14546,42 +14536,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1180] = {.lex_state = 2, .external_lex_state = 3}, [1181] = {.lex_state = 4, .external_lex_state = 3}, [1182] = {.lex_state = 4, .external_lex_state = 3}, - [1183] = {.lex_state = 2, .external_lex_state = 3}, + [1183] = {.lex_state = 4, .external_lex_state = 3}, [1184] = {.lex_state = 4, .external_lex_state = 3}, [1185] = {.lex_state = 4, .external_lex_state = 3}, [1186] = {.lex_state = 4, .external_lex_state = 3}, [1187] = {.lex_state = 5, .external_lex_state = 2}, [1188] = {.lex_state = 4, .external_lex_state = 3}, [1189] = {.lex_state = 4, .external_lex_state = 3}, - [1190] = {.lex_state = 4, .external_lex_state = 3}, + [1190] = {.lex_state = 5, .external_lex_state = 2}, [1191] = {.lex_state = 2, .external_lex_state = 3}, [1192] = {.lex_state = 5, .external_lex_state = 2}, [1193] = {.lex_state = 5, .external_lex_state = 2}, [1194] = {.lex_state = 2, .external_lex_state = 3}, [1195] = {.lex_state = 5, .external_lex_state = 2}, - [1196] = {.lex_state = 5, .external_lex_state = 2}, + [1196] = {.lex_state = 2, .external_lex_state = 3}, [1197] = {.lex_state = 4, .external_lex_state = 3}, - [1198] = {.lex_state = 4, .external_lex_state = 3}, - [1199] = {.lex_state = 2, .external_lex_state = 3}, - [1200] = {.lex_state = 5, .external_lex_state = 2}, + [1198] = {.lex_state = 2, .external_lex_state = 3}, + [1199] = {.lex_state = 5, .external_lex_state = 2}, + [1200] = {.lex_state = 4, .external_lex_state = 3}, [1201] = {.lex_state = 4, .external_lex_state = 3}, - [1202] = {.lex_state = 4, .external_lex_state = 3}, + [1202] = {.lex_state = 2, .external_lex_state = 3}, [1203] = {.lex_state = 2, .external_lex_state = 3}, [1204] = {.lex_state = 2, .external_lex_state = 3}, - [1205] = {.lex_state = 2, .external_lex_state = 3}, + [1205] = {.lex_state = 4, .external_lex_state = 3}, [1206] = {.lex_state = 4, .external_lex_state = 3}, - [1207] = {.lex_state = 4, .external_lex_state = 3}, + [1207] = {.lex_state = 2, .external_lex_state = 3}, [1208] = {.lex_state = 2, .external_lex_state = 3}, - [1209] = {.lex_state = 2, .external_lex_state = 3}, + [1209] = {.lex_state = 4, .external_lex_state = 3}, [1210] = {.lex_state = 2, .external_lex_state = 3}, [1211] = {.lex_state = 4, .external_lex_state = 3}, [1212] = {.lex_state = 2, .external_lex_state = 3}, - [1213] = {.lex_state = 4, .external_lex_state = 3}, + [1213] = {.lex_state = 2, .external_lex_state = 3}, [1214] = {.lex_state = 2, .external_lex_state = 3}, [1215] = {.lex_state = 2, .external_lex_state = 3}, [1216] = {.lex_state = 4, .external_lex_state = 3}, [1217] = {.lex_state = 2, .external_lex_state = 3}, - [1218] = {.lex_state = 2, .external_lex_state = 3}, + [1218] = {.lex_state = 4, .external_lex_state = 3}, [1219] = {.lex_state = 2, .external_lex_state = 3}, [1220] = {.lex_state = 2, .external_lex_state = 3}, [1221] = {.lex_state = 2, .external_lex_state = 3}, @@ -14611,7 +14601,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1245] = {.lex_state = 2, .external_lex_state = 3}, [1246] = {.lex_state = 2, .external_lex_state = 3}, [1247] = {.lex_state = 2, .external_lex_state = 3}, - [1248] = {.lex_state = 2, .external_lex_state = 3}, + [1248] = {.lex_state = 4, .external_lex_state = 3}, [1249] = {.lex_state = 2, .external_lex_state = 3}, [1250] = {.lex_state = 2, .external_lex_state = 3}, [1251] = {.lex_state = 2, .external_lex_state = 3}, @@ -14645,7 +14635,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1279] = {.lex_state = 2, .external_lex_state = 3}, [1280] = {.lex_state = 2, .external_lex_state = 3}, [1281] = {.lex_state = 2, .external_lex_state = 3}, - [1282] = {.lex_state = 4, .external_lex_state = 3}, + [1282] = {.lex_state = 2, .external_lex_state = 3}, [1283] = {.lex_state = 2, .external_lex_state = 3}, [1284] = {.lex_state = 2, .external_lex_state = 3}, [1285] = {.lex_state = 2, .external_lex_state = 3}, @@ -14662,7 +14652,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1296] = {.lex_state = 2, .external_lex_state = 3}, [1297] = {.lex_state = 2, .external_lex_state = 3}, [1298] = {.lex_state = 2, .external_lex_state = 3}, - [1299] = {.lex_state = 4, .external_lex_state = 3}, + [1299] = {.lex_state = 2, .external_lex_state = 3}, [1300] = {.lex_state = 2, .external_lex_state = 3}, [1301] = {.lex_state = 2, .external_lex_state = 3}, [1302] = {.lex_state = 2, .external_lex_state = 3}, @@ -14674,13 +14664,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1308] = {.lex_state = 2, .external_lex_state = 3}, [1309] = {.lex_state = 2, .external_lex_state = 3}, [1310] = {.lex_state = 2, .external_lex_state = 3}, - [1311] = {.lex_state = 4, .external_lex_state = 3}, + [1311] = {.lex_state = 2, .external_lex_state = 3}, [1312] = {.lex_state = 2, .external_lex_state = 3}, [1313] = {.lex_state = 2, .external_lex_state = 3}, [1314] = {.lex_state = 2, .external_lex_state = 3}, [1315] = {.lex_state = 2, .external_lex_state = 3}, [1316] = {.lex_state = 2, .external_lex_state = 3}, - [1317] = {.lex_state = 2, .external_lex_state = 3}, + [1317] = {.lex_state = 4, .external_lex_state = 3}, [1318] = {.lex_state = 2, .external_lex_state = 3}, [1319] = {.lex_state = 2, .external_lex_state = 3}, [1320] = {.lex_state = 2, .external_lex_state = 3}, @@ -14688,7 +14678,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1322] = {.lex_state = 2, .external_lex_state = 3}, [1323] = {.lex_state = 2, .external_lex_state = 3}, [1324] = {.lex_state = 2, .external_lex_state = 3}, - [1325] = {.lex_state = 2, .external_lex_state = 3}, + [1325] = {.lex_state = 4, .external_lex_state = 3}, [1326] = {.lex_state = 2, .external_lex_state = 3}, [1327] = {.lex_state = 2, .external_lex_state = 3}, [1328] = {.lex_state = 2, .external_lex_state = 3}, @@ -14697,7 +14687,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1331] = {.lex_state = 2, .external_lex_state = 3}, [1332] = {.lex_state = 2, .external_lex_state = 3}, [1333] = {.lex_state = 2, .external_lex_state = 3}, - [1334] = {.lex_state = 2, .external_lex_state = 3}, + [1334] = {.lex_state = 4, .external_lex_state = 3}, [1335] = {.lex_state = 4, .external_lex_state = 3}, [1336] = {.lex_state = 4, .external_lex_state = 3}, [1337] = {.lex_state = 4, .external_lex_state = 3}, @@ -14707,9 +14697,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1341] = {.lex_state = 4, .external_lex_state = 3}, [1342] = {.lex_state = 4, .external_lex_state = 3}, [1343] = {.lex_state = 4, .external_lex_state = 3}, - [1344] = {.lex_state = 4, .external_lex_state = 3}, + [1344] = {.lex_state = 18, .external_lex_state = 3}, [1345] = {.lex_state = 18, .external_lex_state = 3}, - [1346] = {.lex_state = 18, .external_lex_state = 3}, + [1346] = {.lex_state = 8, .external_lex_state = 3}, [1347] = {.lex_state = 8, .external_lex_state = 3}, [1348] = {.lex_state = 8, .external_lex_state = 3}, [1349] = {.lex_state = 8, .external_lex_state = 3}, @@ -14721,52 +14711,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1355] = {.lex_state = 8, .external_lex_state = 3}, [1356] = {.lex_state = 8, .external_lex_state = 3}, [1357] = {.lex_state = 8, .external_lex_state = 3}, - [1358] = {.lex_state = 8, .external_lex_state = 3}, - [1359] = {.lex_state = 18, .external_lex_state = 3}, - [1360] = {.lex_state = 4, .external_lex_state = 3}, - [1361] = {.lex_state = 18, .external_lex_state = 3}, + [1358] = {.lex_state = 4, .external_lex_state = 3}, + [1359] = {.lex_state = 4, .external_lex_state = 3}, + [1360] = {.lex_state = 18, .external_lex_state = 3}, + [1361] = {.lex_state = 4, .external_lex_state = 3}, [1362] = {.lex_state = 4, .external_lex_state = 3}, - [1363] = {.lex_state = 4, .external_lex_state = 3}, + [1363] = {.lex_state = 18, .external_lex_state = 3}, [1364] = {.lex_state = 4, .external_lex_state = 3}, - [1365] = {.lex_state = 4, .external_lex_state = 3}, + [1365] = {.lex_state = 18, .external_lex_state = 3}, [1366] = {.lex_state = 18, .external_lex_state = 3}, [1367] = {.lex_state = 4, .external_lex_state = 3}, - [1368] = {.lex_state = 18, .external_lex_state = 3}, + [1368] = {.lex_state = 4, .external_lex_state = 3}, [1369] = {.lex_state = 4, .external_lex_state = 3}, - [1370] = {.lex_state = 4, .external_lex_state = 3}, - [1371] = {.lex_state = 8, .external_lex_state = 3}, - [1372] = {.lex_state = 18, .external_lex_state = 3}, - [1373] = {.lex_state = 4, .external_lex_state = 3}, + [1370] = {.lex_state = 8, .external_lex_state = 3}, + [1371] = {.lex_state = 4, .external_lex_state = 3}, + [1372] = {.lex_state = 4, .external_lex_state = 3}, + [1373] = {.lex_state = 8, .external_lex_state = 3}, [1374] = {.lex_state = 4, .external_lex_state = 3}, - [1375] = {.lex_state = 4, .external_lex_state = 3}, + [1375] = {.lex_state = 18, .external_lex_state = 3}, [1376] = {.lex_state = 4, .external_lex_state = 3}, - [1377] = {.lex_state = 4, .external_lex_state = 3}, + [1377] = {.lex_state = 8, .external_lex_state = 3}, [1378] = {.lex_state = 4, .external_lex_state = 3}, - [1379] = {.lex_state = 8, .external_lex_state = 3}, + [1379] = {.lex_state = 4, .external_lex_state = 3}, [1380] = {.lex_state = 4, .external_lex_state = 3}, - [1381] = {.lex_state = 8, .external_lex_state = 3}, + [1381] = {.lex_state = 4, .external_lex_state = 3}, [1382] = {.lex_state = 4, .external_lex_state = 3}, - [1383] = {.lex_state = 4, .external_lex_state = 3}, - [1384] = {.lex_state = 8, .external_lex_state = 3}, + [1383] = {.lex_state = 18, .external_lex_state = 3}, + [1384] = {.lex_state = 4, .external_lex_state = 3}, [1385] = {.lex_state = 18, .external_lex_state = 3}, [1386] = {.lex_state = 18, .external_lex_state = 3}, [1387] = {.lex_state = 4, .external_lex_state = 3}, [1388] = {.lex_state = 18, .external_lex_state = 3}, - [1389] = {.lex_state = 4, .external_lex_state = 3}, - [1390] = {.lex_state = 18, .external_lex_state = 3}, + [1389] = {.lex_state = 18, .external_lex_state = 3}, + [1390] = {.lex_state = 4, .external_lex_state = 3}, [1391] = {.lex_state = 4, .external_lex_state = 3}, [1392] = {.lex_state = 18, .external_lex_state = 3}, [1393] = {.lex_state = 4, .external_lex_state = 3}, [1394] = {.lex_state = 18, .external_lex_state = 3}, [1395] = {.lex_state = 18, .external_lex_state = 3}, - [1396] = {.lex_state = 4, .external_lex_state = 3}, - [1397] = {.lex_state = 4, .external_lex_state = 3}, + [1396] = {.lex_state = 18, .external_lex_state = 3}, + [1397] = {.lex_state = 8, .external_lex_state = 3}, [1398] = {.lex_state = 18, .external_lex_state = 3}, - [1399] = {.lex_state = 18, .external_lex_state = 3}, - [1400] = {.lex_state = 4, .external_lex_state = 3}, + [1399] = {.lex_state = 4, .external_lex_state = 3}, + [1400] = {.lex_state = 18, .external_lex_state = 3}, [1401] = {.lex_state = 18, .external_lex_state = 3}, [1402] = {.lex_state = 18, .external_lex_state = 3}, - [1403] = {.lex_state = 18, .external_lex_state = 3}, + [1403] = {.lex_state = 4, .external_lex_state = 3}, [1404] = {.lex_state = 18, .external_lex_state = 3}, [1405] = {.lex_state = 18, .external_lex_state = 3}, [1406] = {.lex_state = 18, .external_lex_state = 3}, @@ -14786,7 +14776,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1420] = {.lex_state = 18, .external_lex_state = 3}, [1421] = {.lex_state = 18, .external_lex_state = 3}, [1422] = {.lex_state = 18, .external_lex_state = 3}, - [1423] = {.lex_state = 18, .external_lex_state = 3}, + [1423] = {.lex_state = 4, .external_lex_state = 3}, [1424] = {.lex_state = 18, .external_lex_state = 3}, [1425] = {.lex_state = 18, .external_lex_state = 3}, [1426] = {.lex_state = 18, .external_lex_state = 3}, @@ -14798,144 +14788,144 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1432] = {.lex_state = 18, .external_lex_state = 3}, [1433] = {.lex_state = 18, .external_lex_state = 3}, [1434] = {.lex_state = 18, .external_lex_state = 3}, - [1435] = {.lex_state = 4, .external_lex_state = 3}, + [1435] = {.lex_state = 8, .external_lex_state = 3}, [1436] = {.lex_state = 8, .external_lex_state = 3}, - [1437] = {.lex_state = 8, .external_lex_state = 3}, - [1438] = {.lex_state = 4, .external_lex_state = 3}, - [1439] = {.lex_state = 4, .external_lex_state = 3}, + [1437] = {.lex_state = 4, .external_lex_state = 3}, + [1438] = {.lex_state = 8, .external_lex_state = 3}, + [1439] = {.lex_state = 8, .external_lex_state = 3}, [1440] = {.lex_state = 8, .external_lex_state = 3}, [1441] = {.lex_state = 8, .external_lex_state = 3}, - [1442] = {.lex_state = 4, .external_lex_state = 3}, - [1443] = {.lex_state = 4, .external_lex_state = 3}, + [1442] = {.lex_state = 18, .external_lex_state = 3}, + [1443] = {.lex_state = 8, .external_lex_state = 3}, [1444] = {.lex_state = 4, .external_lex_state = 3}, [1445] = {.lex_state = 4, .external_lex_state = 3}, [1446] = {.lex_state = 8, .external_lex_state = 3}, [1447] = {.lex_state = 8, .external_lex_state = 3}, [1448] = {.lex_state = 8, .external_lex_state = 3}, - [1449] = {.lex_state = 8, .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 = 8, .external_lex_state = 3}, - [1453] = {.lex_state = 18, .external_lex_state = 3}, - [1454] = {.lex_state = 8, .external_lex_state = 3}, - [1455] = {.lex_state = 18, .external_lex_state = 3}, + [1452] = {.lex_state = 4, .external_lex_state = 3}, + [1453] = {.lex_state = 8, .external_lex_state = 3}, + [1454] = {.lex_state = 18, .external_lex_state = 3}, + [1455] = {.lex_state = 8, .external_lex_state = 3}, [1456] = {.lex_state = 18, .external_lex_state = 3}, - [1457] = {.lex_state = 8, .external_lex_state = 3}, + [1457] = {.lex_state = 4, .external_lex_state = 3}, [1458] = {.lex_state = 8, .external_lex_state = 3}, - [1459] = {.lex_state = 8, .external_lex_state = 3}, + [1459] = {.lex_state = 18, .external_lex_state = 3}, [1460] = {.lex_state = 18, .external_lex_state = 3}, - [1461] = {.lex_state = 18, .external_lex_state = 3}, - [1462] = {.lex_state = 8, .external_lex_state = 3}, - [1463] = {.lex_state = 8, .external_lex_state = 3}, + [1461] = {.lex_state = 13, .external_lex_state = 3}, + [1462] = {.lex_state = 4, .external_lex_state = 3}, + [1463] = {.lex_state = 18, .external_lex_state = 3}, [1464] = {.lex_state = 18, .external_lex_state = 3}, [1465] = {.lex_state = 8, .external_lex_state = 3}, - [1466] = {.lex_state = 8, .external_lex_state = 3}, + [1466] = {.lex_state = 18, .external_lex_state = 3}, [1467] = {.lex_state = 18, .external_lex_state = 3}, [1468] = {.lex_state = 18, .external_lex_state = 3}, [1469] = {.lex_state = 18, .external_lex_state = 3}, - [1470] = {.lex_state = 4, .external_lex_state = 3}, - [1471] = {.lex_state = 18, .external_lex_state = 3}, + [1470] = {.lex_state = 18, .external_lex_state = 3}, + [1471] = {.lex_state = 8, .external_lex_state = 3}, [1472] = {.lex_state = 18, .external_lex_state = 3}, [1473] = {.lex_state = 18, .external_lex_state = 3}, - [1474] = {.lex_state = 8, .external_lex_state = 3}, + [1474] = {.lex_state = 18, .external_lex_state = 3}, [1475] = {.lex_state = 18, .external_lex_state = 3}, [1476] = {.lex_state = 18, .external_lex_state = 3}, - [1477] = {.lex_state = 8, .external_lex_state = 3}, + [1477] = {.lex_state = 18, .external_lex_state = 3}, [1478] = {.lex_state = 18, .external_lex_state = 3}, - [1479] = {.lex_state = 13, .external_lex_state = 3}, - [1480] = {.lex_state = 13, .external_lex_state = 3}, - [1481] = {.lex_state = 13, .external_lex_state = 3}, - [1482] = {.lex_state = 18, .external_lex_state = 3}, - [1483] = {.lex_state = 18, .external_lex_state = 3}, + [1479] = {.lex_state = 18, .external_lex_state = 3}, + [1480] = {.lex_state = 8, .external_lex_state = 3}, + [1481] = {.lex_state = 18, .external_lex_state = 3}, + [1482] = {.lex_state = 8, .external_lex_state = 3}, + [1483] = {.lex_state = 13, .external_lex_state = 3}, [1484] = {.lex_state = 18, .external_lex_state = 3}, - [1485] = {.lex_state = 13, .external_lex_state = 3}, + [1485] = {.lex_state = 8, .external_lex_state = 3}, [1486] = {.lex_state = 8, .external_lex_state = 3}, - [1487] = {.lex_state = 18, .external_lex_state = 3}, - [1488] = {.lex_state = 8, .external_lex_state = 3}, + [1487] = {.lex_state = 13, .external_lex_state = 3}, + [1488] = {.lex_state = 18, .external_lex_state = 3}, [1489] = {.lex_state = 18, .external_lex_state = 3}, [1490] = {.lex_state = 18, .external_lex_state = 3}, - [1491] = {.lex_state = 18, .external_lex_state = 3}, + [1491] = {.lex_state = 13, .external_lex_state = 3}, [1492] = {.lex_state = 18, .external_lex_state = 3}, - [1493] = {.lex_state = 18, .external_lex_state = 3}, - [1494] = {.lex_state = 18, .external_lex_state = 3}, + [1493] = {.lex_state = 8, .external_lex_state = 3}, + [1494] = {.lex_state = 4, .external_lex_state = 3}, [1495] = {.lex_state = 18, .external_lex_state = 3}, [1496] = {.lex_state = 18, .external_lex_state = 3}, [1497] = {.lex_state = 18, .external_lex_state = 3}, - [1498] = {.lex_state = 18, .external_lex_state = 3}, + [1498] = {.lex_state = 8, .external_lex_state = 3}, [1499] = {.lex_state = 18, .external_lex_state = 3}, [1500] = {.lex_state = 18, .external_lex_state = 3}, [1501] = {.lex_state = 18, .external_lex_state = 3}, [1502] = {.lex_state = 18, .external_lex_state = 3}, - [1503] = {.lex_state = 4, .external_lex_state = 3}, - [1504] = {.lex_state = 18, .external_lex_state = 3}, - [1505] = {.lex_state = 18, .external_lex_state = 3}, + [1503] = {.lex_state = 18, .external_lex_state = 3}, + [1504] = {.lex_state = 4, .external_lex_state = 3}, + [1505] = {.lex_state = 4, .external_lex_state = 3}, [1506] = {.lex_state = 4, .external_lex_state = 3}, [1507] = {.lex_state = 4, .external_lex_state = 3}, - [1508] = {.lex_state = 15, .external_lex_state = 3}, + [1508] = {.lex_state = 18, .external_lex_state = 3}, [1509] = {.lex_state = 4, .external_lex_state = 3}, - [1510] = {.lex_state = 8, .external_lex_state = 3}, + [1510] = {.lex_state = 15, .external_lex_state = 3}, [1511] = {.lex_state = 4, .external_lex_state = 3}, [1512] = {.lex_state = 4, .external_lex_state = 3}, - [1513] = {.lex_state = 4, .external_lex_state = 3}, + [1513] = {.lex_state = 8, .external_lex_state = 3}, [1514] = {.lex_state = 4, .external_lex_state = 3}, [1515] = {.lex_state = 4, .external_lex_state = 3}, - [1516] = {.lex_state = 4, .external_lex_state = 3}, + [1516] = {.lex_state = 18, .external_lex_state = 3}, [1517] = {.lex_state = 4, .external_lex_state = 3}, [1518] = {.lex_state = 4, .external_lex_state = 3}, [1519] = {.lex_state = 4, .external_lex_state = 3}, [1520] = {.lex_state = 4, .external_lex_state = 3}, [1521] = {.lex_state = 4, .external_lex_state = 3}, [1522] = {.lex_state = 4, .external_lex_state = 3}, - [1523] = {.lex_state = 18, .external_lex_state = 3}, + [1523] = {.lex_state = 4, .external_lex_state = 3}, [1524] = {.lex_state = 4, .external_lex_state = 3}, [1525] = {.lex_state = 4, .external_lex_state = 3}, [1526] = {.lex_state = 4, .external_lex_state = 3}, - [1527] = {.lex_state = 4, .external_lex_state = 3}, - [1528] = {.lex_state = 18, .external_lex_state = 3}, - [1529] = {.lex_state = 18, .external_lex_state = 3}, + [1527] = {.lex_state = 18, .external_lex_state = 3}, + [1528] = {.lex_state = 4, .external_lex_state = 3}, + [1529] = {.lex_state = 4, .external_lex_state = 3}, [1530] = {.lex_state = 4, .external_lex_state = 3}, [1531] = {.lex_state = 4, .external_lex_state = 3}, - [1532] = {.lex_state = 15, .external_lex_state = 3}, - [1533] = {.lex_state = 4, .external_lex_state = 3}, - [1534] = {.lex_state = 18, .external_lex_state = 3}, - [1535] = {.lex_state = 15, .external_lex_state = 3}, - [1536] = {.lex_state = 18, .external_lex_state = 3}, + [1532] = {.lex_state = 4, .external_lex_state = 3}, + [1533] = {.lex_state = 18, .external_lex_state = 3}, + [1534] = {.lex_state = 4, .external_lex_state = 3}, + [1535] = {.lex_state = 4, .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}, + [1538] = {.lex_state = 18, .external_lex_state = 3}, [1539] = {.lex_state = 4, .external_lex_state = 3}, [1540] = {.lex_state = 4, .external_lex_state = 3}, [1541] = {.lex_state = 4, .external_lex_state = 3}, - [1542] = {.lex_state = 4, .external_lex_state = 3}, + [1542] = {.lex_state = 18, .external_lex_state = 3}, [1543] = {.lex_state = 4, .external_lex_state = 3}, [1544] = {.lex_state = 18, .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 = 4, .external_lex_state = 3}, - [1549] = {.lex_state = 4, .external_lex_state = 3}, - [1550] = {.lex_state = 4, .external_lex_state = 3}, + [1549] = {.lex_state = 18, .external_lex_state = 3}, + [1550] = {.lex_state = 15, .external_lex_state = 3}, [1551] = {.lex_state = 18, .external_lex_state = 3}, [1552] = {.lex_state = 4, .external_lex_state = 3}, [1553] = {.lex_state = 4, .external_lex_state = 3}, - [1554] = {.lex_state = 4, .external_lex_state = 3}, - [1555] = {.lex_state = 18, .external_lex_state = 3}, + [1554] = {.lex_state = 15, .external_lex_state = 3}, + [1555] = {.lex_state = 4, .external_lex_state = 3}, [1556] = {.lex_state = 4, .external_lex_state = 3}, [1557] = {.lex_state = 4, .external_lex_state = 3}, - [1558] = {.lex_state = 4, .external_lex_state = 3}, + [1558] = {.lex_state = 15, .external_lex_state = 3}, [1559] = {.lex_state = 4, .external_lex_state = 3}, - [1560] = {.lex_state = 15, .external_lex_state = 3}, - [1561] = {.lex_state = 15, .external_lex_state = 3}, - [1562] = {.lex_state = 4, .external_lex_state = 3}, + [1560] = {.lex_state = 4, .external_lex_state = 3}, + [1561] = {.lex_state = 0, .external_lex_state = 3}, + [1562] = {.lex_state = 13, .external_lex_state = 3}, [1563] = {.lex_state = 15, .external_lex_state = 3}, [1564] = {.lex_state = 4, .external_lex_state = 3}, [1565] = {.lex_state = 15, .external_lex_state = 3}, [1566] = {.lex_state = 4, .external_lex_state = 3}, [1567] = {.lex_state = 4, .external_lex_state = 3}, - [1568] = {.lex_state = 15, .external_lex_state = 3}, + [1568] = {.lex_state = 4, .external_lex_state = 3}, [1569] = {.lex_state = 4, .external_lex_state = 3}, [1570] = {.lex_state = 15, .external_lex_state = 3}, [1571] = {.lex_state = 15, .external_lex_state = 3}, - [1572] = {.lex_state = 4, .external_lex_state = 3}, + [1572] = {.lex_state = 15, .external_lex_state = 3}, [1573] = {.lex_state = 4, .external_lex_state = 3}, [1574] = {.lex_state = 4, .external_lex_state = 3}, [1575] = {.lex_state = 4, .external_lex_state = 3}, @@ -14943,84 +14933,84 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1577] = {.lex_state = 4, .external_lex_state = 3}, [1578] = {.lex_state = 4, .external_lex_state = 3}, [1579] = {.lex_state = 4, .external_lex_state = 3}, - [1580] = {.lex_state = 4, .external_lex_state = 3}, + [1580] = {.lex_state = 15, .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 = 0, .external_lex_state = 3}, + [1583] = {.lex_state = 15, .external_lex_state = 3}, + [1584] = {.lex_state = 15, .external_lex_state = 3}, [1585] = {.lex_state = 4, .external_lex_state = 3}, [1586] = {.lex_state = 4, .external_lex_state = 3}, [1587] = {.lex_state = 4, .external_lex_state = 3}, [1588] = {.lex_state = 4, .external_lex_state = 3}, [1589] = {.lex_state = 4, .external_lex_state = 3}, - [1590] = {.lex_state = 15, .external_lex_state = 3}, + [1590] = {.lex_state = 4, .external_lex_state = 3}, [1591] = {.lex_state = 4, .external_lex_state = 3}, [1592] = {.lex_state = 4, .external_lex_state = 3}, [1593] = {.lex_state = 4, .external_lex_state = 3}, [1594] = {.lex_state = 4, .external_lex_state = 3}, [1595] = {.lex_state = 4, .external_lex_state = 3}, - [1596] = {.lex_state = 15, .external_lex_state = 3}, + [1596] = {.lex_state = 4, .external_lex_state = 3}, [1597] = {.lex_state = 4, .external_lex_state = 3}, - [1598] = {.lex_state = 13, .external_lex_state = 3}, + [1598] = {.lex_state = 4, .external_lex_state = 3}, [1599] = {.lex_state = 4, .external_lex_state = 3}, [1600] = {.lex_state = 4, .external_lex_state = 3}, - [1601] = {.lex_state = 0, .external_lex_state = 3}, - [1602] = {.lex_state = 0, .external_lex_state = 3}, - [1603] = {.lex_state = 0, .external_lex_state = 3}, - [1604] = {.lex_state = 0, .external_lex_state = 3}, - [1605] = {.lex_state = 0, .external_lex_state = 3}, - [1606] = {.lex_state = 4, .external_lex_state = 3}, + [1601] = {.lex_state = 4, .external_lex_state = 3}, + [1602] = {.lex_state = 4, .external_lex_state = 3}, + [1603] = {.lex_state = 4, .external_lex_state = 3}, + [1604] = {.lex_state = 4, .external_lex_state = 3}, + [1605] = {.lex_state = 4, .external_lex_state = 3}, + [1606] = {.lex_state = 15, .external_lex_state = 3}, [1607] = {.lex_state = 0, .external_lex_state = 3}, - [1608] = {.lex_state = 0, .external_lex_state = 3}, - [1609] = {.lex_state = 4, .external_lex_state = 3}, + [1608] = {.lex_state = 15, .external_lex_state = 3}, + [1609] = {.lex_state = 0, .external_lex_state = 3}, [1610] = {.lex_state = 4, .external_lex_state = 3}, - [1611] = {.lex_state = 0, .external_lex_state = 3}, + [1611] = {.lex_state = 4, .external_lex_state = 3}, [1612] = {.lex_state = 0, .external_lex_state = 3}, [1613] = {.lex_state = 4, .external_lex_state = 3}, [1614] = {.lex_state = 4, .external_lex_state = 3}, - [1615] = {.lex_state = 4, .external_lex_state = 3}, - [1616] = {.lex_state = 4, .external_lex_state = 3}, - [1617] = {.lex_state = 0, .external_lex_state = 3}, + [1615] = {.lex_state = 0, .external_lex_state = 3}, + [1616] = {.lex_state = 0, .external_lex_state = 3}, + [1617] = {.lex_state = 4, .external_lex_state = 3}, [1618] = {.lex_state = 0, .external_lex_state = 3}, [1619] = {.lex_state = 4, .external_lex_state = 3}, - [1620] = {.lex_state = 4, .external_lex_state = 3}, + [1620] = {.lex_state = 0, .external_lex_state = 3}, [1621] = {.lex_state = 0, .external_lex_state = 3}, - [1622] = {.lex_state = 15, .external_lex_state = 3}, + [1622] = {.lex_state = 4, .external_lex_state = 3}, [1623] = {.lex_state = 0, .external_lex_state = 3}, [1624] = {.lex_state = 4, .external_lex_state = 3}, - [1625] = {.lex_state = 4, .external_lex_state = 3}, + [1625] = {.lex_state = 0, .external_lex_state = 3}, [1626] = {.lex_state = 0, .external_lex_state = 3}, [1627] = {.lex_state = 0, .external_lex_state = 3}, - [1628] = {.lex_state = 4, .external_lex_state = 3}, + [1628] = {.lex_state = 0, .external_lex_state = 3}, [1629] = {.lex_state = 4, .external_lex_state = 3}, - [1630] = {.lex_state = 0, .external_lex_state = 3}, - [1631] = {.lex_state = 4, .external_lex_state = 3}, + [1630] = {.lex_state = 4, .external_lex_state = 3}, + [1631] = {.lex_state = 0, .external_lex_state = 3}, [1632] = {.lex_state = 0, .external_lex_state = 3}, - [1633] = {.lex_state = 4, .external_lex_state = 3}, - [1634] = {.lex_state = 4, .external_lex_state = 3}, - [1635] = {.lex_state = 15, .external_lex_state = 3}, + [1633] = {.lex_state = 0, .external_lex_state = 3}, + [1634] = {.lex_state = 0, .external_lex_state = 3}, + [1635] = {.lex_state = 0, .external_lex_state = 3}, [1636] = {.lex_state = 0, .external_lex_state = 3}, - [1637] = {.lex_state = 4, .external_lex_state = 3}, - [1638] = {.lex_state = 0, .external_lex_state = 3}, + [1637] = {.lex_state = 15, .external_lex_state = 3}, + [1638] = {.lex_state = 15, .external_lex_state = 3}, [1639] = {.lex_state = 0, .external_lex_state = 3}, - [1640] = {.lex_state = 0, .external_lex_state = 3}, + [1640] = {.lex_state = 4, .external_lex_state = 3}, [1641] = {.lex_state = 0, .external_lex_state = 3}, - [1642] = {.lex_state = 15, .external_lex_state = 3}, - [1643] = {.lex_state = 15, .external_lex_state = 3}, - [1644] = {.lex_state = 4, .external_lex_state = 3}, - [1645] = {.lex_state = 0, .external_lex_state = 3}, - [1646] = {.lex_state = 58, .external_lex_state = 3}, + [1642] = {.lex_state = 4, .external_lex_state = 3}, + [1643] = {.lex_state = 0, .external_lex_state = 3}, + [1644] = {.lex_state = 58, .external_lex_state = 3}, + [1645] = {.lex_state = 4, .external_lex_state = 3}, + [1646] = {.lex_state = 4, .external_lex_state = 3}, [1647] = {.lex_state = 4, .external_lex_state = 3}, [1648] = {.lex_state = 4, .external_lex_state = 3}, - [1649] = {.lex_state = 4, .external_lex_state = 3}, - [1650] = {.lex_state = 4, .external_lex_state = 3}, + [1649] = {.lex_state = 13, .external_lex_state = 3}, + [1650] = {.lex_state = 9, .external_lex_state = 3}, [1651] = {.lex_state = 4, .external_lex_state = 3}, - [1652] = {.lex_state = 4, .external_lex_state = 3}, - [1653] = {.lex_state = 9, .external_lex_state = 3}, + [1652] = {.lex_state = 0, .external_lex_state = 3}, + [1653] = {.lex_state = 4, .external_lex_state = 3}, [1654] = {.lex_state = 4, .external_lex_state = 3}, - [1655] = {.lex_state = 9, .external_lex_state = 3}, + [1655] = {.lex_state = 13, .external_lex_state = 3}, [1656] = {.lex_state = 4, .external_lex_state = 3}, - [1657] = {.lex_state = 18, .external_lex_state = 3}, + [1657] = {.lex_state = 4, .external_lex_state = 3}, [1658] = {.lex_state = 4, .external_lex_state = 3}, [1659] = {.lex_state = 4, .external_lex_state = 3}, [1660] = {.lex_state = 4, .external_lex_state = 3}, @@ -15030,21 +15020,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1664] = {.lex_state = 4, .external_lex_state = 3}, [1665] = {.lex_state = 4, .external_lex_state = 3}, [1666] = {.lex_state = 4, .external_lex_state = 3}, - [1667] = {.lex_state = 15, .external_lex_state = 3}, - [1668] = {.lex_state = 4, .external_lex_state = 3}, - [1669] = {.lex_state = 13, .external_lex_state = 3}, - [1670] = {.lex_state = 4, .external_lex_state = 3}, - [1671] = {.lex_state = 18, .external_lex_state = 3}, + [1667] = {.lex_state = 18, .external_lex_state = 3}, + [1668] = {.lex_state = 18, .external_lex_state = 3}, + [1669] = {.lex_state = 4, .external_lex_state = 3}, + [1670] = {.lex_state = 18, .external_lex_state = 3}, + [1671] = {.lex_state = 4, .external_lex_state = 3}, [1672] = {.lex_state = 4, .external_lex_state = 3}, - [1673] = {.lex_state = 4, .external_lex_state = 3}, + [1673] = {.lex_state = 9, .external_lex_state = 3}, [1674] = {.lex_state = 4, .external_lex_state = 3}, - [1675] = {.lex_state = 18, .external_lex_state = 3}, + [1675] = {.lex_state = 4, .external_lex_state = 3}, [1676] = {.lex_state = 4, .external_lex_state = 3}, [1677] = {.lex_state = 4, .external_lex_state = 3}, [1678] = {.lex_state = 18, .external_lex_state = 3}, - [1679] = {.lex_state = 4, .external_lex_state = 3}, - [1680] = {.lex_state = 0, .external_lex_state = 3}, - [1681] = {.lex_state = 0, .external_lex_state = 3}, + [1679] = {.lex_state = 18, .external_lex_state = 3}, + [1680] = {.lex_state = 4, .external_lex_state = 3}, + [1681] = {.lex_state = 18, .external_lex_state = 3}, [1682] = {.lex_state = 4, .external_lex_state = 3}, [1683] = {.lex_state = 4, .external_lex_state = 3}, [1684] = {.lex_state = 4, .external_lex_state = 3}, @@ -15053,574 +15043,574 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1687] = {.lex_state = 4, .external_lex_state = 3}, [1688] = {.lex_state = 4, .external_lex_state = 3}, [1689] = {.lex_state = 4, .external_lex_state = 3}, - [1690] = {.lex_state = 9, .external_lex_state = 3}, + [1690] = {.lex_state = 4, .external_lex_state = 3}, [1691] = {.lex_state = 4, .external_lex_state = 3}, - [1692] = {.lex_state = 0, .external_lex_state = 3}, - [1693] = {.lex_state = 4, .external_lex_state = 3}, - [1694] = {.lex_state = 4, .external_lex_state = 3}, - [1695] = {.lex_state = 0, .external_lex_state = 3}, - [1696] = {.lex_state = 0, .external_lex_state = 3}, + [1692] = {.lex_state = 4, .external_lex_state = 3}, + [1693] = {.lex_state = 18, .external_lex_state = 3}, + [1694] = {.lex_state = 58, .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 = 4, .external_lex_state = 3}, [1699] = {.lex_state = 4, .external_lex_state = 3}, [1700] = {.lex_state = 4, .external_lex_state = 3}, - [1701] = {.lex_state = 4, .external_lex_state = 3}, - [1702] = {.lex_state = 13, .external_lex_state = 3}, - [1703] = {.lex_state = 18, .external_lex_state = 3}, + [1701] = {.lex_state = 9, .external_lex_state = 3}, + [1702] = {.lex_state = 4, .external_lex_state = 3}, + [1703] = {.lex_state = 4, .external_lex_state = 3}, [1704] = {.lex_state = 4, .external_lex_state = 3}, [1705] = {.lex_state = 4, .external_lex_state = 3}, [1706] = {.lex_state = 4, .external_lex_state = 3}, [1707] = {.lex_state = 9, .external_lex_state = 3}, - [1708] = {.lex_state = 4, .external_lex_state = 3}, + [1708] = {.lex_state = 15, .external_lex_state = 3}, [1709] = {.lex_state = 4, .external_lex_state = 3}, [1710] = {.lex_state = 4, .external_lex_state = 3}, - [1711] = {.lex_state = 4, .external_lex_state = 3}, - [1712] = {.lex_state = 9, .external_lex_state = 3}, + [1711] = {.lex_state = 9, .external_lex_state = 3}, + [1712] = {.lex_state = 4, .external_lex_state = 3}, [1713] = {.lex_state = 4, .external_lex_state = 3}, - [1714] = {.lex_state = 4, .external_lex_state = 3}, - [1715] = {.lex_state = 4, .external_lex_state = 3}, - [1716] = {.lex_state = 58, .external_lex_state = 3}, + [1714] = {.lex_state = 18, .external_lex_state = 3}, + [1715] = {.lex_state = 9, .external_lex_state = 3}, + [1716] = {.lex_state = 4, .external_lex_state = 3}, [1717] = {.lex_state = 4, .external_lex_state = 3}, - [1718] = {.lex_state = 18, .external_lex_state = 3}, + [1718] = {.lex_state = 4, .external_lex_state = 3}, [1719] = {.lex_state = 4, .external_lex_state = 3}, [1720] = {.lex_state = 4, .external_lex_state = 3}, [1721] = {.lex_state = 4, .external_lex_state = 3}, - [1722] = {.lex_state = 4, .external_lex_state = 3}, + [1722] = {.lex_state = 0, .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}, + [1726] = {.lex_state = 18, .external_lex_state = 3}, [1727] = {.lex_state = 4, .external_lex_state = 3}, [1728] = {.lex_state = 4, .external_lex_state = 3}, - [1729] = {.lex_state = 18, .external_lex_state = 3}, - [1730] = {.lex_state = 18, .external_lex_state = 3}, + [1729] = {.lex_state = 4, .external_lex_state = 3}, + [1730] = {.lex_state = 0, .external_lex_state = 3}, [1731] = {.lex_state = 4, .external_lex_state = 3}, - [1732] = {.lex_state = 4, .external_lex_state = 3}, + [1732] = {.lex_state = 0, .external_lex_state = 3}, [1733] = {.lex_state = 4, .external_lex_state = 3}, - [1734] = {.lex_state = 4, .external_lex_state = 3}, - [1735] = {.lex_state = 18, .external_lex_state = 3}, - [1736] = {.lex_state = 4, .external_lex_state = 3}, - [1737] = {.lex_state = 9, .external_lex_state = 3}, - [1738] = {.lex_state = 18, .external_lex_state = 3}, + [1734] = {.lex_state = 18, .external_lex_state = 3}, + [1735] = {.lex_state = 0, .external_lex_state = 3}, + [1736] = {.lex_state = 0, .external_lex_state = 3}, + [1737] = {.lex_state = 4, .external_lex_state = 3}, + [1738] = {.lex_state = 0, .external_lex_state = 3}, [1739] = {.lex_state = 4, .external_lex_state = 3}, - [1740] = {.lex_state = 0, .external_lex_state = 3}, + [1740] = {.lex_state = 4, .external_lex_state = 3}, [1741] = {.lex_state = 4, .external_lex_state = 3}, - [1742] = {.lex_state = 4, .external_lex_state = 3}, - [1743] = {.lex_state = 4, .external_lex_state = 3}, - [1744] = {.lex_state = 9, .external_lex_state = 3}, - [1745] = {.lex_state = 9, .external_lex_state = 3}, - [1746] = {.lex_state = 18, .external_lex_state = 3}, - [1747] = {.lex_state = 4, .external_lex_state = 3}, - [1748] = {.lex_state = 18, .external_lex_state = 3}, + [1742] = {.lex_state = 0, .external_lex_state = 3}, + [1743] = {.lex_state = 9, .external_lex_state = 3}, + [1744] = {.lex_state = 0, .external_lex_state = 3}, + [1745] = {.lex_state = 4, .external_lex_state = 3}, + [1746] = {.lex_state = 4, .external_lex_state = 3}, + [1747] = {.lex_state = 58, .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 = 0, .external_lex_state = 3}, - [1752] = {.lex_state = 4, .external_lex_state = 3}, + [1751] = {.lex_state = 4, .external_lex_state = 3}, + [1752] = {.lex_state = 18, .external_lex_state = 3}, [1753] = {.lex_state = 4, .external_lex_state = 3}, - [1754] = {.lex_state = 4, .external_lex_state = 3}, - [1755] = {.lex_state = 18, .external_lex_state = 3}, - [1756] = {.lex_state = 0, .external_lex_state = 3}, - [1757] = {.lex_state = 58, .external_lex_state = 3}, - [1758] = {.lex_state = 0, .external_lex_state = 3}, - [1759] = {.lex_state = 18, .external_lex_state = 3}, + [1754] = {.lex_state = 58, .external_lex_state = 3}, + [1755] = {.lex_state = 4, .external_lex_state = 3}, + [1756] = {.lex_state = 18, .external_lex_state = 3}, + [1757] = {.lex_state = 9, .external_lex_state = 3}, + [1758] = {.lex_state = 9, .external_lex_state = 3}, + [1759] = {.lex_state = 0, .external_lex_state = 3}, [1760] = {.lex_state = 18, .external_lex_state = 3}, [1761] = {.lex_state = 0, .external_lex_state = 3}, - [1762] = {.lex_state = 18, .external_lex_state = 3}, + [1762] = {.lex_state = 4, .external_lex_state = 3}, [1763] = {.lex_state = 0, .external_lex_state = 3}, - [1764] = {.lex_state = 4, .external_lex_state = 3}, - [1765] = {.lex_state = 18, .external_lex_state = 3}, - [1766] = {.lex_state = 9, .external_lex_state = 3}, - [1767] = {.lex_state = 9, .external_lex_state = 3}, + [1764] = {.lex_state = 9, .external_lex_state = 3}, + [1765] = {.lex_state = 4, .external_lex_state = 3}, + [1766] = {.lex_state = 4, .external_lex_state = 3}, + [1767] = {.lex_state = 4, .external_lex_state = 3}, [1768] = {.lex_state = 4, .external_lex_state = 3}, - [1769] = {.lex_state = 0, .external_lex_state = 3}, - [1770] = {.lex_state = 9, .external_lex_state = 3}, - [1771] = {.lex_state = 9, .external_lex_state = 3}, - [1772] = {.lex_state = 0, .external_lex_state = 3}, - [1773] = {.lex_state = 4, .external_lex_state = 3}, + [1769] = {.lex_state = 18, .external_lex_state = 3}, + [1770] = {.lex_state = 18, .external_lex_state = 3}, + [1771] = {.lex_state = 4, .external_lex_state = 3}, + [1772] = {.lex_state = 9, .external_lex_state = 3}, + [1773] = {.lex_state = 9, .external_lex_state = 3}, [1774] = {.lex_state = 18, .external_lex_state = 3}, - [1775] = {.lex_state = 18, .external_lex_state = 3}, + [1775] = {.lex_state = 4, .external_lex_state = 3}, [1776] = {.lex_state = 4, .external_lex_state = 3}, - [1777] = {.lex_state = 4, .external_lex_state = 3}, - [1778] = {.lex_state = 4, .external_lex_state = 3}, - [1779] = {.lex_state = 4, .external_lex_state = 3}, - [1780] = {.lex_state = 4, .external_lex_state = 3}, - [1781] = {.lex_state = 4, .external_lex_state = 3}, + [1777] = {.lex_state = 18, .external_lex_state = 3}, + [1778] = {.lex_state = 0, .external_lex_state = 3}, + [1779] = {.lex_state = 0, .external_lex_state = 3}, + [1780] = {.lex_state = 18, .external_lex_state = 3}, + [1781] = {.lex_state = 18, .external_lex_state = 3}, [1782] = {.lex_state = 18, .external_lex_state = 3}, - [1783] = {.lex_state = 4, .external_lex_state = 3}, + [1783] = {.lex_state = 18, .external_lex_state = 3}, [1784] = {.lex_state = 4, .external_lex_state = 3}, [1785] = {.lex_state = 4, .external_lex_state = 3}, - [1786] = {.lex_state = 58, .external_lex_state = 3}, - [1787] = {.lex_state = 18, .external_lex_state = 3}, - [1788] = {.lex_state = 0, .external_lex_state = 3}, + [1786] = {.lex_state = 4, .external_lex_state = 3}, + [1787] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [1793] = {.lex_state = 4, .external_lex_state = 3}, - [1794] = {.lex_state = 58, .external_lex_state = 3}, + [1790] = {.lex_state = 0, .external_lex_state = 3}, + [1791] = {.lex_state = 4, .external_lex_state = 4}, + [1792] = {.lex_state = 18, .external_lex_state = 3}, + [1793] = {.lex_state = 0, .external_lex_state = 3}, + [1794] = {.lex_state = 0, .external_lex_state = 3}, [1795] = {.lex_state = 58, .external_lex_state = 3}, - [1796] = {.lex_state = 19, .external_lex_state = 3}, - [1797] = {.lex_state = 58, .external_lex_state = 3}, - [1798] = {.lex_state = 58, .external_lex_state = 3}, + [1796] = {.lex_state = 18, .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}, + [1800] = {.lex_state = 58, .external_lex_state = 3}, + [1801] = {.lex_state = 4, .external_lex_state = 4}, [1802] = {.lex_state = 4, .external_lex_state = 3}, [1803] = {.lex_state = 4, .external_lex_state = 3}, - [1804] = {.lex_state = 4, .external_lex_state = 3}, + [1804] = {.lex_state = 18, .external_lex_state = 3}, [1805] = {.lex_state = 4, .external_lex_state = 3}, - [1806] = {.lex_state = 4, .external_lex_state = 3}, + [1806] = {.lex_state = 0, .external_lex_state = 3}, [1807] = {.lex_state = 4, .external_lex_state = 3}, - [1808] = {.lex_state = 58, .external_lex_state = 3}, - [1809] = {.lex_state = 0, .external_lex_state = 3}, - [1810] = {.lex_state = 18, .external_lex_state = 3}, + [1808] = {.lex_state = 4, .external_lex_state = 3}, + [1809] = {.lex_state = 4, .external_lex_state = 3}, + [1810] = {.lex_state = 19, .external_lex_state = 3}, [1811] = {.lex_state = 58, .external_lex_state = 3}, - [1812] = {.lex_state = 58, .external_lex_state = 3}, + [1812] = {.lex_state = 4, .external_lex_state = 3}, [1813] = {.lex_state = 58, .external_lex_state = 3}, [1814] = {.lex_state = 58, .external_lex_state = 3}, - [1815] = {.lex_state = 4, .external_lex_state = 3}, - [1816] = {.lex_state = 18, .external_lex_state = 3}, + [1815] = {.lex_state = 58, .external_lex_state = 3}, + [1816] = {.lex_state = 58, .external_lex_state = 3}, [1817] = {.lex_state = 4, .external_lex_state = 3}, - [1818] = {.lex_state = 18, .external_lex_state = 3}, - [1819] = {.lex_state = 4, .external_lex_state = 3}, - [1820] = {.lex_state = 58, .external_lex_state = 3}, - [1821] = {.lex_state = 58, .external_lex_state = 3}, - [1822] = {.lex_state = 58, .external_lex_state = 3}, - [1823] = {.lex_state = 9, .external_lex_state = 3}, - [1824] = {.lex_state = 4, .external_lex_state = 3}, - [1825] = {.lex_state = 18, .external_lex_state = 3}, - [1826] = {.lex_state = 18, .external_lex_state = 3}, - [1827] = {.lex_state = 19, .external_lex_state = 3}, - [1828] = {.lex_state = 0, .external_lex_state = 3}, - [1829] = {.lex_state = 9, .external_lex_state = 3}, - [1830] = {.lex_state = 58, .external_lex_state = 3}, - [1831] = {.lex_state = 58, .external_lex_state = 3}, - [1832] = {.lex_state = 58, .external_lex_state = 3}, - [1833] = {.lex_state = 4, .external_lex_state = 4}, - [1834] = {.lex_state = 0, .external_lex_state = 3}, + [1818] = {.lex_state = 0, .external_lex_state = 3}, + [1819] = {.lex_state = 58, .external_lex_state = 3}, + [1820] = {.lex_state = 4, .external_lex_state = 3}, + [1821] = {.lex_state = 18, .external_lex_state = 3}, + [1822] = {.lex_state = 4, .external_lex_state = 3}, + [1823] = {.lex_state = 4, .external_lex_state = 3}, + [1824] = {.lex_state = 18, .external_lex_state = 3}, + [1825] = {.lex_state = 58, .external_lex_state = 3}, + [1826] = {.lex_state = 4, .external_lex_state = 3}, + [1827] = {.lex_state = 9, .external_lex_state = 3}, + [1828] = {.lex_state = 4, .external_lex_state = 3}, + [1829] = {.lex_state = 18, .external_lex_state = 3}, + [1830] = {.lex_state = 0, .external_lex_state = 3}, + [1831] = {.lex_state = 0, .external_lex_state = 3}, + [1832] = {.lex_state = 4, .external_lex_state = 3}, + [1833] = {.lex_state = 18, .external_lex_state = 3}, + [1834] = {.lex_state = 58, .external_lex_state = 3}, [1835] = {.lex_state = 58, .external_lex_state = 3}, - [1836] = {.lex_state = 4, .external_lex_state = 3}, - [1837] = {.lex_state = 4, .external_lex_state = 3}, - [1838] = {.lex_state = 58, .external_lex_state = 3}, + [1836] = {.lex_state = 4, .external_lex_state = 4}, + [1837] = {.lex_state = 0, .external_lex_state = 3}, + [1838] = {.lex_state = 4, .external_lex_state = 3}, [1839] = {.lex_state = 4, .external_lex_state = 4}, - [1840] = {.lex_state = 4, .external_lex_state = 4}, + [1840] = {.lex_state = 0, .external_lex_state = 3}, [1841] = {.lex_state = 4, .external_lex_state = 3}, - [1842] = {.lex_state = 0, .external_lex_state = 3}, - [1843] = {.lex_state = 0, .external_lex_state = 3}, - [1844] = {.lex_state = 4, .external_lex_state = 4}, - [1845] = {.lex_state = 4, .external_lex_state = 3}, - [1846] = {.lex_state = 0, .external_lex_state = 3}, - [1847] = {.lex_state = 58, .external_lex_state = 3}, - [1848] = {.lex_state = 18, .external_lex_state = 3}, - [1849] = {.lex_state = 58, .external_lex_state = 3}, - [1850] = {.lex_state = 4, .external_lex_state = 3}, + [1842] = {.lex_state = 58, .external_lex_state = 3}, + [1843] = {.lex_state = 58, .external_lex_state = 3}, + [1844] = {.lex_state = 9, .external_lex_state = 3}, + [1845] = {.lex_state = 0, .external_lex_state = 3}, + [1846] = {.lex_state = 4, .external_lex_state = 4}, + [1847] = {.lex_state = 4, .external_lex_state = 3}, + [1848] = {.lex_state = 58, .external_lex_state = 3}, + [1849] = {.lex_state = 4, .external_lex_state = 3}, + [1850] = {.lex_state = 58, .external_lex_state = 3}, [1851] = {.lex_state = 4, .external_lex_state = 3}, - [1852] = {.lex_state = 4, .external_lex_state = 4}, + [1852] = {.lex_state = 18, .external_lex_state = 3}, [1853] = {.lex_state = 0, .external_lex_state = 3}, [1854] = {.lex_state = 58, .external_lex_state = 3}, - [1855] = {.lex_state = 0, .external_lex_state = 3}, - [1856] = {.lex_state = 4, .external_lex_state = 4}, - [1857] = {.lex_state = 0, .external_lex_state = 3}, - [1858] = {.lex_state = 4, .external_lex_state = 3}, - [1859] = {.lex_state = 0, .external_lex_state = 3}, - [1860] = {.lex_state = 4, .external_lex_state = 4}, - [1861] = {.lex_state = 0, .external_lex_state = 3}, + [1855] = {.lex_state = 4, .external_lex_state = 4}, + [1856] = {.lex_state = 0, .external_lex_state = 3}, + [1857] = {.lex_state = 58, .external_lex_state = 3}, + [1858] = {.lex_state = 0, .external_lex_state = 3}, + [1859] = {.lex_state = 4, .external_lex_state = 4}, + [1860] = {.lex_state = 0, .external_lex_state = 3}, + [1861] = {.lex_state = 58, .external_lex_state = 3}, [1862] = {.lex_state = 0, .external_lex_state = 3}, - [1863] = {.lex_state = 4, .external_lex_state = 4}, - [1864] = {.lex_state = 18, .external_lex_state = 3}, - [1865] = {.lex_state = 0, .external_lex_state = 3}, - [1866] = {.lex_state = 0, .external_lex_state = 3}, - [1867] = {.lex_state = 0, .external_lex_state = 3}, - [1868] = {.lex_state = 0, .external_lex_state = 3}, - [1869] = {.lex_state = 18, .external_lex_state = 3}, - [1870] = {.lex_state = 0, .external_lex_state = 3}, - [1871] = {.lex_state = 58, .external_lex_state = 3}, - [1872] = {.lex_state = 0, .external_lex_state = 3}, - [1873] = {.lex_state = 0, .external_lex_state = 3}, - [1874] = {.lex_state = 18, .external_lex_state = 3}, + [1863] = {.lex_state = 19, .external_lex_state = 3}, + [1864] = {.lex_state = 58, .external_lex_state = 3}, + [1865] = {.lex_state = 58, .external_lex_state = 3}, + [1866] = {.lex_state = 58, .external_lex_state = 3}, + [1867] = {.lex_state = 58, .external_lex_state = 3}, + [1868] = {.lex_state = 4, .external_lex_state = 4}, + [1869] = {.lex_state = 4, .external_lex_state = 3}, + [1870] = {.lex_state = 18, .external_lex_state = 3}, + [1871] = {.lex_state = 0, .external_lex_state = 3}, + [1872] = {.lex_state = 58, .external_lex_state = 3}, + [1873] = {.lex_state = 4, .external_lex_state = 3}, + [1874] = {.lex_state = 4, .external_lex_state = 3}, [1875] = {.lex_state = 4, .external_lex_state = 3}, - [1876] = {.lex_state = 19, .external_lex_state = 3}, - [1877] = {.lex_state = 58, .external_lex_state = 3}, - [1878] = {.lex_state = 18, .external_lex_state = 3}, + [1876] = {.lex_state = 4, .external_lex_state = 4}, + [1877] = {.lex_state = 4, .external_lex_state = 3}, + [1878] = {.lex_state = 58, .external_lex_state = 3}, [1879] = {.lex_state = 4, .external_lex_state = 3}, - [1880] = {.lex_state = 4, .external_lex_state = 3}, - [1881] = {.lex_state = 58, .external_lex_state = 3}, - [1882] = {.lex_state = 58, .external_lex_state = 3}, - [1883] = {.lex_state = 58, .external_lex_state = 3}, + [1880] = {.lex_state = 19, .external_lex_state = 3}, + [1881] = {.lex_state = 18, .external_lex_state = 3}, + [1882] = {.lex_state = 0, .external_lex_state = 3}, + [1883] = {.lex_state = 0, .external_lex_state = 3}, [1884] = {.lex_state = 58, .external_lex_state = 3}, - [1885] = {.lex_state = 4, .external_lex_state = 3}, + [1885] = {.lex_state = 0, .external_lex_state = 3}, [1886] = {.lex_state = 4, .external_lex_state = 3}, - [1887] = {.lex_state = 4, .external_lex_state = 3}, - [1888] = {.lex_state = 18, .external_lex_state = 3}, - [1889] = {.lex_state = 4, .external_lex_state = 4}, - [1890] = {.lex_state = 58, .external_lex_state = 3}, + [1887] = {.lex_state = 0, .external_lex_state = 3}, + [1888] = {.lex_state = 58, .external_lex_state = 3}, + [1889] = {.lex_state = 58, .external_lex_state = 3}, + [1890] = {.lex_state = 18, .external_lex_state = 3}, [1891] = {.lex_state = 58, .external_lex_state = 3}, - [1892] = {.lex_state = 4, .external_lex_state = 3}, - [1893] = {.lex_state = 58, .external_lex_state = 3}, - [1894] = {.lex_state = 19, .external_lex_state = 3}, - [1895] = {.lex_state = 18, .external_lex_state = 3}, - [1896] = {.lex_state = 58, .external_lex_state = 3}, - [1897] = {.lex_state = 58, .external_lex_state = 3}, - [1898] = {.lex_state = 0, .external_lex_state = 3}, + [1892] = {.lex_state = 58, .external_lex_state = 3}, + [1893] = {.lex_state = 19, .external_lex_state = 3}, + [1894] = {.lex_state = 58, .external_lex_state = 3}, + [1895] = {.lex_state = 58, .external_lex_state = 3}, + [1896] = {.lex_state = 0, .external_lex_state = 3}, + [1897] = {.lex_state = 4, .external_lex_state = 3}, + [1898] = {.lex_state = 4, .external_lex_state = 3}, [1899] = {.lex_state = 58, .external_lex_state = 3}, - [1900] = {.lex_state = 4, .external_lex_state = 3}, + [1900] = {.lex_state = 0, .external_lex_state = 3}, [1901] = {.lex_state = 0, .external_lex_state = 3}, - [1902] = {.lex_state = 58, .external_lex_state = 3}, - [1903] = {.lex_state = 0, .external_lex_state = 3}, - [1904] = {.lex_state = 0, .external_lex_state = 3}, + [1902] = {.lex_state = 3, .external_lex_state = 3}, + [1903] = {.lex_state = 58, .external_lex_state = 3}, + [1904] = {.lex_state = 3, .external_lex_state = 3}, [1905] = {.lex_state = 0, .external_lex_state = 3}, [1906] = {.lex_state = 0, .external_lex_state = 3}, - [1907] = {.lex_state = 0, .external_lex_state = 3}, - [1908] = {.lex_state = 58, .external_lex_state = 3}, - [1909] = {.lex_state = 9, .external_lex_state = 3}, - [1910] = {.lex_state = 0, .external_lex_state = 3}, - [1911] = {.lex_state = 58, .external_lex_state = 3}, + [1907] = {.lex_state = 4, .external_lex_state = 3}, + [1908] = {.lex_state = 0, .external_lex_state = 3}, + [1909] = {.lex_state = 3, .external_lex_state = 3}, + [1910] = {.lex_state = 58, .external_lex_state = 3}, + [1911] = {.lex_state = 0, .external_lex_state = 3}, [1912] = {.lex_state = 0, .external_lex_state = 3}, - [1913] = {.lex_state = 4, .external_lex_state = 3}, - [1914] = {.lex_state = 0, .external_lex_state = 3}, + [1913] = {.lex_state = 0, .external_lex_state = 3}, + [1914] = {.lex_state = 58, .external_lex_state = 3}, [1915] = {.lex_state = 0, .external_lex_state = 3}, [1916] = {.lex_state = 0, .external_lex_state = 3}, [1917] = {.lex_state = 0, .external_lex_state = 3}, - [1918] = {.lex_state = 58, .external_lex_state = 3}, - [1919] = {.lex_state = 0, .external_lex_state = 3}, + [1918] = {.lex_state = 0, .external_lex_state = 3}, + [1919] = {.lex_state = 58, .external_lex_state = 3}, [1920] = {.lex_state = 0, .external_lex_state = 3}, [1921] = {.lex_state = 0, .external_lex_state = 3}, - [1922] = {.lex_state = 0, .external_lex_state = 3}, + [1922] = {.lex_state = 4, .external_lex_state = 3}, [1923] = {.lex_state = 4, .external_lex_state = 3}, - [1924] = {.lex_state = 0, .external_lex_state = 3}, - [1925] = {.lex_state = 4, .external_lex_state = 3}, + [1924] = {.lex_state = 58, .external_lex_state = 3}, + [1925] = {.lex_state = 58, .external_lex_state = 3}, [1926] = {.lex_state = 58, .external_lex_state = 3}, - [1927] = {.lex_state = 4, .external_lex_state = 3}, + [1927] = {.lex_state = 58, .external_lex_state = 3}, [1928] = {.lex_state = 4, .external_lex_state = 3}, - [1929] = {.lex_state = 0, .external_lex_state = 3}, + [1929] = {.lex_state = 4, .external_lex_state = 3}, [1930] = {.lex_state = 0, .external_lex_state = 3}, - [1931] = {.lex_state = 0, .external_lex_state = 3}, - [1932] = {.lex_state = 0, .external_lex_state = 3}, - [1933] = {.lex_state = 0, .external_lex_state = 3}, - [1934] = {.lex_state = 3, .external_lex_state = 3}, + [1931] = {.lex_state = 4, .external_lex_state = 3}, + [1932] = {.lex_state = 58, .external_lex_state = 3}, + [1933] = {.lex_state = 58, .external_lex_state = 3}, + [1934] = {.lex_state = 9, .external_lex_state = 3}, [1935] = {.lex_state = 0, .external_lex_state = 3}, - [1936] = {.lex_state = 9, .external_lex_state = 3}, - [1937] = {.lex_state = 58, .external_lex_state = 3}, + [1936] = {.lex_state = 58, .external_lex_state = 3}, + [1937] = {.lex_state = 0, .external_lex_state = 3}, [1938] = {.lex_state = 0, .external_lex_state = 3}, [1939] = {.lex_state = 0, .external_lex_state = 3}, [1940] = {.lex_state = 0, .external_lex_state = 3}, - [1941] = {.lex_state = 4, .external_lex_state = 3}, - [1942] = {.lex_state = 3, .external_lex_state = 3}, - [1943] = {.lex_state = 0, .external_lex_state = 3}, - [1944] = {.lex_state = 58, .external_lex_state = 3}, - [1945] = {.lex_state = 3, .external_lex_state = 3}, - [1946] = {.lex_state = 3, .external_lex_state = 3}, - [1947] = {.lex_state = 58, .external_lex_state = 3}, - [1948] = {.lex_state = 0, .external_lex_state = 3}, + [1941] = {.lex_state = 0, .external_lex_state = 3}, + [1942] = {.lex_state = 58, .external_lex_state = 3}, + [1943] = {.lex_state = 4, .external_lex_state = 3}, + [1944] = {.lex_state = 0, .external_lex_state = 3}, + [1945] = {.lex_state = 0, .external_lex_state = 3}, + [1946] = {.lex_state = 58, .external_lex_state = 3}, + [1947] = {.lex_state = 0, .external_lex_state = 3}, + [1948] = {.lex_state = 4, .external_lex_state = 3}, [1949] = {.lex_state = 58, .external_lex_state = 3}, [1950] = {.lex_state = 0, .external_lex_state = 3}, - [1951] = {.lex_state = 4, .external_lex_state = 3}, - [1952] = {.lex_state = 58, .external_lex_state = 3}, + [1951] = {.lex_state = 58, .external_lex_state = 3}, + [1952] = {.lex_state = 0, .external_lex_state = 3}, [1953] = {.lex_state = 0, .external_lex_state = 3}, [1954] = {.lex_state = 0, .external_lex_state = 3}, - [1955] = {.lex_state = 58, .external_lex_state = 3}, + [1955] = {.lex_state = 0, .external_lex_state = 3}, [1956] = {.lex_state = 0, .external_lex_state = 3}, - [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 3, .external_lex_state = 3}, + [1957] = {.lex_state = 3, .external_lex_state = 3}, + [1958] = {.lex_state = 0, .external_lex_state = 3}, [1959] = {.lex_state = 0, .external_lex_state = 3}, [1960] = {.lex_state = 3, .external_lex_state = 3}, [1961] = {.lex_state = 0, .external_lex_state = 3}, - [1962] = {.lex_state = 3, .external_lex_state = 3}, + [1962] = {.lex_state = 0, .external_lex_state = 3}, [1963] = {.lex_state = 0, .external_lex_state = 3}, - [1964] = {.lex_state = 4, .external_lex_state = 3}, - [1965] = {.lex_state = 3, .external_lex_state = 3}, + [1964] = {.lex_state = 0, .external_lex_state = 3}, + [1965] = {.lex_state = 0, .external_lex_state = 3}, [1966] = {.lex_state = 0, .external_lex_state = 3}, - [1967] = {.lex_state = 0, .external_lex_state = 3}, - [1968] = {.lex_state = 4, .external_lex_state = 3}, + [1967] = {.lex_state = 4, .external_lex_state = 3}, + [1968] = {.lex_state = 0, .external_lex_state = 3}, [1969] = {.lex_state = 3, .external_lex_state = 3}, - [1970] = {.lex_state = 58, .external_lex_state = 3}, - [1971] = {.lex_state = 0, .external_lex_state = 3}, - [1972] = {.lex_state = 58, .external_lex_state = 3}, + [1970] = {.lex_state = 0, .external_lex_state = 3}, + [1971] = {.lex_state = 3, .external_lex_state = 3}, + [1972] = {.lex_state = 0, .external_lex_state = 3}, [1973] = {.lex_state = 0, .external_lex_state = 3}, - [1974] = {.lex_state = 0, .external_lex_state = 3}, - [1975] = {.lex_state = 0, .external_lex_state = 3}, - [1976] = {.lex_state = 0, .external_lex_state = 3}, - [1977] = {.lex_state = 0, .external_lex_state = 3}, - [1978] = {.lex_state = 0, .external_lex_state = 3}, - [1979] = {.lex_state = 4, .external_lex_state = 3}, - [1980] = {.lex_state = 0, .external_lex_state = 3}, + [1974] = {.lex_state = 3, .external_lex_state = 3}, + [1975] = {.lex_state = 9, .external_lex_state = 3}, + [1976] = {.lex_state = 3, .external_lex_state = 3}, + [1977] = {.lex_state = 58, .external_lex_state = 3}, + [1978] = {.lex_state = 58, .external_lex_state = 3}, + [1979] = {.lex_state = 0, .external_lex_state = 3}, + [1980] = {.lex_state = 58, .external_lex_state = 3}, [1981] = {.lex_state = 0, .external_lex_state = 3}, - [1982] = {.lex_state = 4, .external_lex_state = 3}, - [1983] = {.lex_state = 3, .external_lex_state = 3}, - [1984] = {.lex_state = 4, .external_lex_state = 3}, - [1985] = {.lex_state = 58, .external_lex_state = 3}, - [1986] = {.lex_state = 0, .external_lex_state = 3}, - [1987] = {.lex_state = 0, .external_lex_state = 3}, - [1988] = {.lex_state = 58, .external_lex_state = 3}, - [1989] = {.lex_state = 58, .external_lex_state = 3}, - [1990] = {.lex_state = 0, .external_lex_state = 3}, - [1991] = {.lex_state = 58, .external_lex_state = 3}, - [1992] = {.lex_state = 0, .external_lex_state = 3}, - [1993] = {.lex_state = 0, .external_lex_state = 3}, - [1994] = {.lex_state = 0, .external_lex_state = 3}, - [1995] = {.lex_state = 0, .external_lex_state = 3}, - [1996] = {.lex_state = 0, .external_lex_state = 3}, - [1997] = {.lex_state = 0, .external_lex_state = 3}, - [1998] = {.lex_state = 58, .external_lex_state = 3}, + [1982] = {.lex_state = 0, .external_lex_state = 3}, + [1983] = {.lex_state = 0, .external_lex_state = 3}, + [1984] = {.lex_state = 0, .external_lex_state = 3}, + [1985] = {.lex_state = 0, .external_lex_state = 3}, + [1986] = {.lex_state = 58, .external_lex_state = 3}, + [1987] = {.lex_state = 58, .external_lex_state = 3}, + [1988] = {.lex_state = 0, .external_lex_state = 3}, + [1989] = {.lex_state = 0, .external_lex_state = 3}, + [1990] = {.lex_state = 3, .external_lex_state = 3}, + [1991] = {.lex_state = 0, .external_lex_state = 3}, + [1992] = {.lex_state = 58, .external_lex_state = 3}, + [1993] = {.lex_state = 3, .external_lex_state = 3}, + [1994] = {.lex_state = 58, .external_lex_state = 3}, + [1995] = {.lex_state = 3, .external_lex_state = 3}, + [1996] = {.lex_state = 58, .external_lex_state = 3}, + [1997] = {.lex_state = 4, .external_lex_state = 3}, + [1998] = {.lex_state = 0, .external_lex_state = 3}, [1999] = {.lex_state = 0, .external_lex_state = 3}, - [2000] = {.lex_state = 3, .external_lex_state = 3}, + [2000] = {.lex_state = 0, .external_lex_state = 3}, [2001] = {.lex_state = 0, .external_lex_state = 3}, [2002] = {.lex_state = 0, .external_lex_state = 3}, - [2003] = {.lex_state = 4, .external_lex_state = 3}, - [2004] = {.lex_state = 3, .external_lex_state = 3}, - [2005] = {.lex_state = 3, .external_lex_state = 3}, - [2006] = {.lex_state = 0, .external_lex_state = 3}, + [2003] = {.lex_state = 3, .external_lex_state = 3}, + [2004] = {.lex_state = 9, .external_lex_state = 3}, + [2005] = {.lex_state = 58, .external_lex_state = 3}, + [2006] = {.lex_state = 4, .external_lex_state = 3}, [2007] = {.lex_state = 0, .external_lex_state = 3}, - [2008] = {.lex_state = 58, .external_lex_state = 3}, - [2009] = {.lex_state = 58, .external_lex_state = 3}, - [2010] = {.lex_state = 3, .external_lex_state = 3}, - [2011] = {.lex_state = 0, .external_lex_state = 3}, - [2012] = {.lex_state = 0, .external_lex_state = 3}, - [2013] = {.lex_state = 9, .external_lex_state = 3}, - [2014] = {.lex_state = 0, .external_lex_state = 3}, - [2015] = {.lex_state = 58, .external_lex_state = 3}, + [2008] = {.lex_state = 0, .external_lex_state = 3}, + [2009] = {.lex_state = 3, .external_lex_state = 3}, + [2010] = {.lex_state = 58, .external_lex_state = 3}, + [2011] = {.lex_state = 58, .external_lex_state = 3}, + [2012] = {.lex_state = 3, .external_lex_state = 3}, + [2013] = {.lex_state = 58, .external_lex_state = 3}, + [2014] = {.lex_state = 3, .external_lex_state = 3}, + [2015] = {.lex_state = 0, .external_lex_state = 3}, [2016] = {.lex_state = 0, .external_lex_state = 3}, - [2017] = {.lex_state = 0, .external_lex_state = 3}, + [2017] = {.lex_state = 4, .external_lex_state = 3}, [2018] = {.lex_state = 58, .external_lex_state = 3}, - [2019] = {.lex_state = 0, .external_lex_state = 3}, - [2020] = {.lex_state = 0, .external_lex_state = 3}, - [2021] = {.lex_state = 0, .external_lex_state = 3}, - [2022] = {.lex_state = 4, .external_lex_state = 3}, - [2023] = {.lex_state = 4, .external_lex_state = 3}, - [2024] = {.lex_state = 3, .external_lex_state = 3}, - [2025] = {.lex_state = 58, .external_lex_state = 3}, - [2026] = {.lex_state = 4, .external_lex_state = 3}, - [2027] = {.lex_state = 0, .external_lex_state = 3}, - [2028] = {.lex_state = 3, .external_lex_state = 3}, - [2029] = {.lex_state = 0, .external_lex_state = 3}, - [2030] = {.lex_state = 58, .external_lex_state = 3}, - [2031] = {.lex_state = 4, .external_lex_state = 3}, - [2032] = {.lex_state = 58, .external_lex_state = 3}, - [2033] = {.lex_state = 9, .external_lex_state = 3}, + [2019] = {.lex_state = 4, .external_lex_state = 3}, + [2020] = {.lex_state = 18, .external_lex_state = 3}, + [2021] = {.lex_state = 58, .external_lex_state = 3}, + [2022] = {.lex_state = 0, .external_lex_state = 3}, + [2023] = {.lex_state = 3, .external_lex_state = 3}, + [2024] = {.lex_state = 0, .external_lex_state = 3}, + [2025] = {.lex_state = 0, .external_lex_state = 3}, + [2026] = {.lex_state = 58, .external_lex_state = 3}, + [2027] = {.lex_state = 3, .external_lex_state = 3}, + [2028] = {.lex_state = 0, .external_lex_state = 3}, + [2029] = {.lex_state = 58, .external_lex_state = 3}, + [2030] = {.lex_state = 0, .external_lex_state = 3}, + [2031] = {.lex_state = 58, .external_lex_state = 3}, + [2032] = {.lex_state = 4, .external_lex_state = 3}, + [2033] = {.lex_state = 0, .external_lex_state = 3}, [2034] = {.lex_state = 0, .external_lex_state = 3}, [2035] = {.lex_state = 0, .external_lex_state = 3}, [2036] = {.lex_state = 0, .external_lex_state = 3}, - [2037] = {.lex_state = 58, .external_lex_state = 3}, - [2038] = {.lex_state = 0, .external_lex_state = 3}, + [2037] = {.lex_state = 0, .external_lex_state = 3}, + [2038] = {.lex_state = 58, .external_lex_state = 3}, [2039] = {.lex_state = 58, .external_lex_state = 3}, [2040] = {.lex_state = 0, .external_lex_state = 3}, [2041] = {.lex_state = 0, .external_lex_state = 3}, [2042] = {.lex_state = 0, .external_lex_state = 3}, [2043] = {.lex_state = 0, .external_lex_state = 3}, - [2044] = {.lex_state = 0, .external_lex_state = 3}, - [2045] = {.lex_state = 4, .external_lex_state = 3}, - [2046] = {.lex_state = 0, .external_lex_state = 3}, - [2047] = {.lex_state = 3, .external_lex_state = 3}, - [2048] = {.lex_state = 58, .external_lex_state = 3}, - [2049] = {.lex_state = 58, .external_lex_state = 3}, - [2050] = {.lex_state = 58, .external_lex_state = 3}, - [2051] = {.lex_state = 58, .external_lex_state = 3}, - [2052] = {.lex_state = 58, .external_lex_state = 3}, - [2053] = {.lex_state = 0, .external_lex_state = 3}, - [2054] = {.lex_state = 58, .external_lex_state = 3}, - [2055] = {.lex_state = 3, .external_lex_state = 3}, + [2044] = {.lex_state = 4, .external_lex_state = 3}, + [2045] = {.lex_state = 0, .external_lex_state = 3}, + [2046] = {.lex_state = 58, .external_lex_state = 3}, + [2047] = {.lex_state = 58, .external_lex_state = 3}, + [2048] = {.lex_state = 0, .external_lex_state = 3}, + [2049] = {.lex_state = 9, .external_lex_state = 3}, + [2050] = {.lex_state = 0, .external_lex_state = 3}, + [2051] = {.lex_state = 0, .external_lex_state = 3}, + [2052] = {.lex_state = 4, .external_lex_state = 3}, + [2053] = {.lex_state = 4, .external_lex_state = 3}, + [2054] = {.lex_state = 0, .external_lex_state = 3}, + [2055] = {.lex_state = 0, .external_lex_state = 3}, [2056] = {.lex_state = 0, .external_lex_state = 3}, [2057] = {.lex_state = 0, .external_lex_state = 3}, - [2058] = {.lex_state = 0, .external_lex_state = 3}, - [2059] = {.lex_state = 58, .external_lex_state = 3}, + [2058] = {.lex_state = 3, .external_lex_state = 3}, + [2059] = {.lex_state = 0, .external_lex_state = 3}, [2060] = {.lex_state = 0, .external_lex_state = 3}, - [2061] = {.lex_state = 58, .external_lex_state = 3}, - [2062] = {.lex_state = 0, .external_lex_state = 3}, - [2063] = {.lex_state = 0, .external_lex_state = 3}, + [2061] = {.lex_state = 0, .external_lex_state = 3}, + [2062] = {.lex_state = 58, .external_lex_state = 3}, + [2063] = {.lex_state = 4, .external_lex_state = 3}, [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 0, .external_lex_state = 3}, + [2065] = {.lex_state = 58, .external_lex_state = 3}, [2066] = {.lex_state = 0, .external_lex_state = 3}, - [2067] = {.lex_state = 0, .external_lex_state = 3}, - [2068] = {.lex_state = 58, .external_lex_state = 3}, + [2067] = {.lex_state = 58, .external_lex_state = 3}, + [2068] = {.lex_state = 0, .external_lex_state = 3}, [2069] = {.lex_state = 0, .external_lex_state = 3}, - [2070] = {.lex_state = 3, .external_lex_state = 3}, - [2071] = {.lex_state = 0, .external_lex_state = 3}, - [2072] = {.lex_state = 3, .external_lex_state = 3}, + [2070] = {.lex_state = 0, .external_lex_state = 3}, + [2071] = {.lex_state = 58, .external_lex_state = 3}, + [2072] = {.lex_state = 0, .external_lex_state = 3}, [2073] = {.lex_state = 0, .external_lex_state = 3}, [2074] = {.lex_state = 0, .external_lex_state = 3}, - [2075] = {.lex_state = 0, .external_lex_state = 3}, - [2076] = {.lex_state = 0, .external_lex_state = 3}, - [2077] = {.lex_state = 58, .external_lex_state = 3}, - [2078] = {.lex_state = 58, .external_lex_state = 3}, + [2075] = {.lex_state = 58, .external_lex_state = 3}, + [2076] = {.lex_state = 58, .external_lex_state = 3}, + [2077] = {.lex_state = 0, .external_lex_state = 3}, + [2078] = {.lex_state = 4, .external_lex_state = 3}, [2079] = {.lex_state = 0, .external_lex_state = 3}, [2080] = {.lex_state = 0, .external_lex_state = 3}, [2081] = {.lex_state = 0, .external_lex_state = 3}, [2082] = {.lex_state = 0, .external_lex_state = 3}, - [2083] = {.lex_state = 0, .external_lex_state = 3}, + [2083] = {.lex_state = 58, .external_lex_state = 3}, [2084] = {.lex_state = 0, .external_lex_state = 3}, [2085] = {.lex_state = 0, .external_lex_state = 3}, - [2086] = {.lex_state = 0, .external_lex_state = 3}, + [2086] = {.lex_state = 58, .external_lex_state = 3}, [2087] = {.lex_state = 58, .external_lex_state = 3}, [2088] = {.lex_state = 0, .external_lex_state = 3}, - [2089] = {.lex_state = 0, .external_lex_state = 3}, - [2090] = {.lex_state = 58, .external_lex_state = 3}, + [2089] = {.lex_state = 58, .external_lex_state = 3}, + [2090] = {.lex_state = 0, .external_lex_state = 3}, [2091] = {.lex_state = 0, .external_lex_state = 3}, [2092] = {.lex_state = 0, .external_lex_state = 3}, [2093] = {.lex_state = 0, .external_lex_state = 3}, [2094] = {.lex_state = 0, .external_lex_state = 3}, [2095] = {.lex_state = 58, .external_lex_state = 3}, - [2096] = {.lex_state = 58, .external_lex_state = 3}, + [2096] = {.lex_state = 0, .external_lex_state = 3}, [2097] = {.lex_state = 0, .external_lex_state = 3}, [2098] = {.lex_state = 0, .external_lex_state = 3}, [2099] = {.lex_state = 0, .external_lex_state = 3}, [2100] = {.lex_state = 0, .external_lex_state = 3}, - [2101] = {.lex_state = 0, .external_lex_state = 3}, - [2102] = {.lex_state = 58, .external_lex_state = 3}, - [2103] = {.lex_state = 0, .external_lex_state = 3}, - [2104] = {.lex_state = 58, .external_lex_state = 3}, - [2105] = {.lex_state = 58, .external_lex_state = 3}, + [2101] = {.lex_state = 58, .external_lex_state = 3}, + [2102] = {.lex_state = 0, .external_lex_state = 3}, + [2103] = {.lex_state = 58, .external_lex_state = 3}, + [2104] = {.lex_state = 0, .external_lex_state = 3}, + [2105] = {.lex_state = 9, .external_lex_state = 3}, [2106] = {.lex_state = 0, .external_lex_state = 3}, - [2107] = {.lex_state = 0, .external_lex_state = 3}, - [2108] = {.lex_state = 58, .external_lex_state = 3}, - [2109] = {.lex_state = 0, .external_lex_state = 3}, - [2110] = {.lex_state = 58, .external_lex_state = 3}, + [2107] = {.lex_state = 4, .external_lex_state = 3}, + [2108] = {.lex_state = 0, .external_lex_state = 3}, + [2109] = {.lex_state = 58, .external_lex_state = 3}, + [2110] = {.lex_state = 0, .external_lex_state = 3}, [2111] = {.lex_state = 0, .external_lex_state = 3}, [2112] = {.lex_state = 58, .external_lex_state = 3}, [2113] = {.lex_state = 0, .external_lex_state = 3}, - [2114] = {.lex_state = 9, .external_lex_state = 3}, - [2115] = {.lex_state = 4, .external_lex_state = 3}, - [2116] = {.lex_state = 4, .external_lex_state = 3}, + [2114] = {.lex_state = 0, .external_lex_state = 3}, + [2115] = {.lex_state = 0, .external_lex_state = 3}, + [2116] = {.lex_state = 3, .external_lex_state = 3}, [2117] = {.lex_state = 58, .external_lex_state = 3}, - [2118] = {.lex_state = 58, .external_lex_state = 3}, + [2118] = {.lex_state = 0, .external_lex_state = 3}, [2119] = {.lex_state = 0, .external_lex_state = 3}, - [2120] = {.lex_state = 0, .external_lex_state = 3}, - [2121] = {.lex_state = 0, .external_lex_state = 3}, + [2120] = {.lex_state = 58, .external_lex_state = 3}, + [2121] = {.lex_state = 4, .external_lex_state = 3}, [2122] = {.lex_state = 4, .external_lex_state = 3}, - [2123] = {.lex_state = 4, .external_lex_state = 3}, + [2123] = {.lex_state = 58, .external_lex_state = 3}, [2124] = {.lex_state = 0, .external_lex_state = 3}, [2125] = {.lex_state = 58, .external_lex_state = 3}, - [2126] = {.lex_state = 58, .external_lex_state = 3}, + [2126] = {.lex_state = 4, .external_lex_state = 3}, [2127] = {.lex_state = 0, .external_lex_state = 3}, [2128] = {.lex_state = 0, .external_lex_state = 3}, - [2129] = {.lex_state = 58, .external_lex_state = 3}, - [2130] = {.lex_state = 4, .external_lex_state = 3}, + [2129] = {.lex_state = 4, .external_lex_state = 3}, + [2130] = {.lex_state = 0, .external_lex_state = 3}, [2131] = {.lex_state = 0, .external_lex_state = 3}, [2132] = {.lex_state = 58, .external_lex_state = 3}, - [2133] = {.lex_state = 58, .external_lex_state = 3}, + [2133] = {.lex_state = 0, .external_lex_state = 3}, [2134] = {.lex_state = 0, .external_lex_state = 3}, - [2135] = {.lex_state = 58, .external_lex_state = 3}, - [2136] = {.lex_state = 0, .external_lex_state = 3}, + [2135] = {.lex_state = 0, .external_lex_state = 3}, + [2136] = {.lex_state = 58, .external_lex_state = 3}, [2137] = {.lex_state = 0, .external_lex_state = 3}, - [2138] = {.lex_state = 58, .external_lex_state = 3}, - [2139] = {.lex_state = 4, .external_lex_state = 3}, - [2140] = {.lex_state = 58, .external_lex_state = 3}, - [2141] = {.lex_state = 0, .external_lex_state = 3}, - [2142] = {.lex_state = 0, .external_lex_state = 3}, - [2143] = {.lex_state = 0, .external_lex_state = 3}, + [2138] = {.lex_state = 4, .external_lex_state = 3}, + [2139] = {.lex_state = 0, .external_lex_state = 3}, + [2140] = {.lex_state = 0, .external_lex_state = 3}, + [2141] = {.lex_state = 58, .external_lex_state = 3}, + [2142] = {.lex_state = 58, .external_lex_state = 3}, + [2143] = {.lex_state = 58, .external_lex_state = 3}, [2144] = {.lex_state = 0, .external_lex_state = 3}, - [2145] = {.lex_state = 4, .external_lex_state = 3}, + [2145] = {.lex_state = 0, .external_lex_state = 3}, [2146] = {.lex_state = 0, .external_lex_state = 3}, [2147] = {.lex_state = 0, .external_lex_state = 3}, [2148] = {.lex_state = 0, .external_lex_state = 3}, - [2149] = {.lex_state = 4, .external_lex_state = 3}, + [2149] = {.lex_state = 0, .external_lex_state = 3}, [2150] = {.lex_state = 0, .external_lex_state = 3}, - [2151] = {.lex_state = 58, .external_lex_state = 3}, - [2152] = {.lex_state = 0, .external_lex_state = 3}, - [2153] = {.lex_state = 58, .external_lex_state = 3}, - [2154] = {.lex_state = 58, .external_lex_state = 3}, + [2151] = {.lex_state = 0, .external_lex_state = 3}, + [2152] = {.lex_state = 58, .external_lex_state = 3}, + [2153] = {.lex_state = 0, .external_lex_state = 3}, + [2154] = {.lex_state = 0, .external_lex_state = 3}, [2155] = {.lex_state = 0, .external_lex_state = 3}, - [2156] = {.lex_state = 0, .external_lex_state = 3}, - [2157] = {.lex_state = 58, .external_lex_state = 3}, - [2158] = {.lex_state = 0, .external_lex_state = 3}, - [2159] = {.lex_state = 58, .external_lex_state = 3}, + [2156] = {.lex_state = 58, .external_lex_state = 3}, + [2157] = {.lex_state = 0, .external_lex_state = 3}, + [2158] = {.lex_state = 58, .external_lex_state = 3}, + [2159] = {.lex_state = 0, .external_lex_state = 3}, [2160] = {.lex_state = 0, .external_lex_state = 3}, - [2161] = {.lex_state = 0, .external_lex_state = 3}, + [2161] = {.lex_state = 18, .external_lex_state = 3}, [2162] = {.lex_state = 0, .external_lex_state = 3}, [2163] = {.lex_state = 0, .external_lex_state = 3}, - [2164] = {.lex_state = 4, .external_lex_state = 3}, - [2165] = {.lex_state = 4, .external_lex_state = 3}, - [2166] = {.lex_state = 0, .external_lex_state = 3}, - [2167] = {.lex_state = 4, .external_lex_state = 3}, + [2164] = {.lex_state = 0, .external_lex_state = 3}, + [2165] = {.lex_state = 0, .external_lex_state = 3}, + [2166] = {.lex_state = 4, .external_lex_state = 3}, + [2167] = {.lex_state = 0, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, - [2169] = {.lex_state = 4, .external_lex_state = 3}, - [2170] = {.lex_state = 0, .external_lex_state = 3}, + [2169] = {.lex_state = 0, .external_lex_state = 3}, + [2170] = {.lex_state = 4, .external_lex_state = 3}, [2171] = {.lex_state = 0, .external_lex_state = 3}, - [2172] = {.lex_state = 0, .external_lex_state = 3}, - [2173] = {.lex_state = 0, .external_lex_state = 3}, - [2174] = {.lex_state = 58, .external_lex_state = 3}, - [2175] = {.lex_state = 0, .external_lex_state = 3}, + [2172] = {.lex_state = 4, .external_lex_state = 3}, + [2173] = {.lex_state = 4, .external_lex_state = 3}, + [2174] = {.lex_state = 0, .external_lex_state = 3}, + [2175] = {.lex_state = 58, .external_lex_state = 3}, [2176] = {.lex_state = 58, .external_lex_state = 3}, [2177] = {.lex_state = 0, .external_lex_state = 3}, - [2178] = {.lex_state = 4, .external_lex_state = 3}, - [2179] = {.lex_state = 0, .external_lex_state = 3}, - [2180] = {.lex_state = 58, .external_lex_state = 3}, + [2178] = {.lex_state = 0, .external_lex_state = 3}, + [2179] = {.lex_state = 4, .external_lex_state = 3}, + [2180] = {.lex_state = 0, .external_lex_state = 3}, [2181] = {.lex_state = 58, .external_lex_state = 3}, [2182] = {.lex_state = 0, .external_lex_state = 3}, [2183] = {.lex_state = 0, .external_lex_state = 3}, - [2184] = {.lex_state = 4, .external_lex_state = 3}, - [2185] = {.lex_state = 58, .external_lex_state = 3}, - [2186] = {.lex_state = 0, .external_lex_state = 3}, - [2187] = {.lex_state = 58, .external_lex_state = 3}, - [2188] = {.lex_state = 4, .external_lex_state = 3}, + [2184] = {.lex_state = 58, .external_lex_state = 3}, + [2185] = {.lex_state = 0, .external_lex_state = 3}, + [2186] = {.lex_state = 4, .external_lex_state = 3}, + [2187] = {.lex_state = 0, .external_lex_state = 3}, + [2188] = {.lex_state = 0, .external_lex_state = 3}, [2189] = {.lex_state = 0, .external_lex_state = 3}, [2190] = {.lex_state = 0, .external_lex_state = 3}, [2191] = {.lex_state = 0, .external_lex_state = 3}, - [2192] = {.lex_state = 0, .external_lex_state = 3}, - [2193] = {.lex_state = 0, .external_lex_state = 3}, + [2192] = {.lex_state = 58, .external_lex_state = 3}, + [2193] = {.lex_state = 4, .external_lex_state = 3}, [2194] = {.lex_state = 0, .external_lex_state = 3}, [2195] = {.lex_state = 0, .external_lex_state = 3}, - [2196] = {.lex_state = 0, .external_lex_state = 3}, + [2196] = {.lex_state = 58, .external_lex_state = 3}, [2197] = {.lex_state = 0, .external_lex_state = 3}, - [2198] = {.lex_state = 4, .external_lex_state = 3}, - [2199] = {.lex_state = 0, .external_lex_state = 3}, - [2200] = {.lex_state = 0, .external_lex_state = 3}, + [2198] = {.lex_state = 0, .external_lex_state = 3}, + [2199] = {.lex_state = 4, .external_lex_state = 3}, + [2200] = {.lex_state = 4, .external_lex_state = 3}, [2201] = {.lex_state = 0, .external_lex_state = 3}, - [2202] = {.lex_state = 0, .external_lex_state = 3}, - [2203] = {.lex_state = 58, .external_lex_state = 3}, + [2202] = {.lex_state = 58, .external_lex_state = 3}, + [2203] = {.lex_state = 0, .external_lex_state = 3}, [2204] = {.lex_state = 0, .external_lex_state = 3}, [2205] = {.lex_state = 0, .external_lex_state = 3}, - [2206] = {.lex_state = 0, .external_lex_state = 3}, - [2207] = {.lex_state = 0, .external_lex_state = 3}, + [2206] = {.lex_state = 58, .external_lex_state = 3}, + [2207] = {.lex_state = 58, .external_lex_state = 3}, [2208] = {.lex_state = 58, .external_lex_state = 3}, - [2209] = {.lex_state = 0, .external_lex_state = 3}, - [2210] = {.lex_state = 58, .external_lex_state = 3}, - [2211] = {.lex_state = 0, .external_lex_state = 3}, - [2212] = {.lex_state = 58, .external_lex_state = 3}, - [2213] = {.lex_state = 4, .external_lex_state = 3}, - [2214] = {.lex_state = 4, .external_lex_state = 3}, - [2215] = {.lex_state = 4, .external_lex_state = 3}, - [2216] = {.lex_state = 0, .external_lex_state = 3}, - [2217] = {.lex_state = 0, .external_lex_state = 3}, - [2218] = {.lex_state = 0, .external_lex_state = 3}, - [2219] = {.lex_state = 4, .external_lex_state = 3}, - [2220] = {.lex_state = 58, .external_lex_state = 3}, - [2221] = {.lex_state = 4, .external_lex_state = 3}, - [2222] = {.lex_state = 58, .external_lex_state = 3}, + [2209] = {.lex_state = 9, .external_lex_state = 3}, + [2210] = {.lex_state = 0, .external_lex_state = 3}, + [2211] = {.lex_state = 58, .external_lex_state = 3}, + [2212] = {.lex_state = 0, .external_lex_state = 3}, + [2213] = {.lex_state = 0, .external_lex_state = 3}, + [2214] = {.lex_state = 0, .external_lex_state = 3}, + [2215] = {.lex_state = 0, .external_lex_state = 3}, + [2216] = {.lex_state = 58, .external_lex_state = 3}, + [2217] = {.lex_state = 58, .external_lex_state = 3}, + [2218] = {.lex_state = 4, .external_lex_state = 3}, + [2219] = {.lex_state = 0, .external_lex_state = 3}, + [2220] = {.lex_state = 0, .external_lex_state = 3}, + [2221] = {.lex_state = 0, .external_lex_state = 3}, + [2222] = {.lex_state = 0, .external_lex_state = 3}, [2223] = {.lex_state = 0, .external_lex_state = 3}, - [2224] = {.lex_state = 0, .external_lex_state = 3}, - [2225] = {.lex_state = 58, .external_lex_state = 3}, + [2224] = {.lex_state = 4, .external_lex_state = 3}, + [2225] = {.lex_state = 0, .external_lex_state = 3}, [2226] = {.lex_state = 58, .external_lex_state = 3}, - [2227] = {.lex_state = 58, .external_lex_state = 3}, - [2228] = {.lex_state = 0, .external_lex_state = 3}, + [2227] = {.lex_state = 0, .external_lex_state = 3}, + [2228] = {.lex_state = 4, .external_lex_state = 3}, [2229] = {.lex_state = 0, .external_lex_state = 3}, - [2230] = {.lex_state = 4, .external_lex_state = 3}, - [2231] = {.lex_state = 58, .external_lex_state = 3}, + [2230] = {.lex_state = 0, .external_lex_state = 3}, + [2231] = {.lex_state = 0, .external_lex_state = 3}, [2232] = {.lex_state = 0, .external_lex_state = 3}, [2233] = {.lex_state = 0, .external_lex_state = 3}, [2234] = {.lex_state = 0, .external_lex_state = 3}, [2235] = {.lex_state = 0, .external_lex_state = 3}, - [2236] = {.lex_state = 58, .external_lex_state = 3}, - [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 0, .external_lex_state = 3}, - [2239] = {.lex_state = 58, .external_lex_state = 3}, + [2236] = {.lex_state = 0, .external_lex_state = 3}, + [2237] = {.lex_state = 58, .external_lex_state = 3}, + [2238] = {.lex_state = 58, .external_lex_state = 3}, + [2239] = {.lex_state = 0, .external_lex_state = 3}, [2240] = {.lex_state = 0, .external_lex_state = 3}, [2241] = {.lex_state = 0, .external_lex_state = 3}, - [2242] = {.lex_state = 18, .external_lex_state = 3}, + [2242] = {.lex_state = 58, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, - [2244] = {.lex_state = 0, .external_lex_state = 3}, - [2245] = {.lex_state = 0, .external_lex_state = 3}, - [2246] = {.lex_state = 0, .external_lex_state = 3}, + [2244] = {.lex_state = 58, .external_lex_state = 3}, + [2245] = {.lex_state = 58, .external_lex_state = 3}, + [2246] = {.lex_state = 4, .external_lex_state = 3}, [2247] = {.lex_state = 0, .external_lex_state = 3}, [2248] = {.lex_state = 0, .external_lex_state = 3}, [2249] = {.lex_state = 0, .external_lex_state = 3}, - [2250] = {.lex_state = 18, .external_lex_state = 3}, - [2251] = {.lex_state = 0, .external_lex_state = 3}, - [2252] = {.lex_state = 0, .external_lex_state = 3}, + [2250] = {.lex_state = 0, .external_lex_state = 3}, + [2251] = {.lex_state = 58, .external_lex_state = 3}, + [2252] = {.lex_state = 58, .external_lex_state = 3}, [2253] = {.lex_state = 0, .external_lex_state = 3}, - [2254] = {.lex_state = 0, .external_lex_state = 3}, - [2255] = {.lex_state = 0, .external_lex_state = 3}, - [2256] = {.lex_state = 0, .external_lex_state = 3}, - [2257] = {.lex_state = 4, .external_lex_state = 3}, + [2254] = {.lex_state = 4, .external_lex_state = 3}, + [2255] = {.lex_state = 4, .external_lex_state = 3}, + [2256] = {.lex_state = 4, .external_lex_state = 3}, + [2257] = {.lex_state = 0, .external_lex_state = 3}, [2258] = {.lex_state = 0, .external_lex_state = 3}, [2259] = {.lex_state = 0, .external_lex_state = 3}, [2260] = {.lex_state = 0, .external_lex_state = 3}, @@ -15628,324 +15618,323 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2262] = {.lex_state = 0, .external_lex_state = 3}, [2263] = {.lex_state = 0, .external_lex_state = 3}, [2264] = {.lex_state = 0, .external_lex_state = 3}, - [2265] = {.lex_state = 58, .external_lex_state = 3}, - [2266] = {.lex_state = 9, .external_lex_state = 3}, - [2267] = {.lex_state = 58, .external_lex_state = 3}, - [2268] = {.lex_state = 58, .external_lex_state = 3}, + [2265] = {.lex_state = 0, .external_lex_state = 3}, + [2266] = {.lex_state = 0, .external_lex_state = 3}, + [2267] = {.lex_state = 4, .external_lex_state = 3}, + [2268] = {.lex_state = 0, .external_lex_state = 3}, [2269] = {.lex_state = 0, .external_lex_state = 3}, - [2270] = {.lex_state = 0, .external_lex_state = 3}, - [2271] = {.lex_state = 0, .external_lex_state = 3}, + [2270] = {.lex_state = 18, .external_lex_state = 3}, + [2271] = {.lex_state = 4, .external_lex_state = 3}, [2272] = {.lex_state = 0, .external_lex_state = 3}, [2273] = {.lex_state = 0, .external_lex_state = 3}, [2274] = {.lex_state = 0, .external_lex_state = 3}, [2275] = {.lex_state = 0, .external_lex_state = 3}, - [2276] = {.lex_state = 0, .external_lex_state = 5}, + [2276] = {.lex_state = 0, .external_lex_state = 3}, [2277] = {.lex_state = 0, .external_lex_state = 3}, - [2278] = {.lex_state = 0, .external_lex_state = 3}, + [2278] = {.lex_state = 58, .external_lex_state = 3}, [2279] = {.lex_state = 0, .external_lex_state = 3}, [2280] = {.lex_state = 0, .external_lex_state = 3}, - [2281] = {.lex_state = 58, .external_lex_state = 3}, - [2282] = {.lex_state = 4, .external_lex_state = 3}, - [2283] = {.lex_state = 18, .external_lex_state = 3}, - [2284] = {.lex_state = 0, .external_lex_state = 3}, - [2285] = {.lex_state = 4, .external_lex_state = 3}, - [2286] = {.lex_state = 0, .external_lex_state = 3}, + [2281] = {.lex_state = 0, .external_lex_state = 3}, + [2282] = {.lex_state = 0, .external_lex_state = 3}, + [2283] = {.lex_state = 58, .external_lex_state = 3}, + [2284] = {.lex_state = 58, .external_lex_state = 3}, + [2285] = {.lex_state = 0, .external_lex_state = 3}, + [2286] = {.lex_state = 4, .external_lex_state = 3}, [2287] = {.lex_state = 0, .external_lex_state = 3}, [2288] = {.lex_state = 0, .external_lex_state = 3}, [2289] = {.lex_state = 0, .external_lex_state = 3}, - [2290] = {.lex_state = 0, .external_lex_state = 3}, - [2291] = {.lex_state = 58, .external_lex_state = 3}, - [2292] = {.lex_state = 58, .external_lex_state = 3}, - [2293] = {.lex_state = 0, .external_lex_state = 3}, + [2290] = {.lex_state = 18, .external_lex_state = 3}, + [2291] = {.lex_state = 18, .external_lex_state = 3}, + [2292] = {.lex_state = 0, .external_lex_state = 3}, + [2293] = {.lex_state = 18, .external_lex_state = 3}, [2294] = {.lex_state = 0, .external_lex_state = 3}, [2295] = {.lex_state = 0, .external_lex_state = 3}, [2296] = {.lex_state = 0, .external_lex_state = 3}, [2297] = {.lex_state = 0, .external_lex_state = 3}, - [2298] = {.lex_state = 0, .external_lex_state = 3}, + [2298] = {.lex_state = 4, .external_lex_state = 3}, [2299] = {.lex_state = 0, .external_lex_state = 3}, - [2300] = {.lex_state = 58, .external_lex_state = 3}, - [2301] = {.lex_state = 0, .external_lex_state = 3}, - [2302] = {.lex_state = 18, .external_lex_state = 3}, - [2303] = {.lex_state = 0, .external_lex_state = 3}, - [2304] = {.lex_state = 18, .external_lex_state = 3}, + [2300] = {.lex_state = 0, .external_lex_state = 5}, + [2301] = {.lex_state = 58, .external_lex_state = 3}, + [2302] = {.lex_state = 58, .external_lex_state = 3}, + [2303] = {.lex_state = 58, .external_lex_state = 3}, + [2304] = {.lex_state = 0, .external_lex_state = 3}, [2305] = {.lex_state = 0, .external_lex_state = 3}, [2306] = {.lex_state = 58, .external_lex_state = 3}, - [2307] = {.lex_state = 58, .external_lex_state = 3}, + [2307] = {.lex_state = 0, .external_lex_state = 3}, [2308] = {.lex_state = 0, .external_lex_state = 3}, [2309] = {.lex_state = 0, .external_lex_state = 3}, [2310] = {.lex_state = 0, .external_lex_state = 3}, [2311] = {.lex_state = 4, .external_lex_state = 3}, - [2312] = {.lex_state = 18, .external_lex_state = 3}, + [2312] = {.lex_state = 0, .external_lex_state = 3}, [2313] = {.lex_state = 0, .external_lex_state = 3}, - [2314] = {.lex_state = 4, .external_lex_state = 3}, - [2315] = {.lex_state = 4, .external_lex_state = 3}, + [2314] = {.lex_state = 58, .external_lex_state = 3}, + [2315] = {.lex_state = 58, .external_lex_state = 3}, [2316] = {.lex_state = 0, .external_lex_state = 3}, [2317] = {.lex_state = 0, .external_lex_state = 3}, - [2318] = {.lex_state = 58, .external_lex_state = 3}, - [2319] = {.lex_state = 0, .external_lex_state = 3}, - [2320] = {.lex_state = 0, .external_lex_state = 3}, - [2321] = {.lex_state = 0, .external_lex_state = 3}, - [2322] = {.lex_state = 58, .external_lex_state = 3}, - [2323] = {.lex_state = 0, .external_lex_state = 3}, + [2318] = {.lex_state = 4, .external_lex_state = 3}, + [2319] = {.lex_state = 58, .external_lex_state = 3}, + [2320] = {.lex_state = 4, .external_lex_state = 3}, + [2321] = {.lex_state = 4, .external_lex_state = 3}, + [2322] = {.lex_state = 0, .external_lex_state = 3}, + [2323] = {.lex_state = 4, .external_lex_state = 3}, [2324] = {.lex_state = 0, .external_lex_state = 3}, - [2325] = {.lex_state = 58, .external_lex_state = 3}, - [2326] = {.lex_state = 4, .external_lex_state = 3}, - [2327] = {.lex_state = 0, .external_lex_state = 3}, + [2325] = {.lex_state = 0, .external_lex_state = 3}, + [2326] = {.lex_state = 58, .external_lex_state = 3}, + [2327] = {.lex_state = 58, .external_lex_state = 3}, [2328] = {.lex_state = 0, .external_lex_state = 3}, [2329] = {.lex_state = 0, .external_lex_state = 3}, - [2330] = {.lex_state = 0, .external_lex_state = 3}, + [2330] = {.lex_state = 18, .external_lex_state = 3}, [2331] = {.lex_state = 4, .external_lex_state = 3}, [2332] = {.lex_state = 0, .external_lex_state = 3}, [2333] = {.lex_state = 0, .external_lex_state = 3}, - [2334] = {.lex_state = 4, .external_lex_state = 3}, - [2335] = {.lex_state = 4, .external_lex_state = 3}, + [2334] = {.lex_state = 0, .external_lex_state = 3}, + [2335] = {.lex_state = 0, .external_lex_state = 3}, [2336] = {.lex_state = 0, .external_lex_state = 3}, [2337] = {.lex_state = 0, .external_lex_state = 3}, [2338] = {.lex_state = 0, .external_lex_state = 3}, [2339] = {.lex_state = 0, .external_lex_state = 3}, - [2340] = {.lex_state = 58, .external_lex_state = 3}, + [2340] = {.lex_state = 0, .external_lex_state = 3}, [2341] = {.lex_state = 58, .external_lex_state = 3}, - [2342] = {.lex_state = 4, .external_lex_state = 3}, + [2342] = {.lex_state = 0, .external_lex_state = 3}, [2343] = {.lex_state = 0, .external_lex_state = 3}, - [2344] = {.lex_state = 58, .external_lex_state = 3}, - [2345] = {.lex_state = 4, .external_lex_state = 3}, - [2346] = {.lex_state = 58, .external_lex_state = 3}, - [2347] = {.lex_state = 4, .external_lex_state = 3}, + [2344] = {.lex_state = 0, .external_lex_state = 3}, + [2345] = {.lex_state = 0, .external_lex_state = 3}, + [2346] = {.lex_state = 4, .external_lex_state = 3}, + [2347] = {.lex_state = 0, .external_lex_state = 3}, [2348] = {.lex_state = 4, .external_lex_state = 3}, [2349] = {.lex_state = 4, .external_lex_state = 3}, [2350] = {.lex_state = 4, .external_lex_state = 3}, - [2351] = {.lex_state = 0, .external_lex_state = 3}, + [2351] = {.lex_state = 4, .external_lex_state = 3}, [2352] = {.lex_state = 4, .external_lex_state = 3}, - [2353] = {.lex_state = 0, .external_lex_state = 3}, - [2354] = {.lex_state = 0, .external_lex_state = 3}, + [2353] = {.lex_state = 4, .external_lex_state = 3}, + [2354] = {.lex_state = 4, .external_lex_state = 3}, [2355] = {.lex_state = 4, .external_lex_state = 3}, [2356] = {.lex_state = 4, .external_lex_state = 3}, [2357] = {.lex_state = 4, .external_lex_state = 3}, - [2358] = {.lex_state = 0, .external_lex_state = 3}, + [2358] = {.lex_state = 4, .external_lex_state = 3}, [2359] = {.lex_state = 4, .external_lex_state = 3}, - [2360] = {.lex_state = 4, .external_lex_state = 3}, + [2360] = {.lex_state = 0, .external_lex_state = 3}, [2361] = {.lex_state = 0, .external_lex_state = 3}, - [2362] = {.lex_state = 58, .external_lex_state = 3}, + [2362] = {.lex_state = 4, .external_lex_state = 3}, [2363] = {.lex_state = 4, .external_lex_state = 3}, - [2364] = {.lex_state = 4, .external_lex_state = 3}, - [2365] = {.lex_state = 0, .external_lex_state = 3}, - [2366] = {.lex_state = 4, .external_lex_state = 3}, - [2367] = {.lex_state = 0, .external_lex_state = 3}, + [2364] = {.lex_state = 0, .external_lex_state = 3}, + [2365] = {.lex_state = 4, .external_lex_state = 3}, + [2366] = {.lex_state = 0, .external_lex_state = 3}, + [2367] = {.lex_state = 4, .external_lex_state = 3}, [2368] = {.lex_state = 4, .external_lex_state = 3}, [2369] = {.lex_state = 4, .external_lex_state = 3}, [2370] = {.lex_state = 4, .external_lex_state = 3}, [2371] = {.lex_state = 4, .external_lex_state = 3}, - [2372] = {.lex_state = 4, .external_lex_state = 3}, - [2373] = {.lex_state = 0, .external_lex_state = 3}, - [2374] = {.lex_state = 0, .external_lex_state = 3}, - [2375] = {.lex_state = 4, .external_lex_state = 3}, - [2376] = {.lex_state = 0, .external_lex_state = 3}, + [2372] = {.lex_state = 0, .external_lex_state = 3}, + [2373] = {.lex_state = 9, .external_lex_state = 3}, + [2374] = {.lex_state = 9, .external_lex_state = 3}, + [2375] = {.lex_state = 0, .external_lex_state = 3}, + [2376] = {.lex_state = 4, .external_lex_state = 3}, [2377] = {.lex_state = 0, .external_lex_state = 3}, [2378] = {.lex_state = 0, .external_lex_state = 3}, - [2379] = {.lex_state = 4, .external_lex_state = 3}, - [2380] = {.lex_state = 0, .external_lex_state = 3}, + [2379] = {.lex_state = 0, .external_lex_state = 3}, + [2380] = {.lex_state = 9, .external_lex_state = 3}, [2381] = {.lex_state = 4, .external_lex_state = 3}, - [2382] = {.lex_state = 4, .external_lex_state = 3}, + [2382] = {.lex_state = 0, .external_lex_state = 3}, [2383] = {.lex_state = 4, .external_lex_state = 3}, [2384] = {.lex_state = 4, .external_lex_state = 3}, - [2385] = {.lex_state = 4, .external_lex_state = 3}, + [2385] = {.lex_state = 0, .external_lex_state = 3}, [2386] = {.lex_state = 0, .external_lex_state = 3}, [2387] = {.lex_state = 0, .external_lex_state = 3}, [2388] = {.lex_state = 0, .external_lex_state = 3}, - [2389] = {.lex_state = 9, .external_lex_state = 3}, + [2389] = {.lex_state = 0, .external_lex_state = 3}, [2390] = {.lex_state = 4, .external_lex_state = 3}, [2391] = {.lex_state = 4, .external_lex_state = 3}, [2392] = {.lex_state = 4, .external_lex_state = 3}, - [2393] = {.lex_state = 4, .external_lex_state = 3}, - [2394] = {.lex_state = 4, .external_lex_state = 3}, - [2395] = {.lex_state = 4, .external_lex_state = 3}, + [2393] = {.lex_state = 0, .external_lex_state = 3}, + [2394] = {.lex_state = 58, .external_lex_state = 3}, + [2395] = {.lex_state = 0, .external_lex_state = 3}, [2396] = {.lex_state = 4, .external_lex_state = 3}, - [2397] = {.lex_state = 0, .external_lex_state = 3}, + [2397] = {.lex_state = 4, .external_lex_state = 3}, [2398] = {.lex_state = 4, .external_lex_state = 3}, - [2399] = {.lex_state = 4, .external_lex_state = 3}, + [2399] = {.lex_state = 0, .external_lex_state = 3}, [2400] = {.lex_state = 4, .external_lex_state = 3}, [2401] = {.lex_state = 4, .external_lex_state = 3}, [2402] = {.lex_state = 4, .external_lex_state = 3}, [2403] = {.lex_state = 4, .external_lex_state = 3}, [2404] = {.lex_state = 4, .external_lex_state = 3}, - [2405] = {.lex_state = 4, .external_lex_state = 3}, - [2406] = {.lex_state = 9, .external_lex_state = 3}, + [2405] = {.lex_state = 0, .external_lex_state = 3}, + [2406] = {.lex_state = 0, .external_lex_state = 3}, [2407] = {.lex_state = 0, .external_lex_state = 3}, - [2408] = {.lex_state = 4, .external_lex_state = 3}, - [2409] = {.lex_state = 4, .external_lex_state = 3}, - [2410] = {.lex_state = 4, .external_lex_state = 3}, - [2411] = {.lex_state = 4, .external_lex_state = 3}, - [2412] = {.lex_state = 4, .external_lex_state = 3}, - [2413] = {.lex_state = 4, .external_lex_state = 3}, - [2414] = {.lex_state = 4, .external_lex_state = 3}, - [2415] = {.lex_state = 0, .external_lex_state = 3}, - [2416] = {.lex_state = 4, .external_lex_state = 3}, + [2408] = {.lex_state = 0, .external_lex_state = 3}, + [2409] = {.lex_state = 0, .external_lex_state = 3}, + [2410] = {.lex_state = 0, .external_lex_state = 3}, + [2411] = {.lex_state = 0, .external_lex_state = 3}, + [2412] = {.lex_state = 0, .external_lex_state = 3}, + [2413] = {.lex_state = 0, .external_lex_state = 3}, + [2414] = {.lex_state = 0, .external_lex_state = 3}, + [2415] = {.lex_state = 4, .external_lex_state = 3}, + [2416] = {.lex_state = 0, .external_lex_state = 3}, [2417] = {.lex_state = 0, .external_lex_state = 3}, - [2418] = {.lex_state = 0, .external_lex_state = 3}, + [2418] = {.lex_state = 4, .external_lex_state = 3}, [2419] = {.lex_state = 4, .external_lex_state = 3}, [2420] = {.lex_state = 0, .external_lex_state = 3}, - [2421] = {.lex_state = 0, .external_lex_state = 3}, - [2422] = {.lex_state = 4, .external_lex_state = 3}, + [2421] = {.lex_state = 4, .external_lex_state = 3}, + [2422] = {.lex_state = 58, .external_lex_state = 3}, [2423] = {.lex_state = 0, .external_lex_state = 3}, - [2424] = {.lex_state = 58, .external_lex_state = 3}, - [2425] = {.lex_state = 58, .external_lex_state = 3}, - [2426] = {.lex_state = 0, .external_lex_state = 3}, - [2427] = {.lex_state = 4, .external_lex_state = 3}, - [2428] = {.lex_state = 0, .external_lex_state = 3}, + [2424] = {.lex_state = 4, .external_lex_state = 3}, + [2425] = {.lex_state = 0, .external_lex_state = 3}, + [2426] = {.lex_state = 9, .external_lex_state = 3}, + [2427] = {.lex_state = 0, .external_lex_state = 3}, + [2428] = {.lex_state = 4, .external_lex_state = 3}, [2429] = {.lex_state = 4, .external_lex_state = 3}, [2430] = {.lex_state = 4, .external_lex_state = 3}, - [2431] = {.lex_state = 4, .external_lex_state = 3}, - [2432] = {.lex_state = 0, .external_lex_state = 3}, - [2433] = {.lex_state = 4, .external_lex_state = 3}, - [2434] = {.lex_state = 0, .external_lex_state = 3}, - [2435] = {.lex_state = 0, .external_lex_state = 3}, + [2431] = {.lex_state = 0, .external_lex_state = 3}, + [2432] = {.lex_state = 4, .external_lex_state = 3}, + [2433] = {.lex_state = 0, .external_lex_state = 3}, + [2434] = {.lex_state = 9, .external_lex_state = 3}, + [2435] = {.lex_state = 4, .external_lex_state = 3}, [2436] = {.lex_state = 4, .external_lex_state = 3}, [2437] = {.lex_state = 0, .external_lex_state = 3}, [2438] = {.lex_state = 4, .external_lex_state = 3}, - [2439] = {.lex_state = 0, .external_lex_state = 3}, + [2439] = {.lex_state = 4, .external_lex_state = 3}, [2440] = {.lex_state = 0, .external_lex_state = 3}, [2441] = {.lex_state = 0, .external_lex_state = 3}, [2442] = {.lex_state = 4, .external_lex_state = 3}, [2443] = {.lex_state = 0, .external_lex_state = 3}, - [2444] = {.lex_state = 0, .external_lex_state = 3}, - [2445] = {.lex_state = 58, .external_lex_state = 3}, + [2444] = {.lex_state = 4, .external_lex_state = 3}, + [2445] = {.lex_state = 4, .external_lex_state = 3}, [2446] = {.lex_state = 4, .external_lex_state = 3}, [2447] = {.lex_state = 4, .external_lex_state = 3}, - [2448] = {.lex_state = 4, .external_lex_state = 3}, + [2448] = {.lex_state = 0, .external_lex_state = 3}, [2449] = {.lex_state = 4, .external_lex_state = 3}, - [2450] = {.lex_state = 0, .external_lex_state = 3}, - [2451] = {.lex_state = 0, .external_lex_state = 3}, - [2452] = {.lex_state = 0, .external_lex_state = 3}, - [2453] = {.lex_state = 4, .external_lex_state = 3}, - [2454] = {.lex_state = 0, .external_lex_state = 3}, - [2455] = {.lex_state = 4, .external_lex_state = 3}, - [2456] = {.lex_state = 0, .external_lex_state = 3}, + [2450] = {.lex_state = 4, .external_lex_state = 3}, + [2451] = {.lex_state = 4, .external_lex_state = 3}, + [2452] = {.lex_state = 4, .external_lex_state = 3}, + [2453] = {.lex_state = 0, .external_lex_state = 3}, + [2454] = {.lex_state = 4, .external_lex_state = 3}, + [2455] = {.lex_state = 9, .external_lex_state = 3}, + [2456] = {.lex_state = 4, .external_lex_state = 3}, [2457] = {.lex_state = 4, .external_lex_state = 3}, - [2458] = {.lex_state = 4, .external_lex_state = 3}, + [2458] = {.lex_state = 0, .external_lex_state = 3}, [2459] = {.lex_state = 4, .external_lex_state = 3}, [2460] = {.lex_state = 4, .external_lex_state = 3}, - [2461] = {.lex_state = 0, .external_lex_state = 3}, + [2461] = {.lex_state = 4, .external_lex_state = 3}, [2462] = {.lex_state = 0, .external_lex_state = 3}, - [2463] = {.lex_state = 4, .external_lex_state = 3}, + [2463] = {.lex_state = 0, .external_lex_state = 3}, [2464] = {.lex_state = 0, .external_lex_state = 3}, - [2465] = {.lex_state = 4, .external_lex_state = 3}, - [2466] = {.lex_state = 4, .external_lex_state = 3}, + [2465] = {.lex_state = 0, .external_lex_state = 3}, + [2466] = {.lex_state = 0, .external_lex_state = 3}, [2467] = {.lex_state = 0, .external_lex_state = 3}, - [2468] = {.lex_state = 4, .external_lex_state = 3}, - [2469] = {.lex_state = 0, .external_lex_state = 3}, + [2468] = {.lex_state = 0, .external_lex_state = 3}, + [2469] = {.lex_state = 4, .external_lex_state = 3}, [2470] = {.lex_state = 4, .external_lex_state = 3}, - [2471] = {.lex_state = 0, .external_lex_state = 3}, + [2471] = {.lex_state = 9, .external_lex_state = 3}, [2472] = {.lex_state = 0, .external_lex_state = 3}, - [2473] = {.lex_state = 4, .external_lex_state = 3}, - [2474] = {.lex_state = 9, .external_lex_state = 3}, - [2475] = {.lex_state = 4, .external_lex_state = 3}, + [2473] = {.lex_state = 9, .external_lex_state = 3}, + [2474] = {.lex_state = 4, .external_lex_state = 3}, + [2475] = {.lex_state = 0, .external_lex_state = 3}, [2476] = {.lex_state = 0, .external_lex_state = 3}, - [2477] = {.lex_state = 0, .external_lex_state = 3}, + [2477] = {.lex_state = 4, .external_lex_state = 3}, [2478] = {.lex_state = 0, .external_lex_state = 3}, - [2479] = {.lex_state = 4, .external_lex_state = 3}, + [2479] = {.lex_state = 0, .external_lex_state = 3}, [2480] = {.lex_state = 0, .external_lex_state = 3}, [2481] = {.lex_state = 0, .external_lex_state = 3}, [2482] = {.lex_state = 0, .external_lex_state = 3}, - [2483] = {.lex_state = 0, .external_lex_state = 3}, + [2483] = {.lex_state = 4, .external_lex_state = 3}, [2484] = {.lex_state = 4, .external_lex_state = 3}, [2485] = {.lex_state = 4, .external_lex_state = 3}, - [2486] = {.lex_state = 4, .external_lex_state = 3}, - [2487] = {.lex_state = 4, .external_lex_state = 3}, - [2488] = {.lex_state = 9, .external_lex_state = 3}, - [2489] = {.lex_state = 0, .external_lex_state = 3}, - [2490] = {.lex_state = 0, .external_lex_state = 3}, + [2486] = {.lex_state = 0, .external_lex_state = 3}, + [2487] = {.lex_state = 0, .external_lex_state = 3}, + [2488] = {.lex_state = 4, .external_lex_state = 3}, + [2489] = {.lex_state = 4, .external_lex_state = 3}, + [2490] = {.lex_state = 4, .external_lex_state = 3}, [2491] = {.lex_state = 0, .external_lex_state = 3}, [2492] = {.lex_state = 0, .external_lex_state = 3}, - [2493] = {.lex_state = 0, .external_lex_state = 3}, + [2493] = {.lex_state = 9, .external_lex_state = 3}, [2494] = {.lex_state = 0, .external_lex_state = 3}, [2495] = {.lex_state = 0, .external_lex_state = 3}, [2496] = {.lex_state = 0, .external_lex_state = 3}, - [2497] = {.lex_state = 4, .external_lex_state = 3}, + [2497] = {.lex_state = 0, .external_lex_state = 3}, [2498] = {.lex_state = 0, .external_lex_state = 3}, [2499] = {.lex_state = 0, .external_lex_state = 3}, [2500] = {.lex_state = 0, .external_lex_state = 3}, - [2501] = {.lex_state = 0, .external_lex_state = 3}, - [2502] = {.lex_state = 9, .external_lex_state = 3}, + [2501] = {.lex_state = 4, .external_lex_state = 3}, + [2502] = {.lex_state = 4, .external_lex_state = 3}, [2503] = {.lex_state = 4, .external_lex_state = 3}, - [2504] = {.lex_state = 0, .external_lex_state = 3}, - [2505] = {.lex_state = 4, .external_lex_state = 3}, - [2506] = {.lex_state = 0, .external_lex_state = 3}, + [2504] = {.lex_state = 4, .external_lex_state = 3}, + [2505] = {.lex_state = 0, .external_lex_state = 3}, + [2506] = {.lex_state = 4, .external_lex_state = 3}, [2507] = {.lex_state = 0, .external_lex_state = 3}, [2508] = {.lex_state = 0, .external_lex_state = 3}, - [2509] = {.lex_state = 9, .external_lex_state = 3}, + [2509] = {.lex_state = 58, .external_lex_state = 3}, [2510] = {.lex_state = 0, .external_lex_state = 3}, [2511] = {.lex_state = 0, .external_lex_state = 3}, - [2512] = {.lex_state = 0, .external_lex_state = 3}, + [2512] = {.lex_state = 4, .external_lex_state = 3}, [2513] = {.lex_state = 0, .external_lex_state = 3}, [2514] = {.lex_state = 0, .external_lex_state = 3}, - [2515] = {.lex_state = 0, .external_lex_state = 3}, - [2516] = {.lex_state = 4, .external_lex_state = 3}, + [2515] = {.lex_state = 4, .external_lex_state = 3}, + [2516] = {.lex_state = 0, .external_lex_state = 3}, [2517] = {.lex_state = 0, .external_lex_state = 3}, [2518] = {.lex_state = 0, .external_lex_state = 3}, - [2519] = {.lex_state = 0, .external_lex_state = 3}, + [2519] = {.lex_state = 4, .external_lex_state = 3}, [2520] = {.lex_state = 0, .external_lex_state = 3}, [2521] = {.lex_state = 0, .external_lex_state = 3}, - [2522] = {.lex_state = 4, .external_lex_state = 3}, - [2523] = {.lex_state = 9, .external_lex_state = 3}, - [2524] = {.lex_state = 0, .external_lex_state = 3}, - [2525] = {.lex_state = 9, .external_lex_state = 3}, + [2522] = {.lex_state = 9, .external_lex_state = 3}, + [2523] = {.lex_state = 0, .external_lex_state = 3}, + [2524] = {.lex_state = 9, .external_lex_state = 3}, + [2525] = {.lex_state = 0, .external_lex_state = 3}, [2526] = {.lex_state = 0, .external_lex_state = 3}, [2527] = {.lex_state = 4, .external_lex_state = 3}, [2528] = {.lex_state = 0, .external_lex_state = 3}, - [2529] = {.lex_state = 0, .external_lex_state = 3}, - [2530] = {.lex_state = 9, .external_lex_state = 3}, + [2529] = {.lex_state = 9, .external_lex_state = 3}, + [2530] = {.lex_state = 0, .external_lex_state = 3}, [2531] = {.lex_state = 0, .external_lex_state = 3}, - [2532] = {.lex_state = 0, .external_lex_state = 3}, + [2532] = {.lex_state = 4, .external_lex_state = 3}, [2533] = {.lex_state = 4, .external_lex_state = 3}, - [2534] = {.lex_state = 9, .external_lex_state = 3}, + [2534] = {.lex_state = 4, .external_lex_state = 3}, [2535] = {.lex_state = 0, .external_lex_state = 3}, [2536] = {.lex_state = 0, .external_lex_state = 3}, [2537] = {.lex_state = 0, .external_lex_state = 3}, - [2538] = {.lex_state = 0, .external_lex_state = 3}, - [2539] = {.lex_state = 9, .external_lex_state = 3}, - [2540] = {.lex_state = 0, .external_lex_state = 3}, - [2541] = {.lex_state = 0, .external_lex_state = 3}, - [2542] = {.lex_state = 9, .external_lex_state = 3}, - [2543] = {.lex_state = 0, .external_lex_state = 3}, - [2544] = {.lex_state = 9, .external_lex_state = 3}, + [2538] = {.lex_state = 9, .external_lex_state = 3}, + [2539] = {.lex_state = 0, .external_lex_state = 3}, + [2540] = {.lex_state = 58, .external_lex_state = 3}, + [2541] = {.lex_state = 4, .external_lex_state = 3}, + [2542] = {.lex_state = 0, .external_lex_state = 3}, + [2543] = {.lex_state = 9, .external_lex_state = 3}, + [2544] = {.lex_state = 0, .external_lex_state = 3}, [2545] = {.lex_state = 0, .external_lex_state = 3}, - [2546] = {.lex_state = 0, .external_lex_state = 3}, - [2547] = {.lex_state = 9, .external_lex_state = 3}, + [2546] = {.lex_state = 9, .external_lex_state = 3}, + [2547] = {.lex_state = 0, .external_lex_state = 3}, [2548] = {.lex_state = 0, .external_lex_state = 3}, [2549] = {.lex_state = 0, .external_lex_state = 3}, [2550] = {.lex_state = 0, .external_lex_state = 3}, - [2551] = {.lex_state = 0, .external_lex_state = 3}, - [2552] = {.lex_state = 0, .external_lex_state = 3}, - [2553] = {.lex_state = 9, .external_lex_state = 3}, - [2554] = {.lex_state = 4, .external_lex_state = 3}, - [2555] = {.lex_state = 9, .external_lex_state = 3}, + [2551] = {.lex_state = 4, .external_lex_state = 3}, + [2552] = {.lex_state = 9, .external_lex_state = 3}, + [2553] = {.lex_state = 0, .external_lex_state = 3}, + [2554] = {.lex_state = 9, .external_lex_state = 3}, + [2555] = {.lex_state = 0, .external_lex_state = 3}, [2556] = {.lex_state = 0, .external_lex_state = 3}, [2557] = {.lex_state = 0, .external_lex_state = 3}, - [2558] = {.lex_state = 0, .external_lex_state = 3}, + [2558] = {.lex_state = 4, .external_lex_state = 3}, [2559] = {.lex_state = 0, .external_lex_state = 3}, [2560] = {.lex_state = 0, .external_lex_state = 3}, [2561] = {.lex_state = 0, .external_lex_state = 3}, - [2562] = {.lex_state = 4, .external_lex_state = 3}, - [2563] = {.lex_state = 0, .external_lex_state = 3}, - [2564] = {.lex_state = 4, .external_lex_state = 3}, - [2565] = {.lex_state = 4, .external_lex_state = 3}, - [2566] = {.lex_state = 9, .external_lex_state = 3}, + [2562] = {.lex_state = 0, .external_lex_state = 3}, + [2563] = {.lex_state = 4, .external_lex_state = 3}, + [2564] = {.lex_state = 0, .external_lex_state = 3}, + [2565] = {.lex_state = 0, .external_lex_state = 3}, + [2566] = {.lex_state = 4, .external_lex_state = 3}, [2567] = {.lex_state = 4, .external_lex_state = 3}, - [2568] = {.lex_state = 9, .external_lex_state = 3}, - [2569] = {.lex_state = 0, .external_lex_state = 3}, - [2570] = {.lex_state = 0, .external_lex_state = 3}, + [2568] = {.lex_state = 0, .external_lex_state = 3}, + [2569] = {.lex_state = 4, .external_lex_state = 3}, + [2570] = {.lex_state = 4, .external_lex_state = 3}, [2571] = {.lex_state = 4, .external_lex_state = 3}, [2572] = {.lex_state = 4, .external_lex_state = 3}, - [2573] = {.lex_state = 4, .external_lex_state = 3}, + [2573] = {.lex_state = 0, .external_lex_state = 3}, [2574] = {.lex_state = 0, .external_lex_state = 3}, [2575] = {.lex_state = 4, .external_lex_state = 3}, - [2576] = {.lex_state = 4, .external_lex_state = 3}, - [2577] = {.lex_state = 0, .external_lex_state = 3}, - [2578] = {.lex_state = 0, .external_lex_state = 3}, + [2576] = {.lex_state = 0, .external_lex_state = 3}, + [2577] = {.lex_state = 4, .external_lex_state = 3}, + [2578] = {.lex_state = 9, .external_lex_state = 3}, [2579] = {.lex_state = 4, .external_lex_state = 3}, [2580] = {.lex_state = 0, .external_lex_state = 3}, [2581] = {.lex_state = 0, .external_lex_state = 3}, - [2582] = {.lex_state = 4, .external_lex_state = 3}, }; enum { @@ -16172,80 +16161,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2499), - [sym__statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_macro_definition] = STATE(15), - [sym_attribute_item] = STATE(15), - [sym_inner_attribute_item] = STATE(15), - [sym_mod_item] = STATE(15), - [sym_foreign_mod_item] = STATE(15), - [sym_struct_item] = STATE(15), - [sym_union_item] = STATE(15), - [sym_enum_item] = STATE(15), - [sym_extern_crate_declaration] = STATE(15), - [sym_const_item] = STATE(15), - [sym_static_item] = STATE(15), - [sym_type_item] = STATE(15), - [sym_function_item] = STATE(15), - [sym_function_signature_item] = STATE(15), - [sym_function_modifiers] = STATE(2497), - [sym_impl_item] = STATE(15), - [sym_trait_item] = STATE(15), - [sym_associated_type] = STATE(15), - [sym_let_declaration] = STATE(15), - [sym_use_declaration] = STATE(15), - [sym_extern_modifier] = STATE(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1327), - [sym_macro_invocation] = STATE(75), + [sym_source_file] = STATE(2476), + [sym__statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_macro_definition] = STATE(10), + [sym_attribute_item] = STATE(10), + [sym_inner_attribute_item] = STATE(10), + [sym_mod_item] = STATE(10), + [sym_foreign_mod_item] = STATE(10), + [sym_struct_item] = STATE(10), + [sym_union_item] = STATE(10), + [sym_enum_item] = STATE(10), + [sym_extern_crate_declaration] = STATE(10), + [sym_const_item] = STATE(10), + [sym_static_item] = STATE(10), + [sym_type_item] = STATE(10), + [sym_function_item] = STATE(10), + [sym_function_signature_item] = STATE(10), + [sym_function_modifiers] = STATE(2469), + [sym_impl_item] = STATE(10), + [sym_trait_item] = STATE(10), + [sym_associated_type] = STATE(10), + [sym_let_declaration] = STATE(10), + [sym_use_declaration] = STATE(10), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1321), + [sym_macro_invocation] = STATE(83), [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -16322,79 +16311,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2497), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1274), - [sym_macro_invocation] = STATE(75), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2469), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(83), [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16471,79 +16460,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [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(2497), - [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(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1286), - [sym_macro_invocation] = STATE(75), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2469), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1258), + [sym_macro_invocation] = STATE(83), [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16620,85 +16609,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2497), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(75), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2469), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1321), + [sym_macro_invocation] = STATE(188), [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(109), + [anon_sym_SEMI] = ACTIONS(112), + [anon_sym_macro_rules_BANG] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_u8] = ACTIONS(132), + [anon_sym_i8] = ACTIONS(132), + [anon_sym_u16] = ACTIONS(132), + [anon_sym_i16] = ACTIONS(132), + [anon_sym_u32] = ACTIONS(132), + [anon_sym_i32] = ACTIONS(132), + [anon_sym_u64] = ACTIONS(132), + [anon_sym_i64] = ACTIONS(132), + [anon_sym_u128] = ACTIONS(132), + [anon_sym_i128] = ACTIONS(132), + [anon_sym_isize] = ACTIONS(132), + [anon_sym_usize] = ACTIONS(132), + [anon_sym_f32] = ACTIONS(132), + [anon_sym_f64] = ACTIONS(132), + [anon_sym_bool] = ACTIONS(132), + [anon_sym_str] = ACTIONS(132), + [anon_sym_char] = ACTIONS(132), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_async] = ACTIONS(138), + [anon_sym_break] = ACTIONS(141), + [anon_sym_const] = ACTIONS(144), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_default] = ACTIONS(150), + [anon_sym_enum] = ACTIONS(153), + [anon_sym_fn] = ACTIONS(156), + [anon_sym_for] = ACTIONS(159), + [anon_sym_if] = ACTIONS(162), + [anon_sym_impl] = ACTIONS(165), + [anon_sym_let] = ACTIONS(168), + [anon_sym_loop] = ACTIONS(171), + [anon_sym_match] = ACTIONS(174), + [anon_sym_mod] = ACTIONS(177), + [anon_sym_pub] = ACTIONS(180), + [anon_sym_return] = ACTIONS(183), + [anon_sym_static] = ACTIONS(186), + [anon_sym_struct] = ACTIONS(189), + [anon_sym_trait] = ACTIONS(192), + [anon_sym_type] = ACTIONS(195), + [anon_sym_union] = ACTIONS(198), + [anon_sym_unsafe] = ACTIONS(201), + [anon_sym_use] = ACTIONS(204), + [anon_sym_while] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(216), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(222), + [anon_sym_DOT_DOT] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_yield] = ACTIONS(231), + [anon_sym_move] = ACTIONS(234), + [sym_integer_literal] = ACTIONS(237), + [aux_sym_string_literal_token1] = ACTIONS(240), + [sym_char_literal] = ACTIONS(237), + [anon_sym_true] = ACTIONS(243), + [anon_sym_false] = ACTIONS(243), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(246), + [sym_super] = ACTIONS(249), + [sym_crate] = ACTIONS(252), + [sym_metavariable] = ACTIONS(255), + [sym_raw_string_literal] = ACTIONS(237), + [sym_float_literal] = ACTIONS(237), + [sym_block_comment] = ACTIONS(3), + }, + [5] = { + [sym__statement] = STATE(3), + [sym_empty_statement] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym_macro_definition] = STATE(3), + [sym_attribute_item] = STATE(3), + [sym_inner_attribute_item] = STATE(3), + [sym_mod_item] = STATE(3), + [sym_foreign_mod_item] = STATE(3), + [sym_struct_item] = STATE(3), + [sym_union_item] = STATE(3), + [sym_enum_item] = STATE(3), + [sym_extern_crate_declaration] = STATE(3), + [sym_const_item] = STATE(3), + [sym_static_item] = STATE(3), + [sym_type_item] = STATE(3), + [sym_function_item] = STATE(3), + [sym_function_signature_item] = STATE(3), + [sym_function_modifiers] = STATE(2469), + [sym_impl_item] = STATE(3), + [sym_trait_item] = STATE(3), + [sym_associated_type] = STATE(3), + [sym_let_declaration] = STATE(3), + [sym_use_declaration] = STATE(3), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(83), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [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_RBRACE] = ACTIONS(258), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16768,229 +16906,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [5] = { - [sym__statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_macro_definition] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_foreign_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_union_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_extern_crate_declaration] = STATE(5), - [sym_const_item] = STATE(5), - [sym_static_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2497), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_extern_modifier] = STATE(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1327), - [sym_macro_invocation] = STATE(75), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [ts_builtin_sym_end] = ACTIONS(111), - [sym_identifier] = ACTIONS(113), - [anon_sym_SEMI] = ACTIONS(116), - [anon_sym_macro_rules_BANG] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_u8] = ACTIONS(134), - [anon_sym_i8] = ACTIONS(134), - [anon_sym_u16] = ACTIONS(134), - [anon_sym_i16] = ACTIONS(134), - [anon_sym_u32] = ACTIONS(134), - [anon_sym_i32] = ACTIONS(134), - [anon_sym_u64] = ACTIONS(134), - [anon_sym_i64] = ACTIONS(134), - [anon_sym_u128] = ACTIONS(134), - [anon_sym_i128] = ACTIONS(134), - [anon_sym_isize] = ACTIONS(134), - [anon_sym_usize] = ACTIONS(134), - [anon_sym_f32] = ACTIONS(134), - [anon_sym_f64] = ACTIONS(134), - [anon_sym_bool] = ACTIONS(134), - [anon_sym_str] = ACTIONS(134), - [anon_sym_char] = ACTIONS(134), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_async] = ACTIONS(140), - [anon_sym_break] = ACTIONS(143), - [anon_sym_const] = ACTIONS(146), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_default] = ACTIONS(152), - [anon_sym_enum] = ACTIONS(155), - [anon_sym_fn] = ACTIONS(158), - [anon_sym_for] = ACTIONS(161), - [anon_sym_if] = ACTIONS(164), - [anon_sym_impl] = ACTIONS(167), - [anon_sym_let] = ACTIONS(170), - [anon_sym_loop] = ACTIONS(173), - [anon_sym_match] = ACTIONS(176), - [anon_sym_mod] = ACTIONS(179), - [anon_sym_pub] = ACTIONS(182), - [anon_sym_return] = ACTIONS(185), - [anon_sym_static] = ACTIONS(188), - [anon_sym_struct] = ACTIONS(191), - [anon_sym_trait] = ACTIONS(194), - [anon_sym_type] = ACTIONS(197), - [anon_sym_union] = ACTIONS(200), - [anon_sym_unsafe] = ACTIONS(203), - [anon_sym_use] = ACTIONS(206), - [anon_sym_while] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(212), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_COLON_COLON] = ACTIONS(221), - [anon_sym_AMP] = ACTIONS(224), - [anon_sym_DOT_DOT] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_move] = ACTIONS(236), - [sym_integer_literal] = ACTIONS(239), - [aux_sym_string_literal_token1] = ACTIONS(242), - [sym_char_literal] = ACTIONS(239), - [anon_sym_true] = ACTIONS(245), - [anon_sym_false] = ACTIONS(245), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(248), - [sym_super] = ACTIONS(251), - [sym_crate] = ACTIONS(254), - [sym_metavariable] = ACTIONS(257), - [sym_raw_string_literal] = ACTIONS(239), - [sym_float_literal] = ACTIONS(239), - [sym_block_comment] = ACTIONS(3), - }, [6] = { - [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(2497), - [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(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(75), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2469), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(83), [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17067,79 +17056,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [7] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2497), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1281), - [sym_macro_invocation] = STATE(75), + [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(2469), + [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(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(83), [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17216,79 +17205,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [8] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2497), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1278), - [sym_macro_invocation] = STATE(75), + [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(2469), + [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(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1296), + [sym_macro_invocation] = STATE(83), [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17365,79 +17354,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [9] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2497), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(75), + [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(2469), + [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(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(83), [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17531,68 +17520,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(13), [sym_function_item] = STATE(13), [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2497), + [sym_function_modifiers] = STATE(2469), [sym_impl_item] = STATE(13), [sym_trait_item] = STATE(13), [sym_associated_type] = STATE(13), [sym_let_declaration] = STATE(13), [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1275), - [sym_macro_invocation] = STATE(75), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1321), + [sym_macro_invocation] = STATE(83), [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [ts_builtin_sym_end] = ACTIONS(268), [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(268), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17663,79 +17652,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [11] = { - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_macro_definition] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_foreign_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_union_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_extern_crate_declaration] = STATE(4), - [sym_const_item] = STATE(4), - [sym_static_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function_modifiers] = STATE(2497), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_extern_modifier] = STATE(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1241), - [sym_macro_invocation] = STATE(75), + [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(2469), + [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(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(83), [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17812,79 +17801,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2497), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1294), - [sym_macro_invocation] = STATE(75), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2469), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1274), + [sym_macro_invocation] = STATE(83), [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17978,211 +17967,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(13), [sym_function_item] = STATE(13), [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2497), + [sym_function_modifiers] = STATE(2469), [sym_impl_item] = STATE(13), [sym_trait_item] = STATE(13), [sym_associated_type] = STATE(13), [sym_let_declaration] = STATE(13), [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1327), - [sym_macro_invocation] = STATE(188), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1321), + [sym_macro_invocation] = STATE(83), [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(113), - [anon_sym_SEMI] = ACTIONS(116), - [anon_sym_macro_rules_BANG] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(125), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_LBRACK] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_u8] = ACTIONS(134), - [anon_sym_i8] = ACTIONS(134), - [anon_sym_u16] = ACTIONS(134), - [anon_sym_i16] = ACTIONS(134), - [anon_sym_u32] = ACTIONS(134), - [anon_sym_i32] = ACTIONS(134), - [anon_sym_u64] = ACTIONS(134), - [anon_sym_i64] = ACTIONS(134), - [anon_sym_u128] = ACTIONS(134), - [anon_sym_i128] = ACTIONS(134), - [anon_sym_isize] = ACTIONS(134), - [anon_sym_usize] = ACTIONS(134), - [anon_sym_f32] = ACTIONS(134), - [anon_sym_f64] = ACTIONS(134), - [anon_sym_bool] = ACTIONS(134), - [anon_sym_str] = ACTIONS(134), - [anon_sym_char] = ACTIONS(134), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_async] = ACTIONS(140), - [anon_sym_break] = ACTIONS(143), - [anon_sym_const] = ACTIONS(146), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_default] = ACTIONS(152), - [anon_sym_enum] = ACTIONS(155), - [anon_sym_fn] = ACTIONS(158), - [anon_sym_for] = ACTIONS(161), - [anon_sym_if] = ACTIONS(164), - [anon_sym_impl] = ACTIONS(167), - [anon_sym_let] = ACTIONS(170), - [anon_sym_loop] = ACTIONS(173), - [anon_sym_match] = ACTIONS(176), - [anon_sym_mod] = ACTIONS(179), - [anon_sym_pub] = ACTIONS(182), - [anon_sym_return] = ACTIONS(185), - [anon_sym_static] = ACTIONS(188), - [anon_sym_struct] = ACTIONS(191), - [anon_sym_trait] = ACTIONS(194), - [anon_sym_type] = ACTIONS(197), - [anon_sym_union] = ACTIONS(200), - [anon_sym_unsafe] = ACTIONS(203), - [anon_sym_use] = ACTIONS(206), - [anon_sym_while] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(212), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_extern] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(218), - [anon_sym_COLON_COLON] = ACTIONS(221), - [anon_sym_AMP] = ACTIONS(224), - [anon_sym_DOT_DOT] = ACTIONS(227), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(230), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_move] = ACTIONS(236), - [sym_integer_literal] = ACTIONS(239), - [aux_sym_string_literal_token1] = ACTIONS(242), - [sym_char_literal] = ACTIONS(239), - [anon_sym_true] = ACTIONS(245), - [anon_sym_false] = ACTIONS(245), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(248), - [sym_super] = ACTIONS(251), - [sym_crate] = ACTIONS(254), - [sym_metavariable] = ACTIONS(257), - [sym_raw_string_literal] = ACTIONS(239), - [sym_float_literal] = ACTIONS(239), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [ts_builtin_sym_end] = ACTIONS(124), + [sym_identifier] = ACTIONS(109), + [anon_sym_SEMI] = ACTIONS(112), + [anon_sym_macro_rules_BANG] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_u8] = ACTIONS(132), + [anon_sym_i8] = ACTIONS(132), + [anon_sym_u16] = ACTIONS(132), + [anon_sym_i16] = ACTIONS(132), + [anon_sym_u32] = ACTIONS(132), + [anon_sym_i32] = ACTIONS(132), + [anon_sym_u64] = ACTIONS(132), + [anon_sym_i64] = ACTIONS(132), + [anon_sym_u128] = ACTIONS(132), + [anon_sym_i128] = ACTIONS(132), + [anon_sym_isize] = ACTIONS(132), + [anon_sym_usize] = ACTIONS(132), + [anon_sym_f32] = ACTIONS(132), + [anon_sym_f64] = ACTIONS(132), + [anon_sym_bool] = ACTIONS(132), + [anon_sym_str] = ACTIONS(132), + [anon_sym_char] = ACTIONS(132), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_async] = ACTIONS(138), + [anon_sym_break] = ACTIONS(141), + [anon_sym_const] = ACTIONS(144), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_default] = ACTIONS(150), + [anon_sym_enum] = ACTIONS(153), + [anon_sym_fn] = ACTIONS(156), + [anon_sym_for] = ACTIONS(159), + [anon_sym_if] = ACTIONS(162), + [anon_sym_impl] = ACTIONS(165), + [anon_sym_let] = ACTIONS(168), + [anon_sym_loop] = ACTIONS(171), + [anon_sym_match] = ACTIONS(174), + [anon_sym_mod] = ACTIONS(177), + [anon_sym_pub] = ACTIONS(180), + [anon_sym_return] = ACTIONS(183), + [anon_sym_static] = ACTIONS(186), + [anon_sym_struct] = ACTIONS(189), + [anon_sym_trait] = ACTIONS(192), + [anon_sym_type] = ACTIONS(195), + [anon_sym_union] = ACTIONS(198), + [anon_sym_unsafe] = ACTIONS(201), + [anon_sym_use] = ACTIONS(204), + [anon_sym_while] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(216), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(222), + [anon_sym_DOT_DOT] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_yield] = ACTIONS(231), + [anon_sym_move] = ACTIONS(234), + [sym_integer_literal] = ACTIONS(237), + [aux_sym_string_literal_token1] = ACTIONS(240), + [sym_char_literal] = ACTIONS(237), + [anon_sym_true] = ACTIONS(243), + [anon_sym_false] = ACTIONS(243), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(246), + [sym_super] = ACTIONS(249), + [sym_crate] = ACTIONS(252), + [sym_metavariable] = ACTIONS(255), + [sym_raw_string_literal] = ACTIONS(237), + [sym_float_literal] = ACTIONS(237), [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2497), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1288), - [sym_macro_invocation] = STATE(75), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2469), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1284), + [sym_macro_invocation] = STATE(83), [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18259,85 +18248,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym__statement] = STATE(5), - [sym_empty_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_macro_definition] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_foreign_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_union_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_extern_crate_declaration] = STATE(5), - [sym_const_item] = STATE(5), - [sym_static_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2497), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_extern_modifier] = STATE(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1327), - [sym_macro_invocation] = STATE(75), + [sym__statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_macro_definition] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_mod_item] = STATE(6), + [sym_foreign_mod_item] = STATE(6), + [sym_struct_item] = STATE(6), + [sym_union_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_extern_crate_declaration] = STATE(6), + [sym_const_item] = STATE(6), + [sym_static_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function_modifiers] = STATE(2469), + [sym_impl_item] = STATE(6), + [sym_trait_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(83), [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [ts_builtin_sym_end] = ACTIONS(276), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [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(276), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18408,79 +18397,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [16] = { - [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(2497), - [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(1520), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(75), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2469), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1518), + [sym_visibility_modifier] = STATE(1358), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1240), + [sym_macro_invocation] = STATE(83), [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(79), - [sym_if_let_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_while_let_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(886), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(86), + [sym_if_let_expression] = STATE(86), + [sym_match_expression] = STATE(86), + [sym_while_expression] = STATE(86), + [sym_while_let_expression] = STATE(86), + [sym_loop_expression] = STATE(86), + [sym_for_expression] = STATE(86), + [sym_const_block] = STATE(86), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2488), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_loop_label] = STATE(2426), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(86), + [sym_async_block] = STATE(86), + [sym_block] = STATE(86), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18557,52 +18546,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1174), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(282), @@ -18699,52 +18688,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1153), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1168), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), [anon_sym_LPAREN] = ACTIONS(310), @@ -18774,7 +18763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(314), [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), @@ -18840,64 +18829,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1075), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(314), - [anon_sym_LPAREN] = ACTIONS(314), - [anon_sym_RPAREN] = ACTIONS(314), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(316), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(314), - [anon_sym_EQ_GT] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(314), - [anon_sym_RBRACK] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(316), - [anon_sym_QMARK] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_EQ_GT] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -18916,7 +18905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(316), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -18931,41 +18920,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(314), - [anon_sym_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_AMP_AMP] = ACTIONS(314), - [anon_sym_PIPE_PIPE] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(316), - [anon_sym_CARET] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(314), - [anon_sym_BANG_EQ] = ACTIONS(314), - [anon_sym_LT_EQ] = ACTIONS(314), - [anon_sym_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT] = ACTIONS(316), - [anon_sym_GT_GT] = ACTIONS(316), - [anon_sym_SLASH] = ACTIONS(316), - [anon_sym_PERCENT] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18981,64 +18970,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1111), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(314), + [anon_sym_SEMI] = ACTIONS(320), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(314), + [anon_sym_RPAREN] = ACTIONS(320), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(314), - [anon_sym_EQ_GT] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(314), - [anon_sym_RBRACK] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(316), - [anon_sym_QMARK] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_EQ_GT] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_RBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19057,7 +19046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(316), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19072,41 +19061,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_COMMA] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(314), - [anon_sym_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_AMP_AMP] = ACTIONS(314), - [anon_sym_PIPE_PIPE] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(316), - [anon_sym_CARET] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(314), - [anon_sym_BANG_EQ] = ACTIONS(314), - [anon_sym_LT_EQ] = ACTIONS(314), - [anon_sym_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT] = ACTIONS(316), - [anon_sym_GT_GT] = ACTIONS(316), - [anon_sym_SLASH] = ACTIONS(316), - [anon_sym_PERCENT] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19122,64 +19111,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1165), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1111), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(318), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_RPAREN] = ACTIONS(320), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_EQ_GT] = ACTIONS(318), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(320), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(318), + [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_EQ_GT] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_RBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19198,7 +19187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(320), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19213,41 +19202,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_COMMA] = ACTIONS(320), [anon_sym_LT] = ACTIONS(322), - [anon_sym_GT] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT_EQ] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(320), - [anon_sym_SLASH] = ACTIONS(320), - [anon_sym_PERCENT] = ACTIONS(320), - [anon_sym_PLUS_EQ] = ACTIONS(318), - [anon_sym_DASH_EQ] = ACTIONS(318), - [anon_sym_STAR_EQ] = ACTIONS(318), - [anon_sym_SLASH_EQ] = ACTIONS(318), - [anon_sym_PERCENT_EQ] = ACTIONS(318), - [anon_sym_AMP_EQ] = ACTIONS(318), - [anon_sym_PIPE_EQ] = ACTIONS(318), - [anon_sym_CARET_EQ] = ACTIONS(318), - [anon_sym_LT_LT_EQ] = ACTIONS(318), - [anon_sym_GT_GT_EQ] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19263,64 +19252,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1177), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1164), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(330), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(324), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(330), - [anon_sym_EQ_GT] = ACTIONS(330), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_RBRACK] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_QMARK] = ACTIONS(330), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_EQ_GT] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_STAR] = ACTIONS(308), + [anon_sym_QMARK] = ACTIONS(324), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19338,8 +19327,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(334), - [anon_sym_as] = ACTIONS(332), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(326), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19354,41 +19343,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(332), - [anon_sym_COMMA] = ACTIONS(330), - [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), + [anon_sym_EQ] = ACTIONS(326), + [anon_sym_COMMA] = ACTIONS(324), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(326), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(324), [anon_sym_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(332), - [anon_sym_AMP_AMP] = ACTIONS(330), - [anon_sym_PIPE_PIPE] = ACTIONS(330), - [anon_sym_PIPE] = ACTIONS(332), - [anon_sym_CARET] = ACTIONS(332), - [anon_sym_EQ_EQ] = ACTIONS(330), - [anon_sym_BANG_EQ] = ACTIONS(330), - [anon_sym_LT_EQ] = ACTIONS(330), - [anon_sym_GT_EQ] = ACTIONS(330), - [anon_sym_LT_LT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(332), - [anon_sym_SLASH] = ACTIONS(332), - [anon_sym_PERCENT] = ACTIONS(332), - [anon_sym_PLUS_EQ] = ACTIONS(330), - [anon_sym_DASH_EQ] = ACTIONS(330), - [anon_sym_STAR_EQ] = ACTIONS(330), - [anon_sym_SLASH_EQ] = ACTIONS(330), - [anon_sym_PERCENT_EQ] = ACTIONS(330), - [anon_sym_AMP_EQ] = ACTIONS(330), - [anon_sym_PIPE_EQ] = ACTIONS(330), - [anon_sym_CARET_EQ] = ACTIONS(330), - [anon_sym_LT_LT_EQ] = ACTIONS(330), - [anon_sym_GT_GT_EQ] = ACTIONS(330), + [anon_sym_DOT_DOT_EQ] = ACTIONS(324), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(324), + [anon_sym_LT_EQ] = ACTIONS(324), + [anon_sym_GT_EQ] = ACTIONS(324), + [anon_sym_LT_LT] = ACTIONS(326), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PERCENT] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(324), + [anon_sym_DASH_EQ] = ACTIONS(324), + [anon_sym_STAR_EQ] = ACTIONS(324), + [anon_sym_SLASH_EQ] = ACTIONS(324), + [anon_sym_PERCENT_EQ] = ACTIONS(324), + [anon_sym_AMP_EQ] = ACTIONS(324), + [anon_sym_PIPE_EQ] = ACTIONS(324), + [anon_sym_CARET_EQ] = ACTIONS(324), + [anon_sym_LT_LT_EQ] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(324), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(332), + [anon_sym_DOT] = ACTIONS(326), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19404,64 +19393,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1153), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1159), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(310), + [anon_sym_SEMI] = ACTIONS(336), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(310), + [anon_sym_RPAREN] = ACTIONS(336), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(310), - [anon_sym_EQ_GT] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_RBRACK] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(336), + [anon_sym_EQ_GT] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(308), + [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19480,7 +19469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(312), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19495,41 +19484,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_COMMA] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(312), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_COMMA] = ACTIONS(336), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19545,64 +19534,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1174), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1075), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(316), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_EQ_GT] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_EQ_GT] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19621,7 +19610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19636,41 +19625,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(322), - [anon_sym_GT] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19686,52 +19675,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1273), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1286), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_LBRACE] = ACTIONS(282), @@ -19822,54 +19811,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1153), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1256), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(25), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(310), [anon_sym_LBRACE] = ACTIONS(310), [anon_sym_LBRACK] = ACTIONS(310), [anon_sym_PLUS] = ACTIONS(312), @@ -19892,7 +19881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(314), [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), @@ -19957,59 +19946,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1289), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(326), [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(324), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20028,7 +20017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(320), + [anon_sym_as] = ACTIONS(326), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20043,40 +20032,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(320), - [anon_sym_LT] = ACTIONS(322), - [anon_sym_GT] = ACTIONS(320), + [anon_sym_EQ] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(326), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(324), [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(324), [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(320), - [anon_sym_SLASH] = ACTIONS(320), - [anon_sym_PERCENT] = ACTIONS(320), - [anon_sym_PLUS_EQ] = ACTIONS(318), - [anon_sym_DASH_EQ] = ACTIONS(318), - [anon_sym_STAR_EQ] = ACTIONS(318), - [anon_sym_SLASH_EQ] = ACTIONS(318), - [anon_sym_PERCENT_EQ] = ACTIONS(318), - [anon_sym_AMP_EQ] = ACTIONS(318), - [anon_sym_PIPE_EQ] = ACTIONS(318), - [anon_sym_CARET_EQ] = ACTIONS(318), - [anon_sym_LT_LT_EQ] = ACTIONS(318), - [anon_sym_GT_GT_EQ] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(324), + [anon_sym_LT_EQ] = ACTIONS(324), + [anon_sym_GT_EQ] = ACTIONS(324), + [anon_sym_LT_LT] = ACTIONS(326), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PERCENT] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(324), + [anon_sym_DASH_EQ] = ACTIONS(324), + [anon_sym_STAR_EQ] = ACTIONS(324), + [anon_sym_SLASH_EQ] = ACTIONS(324), + [anon_sym_PERCENT_EQ] = ACTIONS(324), + [anon_sym_AMP_EQ] = ACTIONS(324), + [anon_sym_PIPE_EQ] = ACTIONS(324), + [anon_sym_CARET_EQ] = ACTIONS(324), + [anon_sym_LT_LT_EQ] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(324), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(326), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20092,59 +20081,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1296), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1111), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20163,7 +20152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20178,40 +20167,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(322), [anon_sym_LT] = ACTIONS(322), - [anon_sym_GT] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20227,59 +20216,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1239), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(25), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1075), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(330), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_QMARK] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20297,8 +20286,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(334), - [anon_sym_as] = ACTIONS(332), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20313,40 +20302,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(330), - [anon_sym_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(332), - [anon_sym_AMP_AMP] = ACTIONS(330), - [anon_sym_PIPE_PIPE] = ACTIONS(330), - [anon_sym_PIPE] = ACTIONS(332), - [anon_sym_CARET] = ACTIONS(332), - [anon_sym_EQ_EQ] = ACTIONS(330), - [anon_sym_BANG_EQ] = ACTIONS(330), - [anon_sym_LT_EQ] = ACTIONS(330), - [anon_sym_GT_EQ] = ACTIONS(330), - [anon_sym_LT_LT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(332), - [anon_sym_SLASH] = ACTIONS(332), - [anon_sym_PERCENT] = ACTIONS(332), - [anon_sym_PLUS_EQ] = ACTIONS(330), - [anon_sym_DASH_EQ] = ACTIONS(330), - [anon_sym_STAR_EQ] = ACTIONS(330), - [anon_sym_SLASH_EQ] = ACTIONS(330), - [anon_sym_PERCENT_EQ] = ACTIONS(330), - [anon_sym_AMP_EQ] = ACTIONS(330), - [anon_sym_PIPE_EQ] = ACTIONS(330), - [anon_sym_CARET_EQ] = ACTIONS(330), - [anon_sym_LT_LT_EQ] = ACTIONS(330), - [anon_sym_GT_GT_EQ] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(332), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20362,59 +20351,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1075), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(316), - [anon_sym_QMARK] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20433,7 +20422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(316), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20448,40 +20437,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(314), - [anon_sym_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_AMP_AMP] = ACTIONS(314), - [anon_sym_PIPE_PIPE] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(316), - [anon_sym_CARET] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(314), - [anon_sym_BANG_EQ] = ACTIONS(314), - [anon_sym_LT_EQ] = ACTIONS(314), - [anon_sym_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT] = ACTIONS(316), - [anon_sym_GT_GT] = ACTIONS(316), - [anon_sym_SLASH] = ACTIONS(316), - [anon_sym_PERCENT] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20497,59 +20486,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1153), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1111), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(310), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20568,7 +20557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(312), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20583,40 +20572,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(312), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20632,59 +20621,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(316), - [anon_sym_QMARK] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20703,7 +20692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(316), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20718,40 +20707,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(314), - [anon_sym_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_AMP_AMP] = ACTIONS(314), - [anon_sym_PIPE_PIPE] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(316), - [anon_sym_CARET] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(314), - [anon_sym_BANG_EQ] = ACTIONS(314), - [anon_sym_LT_EQ] = ACTIONS(314), - [anon_sym_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT] = ACTIONS(316), - [anon_sym_GT_GT] = ACTIONS(316), - [anon_sym_SLASH] = ACTIONS(316), - [anon_sym_PERCENT] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20767,59 +20756,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1204), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_enum_variant_list_repeat1] = STATE(42), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_enum_variant_list_repeat1] = STATE(623), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(368), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -20878,59 +20867,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_attribute_item] = STATE(644), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1208), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_enum_variant_list_repeat1] = STATE(644), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_enum_variant_list_repeat1] = STATE(42), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(374), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(374), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -20989,54 +20978,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym_attribute_item] = STATE(34), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_attribute_item] = STATE(33), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1198), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_enum_variant_list_repeat1] = STATE(34), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_enum_variant_list_repeat1] = STATE(33), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21101,52 +21090,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [36] = { [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), @@ -21210,54 +21199,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(384), @@ -21321,52 +21310,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [38] = { [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), @@ -21430,54 +21419,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym_attribute_item] = STATE(41), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1233), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_attribute_item] = STATE(43), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_enum_variant_list_repeat1] = STATE(41), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(388), @@ -21540,54 +21529,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1309), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_enum_variant_list_repeat1] = STATE(623), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21649,54 +21638,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym_attribute_item] = STATE(644), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1330), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_attribute_item] = STATE(43), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_enum_variant_list_repeat1] = STATE(644), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21758,54 +21747,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym_attribute_item] = STATE(644), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), + [sym_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), [sym__expression] = STATE(1215), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_enum_variant_list_repeat1] = STATE(644), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_enum_variant_list_repeat1] = STATE(623), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21867,54 +21856,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym_attribute_item] = STATE(644), - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1279), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_enum_variant_list_repeat1] = STATE(644), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_enum_variant_list_repeat1] = STATE(623), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21976,53 +21965,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1229), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_tuple_expression_repeat1] = STATE(46), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_tuple_expression_repeat1] = STATE(50), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(390), @@ -22084,56 +22073,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [45] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1261), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_else_clause] = STATE(178), + [ts_builtin_sym_end] = ACTIONS(392), + [sym_identifier] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(392), + [anon_sym_macro_rules_BANG] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(392), + [anon_sym_RBRACE] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_isize] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_f32] = ACTIONS(394), + [anon_sym_f64] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_str] = ACTIONS(394), + [anon_sym_char] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_as] = ACTIONS(394), + [anon_sym_async] = ACTIONS(394), + [anon_sym_break] = ACTIONS(394), + [anon_sym_const] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(394), + [anon_sym_default] = ACTIONS(394), + [anon_sym_enum] = ACTIONS(394), + [anon_sym_fn] = ACTIONS(394), + [anon_sym_for] = ACTIONS(394), + [anon_sym_if] = ACTIONS(394), + [anon_sym_impl] = ACTIONS(394), + [anon_sym_let] = ACTIONS(394), + [anon_sym_loop] = ACTIONS(394), + [anon_sym_match] = ACTIONS(394), + [anon_sym_mod] = ACTIONS(394), + [anon_sym_pub] = ACTIONS(394), + [anon_sym_return] = ACTIONS(394), + [anon_sym_static] = ACTIONS(394), + [anon_sym_struct] = ACTIONS(394), + [anon_sym_trait] = ACTIONS(394), + [anon_sym_type] = ACTIONS(394), + [anon_sym_union] = ACTIONS(394), + [anon_sym_unsafe] = ACTIONS(394), + [anon_sym_use] = ACTIONS(394), + [anon_sym_while] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_extern] = ACTIONS(394), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(392), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(394), + [anon_sym_GT_GT] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_LT_LT_EQ] = ACTIONS(392), + [anon_sym_GT_GT_EQ] = ACTIONS(392), + [anon_sym_yield] = ACTIONS(394), + [anon_sym_else] = ACTIONS(396), + [anon_sym_move] = ACTIONS(394), + [anon_sym_DOT] = ACTIONS(394), + [sym_integer_literal] = ACTIONS(392), + [aux_sym_string_literal_token1] = ACTIONS(392), + [sym_char_literal] = ACTIONS(392), + [anon_sym_true] = ACTIONS(394), + [anon_sym_false] = ACTIONS(394), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(394), + [sym_super] = ACTIONS(394), + [sym_crate] = ACTIONS(394), + [sym_metavariable] = ACTIONS(392), + [sym_raw_string_literal] = ACTIONS(392), + [sym_float_literal] = ACTIONS(392), + [sym_block_comment] = ACTIONS(3), + }, + [46] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_tuple_expression_repeat1] = STATE(46), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_tuple_expression_repeat1] = STATE(44), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(392), + [anon_sym_RPAREN] = ACTIONS(398), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -22191,381 +22288,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [46] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1322), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_tuple_expression_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(400), - [anon_sym_LBRACE] = ACTIONS(402), - [anon_sym_LBRACK] = ACTIONS(405), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(414), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(420), - [anon_sym_const] = ACTIONS(423), - [anon_sym_continue] = ACTIONS(426), - [anon_sym_default] = ACTIONS(429), - [anon_sym_for] = ACTIONS(432), - [anon_sym_if] = ACTIONS(435), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(441), - [anon_sym_return] = ACTIONS(444), - [anon_sym_union] = ACTIONS(429), - [anon_sym_unsafe] = ACTIONS(447), - [anon_sym_while] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(453), - [anon_sym_COLON_COLON] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_DOT_DOT] = ACTIONS(462), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_PIPE] = ACTIONS(465), - [anon_sym_yield] = ACTIONS(468), - [anon_sym_move] = ACTIONS(471), - [sym_integer_literal] = ACTIONS(474), - [aux_sym_string_literal_token1] = ACTIONS(477), - [sym_char_literal] = ACTIONS(474), - [anon_sym_true] = ACTIONS(480), - [anon_sym_false] = ACTIONS(480), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(483), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(489), - [sym_raw_string_literal] = ACTIONS(474), - [sym_float_literal] = ACTIONS(474), - [sym_block_comment] = ACTIONS(3), - }, [47] = { - [sym_else_clause] = STATE(125), - [ts_builtin_sym_end] = ACTIONS(492), - [sym_identifier] = ACTIONS(494), - [anon_sym_SEMI] = ACTIONS(492), - [anon_sym_macro_rules_BANG] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(494), - [anon_sym_QMARK] = ACTIONS(492), - [anon_sym_u8] = ACTIONS(494), - [anon_sym_i8] = ACTIONS(494), - [anon_sym_u16] = ACTIONS(494), - [anon_sym_i16] = ACTIONS(494), - [anon_sym_u32] = ACTIONS(494), - [anon_sym_i32] = ACTIONS(494), - [anon_sym_u64] = ACTIONS(494), - [anon_sym_i64] = ACTIONS(494), - [anon_sym_u128] = ACTIONS(494), - [anon_sym_i128] = ACTIONS(494), - [anon_sym_isize] = ACTIONS(494), - [anon_sym_usize] = ACTIONS(494), - [anon_sym_f32] = ACTIONS(494), - [anon_sym_f64] = ACTIONS(494), - [anon_sym_bool] = ACTIONS(494), - [anon_sym_str] = ACTIONS(494), - [anon_sym_char] = ACTIONS(494), - [anon_sym_SQUOTE] = ACTIONS(494), - [anon_sym_as] = ACTIONS(494), - [anon_sym_async] = ACTIONS(494), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(494), - [anon_sym_continue] = ACTIONS(494), - [anon_sym_default] = ACTIONS(494), - [anon_sym_enum] = ACTIONS(494), - [anon_sym_fn] = ACTIONS(494), - [anon_sym_for] = ACTIONS(494), - [anon_sym_if] = ACTIONS(494), - [anon_sym_impl] = ACTIONS(494), - [anon_sym_let] = ACTIONS(494), - [anon_sym_loop] = ACTIONS(494), - [anon_sym_match] = ACTIONS(494), - [anon_sym_mod] = ACTIONS(494), - [anon_sym_pub] = ACTIONS(494), - [anon_sym_return] = ACTIONS(494), - [anon_sym_static] = ACTIONS(494), - [anon_sym_struct] = ACTIONS(494), - [anon_sym_trait] = ACTIONS(494), - [anon_sym_type] = ACTIONS(494), - [anon_sym_union] = ACTIONS(494), - [anon_sym_unsafe] = ACTIONS(494), - [anon_sym_use] = ACTIONS(494), - [anon_sym_while] = ACTIONS(494), - [anon_sym_POUND] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(494), - [anon_sym_EQ] = ACTIONS(494), - [anon_sym_extern] = ACTIONS(494), - [anon_sym_LT] = ACTIONS(494), - [anon_sym_GT] = ACTIONS(494), - [anon_sym_COLON_COLON] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(492), - [anon_sym_DOT_DOT] = ACTIONS(494), - [anon_sym_DOT_DOT_EQ] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(494), - [anon_sym_CARET] = ACTIONS(494), - [anon_sym_EQ_EQ] = ACTIONS(492), - [anon_sym_BANG_EQ] = ACTIONS(492), - [anon_sym_LT_EQ] = ACTIONS(492), - [anon_sym_GT_EQ] = ACTIONS(492), - [anon_sym_LT_LT] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(494), - [anon_sym_SLASH] = ACTIONS(494), - [anon_sym_PERCENT] = ACTIONS(494), - [anon_sym_PLUS_EQ] = ACTIONS(492), - [anon_sym_DASH_EQ] = ACTIONS(492), - [anon_sym_STAR_EQ] = ACTIONS(492), - [anon_sym_SLASH_EQ] = ACTIONS(492), - [anon_sym_PERCENT_EQ] = ACTIONS(492), - [anon_sym_AMP_EQ] = ACTIONS(492), - [anon_sym_PIPE_EQ] = ACTIONS(492), - [anon_sym_CARET_EQ] = ACTIONS(492), - [anon_sym_LT_LT_EQ] = ACTIONS(492), - [anon_sym_GT_GT_EQ] = ACTIONS(492), - [anon_sym_yield] = ACTIONS(494), - [anon_sym_else] = ACTIONS(496), - [anon_sym_move] = ACTIONS(494), - [anon_sym_DOT] = ACTIONS(494), - [sym_integer_literal] = ACTIONS(492), - [aux_sym_string_literal_token1] = ACTIONS(492), - [sym_char_literal] = ACTIONS(492), - [anon_sym_true] = ACTIONS(494), - [anon_sym_false] = ACTIONS(494), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(494), - [sym_crate] = ACTIONS(494), - [sym_metavariable] = ACTIONS(492), - [sym_raw_string_literal] = ACTIONS(492), - [sym_float_literal] = ACTIONS(492), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_tuple_expression_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [48] = { - [sym_else_clause] = STATE(130), - [ts_builtin_sym_end] = ACTIONS(498), - [sym_identifier] = ACTIONS(500), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_macro_rules_BANG] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(498), - [anon_sym_LBRACE] = ACTIONS(498), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_PLUS] = ACTIONS(500), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_u8] = ACTIONS(500), - [anon_sym_i8] = ACTIONS(500), - [anon_sym_u16] = ACTIONS(500), - [anon_sym_i16] = ACTIONS(500), - [anon_sym_u32] = ACTIONS(500), - [anon_sym_i32] = ACTIONS(500), - [anon_sym_u64] = ACTIONS(500), - [anon_sym_i64] = ACTIONS(500), - [anon_sym_u128] = ACTIONS(500), - [anon_sym_i128] = ACTIONS(500), - [anon_sym_isize] = ACTIONS(500), - [anon_sym_usize] = ACTIONS(500), - [anon_sym_f32] = ACTIONS(500), - [anon_sym_f64] = ACTIONS(500), - [anon_sym_bool] = ACTIONS(500), - [anon_sym_str] = ACTIONS(500), - [anon_sym_char] = ACTIONS(500), - [anon_sym_SQUOTE] = ACTIONS(500), - [anon_sym_as] = ACTIONS(500), - [anon_sym_async] = ACTIONS(500), - [anon_sym_break] = ACTIONS(500), - [anon_sym_const] = ACTIONS(500), - [anon_sym_continue] = ACTIONS(500), - [anon_sym_default] = ACTIONS(500), - [anon_sym_enum] = ACTIONS(500), - [anon_sym_fn] = ACTIONS(500), - [anon_sym_for] = ACTIONS(500), - [anon_sym_if] = ACTIONS(500), - [anon_sym_impl] = ACTIONS(500), - [anon_sym_let] = ACTIONS(500), - [anon_sym_loop] = ACTIONS(500), - [anon_sym_match] = ACTIONS(500), - [anon_sym_mod] = ACTIONS(500), - [anon_sym_pub] = ACTIONS(500), - [anon_sym_return] = ACTIONS(500), - [anon_sym_static] = ACTIONS(500), - [anon_sym_struct] = ACTIONS(500), - [anon_sym_trait] = ACTIONS(500), - [anon_sym_type] = ACTIONS(500), - [anon_sym_union] = ACTIONS(500), - [anon_sym_unsafe] = ACTIONS(500), - [anon_sym_use] = ACTIONS(500), - [anon_sym_while] = ACTIONS(500), - [anon_sym_POUND] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_EQ] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_COLON_COLON] = ACTIONS(498), - [anon_sym_AMP] = ACTIONS(500), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), - [anon_sym_DOT_DOT] = ACTIONS(500), - [anon_sym_DOT_DOT_EQ] = ACTIONS(498), - [anon_sym_DASH] = ACTIONS(500), - [anon_sym_AMP_AMP] = ACTIONS(498), - [anon_sym_PIPE_PIPE] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(500), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(498), - [anon_sym_BANG_EQ] = ACTIONS(498), - [anon_sym_LT_EQ] = ACTIONS(498), - [anon_sym_GT_EQ] = ACTIONS(498), - [anon_sym_LT_LT] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(500), - [anon_sym_SLASH] = ACTIONS(500), - [anon_sym_PERCENT] = ACTIONS(500), - [anon_sym_PLUS_EQ] = ACTIONS(498), - [anon_sym_DASH_EQ] = ACTIONS(498), - [anon_sym_STAR_EQ] = ACTIONS(498), - [anon_sym_SLASH_EQ] = ACTIONS(498), - [anon_sym_PERCENT_EQ] = ACTIONS(498), - [anon_sym_AMP_EQ] = ACTIONS(498), - [anon_sym_PIPE_EQ] = ACTIONS(498), - [anon_sym_CARET_EQ] = ACTIONS(498), - [anon_sym_LT_LT_EQ] = ACTIONS(498), - [anon_sym_GT_GT_EQ] = ACTIONS(498), - [anon_sym_yield] = ACTIONS(500), - [anon_sym_else] = ACTIONS(496), - [anon_sym_move] = ACTIONS(500), - [anon_sym_DOT] = ACTIONS(500), - [sym_integer_literal] = ACTIONS(498), - [aux_sym_string_literal_token1] = ACTIONS(498), - [sym_char_literal] = ACTIONS(498), - [anon_sym_true] = ACTIONS(500), - [anon_sym_false] = ACTIONS(500), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(500), - [sym_super] = ACTIONS(500), - [sym_crate] = ACTIONS(500), - [sym_metavariable] = ACTIONS(498), - [sym_raw_string_literal] = ACTIONS(498), - [sym_float_literal] = ACTIONS(498), - [sym_block_comment] = ACTIONS(3), - }, - [49] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1236), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_tuple_expression_repeat1] = STATE(44), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_tuple_expression_repeat1] = STATE(47), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(502), + [anon_sym_RPAREN] = ACTIONS(400), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -22623,161 +22504,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [49] = { + [sym_else_clause] = STATE(123), + [ts_builtin_sym_end] = ACTIONS(402), + [sym_identifier] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(402), + [anon_sym_macro_rules_BANG] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(402), + [anon_sym_RBRACE] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_SQUOTE] = ACTIONS(404), + [anon_sym_as] = ACTIONS(404), + [anon_sym_async] = ACTIONS(404), + [anon_sym_break] = ACTIONS(404), + [anon_sym_const] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(404), + [anon_sym_default] = ACTIONS(404), + [anon_sym_enum] = ACTIONS(404), + [anon_sym_fn] = ACTIONS(404), + [anon_sym_for] = ACTIONS(404), + [anon_sym_if] = ACTIONS(404), + [anon_sym_impl] = ACTIONS(404), + [anon_sym_let] = ACTIONS(404), + [anon_sym_loop] = ACTIONS(404), + [anon_sym_match] = ACTIONS(404), + [anon_sym_mod] = ACTIONS(404), + [anon_sym_pub] = ACTIONS(404), + [anon_sym_return] = ACTIONS(404), + [anon_sym_static] = ACTIONS(404), + [anon_sym_struct] = ACTIONS(404), + [anon_sym_trait] = ACTIONS(404), + [anon_sym_type] = ACTIONS(404), + [anon_sym_union] = ACTIONS(404), + [anon_sym_unsafe] = ACTIONS(404), + [anon_sym_use] = ACTIONS(404), + [anon_sym_while] = ACTIONS(404), + [anon_sym_POUND] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_extern] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_EQ] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_AMP_AMP] = ACTIONS(402), + [anon_sym_PIPE_PIPE] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_GT_GT] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(402), + [anon_sym_DASH_EQ] = ACTIONS(402), + [anon_sym_STAR_EQ] = ACTIONS(402), + [anon_sym_SLASH_EQ] = ACTIONS(402), + [anon_sym_PERCENT_EQ] = ACTIONS(402), + [anon_sym_AMP_EQ] = ACTIONS(402), + [anon_sym_PIPE_EQ] = ACTIONS(402), + [anon_sym_CARET_EQ] = ACTIONS(402), + [anon_sym_LT_LT_EQ] = ACTIONS(402), + [anon_sym_GT_GT_EQ] = ACTIONS(402), + [anon_sym_yield] = ACTIONS(404), + [anon_sym_else] = ACTIONS(396), + [anon_sym_move] = ACTIONS(404), + [anon_sym_DOT] = ACTIONS(404), + [sym_integer_literal] = ACTIONS(402), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_char_literal] = ACTIONS(402), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(404), + [sym_super] = ACTIONS(404), + [sym_crate] = ACTIONS(404), + [sym_metavariable] = ACTIONS(402), + [sym_raw_string_literal] = ACTIONS(402), + [sym_float_literal] = ACTIONS(402), + [sym_block_comment] = ACTIONS(3), + }, [50] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1229), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1318), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [aux_sym_tuple_expression_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [aux_sym_tuple_expression_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(409), + [anon_sym_RPAREN] = ACTIONS(412), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(420), + [anon_sym_u8] = ACTIONS(423), + [anon_sym_i8] = ACTIONS(423), + [anon_sym_u16] = ACTIONS(423), + [anon_sym_i16] = ACTIONS(423), + [anon_sym_u32] = ACTIONS(423), + [anon_sym_i32] = ACTIONS(423), + [anon_sym_u64] = ACTIONS(423), + [anon_sym_i64] = ACTIONS(423), + [anon_sym_u128] = ACTIONS(423), + [anon_sym_i128] = ACTIONS(423), + [anon_sym_isize] = ACTIONS(423), + [anon_sym_usize] = ACTIONS(423), + [anon_sym_f32] = ACTIONS(423), + [anon_sym_f64] = ACTIONS(423), + [anon_sym_bool] = ACTIONS(423), + [anon_sym_str] = ACTIONS(423), + [anon_sym_char] = ACTIONS(423), + [anon_sym_SQUOTE] = ACTIONS(426), + [anon_sym_async] = ACTIONS(429), + [anon_sym_break] = ACTIONS(432), + [anon_sym_const] = ACTIONS(435), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_default] = ACTIONS(441), + [anon_sym_for] = ACTIONS(444), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(450), + [anon_sym_match] = ACTIONS(453), + [anon_sym_return] = ACTIONS(456), + [anon_sym_union] = ACTIONS(441), + [anon_sym_unsafe] = ACTIONS(459), + [anon_sym_while] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(474), + [anon_sym_DASH] = ACTIONS(420), + [anon_sym_PIPE] = ACTIONS(477), + [anon_sym_yield] = ACTIONS(480), + [anon_sym_move] = ACTIONS(483), + [sym_integer_literal] = ACTIONS(486), + [aux_sym_string_literal_token1] = ACTIONS(489), + [sym_char_literal] = ACTIONS(486), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(495), + [sym_super] = ACTIONS(498), + [sym_crate] = ACTIONS(498), + [sym_metavariable] = ACTIONS(501), + [sym_raw_string_literal] = ACTIONS(486), + [sym_float_literal] = ACTIONS(486), [sym_block_comment] = ACTIONS(3), }, [51] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1297), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1290), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22808,6 +22797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(506), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -22815,12 +22805,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22839,52 +22828,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [52] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1249), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1292), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22915,7 +22904,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(512), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -22923,11 +22911,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(504), + [anon_sym_DASH_GT] = ACTIONS(512), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22946,159 +22935,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [53] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1160), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(516), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [54] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23129,7 +23011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(520), + [anon_sym_let] = ACTIONS(516), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -23140,7 +23022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -23159,53 +23041,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [54] = { + [ts_builtin_sym_end] = ACTIONS(518), + [sym_identifier] = ACTIONS(520), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_macro_rules_BANG] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(518), + [anon_sym_u8] = ACTIONS(520), + [anon_sym_i8] = ACTIONS(520), + [anon_sym_u16] = ACTIONS(520), + [anon_sym_i16] = ACTIONS(520), + [anon_sym_u32] = ACTIONS(520), + [anon_sym_i32] = ACTIONS(520), + [anon_sym_u64] = ACTIONS(520), + [anon_sym_i64] = ACTIONS(520), + [anon_sym_u128] = ACTIONS(520), + [anon_sym_i128] = ACTIONS(520), + [anon_sym_isize] = ACTIONS(520), + [anon_sym_usize] = ACTIONS(520), + [anon_sym_f32] = ACTIONS(520), + [anon_sym_f64] = ACTIONS(520), + [anon_sym_bool] = ACTIONS(520), + [anon_sym_str] = ACTIONS(520), + [anon_sym_char] = ACTIONS(520), + [anon_sym_SQUOTE] = ACTIONS(520), + [anon_sym_as] = ACTIONS(520), + [anon_sym_async] = ACTIONS(520), + [anon_sym_break] = ACTIONS(520), + [anon_sym_const] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_default] = ACTIONS(520), + [anon_sym_enum] = ACTIONS(520), + [anon_sym_fn] = ACTIONS(520), + [anon_sym_for] = ACTIONS(520), + [anon_sym_if] = ACTIONS(520), + [anon_sym_impl] = ACTIONS(520), + [anon_sym_let] = ACTIONS(520), + [anon_sym_loop] = ACTIONS(520), + [anon_sym_match] = ACTIONS(520), + [anon_sym_mod] = ACTIONS(520), + [anon_sym_pub] = ACTIONS(520), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(520), + [anon_sym_struct] = ACTIONS(520), + [anon_sym_trait] = ACTIONS(520), + [anon_sym_type] = ACTIONS(520), + [anon_sym_union] = ACTIONS(520), + [anon_sym_unsafe] = ACTIONS(520), + [anon_sym_use] = ACTIONS(520), + [anon_sym_while] = ACTIONS(520), + [anon_sym_POUND] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_extern] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(520), + [anon_sym_DOT_DOT_EQ] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_AMP_AMP] = ACTIONS(518), + [anon_sym_PIPE_PIPE] = ACTIONS(518), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_CARET] = ACTIONS(520), + [anon_sym_EQ_EQ] = ACTIONS(518), + [anon_sym_BANG_EQ] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(518), + [anon_sym_LT_LT] = ACTIONS(520), + [anon_sym_GT_GT] = ACTIONS(520), + [anon_sym_SLASH] = ACTIONS(520), + [anon_sym_PERCENT] = ACTIONS(520), + [anon_sym_PLUS_EQ] = ACTIONS(518), + [anon_sym_DASH_EQ] = ACTIONS(518), + [anon_sym_STAR_EQ] = ACTIONS(518), + [anon_sym_SLASH_EQ] = ACTIONS(518), + [anon_sym_PERCENT_EQ] = ACTIONS(518), + [anon_sym_AMP_EQ] = ACTIONS(518), + [anon_sym_PIPE_EQ] = ACTIONS(518), + [anon_sym_CARET_EQ] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(518), + [anon_sym_GT_GT_EQ] = ACTIONS(518), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_move] = ACTIONS(520), + [anon_sym_DOT] = ACTIONS(520), + [sym_integer_literal] = ACTIONS(518), + [aux_sym_string_literal_token1] = ACTIONS(518), + [sym_char_literal] = ACTIONS(518), + [anon_sym_true] = ACTIONS(520), + [anon_sym_false] = ACTIONS(520), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(520), + [sym_super] = ACTIONS(520), + [sym_crate] = ACTIONS(520), + [sym_metavariable] = ACTIONS(518), + [sym_raw_string_literal] = ACTIONS(518), + [sym_float_literal] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + }, [55] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23247,7 +23236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -23267,266 +23256,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [56] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1295), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_RBRACK] = ACTIONS(524), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(524), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [57] = { - [ts_builtin_sym_end] = ACTIONS(526), - [sym_identifier] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(526), - [anon_sym_macro_rules_BANG] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(526), - [anon_sym_RBRACE] = ACTIONS(526), - [anon_sym_LBRACK] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_QMARK] = ACTIONS(526), - [anon_sym_u8] = ACTIONS(528), - [anon_sym_i8] = ACTIONS(528), - [anon_sym_u16] = ACTIONS(528), - [anon_sym_i16] = ACTIONS(528), - [anon_sym_u32] = ACTIONS(528), - [anon_sym_i32] = ACTIONS(528), - [anon_sym_u64] = ACTIONS(528), - [anon_sym_i64] = ACTIONS(528), - [anon_sym_u128] = ACTIONS(528), - [anon_sym_i128] = ACTIONS(528), - [anon_sym_isize] = ACTIONS(528), - [anon_sym_usize] = ACTIONS(528), - [anon_sym_f32] = ACTIONS(528), - [anon_sym_f64] = ACTIONS(528), - [anon_sym_bool] = ACTIONS(528), - [anon_sym_str] = ACTIONS(528), - [anon_sym_char] = ACTIONS(528), - [anon_sym_SQUOTE] = ACTIONS(528), - [anon_sym_as] = ACTIONS(528), - [anon_sym_async] = ACTIONS(528), - [anon_sym_break] = ACTIONS(528), - [anon_sym_const] = ACTIONS(528), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_default] = ACTIONS(528), - [anon_sym_enum] = ACTIONS(528), - [anon_sym_fn] = ACTIONS(528), - [anon_sym_for] = ACTIONS(528), - [anon_sym_if] = ACTIONS(528), - [anon_sym_impl] = ACTIONS(528), - [anon_sym_let] = ACTIONS(528), - [anon_sym_loop] = ACTIONS(528), - [anon_sym_match] = ACTIONS(528), - [anon_sym_mod] = ACTIONS(528), - [anon_sym_pub] = ACTIONS(528), - [anon_sym_return] = ACTIONS(528), - [anon_sym_static] = ACTIONS(528), - [anon_sym_struct] = ACTIONS(528), - [anon_sym_trait] = ACTIONS(528), - [anon_sym_type] = ACTIONS(528), - [anon_sym_union] = ACTIONS(528), - [anon_sym_unsafe] = ACTIONS(528), - [anon_sym_use] = ACTIONS(528), - [anon_sym_while] = ACTIONS(528), - [anon_sym_POUND] = ACTIONS(526), - [anon_sym_BANG] = ACTIONS(528), - [anon_sym_EQ] = ACTIONS(528), - [anon_sym_extern] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(528), - [anon_sym_COLON_COLON] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT_DOT] = ACTIONS(526), - [anon_sym_DOT_DOT] = ACTIONS(528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(528), - [anon_sym_AMP_AMP] = ACTIONS(526), - [anon_sym_PIPE_PIPE] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(528), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(526), - [anon_sym_BANG_EQ] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_yield] = ACTIONS(528), - [anon_sym_else] = ACTIONS(528), - [anon_sym_move] = ACTIONS(528), - [anon_sym_DOT] = ACTIONS(528), - [sym_integer_literal] = ACTIONS(526), - [aux_sym_string_literal_token1] = ACTIONS(526), - [sym_char_literal] = ACTIONS(526), - [anon_sym_true] = ACTIONS(528), - [anon_sym_false] = ACTIONS(528), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(528), - [sym_super] = ACTIONS(528), - [sym_crate] = ACTIONS(528), - [sym_metavariable] = ACTIONS(526), - [sym_raw_string_literal] = ACTIONS(526), - [sym_float_literal] = ACTIONS(526), - [sym_block_comment] = ACTIONS(3), - }, - [58] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1263), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1250), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23557,7 +23439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(530), + [anon_sym_let] = ACTIONS(526), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -23568,7 +23450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -23587,53 +23469,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [58] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(528), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, [59] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1161), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1172), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23671,11 +23660,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(532), + [anon_sym_DASH_GT] = ACTIONS(530), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -23695,52 +23684,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [60] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1290), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23782,7 +23771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -23802,164 +23791,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [61] = { - [ts_builtin_sym_end] = ACTIONS(536), - [sym_identifier] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_macro_rules_BANG] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_PLUS] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(536), - [anon_sym_u8] = ACTIONS(538), - [anon_sym_i8] = ACTIONS(538), - [anon_sym_u16] = ACTIONS(538), - [anon_sym_i16] = ACTIONS(538), - [anon_sym_u32] = ACTIONS(538), - [anon_sym_i32] = ACTIONS(538), - [anon_sym_u64] = ACTIONS(538), - [anon_sym_i64] = ACTIONS(538), - [anon_sym_u128] = ACTIONS(538), - [anon_sym_i128] = ACTIONS(538), - [anon_sym_isize] = ACTIONS(538), - [anon_sym_usize] = ACTIONS(538), - [anon_sym_f32] = ACTIONS(538), - [anon_sym_f64] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(538), - [anon_sym_str] = ACTIONS(538), - [anon_sym_char] = ACTIONS(538), - [anon_sym_SQUOTE] = ACTIONS(538), - [anon_sym_as] = ACTIONS(538), - [anon_sym_async] = ACTIONS(538), - [anon_sym_break] = ACTIONS(538), - [anon_sym_const] = ACTIONS(538), - [anon_sym_continue] = ACTIONS(538), - [anon_sym_default] = ACTIONS(538), - [anon_sym_enum] = ACTIONS(538), - [anon_sym_fn] = ACTIONS(538), - [anon_sym_for] = ACTIONS(538), - [anon_sym_if] = ACTIONS(538), - [anon_sym_impl] = ACTIONS(538), - [anon_sym_let] = ACTIONS(538), - [anon_sym_loop] = ACTIONS(538), - [anon_sym_match] = ACTIONS(538), - [anon_sym_mod] = ACTIONS(538), - [anon_sym_pub] = ACTIONS(538), - [anon_sym_return] = ACTIONS(538), - [anon_sym_static] = ACTIONS(538), - [anon_sym_struct] = ACTIONS(538), - [anon_sym_trait] = ACTIONS(538), - [anon_sym_type] = ACTIONS(538), - [anon_sym_union] = ACTIONS(538), - [anon_sym_unsafe] = ACTIONS(538), - [anon_sym_use] = ACTIONS(538), - [anon_sym_while] = ACTIONS(538), - [anon_sym_POUND] = ACTIONS(536), - [anon_sym_BANG] = ACTIONS(538), - [anon_sym_EQ] = ACTIONS(538), - [anon_sym_extern] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_GT] = ACTIONS(538), - [anon_sym_COLON_COLON] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_DOT_DOT_DOT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(536), - [anon_sym_DASH] = ACTIONS(538), - [anon_sym_AMP_AMP] = ACTIONS(536), - [anon_sym_PIPE_PIPE] = ACTIONS(536), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_CARET] = ACTIONS(538), - [anon_sym_EQ_EQ] = ACTIONS(536), - [anon_sym_BANG_EQ] = ACTIONS(536), - [anon_sym_LT_EQ] = ACTIONS(536), - [anon_sym_GT_EQ] = ACTIONS(536), - [anon_sym_LT_LT] = ACTIONS(538), - [anon_sym_GT_GT] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(538), - [anon_sym_PERCENT] = ACTIONS(538), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(538), - [anon_sym_else] = ACTIONS(538), - [anon_sym_move] = ACTIONS(538), - [anon_sym_DOT] = ACTIONS(538), - [sym_integer_literal] = ACTIONS(536), - [aux_sym_string_literal_token1] = ACTIONS(536), - [sym_char_literal] = ACTIONS(536), - [anon_sym_true] = ACTIONS(538), - [anon_sym_false] = ACTIONS(538), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(538), - [sym_super] = ACTIONS(538), - [sym_crate] = ACTIONS(538), - [sym_metavariable] = ACTIONS(536), - [sym_raw_string_literal] = ACTIONS(536), - [sym_float_literal] = ACTIONS(536), - [sym_block_comment] = ACTIONS(3), - }, - [62] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1161), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(540), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -23996,7 +23877,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [sym_mutable_specifier] = ACTIONS(536), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -24015,53 +23897,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [62] = { + [ts_builtin_sym_end] = ACTIONS(538), + [sym_identifier] = ACTIONS(540), + [anon_sym_SEMI] = ACTIONS(538), + [anon_sym_macro_rules_BANG] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LBRACE] = ACTIONS(538), + [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_STAR] = ACTIONS(540), + [anon_sym_QMARK] = ACTIONS(538), + [anon_sym_u8] = ACTIONS(540), + [anon_sym_i8] = ACTIONS(540), + [anon_sym_u16] = ACTIONS(540), + [anon_sym_i16] = ACTIONS(540), + [anon_sym_u32] = ACTIONS(540), + [anon_sym_i32] = ACTIONS(540), + [anon_sym_u64] = ACTIONS(540), + [anon_sym_i64] = ACTIONS(540), + [anon_sym_u128] = ACTIONS(540), + [anon_sym_i128] = ACTIONS(540), + [anon_sym_isize] = ACTIONS(540), + [anon_sym_usize] = ACTIONS(540), + [anon_sym_f32] = ACTIONS(540), + [anon_sym_f64] = ACTIONS(540), + [anon_sym_bool] = ACTIONS(540), + [anon_sym_str] = ACTIONS(540), + [anon_sym_char] = ACTIONS(540), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_as] = ACTIONS(540), + [anon_sym_async] = ACTIONS(540), + [anon_sym_break] = ACTIONS(540), + [anon_sym_const] = ACTIONS(540), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_default] = ACTIONS(540), + [anon_sym_enum] = ACTIONS(540), + [anon_sym_fn] = ACTIONS(540), + [anon_sym_for] = ACTIONS(540), + [anon_sym_if] = ACTIONS(540), + [anon_sym_impl] = ACTIONS(540), + [anon_sym_let] = ACTIONS(540), + [anon_sym_loop] = ACTIONS(540), + [anon_sym_match] = ACTIONS(540), + [anon_sym_mod] = ACTIONS(540), + [anon_sym_pub] = ACTIONS(540), + [anon_sym_return] = ACTIONS(540), + [anon_sym_static] = ACTIONS(540), + [anon_sym_struct] = ACTIONS(540), + [anon_sym_trait] = ACTIONS(540), + [anon_sym_type] = ACTIONS(540), + [anon_sym_union] = ACTIONS(540), + [anon_sym_unsafe] = ACTIONS(540), + [anon_sym_use] = ACTIONS(540), + [anon_sym_while] = ACTIONS(540), + [anon_sym_POUND] = ACTIONS(538), + [anon_sym_BANG] = ACTIONS(540), + [anon_sym_EQ] = ACTIONS(540), + [anon_sym_extern] = ACTIONS(540), + [anon_sym_LT] = ACTIONS(540), + [anon_sym_GT] = ACTIONS(540), + [anon_sym_COLON_COLON] = ACTIONS(538), + [anon_sym_AMP] = ACTIONS(540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(538), + [anon_sym_PIPE_PIPE] = ACTIONS(538), + [anon_sym_PIPE] = ACTIONS(540), + [anon_sym_CARET] = ACTIONS(540), + [anon_sym_EQ_EQ] = ACTIONS(538), + [anon_sym_BANG_EQ] = ACTIONS(538), + [anon_sym_LT_EQ] = ACTIONS(538), + [anon_sym_GT_EQ] = ACTIONS(538), + [anon_sym_LT_LT] = ACTIONS(540), + [anon_sym_GT_GT] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_PERCENT] = ACTIONS(540), + [anon_sym_PLUS_EQ] = ACTIONS(538), + [anon_sym_DASH_EQ] = ACTIONS(538), + [anon_sym_STAR_EQ] = ACTIONS(538), + [anon_sym_SLASH_EQ] = ACTIONS(538), + [anon_sym_PERCENT_EQ] = ACTIONS(538), + [anon_sym_AMP_EQ] = ACTIONS(538), + [anon_sym_PIPE_EQ] = ACTIONS(538), + [anon_sym_CARET_EQ] = ACTIONS(538), + [anon_sym_LT_LT_EQ] = ACTIONS(538), + [anon_sym_GT_GT_EQ] = ACTIONS(538), + [anon_sym_yield] = ACTIONS(540), + [anon_sym_else] = ACTIONS(540), + [anon_sym_move] = ACTIONS(540), + [anon_sym_DOT] = ACTIONS(540), + [sym_integer_literal] = ACTIONS(538), + [aux_sym_string_literal_token1] = ACTIONS(538), + [sym_char_literal] = ACTIONS(538), + [anon_sym_true] = ACTIONS(540), + [anon_sym_false] = ACTIONS(540), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(540), + [sym_super] = ACTIONS(540), + [sym_crate] = ACTIONS(540), + [sym_metavariable] = ACTIONS(538), + [sym_raw_string_literal] = ACTIONS(538), + [sym_float_literal] = ACTIONS(538), + [sym_block_comment] = ACTIONS(3), + }, [63] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1169), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1178), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24099,11 +24088,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(506), + [anon_sym_DASH_GT] = ACTIONS(512), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -24123,52 +24112,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [64] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1222), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1241), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24210,7 +24199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -24230,57 +24219,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [65] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [sym_mutable_specifier] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [66] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1257), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(546), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [67] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_DASH_GT] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [68] = { + [ts_builtin_sym_end] = ACTIONS(548), + [sym_identifier] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_macro_rules_BANG] = ACTIONS(548), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(548), + [anon_sym_u8] = ACTIONS(550), + [anon_sym_i8] = ACTIONS(550), + [anon_sym_u16] = ACTIONS(550), + [anon_sym_i16] = ACTIONS(550), + [anon_sym_u32] = ACTIONS(550), + [anon_sym_i32] = ACTIONS(550), + [anon_sym_u64] = ACTIONS(550), + [anon_sym_i64] = ACTIONS(550), + [anon_sym_u128] = ACTIONS(550), + [anon_sym_i128] = ACTIONS(550), + [anon_sym_isize] = ACTIONS(550), + [anon_sym_usize] = ACTIONS(550), + [anon_sym_f32] = ACTIONS(550), + [anon_sym_f64] = ACTIONS(550), + [anon_sym_bool] = ACTIONS(550), + [anon_sym_str] = ACTIONS(550), + [anon_sym_char] = ACTIONS(550), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_as] = ACTIONS(550), + [anon_sym_async] = ACTIONS(550), + [anon_sym_break] = ACTIONS(550), + [anon_sym_const] = ACTIONS(550), + [anon_sym_continue] = ACTIONS(550), + [anon_sym_default] = ACTIONS(550), + [anon_sym_enum] = ACTIONS(550), + [anon_sym_fn] = ACTIONS(550), + [anon_sym_for] = ACTIONS(550), + [anon_sym_if] = ACTIONS(550), + [anon_sym_impl] = ACTIONS(550), + [anon_sym_let] = ACTIONS(550), + [anon_sym_loop] = ACTIONS(550), + [anon_sym_match] = ACTIONS(550), + [anon_sym_mod] = ACTIONS(550), + [anon_sym_pub] = ACTIONS(550), + [anon_sym_return] = ACTIONS(550), + [anon_sym_static] = ACTIONS(550), + [anon_sym_struct] = ACTIONS(550), + [anon_sym_trait] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_union] = ACTIONS(550), + [anon_sym_unsafe] = ACTIONS(550), + [anon_sym_use] = ACTIONS(550), + [anon_sym_while] = ACTIONS(550), + [anon_sym_POUND] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_EQ] = ACTIONS(550), + [anon_sym_extern] = ACTIONS(550), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_COLON_COLON] = ACTIONS(548), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(548), + [anon_sym_DOT_DOT] = ACTIONS(550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_PLUS_EQ] = ACTIONS(548), + [anon_sym_DASH_EQ] = ACTIONS(548), + [anon_sym_STAR_EQ] = ACTIONS(548), + [anon_sym_SLASH_EQ] = ACTIONS(548), + [anon_sym_PERCENT_EQ] = ACTIONS(548), + [anon_sym_AMP_EQ] = ACTIONS(548), + [anon_sym_PIPE_EQ] = ACTIONS(548), + [anon_sym_CARET_EQ] = ACTIONS(548), + [anon_sym_LT_LT_EQ] = ACTIONS(548), + [anon_sym_GT_GT_EQ] = ACTIONS(548), + [anon_sym_yield] = ACTIONS(550), + [anon_sym_else] = ACTIONS(550), + [anon_sym_move] = ACTIONS(550), + [anon_sym_DOT] = ACTIONS(550), + [sym_integer_literal] = ACTIONS(548), + [aux_sym_string_literal_token1] = ACTIONS(548), + [sym_char_literal] = ACTIONS(548), + [anon_sym_true] = ACTIONS(550), + [anon_sym_false] = ACTIONS(550), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(550), + [sym_super] = ACTIONS(550), + [sym_crate] = ACTIONS(550), + [sym_metavariable] = ACTIONS(548), + [sym_raw_string_literal] = ACTIONS(548), + [sym_float_literal] = ACTIONS(548), + [sym_block_comment] = ACTIONS(3), + }, + [69] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(552), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -24336,53 +24753,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [66] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1260), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [70] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24413,6 +24830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(554), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -24420,12 +24838,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(532), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -24443,53 +24860,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [67] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1252), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [71] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24520,7 +24937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(546), + [anon_sym_let] = ACTIONS(556), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -24531,7 +24948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -24550,53 +24967,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [68] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [72] = { + [ts_builtin_sym_end] = ACTIONS(558), + [sym_identifier] = ACTIONS(560), + [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_macro_rules_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(558), + [anon_sym_u8] = ACTIONS(560), + [anon_sym_i8] = ACTIONS(560), + [anon_sym_u16] = ACTIONS(560), + [anon_sym_i16] = ACTIONS(560), + [anon_sym_u32] = ACTIONS(560), + [anon_sym_i32] = ACTIONS(560), + [anon_sym_u64] = ACTIONS(560), + [anon_sym_i64] = ACTIONS(560), + [anon_sym_u128] = ACTIONS(560), + [anon_sym_i128] = ACTIONS(560), + [anon_sym_isize] = ACTIONS(560), + [anon_sym_usize] = ACTIONS(560), + [anon_sym_f32] = ACTIONS(560), + [anon_sym_f64] = ACTIONS(560), + [anon_sym_bool] = ACTIONS(560), + [anon_sym_str] = ACTIONS(560), + [anon_sym_char] = ACTIONS(560), + [anon_sym_SQUOTE] = ACTIONS(560), + [anon_sym_as] = ACTIONS(560), + [anon_sym_async] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_const] = ACTIONS(560), + [anon_sym_continue] = ACTIONS(560), + [anon_sym_default] = ACTIONS(560), + [anon_sym_enum] = ACTIONS(560), + [anon_sym_fn] = ACTIONS(560), + [anon_sym_for] = ACTIONS(560), + [anon_sym_if] = ACTIONS(560), + [anon_sym_impl] = ACTIONS(560), + [anon_sym_let] = ACTIONS(560), + [anon_sym_loop] = ACTIONS(560), + [anon_sym_match] = ACTIONS(560), + [anon_sym_mod] = ACTIONS(560), + [anon_sym_pub] = ACTIONS(560), + [anon_sym_return] = ACTIONS(560), + [anon_sym_static] = ACTIONS(560), + [anon_sym_struct] = ACTIONS(560), + [anon_sym_trait] = ACTIONS(560), + [anon_sym_type] = ACTIONS(560), + [anon_sym_union] = ACTIONS(560), + [anon_sym_unsafe] = ACTIONS(560), + [anon_sym_use] = ACTIONS(560), + [anon_sym_while] = ACTIONS(560), + [anon_sym_POUND] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_EQ] = ACTIONS(560), + [anon_sym_extern] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_COLON_COLON] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT] = ACTIONS(560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(558), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_AMP_AMP] = ACTIONS(558), + [anon_sym_PIPE_PIPE] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_PLUS_EQ] = ACTIONS(558), + [anon_sym_DASH_EQ] = ACTIONS(558), + [anon_sym_STAR_EQ] = ACTIONS(558), + [anon_sym_SLASH_EQ] = ACTIONS(558), + [anon_sym_PERCENT_EQ] = ACTIONS(558), + [anon_sym_AMP_EQ] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(558), + [anon_sym_LT_LT_EQ] = ACTIONS(558), + [anon_sym_GT_GT_EQ] = ACTIONS(558), + [anon_sym_yield] = ACTIONS(560), + [anon_sym_move] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(560), + [sym_integer_literal] = ACTIONS(558), + [aux_sym_string_literal_token1] = ACTIONS(558), + [sym_char_literal] = ACTIONS(558), + [anon_sym_true] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(560), + [sym_super] = ACTIONS(560), + [sym_crate] = ACTIONS(560), + [sym_metavariable] = ACTIONS(558), + [sym_raw_string_literal] = ACTIONS(558), + [sym_float_literal] = ACTIONS(558), + [sym_block_comment] = ACTIONS(3), + }, + [73] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24637,7 +25160,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), - [sym_mutable_specifier] = ACTIONS(548), [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), @@ -24657,160 +25179,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_macro_rules_BANG] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(550), - [anon_sym_PLUS] = ACTIONS(552), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_QMARK] = ACTIONS(550), - [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_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_POUND] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_EQ] = ACTIONS(552), - [anon_sym_extern] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(552), - [anon_sym_GT] = ACTIONS(552), - [anon_sym_COLON_COLON] = ACTIONS(550), - [anon_sym_AMP] = ACTIONS(552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(550), - [anon_sym_DOT_DOT] = ACTIONS(552), - [anon_sym_DOT_DOT_EQ] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(552), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [anon_sym_PIPE] = ACTIONS(552), - [anon_sym_CARET] = ACTIONS(552), - [anon_sym_EQ_EQ] = ACTIONS(550), - [anon_sym_BANG_EQ] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(550), - [anon_sym_GT_EQ] = ACTIONS(550), - [anon_sym_LT_LT] = ACTIONS(552), - [anon_sym_GT_GT] = ACTIONS(552), - [anon_sym_SLASH] = ACTIONS(552), - [anon_sym_PERCENT] = ACTIONS(552), - [anon_sym_PLUS_EQ] = ACTIONS(550), - [anon_sym_DASH_EQ] = ACTIONS(550), - [anon_sym_STAR_EQ] = ACTIONS(550), - [anon_sym_SLASH_EQ] = ACTIONS(550), - [anon_sym_PERCENT_EQ] = ACTIONS(550), - [anon_sym_AMP_EQ] = ACTIONS(550), - [anon_sym_PIPE_EQ] = ACTIONS(550), - [anon_sym_CARET_EQ] = ACTIONS(550), - [anon_sym_LT_LT_EQ] = ACTIONS(550), - [anon_sym_GT_GT_EQ] = ACTIONS(550), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_else] = ACTIONS(552), - [anon_sym_move] = ACTIONS(552), - [anon_sym_DOT] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(550), - [aux_sym_string_literal_token1] = ACTIONS(550), - [sym_char_literal] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(550), - [sym_raw_string_literal] = ACTIONS(550), - [sym_float_literal] = ACTIONS(550), + [74] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1305), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [70] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [75] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24841,7 +25362,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(554), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -24852,7 +25372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -24871,58 +25391,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [71] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [76] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1304), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(556), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -24978,53 +25497,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [72] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1303), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [77] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1306), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25084,53 +25603,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [73] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1167), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [78] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1314), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25171,7 +25690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -25190,53 +25709,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [74] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1331), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [79] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1275), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [80] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1323), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25296,265 +25921,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [75] = { - [ts_builtin_sym_end] = ACTIONS(558), - [sym_identifier] = ACTIONS(560), - [anon_sym_SEMI] = ACTIONS(562), - [anon_sym_macro_rules_BANG] = ACTIONS(558), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(558), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(562), - [anon_sym_u8] = ACTIONS(560), - [anon_sym_i8] = ACTIONS(560), - [anon_sym_u16] = ACTIONS(560), - [anon_sym_i16] = ACTIONS(560), - [anon_sym_u32] = ACTIONS(560), - [anon_sym_i32] = ACTIONS(560), - [anon_sym_u64] = ACTIONS(560), - [anon_sym_i64] = ACTIONS(560), - [anon_sym_u128] = ACTIONS(560), - [anon_sym_i128] = ACTIONS(560), - [anon_sym_isize] = ACTIONS(560), - [anon_sym_usize] = ACTIONS(560), - [anon_sym_f32] = ACTIONS(560), - [anon_sym_f64] = ACTIONS(560), - [anon_sym_bool] = ACTIONS(560), - [anon_sym_str] = ACTIONS(560), - [anon_sym_char] = ACTIONS(560), - [anon_sym_SQUOTE] = ACTIONS(560), - [anon_sym_as] = ACTIONS(564), - [anon_sym_async] = ACTIONS(560), - [anon_sym_break] = ACTIONS(560), - [anon_sym_const] = ACTIONS(560), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_default] = ACTIONS(560), - [anon_sym_enum] = ACTIONS(560), - [anon_sym_fn] = ACTIONS(560), - [anon_sym_for] = ACTIONS(560), - [anon_sym_if] = ACTIONS(560), - [anon_sym_impl] = ACTIONS(560), - [anon_sym_let] = ACTIONS(560), - [anon_sym_loop] = ACTIONS(560), - [anon_sym_match] = ACTIONS(560), - [anon_sym_mod] = ACTIONS(560), - [anon_sym_pub] = ACTIONS(560), - [anon_sym_return] = ACTIONS(560), - [anon_sym_static] = ACTIONS(560), - [anon_sym_struct] = ACTIONS(560), - [anon_sym_trait] = ACTIONS(560), - [anon_sym_type] = ACTIONS(560), - [anon_sym_union] = ACTIONS(560), - [anon_sym_unsafe] = ACTIONS(560), - [anon_sym_use] = ACTIONS(560), - [anon_sym_while] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(558), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_extern] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_COLON_COLON] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(562), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_EQ] = ACTIONS(562), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(562), - [anon_sym_DASH_EQ] = ACTIONS(562), - [anon_sym_STAR_EQ] = ACTIONS(562), - [anon_sym_SLASH_EQ] = ACTIONS(562), - [anon_sym_PERCENT_EQ] = ACTIONS(562), - [anon_sym_AMP_EQ] = ACTIONS(562), - [anon_sym_PIPE_EQ] = ACTIONS(562), - [anon_sym_CARET_EQ] = ACTIONS(562), - [anon_sym_LT_LT_EQ] = ACTIONS(562), - [anon_sym_GT_GT_EQ] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(560), - [anon_sym_move] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(564), - [sym_integer_literal] = ACTIONS(558), - [aux_sym_string_literal_token1] = ACTIONS(558), - [sym_char_literal] = ACTIONS(558), - [anon_sym_true] = ACTIONS(560), - [anon_sym_false] = ACTIONS(560), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(560), - [sym_super] = ACTIONS(560), - [sym_crate] = ACTIONS(560), - [sym_metavariable] = ACTIONS(558), - [sym_raw_string_literal] = ACTIONS(558), - [sym_float_literal] = ACTIONS(558), - [sym_block_comment] = ACTIONS(3), - }, - [76] = { - [ts_builtin_sym_end] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_macro_rules_BANG] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(568), - [anon_sym_i8] = ACTIONS(568), - [anon_sym_u16] = ACTIONS(568), - [anon_sym_i16] = ACTIONS(568), - [anon_sym_u32] = ACTIONS(568), - [anon_sym_i32] = ACTIONS(568), - [anon_sym_u64] = ACTIONS(568), - [anon_sym_i64] = ACTIONS(568), - [anon_sym_u128] = ACTIONS(568), - [anon_sym_i128] = ACTIONS(568), - [anon_sym_isize] = ACTIONS(568), - [anon_sym_usize] = ACTIONS(568), - [anon_sym_f32] = ACTIONS(568), - [anon_sym_f64] = ACTIONS(568), - [anon_sym_bool] = ACTIONS(568), - [anon_sym_str] = ACTIONS(568), - [anon_sym_char] = ACTIONS(568), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_as] = ACTIONS(568), - [anon_sym_async] = ACTIONS(568), - [anon_sym_break] = ACTIONS(568), - [anon_sym_const] = ACTIONS(568), - [anon_sym_continue] = ACTIONS(568), - [anon_sym_default] = ACTIONS(568), - [anon_sym_enum] = ACTIONS(568), - [anon_sym_fn] = ACTIONS(568), - [anon_sym_for] = ACTIONS(568), - [anon_sym_if] = ACTIONS(568), - [anon_sym_impl] = ACTIONS(568), - [anon_sym_let] = ACTIONS(568), - [anon_sym_loop] = ACTIONS(568), - [anon_sym_match] = ACTIONS(568), - [anon_sym_mod] = ACTIONS(568), - [anon_sym_pub] = ACTIONS(568), - [anon_sym_return] = ACTIONS(568), - [anon_sym_static] = ACTIONS(568), - [anon_sym_struct] = ACTIONS(568), - [anon_sym_trait] = ACTIONS(568), - [anon_sym_type] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [anon_sym_unsafe] = ACTIONS(568), - [anon_sym_use] = ACTIONS(568), - [anon_sym_while] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(566), - [anon_sym_BANG] = ACTIONS(568), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(568), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_yield] = ACTIONS(568), - [anon_sym_move] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(566), - [aux_sym_string_literal_token1] = ACTIONS(566), - [sym_char_literal] = ACTIONS(566), - [anon_sym_true] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(568), - [sym_super] = ACTIONS(568), - [sym_crate] = ACTIONS(568), - [sym_metavariable] = ACTIONS(566), - [sym_raw_string_literal] = ACTIONS(566), - [sym_float_literal] = ACTIONS(566), - [sym_block_comment] = ACTIONS(3), - }, - [77] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1317), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [81] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1298), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25614,7 +26027,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [78] = { + [82] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1295), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [83] = { + [ts_builtin_sym_end] = ACTIONS(562), + [sym_identifier] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_macro_rules_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(564), + [anon_sym_i8] = ACTIONS(564), + [anon_sym_u16] = ACTIONS(564), + [anon_sym_i16] = ACTIONS(564), + [anon_sym_u32] = ACTIONS(564), + [anon_sym_i32] = ACTIONS(564), + [anon_sym_u64] = ACTIONS(564), + [anon_sym_i64] = ACTIONS(564), + [anon_sym_u128] = ACTIONS(564), + [anon_sym_i128] = ACTIONS(564), + [anon_sym_isize] = ACTIONS(564), + [anon_sym_usize] = ACTIONS(564), + [anon_sym_f32] = ACTIONS(564), + [anon_sym_f64] = ACTIONS(564), + [anon_sym_bool] = ACTIONS(564), + [anon_sym_str] = ACTIONS(564), + [anon_sym_char] = ACTIONS(564), + [anon_sym_SQUOTE] = ACTIONS(564), + [anon_sym_as] = ACTIONS(568), + [anon_sym_async] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_const] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_default] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_fn] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_if] = ACTIONS(564), + [anon_sym_impl] = ACTIONS(564), + [anon_sym_let] = ACTIONS(564), + [anon_sym_loop] = ACTIONS(564), + [anon_sym_match] = ACTIONS(564), + [anon_sym_mod] = ACTIONS(564), + [anon_sym_pub] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_static] = ACTIONS(564), + [anon_sym_struct] = ACTIONS(564), + [anon_sym_trait] = ACTIONS(564), + [anon_sym_type] = ACTIONS(564), + [anon_sym_union] = ACTIONS(564), + [anon_sym_unsafe] = ACTIONS(564), + [anon_sym_use] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_POUND] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_extern] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_move] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(562), + [aux_sym_string_literal_token1] = ACTIONS(562), + [sym_char_literal] = ACTIONS(562), + [anon_sym_true] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(564), + [sym_super] = ACTIONS(564), + [sym_crate] = ACTIONS(564), + [sym_metavariable] = ACTIONS(562), + [sym_raw_string_literal] = ACTIONS(562), + [sym_float_literal] = ACTIONS(562), + [sym_block_comment] = ACTIONS(3), + }, + [84] = { [ts_builtin_sym_end] = ACTIONS(570), [sym_identifier] = ACTIONS(572), [anon_sym_SEMI] = ACTIONS(570), @@ -25720,7 +26345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(570), [sym_block_comment] = ACTIONS(3), }, - [79] = { + [85] = { [ts_builtin_sym_end] = ACTIONS(574), [sym_identifier] = ACTIONS(576), [anon_sym_SEMI] = ACTIONS(574), @@ -25729,9 +26354,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(574), [anon_sym_RBRACE] = ACTIONS(574), [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_PLUS] = ACTIONS(576), [anon_sym_STAR] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_QMARK] = ACTIONS(574), [anon_sym_u8] = ACTIONS(576), [anon_sym_i8] = ACTIONS(576), [anon_sym_u16] = ACTIONS(576), @@ -25750,7 +26375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(576), [anon_sym_char] = ACTIONS(576), [anon_sym_SQUOTE] = ACTIONS(576), - [anon_sym_as] = ACTIONS(564), + [anon_sym_as] = ACTIONS(576), [anon_sym_async] = ACTIONS(576), [anon_sym_break] = ACTIONS(576), [anon_sym_const] = ACTIONS(576), @@ -25777,41 +26402,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(576), [anon_sym_POUND] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(576), [anon_sym_extern] = ACTIONS(576), [anon_sym_LT] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(576), [anon_sym_COLON_COLON] = ACTIONS(574), [anon_sym_AMP] = ACTIONS(576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), [anon_sym_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(574), [anon_sym_DASH] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(574), [anon_sym_PIPE] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(562), - [anon_sym_DASH_EQ] = ACTIONS(562), - [anon_sym_STAR_EQ] = ACTIONS(562), - [anon_sym_SLASH_EQ] = ACTIONS(562), - [anon_sym_PERCENT_EQ] = ACTIONS(562), - [anon_sym_AMP_EQ] = ACTIONS(562), - [anon_sym_PIPE_EQ] = ACTIONS(562), - [anon_sym_CARET_EQ] = ACTIONS(562), - [anon_sym_LT_LT_EQ] = ACTIONS(562), - [anon_sym_GT_GT_EQ] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), [anon_sym_yield] = ACTIONS(576), [anon_sym_move] = ACTIONS(576), - [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(576), [sym_integer_literal] = ACTIONS(574), [aux_sym_string_literal_token1] = ACTIONS(574), [sym_char_literal] = ACTIONS(574), @@ -25826,53 +26451,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(574), [sym_block_comment] = ACTIONS(3), }, - [80] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), + [86] = { + [ts_builtin_sym_end] = ACTIONS(578), + [sym_identifier] = ACTIONS(580), + [anon_sym_SEMI] = ACTIONS(578), + [anon_sym_macro_rules_BANG] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(580), + [anon_sym_as] = ACTIONS(568), + [anon_sym_async] = ACTIONS(580), + [anon_sym_break] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_continue] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(580), + [anon_sym_for] = ACTIONS(580), + [anon_sym_if] = ACTIONS(580), + [anon_sym_impl] = ACTIONS(580), + [anon_sym_let] = ACTIONS(580), + [anon_sym_loop] = ACTIONS(580), + [anon_sym_match] = ACTIONS(580), + [anon_sym_mod] = ACTIONS(580), + [anon_sym_pub] = ACTIONS(580), + [anon_sym_return] = ACTIONS(580), + [anon_sym_static] = ACTIONS(580), + [anon_sym_struct] = ACTIONS(580), + [anon_sym_trait] = ACTIONS(580), + [anon_sym_type] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_unsafe] = ACTIONS(580), + [anon_sym_use] = ACTIONS(580), + [anon_sym_while] = ACTIONS(580), + [anon_sym_POUND] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_extern] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(580), + [anon_sym_move] = ACTIONS(580), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_crate] = ACTIONS(580), + [sym_metavariable] = ACTIONS(578), + [sym_raw_string_literal] = ACTIONS(578), + [sym_float_literal] = ACTIONS(578), + [sym_block_comment] = ACTIONS(3), + }, + [87] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), [sym__expression] = STATE(1315), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25932,53 +26663,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [81] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [88] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [89] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1176), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26019,7 +26856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -26038,53 +26875,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [82] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1308), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [90] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [91] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1330), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26144,53 +27087,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1237), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [92] = { + [ts_builtin_sym_end] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(582), + [anon_sym_macro_rules_BANG] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_STAR] = ACTIONS(584), + [anon_sym_QMARK] = ACTIONS(582), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [anon_sym_POUND] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_extern] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_COLON_COLON] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(584), + [anon_sym_DOT_DOT_EQ] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_AMP_AMP] = ACTIONS(582), + [anon_sym_PIPE_PIPE] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(584), + [anon_sym_CARET] = ACTIONS(584), + [anon_sym_EQ_EQ] = ACTIONS(582), + [anon_sym_BANG_EQ] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(582), + [anon_sym_LT_LT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_PLUS_EQ] = ACTIONS(582), + [anon_sym_DASH_EQ] = ACTIONS(582), + [anon_sym_STAR_EQ] = ACTIONS(582), + [anon_sym_SLASH_EQ] = ACTIONS(582), + [anon_sym_PERCENT_EQ] = ACTIONS(582), + [anon_sym_AMP_EQ] = ACTIONS(582), + [anon_sym_PIPE_EQ] = ACTIONS(582), + [anon_sym_CARET_EQ] = ACTIONS(582), + [anon_sym_LT_LT_EQ] = ACTIONS(582), + [anon_sym_GT_GT_EQ] = ACTIONS(582), + [anon_sym_yield] = ACTIONS(584), + [anon_sym_move] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(582), + [aux_sym_string_literal_token1] = ACTIONS(582), + [sym_char_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(584), + [anon_sym_false] = ACTIONS(584), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_metavariable] = ACTIONS(582), + [sym_raw_string_literal] = ACTIONS(582), + [sym_float_literal] = ACTIONS(582), + [sym_block_comment] = ACTIONS(3), + }, + [93] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26231,7 +27280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -26250,162 +27299,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [ts_builtin_sym_end] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_macro_rules_BANG] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_async] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_enum] = ACTIONS(580), - [anon_sym_fn] = ACTIONS(580), - [anon_sym_for] = ACTIONS(580), - [anon_sym_if] = ACTIONS(580), - [anon_sym_impl] = ACTIONS(580), - [anon_sym_let] = ACTIONS(580), - [anon_sym_loop] = ACTIONS(580), - [anon_sym_match] = ACTIONS(580), - [anon_sym_mod] = ACTIONS(580), - [anon_sym_pub] = ACTIONS(580), - [anon_sym_return] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_struct] = ACTIONS(580), - [anon_sym_trait] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_unsafe] = ACTIONS(580), - [anon_sym_use] = ACTIONS(580), - [anon_sym_while] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_extern] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_yield] = ACTIONS(580), - [anon_sym_move] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), - [sym_block_comment] = ACTIONS(3), - }, - [85] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1316), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(241), - [sym_if_let_expression] = STATE(241), - [sym_match_expression] = STATE(241), - [sym_while_expression] = STATE(241), - [sym_while_let_expression] = STATE(241), - [sym_loop_expression] = STATE(241), - [sym_for_expression] = STATE(241), - [sym_const_block] = STATE(241), - [sym_closure_expression] = STATE(886), + [94] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2555), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(241), - [sym_async_block] = STATE(241), - [sym_block] = STATE(241), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -26426,19 +27369,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(584), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(586), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(592), - [anon_sym_match] = ACTIONS(594), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(596), - [anon_sym_while] = ACTIONS(598), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -26462,159 +27405,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [86] = { - [ts_builtin_sym_end] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(600), - [anon_sym_macro_rules_BANG] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(602), - [anon_sym_i8] = ACTIONS(602), - [anon_sym_u16] = ACTIONS(602), - [anon_sym_i16] = ACTIONS(602), - [anon_sym_u32] = ACTIONS(602), - [anon_sym_i32] = ACTIONS(602), - [anon_sym_u64] = ACTIONS(602), - [anon_sym_i64] = ACTIONS(602), - [anon_sym_u128] = ACTIONS(602), - [anon_sym_i128] = ACTIONS(602), - [anon_sym_isize] = ACTIONS(602), - [anon_sym_usize] = ACTIONS(602), - [anon_sym_f32] = ACTIONS(602), - [anon_sym_f64] = ACTIONS(602), - [anon_sym_bool] = ACTIONS(602), - [anon_sym_str] = ACTIONS(602), - [anon_sym_char] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(602), - [anon_sym_as] = ACTIONS(602), - [anon_sym_async] = ACTIONS(602), - [anon_sym_break] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_default] = ACTIONS(602), - [anon_sym_enum] = ACTIONS(602), - [anon_sym_fn] = ACTIONS(602), - [anon_sym_for] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_impl] = ACTIONS(602), - [anon_sym_let] = ACTIONS(602), - [anon_sym_loop] = ACTIONS(602), - [anon_sym_match] = ACTIONS(602), - [anon_sym_mod] = ACTIONS(602), - [anon_sym_pub] = ACTIONS(602), - [anon_sym_return] = ACTIONS(602), - [anon_sym_static] = ACTIONS(602), - [anon_sym_struct] = ACTIONS(602), - [anon_sym_trait] = ACTIONS(602), - [anon_sym_type] = ACTIONS(602), - [anon_sym_union] = ACTIONS(602), - [anon_sym_unsafe] = ACTIONS(602), - [anon_sym_use] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_extern] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_EQ] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(600), - [anon_sym_DASH_EQ] = ACTIONS(600), - [anon_sym_STAR_EQ] = ACTIONS(600), - [anon_sym_SLASH_EQ] = ACTIONS(600), - [anon_sym_PERCENT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_yield] = ACTIONS(602), - [anon_sym_move] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [sym_integer_literal] = ACTIONS(600), - [aux_sym_string_literal_token1] = ACTIONS(600), - [sym_char_literal] = ACTIONS(600), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(602), - [sym_super] = ACTIONS(602), - [sym_crate] = ACTIONS(602), - [sym_metavariable] = ACTIONS(600), - [sym_raw_string_literal] = ACTIONS(600), - [sym_float_literal] = ACTIONS(600), - [sym_block_comment] = ACTIONS(3), - }, - [87] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1304), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [95] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1307), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26674,56 +27511,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [88] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), + [96] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(241), - [sym_if_let_expression] = STATE(241), - [sym_match_expression] = STATE(241), - [sym_while_expression] = STATE(241), - [sym_while_let_expression] = STATE(241), - [sym_loop_expression] = STATE(241), - [sym_for_expression] = STATE(241), - [sym_const_block] = STATE(241), - [sym_closure_expression] = STATE(886), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [97] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1328), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2555), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(241), - [sym_async_block] = STATE(241), - [sym_block] = STATE(241), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -26744,19 +27687,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(584), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(586), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(592), - [anon_sym_match] = ACTIONS(594), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(596), - [anon_sym_while] = ACTIONS(598), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -26780,53 +27723,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1320), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [98] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1326), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26886,53 +27829,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [90] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1302), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [99] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1332), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26992,53 +27935,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [91] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1329), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [100] = { + [ts_builtin_sym_end] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_macro_rules_BANG] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(588), + [anon_sym_i8] = ACTIONS(588), + [anon_sym_u16] = ACTIONS(588), + [anon_sym_i16] = ACTIONS(588), + [anon_sym_u32] = ACTIONS(588), + [anon_sym_i32] = ACTIONS(588), + [anon_sym_u64] = ACTIONS(588), + [anon_sym_i64] = ACTIONS(588), + [anon_sym_u128] = ACTIONS(588), + [anon_sym_i128] = ACTIONS(588), + [anon_sym_isize] = ACTIONS(588), + [anon_sym_usize] = ACTIONS(588), + [anon_sym_f32] = ACTIONS(588), + [anon_sym_f64] = ACTIONS(588), + [anon_sym_bool] = ACTIONS(588), + [anon_sym_str] = ACTIONS(588), + [anon_sym_char] = ACTIONS(588), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_as] = ACTIONS(588), + [anon_sym_async] = ACTIONS(588), + [anon_sym_break] = ACTIONS(588), + [anon_sym_const] = ACTIONS(588), + [anon_sym_continue] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_enum] = ACTIONS(588), + [anon_sym_fn] = ACTIONS(588), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(588), + [anon_sym_impl] = ACTIONS(588), + [anon_sym_let] = ACTIONS(588), + [anon_sym_loop] = ACTIONS(588), + [anon_sym_match] = ACTIONS(588), + [anon_sym_mod] = ACTIONS(588), + [anon_sym_pub] = ACTIONS(588), + [anon_sym_return] = ACTIONS(588), + [anon_sym_static] = ACTIONS(588), + [anon_sym_struct] = ACTIONS(588), + [anon_sym_trait] = ACTIONS(588), + [anon_sym_type] = ACTIONS(588), + [anon_sym_union] = ACTIONS(588), + [anon_sym_unsafe] = ACTIONS(588), + [anon_sym_use] = ACTIONS(588), + [anon_sym_while] = ACTIONS(588), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(588), + [anon_sym_extern] = ACTIONS(588), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_GT] = ACTIONS(588), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(588), + [anon_sym_PERCENT] = ACTIONS(588), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_move] = ACTIONS(588), + [anon_sym_DOT] = ACTIONS(588), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(586), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(588), + [anon_sym_false] = ACTIONS(588), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(588), + [sym_super] = ACTIONS(588), + [sym_crate] = ACTIONS(588), + [sym_metavariable] = ACTIONS(586), + [sym_raw_string_literal] = ACTIONS(586), + [sym_float_literal] = ACTIONS(586), + [sym_block_comment] = ACTIONS(3), + }, + [101] = { + [ts_builtin_sym_end] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_macro_rules_BANG] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_QMARK] = ACTIONS(590), + [anon_sym_u8] = ACTIONS(592), + [anon_sym_i8] = ACTIONS(592), + [anon_sym_u16] = ACTIONS(592), + [anon_sym_i16] = ACTIONS(592), + [anon_sym_u32] = ACTIONS(592), + [anon_sym_i32] = ACTIONS(592), + [anon_sym_u64] = ACTIONS(592), + [anon_sym_i64] = ACTIONS(592), + [anon_sym_u128] = ACTIONS(592), + [anon_sym_i128] = ACTIONS(592), + [anon_sym_isize] = ACTIONS(592), + [anon_sym_usize] = ACTIONS(592), + [anon_sym_f32] = ACTIONS(592), + [anon_sym_f64] = ACTIONS(592), + [anon_sym_bool] = ACTIONS(592), + [anon_sym_str] = ACTIONS(592), + [anon_sym_char] = ACTIONS(592), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_as] = ACTIONS(592), + [anon_sym_async] = ACTIONS(592), + [anon_sym_break] = ACTIONS(592), + [anon_sym_const] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(592), + [anon_sym_fn] = ACTIONS(592), + [anon_sym_for] = ACTIONS(592), + [anon_sym_if] = ACTIONS(592), + [anon_sym_impl] = ACTIONS(592), + [anon_sym_let] = ACTIONS(592), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(592), + [anon_sym_mod] = ACTIONS(592), + [anon_sym_pub] = ACTIONS(592), + [anon_sym_return] = ACTIONS(592), + [anon_sym_static] = ACTIONS(592), + [anon_sym_struct] = ACTIONS(592), + [anon_sym_trait] = ACTIONS(592), + [anon_sym_type] = ACTIONS(592), + [anon_sym_union] = ACTIONS(592), + [anon_sym_unsafe] = ACTIONS(592), + [anon_sym_use] = ACTIONS(592), + [anon_sym_while] = ACTIONS(592), + [anon_sym_POUND] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_extern] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_COLON_COLON] = ACTIONS(590), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(590), + [anon_sym_DOT_DOT] = ACTIONS(592), + [anon_sym_DOT_DOT_EQ] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(590), + [anon_sym_PIPE_PIPE] = ACTIONS(590), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(590), + [anon_sym_LT_EQ] = ACTIONS(590), + [anon_sym_GT_EQ] = ACTIONS(590), + [anon_sym_LT_LT] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_PLUS_EQ] = ACTIONS(590), + [anon_sym_DASH_EQ] = ACTIONS(590), + [anon_sym_STAR_EQ] = ACTIONS(590), + [anon_sym_SLASH_EQ] = ACTIONS(590), + [anon_sym_PERCENT_EQ] = ACTIONS(590), + [anon_sym_AMP_EQ] = ACTIONS(590), + [anon_sym_PIPE_EQ] = ACTIONS(590), + [anon_sym_CARET_EQ] = ACTIONS(590), + [anon_sym_LT_LT_EQ] = ACTIONS(590), + [anon_sym_GT_GT_EQ] = ACTIONS(590), + [anon_sym_yield] = ACTIONS(592), + [anon_sym_move] = ACTIONS(592), + [anon_sym_DOT] = ACTIONS(592), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(590), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(592), + [anon_sym_false] = ACTIONS(592), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(592), + [sym_super] = ACTIONS(592), + [sym_crate] = ACTIONS(592), + [sym_metavariable] = ACTIONS(590), + [sym_raw_string_literal] = ACTIONS(590), + [sym_float_literal] = ACTIONS(590), + [sym_block_comment] = ACTIONS(3), + }, + [102] = { + [ts_builtin_sym_end] = ACTIONS(594), + [sym_identifier] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_macro_rules_BANG] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_u8] = ACTIONS(596), + [anon_sym_i8] = ACTIONS(596), + [anon_sym_u16] = ACTIONS(596), + [anon_sym_i16] = ACTIONS(596), + [anon_sym_u32] = ACTIONS(596), + [anon_sym_i32] = ACTIONS(596), + [anon_sym_u64] = ACTIONS(596), + [anon_sym_i64] = ACTIONS(596), + [anon_sym_u128] = ACTIONS(596), + [anon_sym_i128] = ACTIONS(596), + [anon_sym_isize] = ACTIONS(596), + [anon_sym_usize] = ACTIONS(596), + [anon_sym_f32] = ACTIONS(596), + [anon_sym_f64] = ACTIONS(596), + [anon_sym_bool] = ACTIONS(596), + [anon_sym_str] = ACTIONS(596), + [anon_sym_char] = ACTIONS(596), + [anon_sym_SQUOTE] = ACTIONS(596), + [anon_sym_as] = ACTIONS(596), + [anon_sym_async] = ACTIONS(596), + [anon_sym_break] = ACTIONS(596), + [anon_sym_const] = ACTIONS(596), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_default] = ACTIONS(596), + [anon_sym_enum] = ACTIONS(596), + [anon_sym_fn] = ACTIONS(596), + [anon_sym_for] = ACTIONS(596), + [anon_sym_if] = ACTIONS(596), + [anon_sym_impl] = ACTIONS(596), + [anon_sym_let] = ACTIONS(596), + [anon_sym_loop] = ACTIONS(596), + [anon_sym_match] = ACTIONS(596), + [anon_sym_mod] = ACTIONS(596), + [anon_sym_pub] = ACTIONS(596), + [anon_sym_return] = ACTIONS(596), + [anon_sym_static] = ACTIONS(596), + [anon_sym_struct] = ACTIONS(596), + [anon_sym_trait] = ACTIONS(596), + [anon_sym_type] = ACTIONS(596), + [anon_sym_union] = ACTIONS(596), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_use] = ACTIONS(596), + [anon_sym_while] = ACTIONS(596), + [anon_sym_POUND] = ACTIONS(594), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_extern] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(594), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(594), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(594), + [anon_sym_DASH_EQ] = ACTIONS(594), + [anon_sym_STAR_EQ] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(594), + [anon_sym_AMP_EQ] = ACTIONS(594), + [anon_sym_PIPE_EQ] = ACTIONS(594), + [anon_sym_CARET_EQ] = ACTIONS(594), + [anon_sym_LT_LT_EQ] = ACTIONS(594), + [anon_sym_GT_GT_EQ] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_move] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(596), + [sym_integer_literal] = ACTIONS(594), + [aux_sym_string_literal_token1] = ACTIONS(594), + [sym_char_literal] = ACTIONS(594), + [anon_sym_true] = ACTIONS(596), + [anon_sym_false] = ACTIONS(596), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(596), + [sym_super] = ACTIONS(596), + [sym_crate] = ACTIONS(596), + [sym_metavariable] = ACTIONS(594), + [sym_raw_string_literal] = ACTIONS(594), + [sym_float_literal] = ACTIONS(594), + [sym_block_comment] = ACTIONS(3), + }, + [103] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1300), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27098,159 +28359,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [92] = { - [ts_builtin_sym_end] = ACTIONS(604), - [sym_identifier] = ACTIONS(606), - [anon_sym_SEMI] = ACTIONS(604), - [anon_sym_macro_rules_BANG] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_RBRACE] = ACTIONS(604), - [anon_sym_LBRACK] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_QMARK] = ACTIONS(604), - [anon_sym_u8] = ACTIONS(606), - [anon_sym_i8] = ACTIONS(606), - [anon_sym_u16] = ACTIONS(606), - [anon_sym_i16] = ACTIONS(606), - [anon_sym_u32] = ACTIONS(606), - [anon_sym_i32] = ACTIONS(606), - [anon_sym_u64] = ACTIONS(606), - [anon_sym_i64] = ACTIONS(606), - [anon_sym_u128] = ACTIONS(606), - [anon_sym_i128] = ACTIONS(606), - [anon_sym_isize] = ACTIONS(606), - [anon_sym_usize] = ACTIONS(606), - [anon_sym_f32] = ACTIONS(606), - [anon_sym_f64] = ACTIONS(606), - [anon_sym_bool] = ACTIONS(606), - [anon_sym_str] = ACTIONS(606), - [anon_sym_char] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_as] = ACTIONS(606), - [anon_sym_async] = ACTIONS(606), - [anon_sym_break] = ACTIONS(606), - [anon_sym_const] = ACTIONS(606), - [anon_sym_continue] = ACTIONS(606), - [anon_sym_default] = ACTIONS(606), - [anon_sym_enum] = ACTIONS(606), - [anon_sym_fn] = ACTIONS(606), - [anon_sym_for] = ACTIONS(606), - [anon_sym_if] = ACTIONS(606), - [anon_sym_impl] = ACTIONS(606), - [anon_sym_let] = ACTIONS(606), - [anon_sym_loop] = ACTIONS(606), - [anon_sym_match] = ACTIONS(606), - [anon_sym_mod] = ACTIONS(606), - [anon_sym_pub] = ACTIONS(606), - [anon_sym_return] = ACTIONS(606), - [anon_sym_static] = ACTIONS(606), - [anon_sym_struct] = ACTIONS(606), - [anon_sym_trait] = ACTIONS(606), - [anon_sym_type] = ACTIONS(606), - [anon_sym_union] = ACTIONS(606), - [anon_sym_unsafe] = ACTIONS(606), - [anon_sym_use] = ACTIONS(606), - [anon_sym_while] = ACTIONS(606), - [anon_sym_POUND] = ACTIONS(604), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_EQ] = ACTIONS(606), - [anon_sym_extern] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_GT] = ACTIONS(606), - [anon_sym_COLON_COLON] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DOT_DOT_EQ] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_AMP_AMP] = ACTIONS(604), - [anon_sym_PIPE_PIPE] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_CARET] = ACTIONS(606), - [anon_sym_EQ_EQ] = ACTIONS(604), - [anon_sym_BANG_EQ] = ACTIONS(604), - [anon_sym_LT_EQ] = ACTIONS(604), - [anon_sym_GT_EQ] = ACTIONS(604), - [anon_sym_LT_LT] = ACTIONS(606), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_SLASH] = ACTIONS(606), - [anon_sym_PERCENT] = ACTIONS(606), - [anon_sym_PLUS_EQ] = ACTIONS(604), - [anon_sym_DASH_EQ] = ACTIONS(604), - [anon_sym_STAR_EQ] = ACTIONS(604), - [anon_sym_SLASH_EQ] = ACTIONS(604), - [anon_sym_PERCENT_EQ] = ACTIONS(604), - [anon_sym_AMP_EQ] = ACTIONS(604), - [anon_sym_PIPE_EQ] = ACTIONS(604), - [anon_sym_CARET_EQ] = ACTIONS(604), - [anon_sym_LT_LT_EQ] = ACTIONS(604), - [anon_sym_GT_GT_EQ] = ACTIONS(604), - [anon_sym_yield] = ACTIONS(606), - [anon_sym_move] = ACTIONS(606), - [anon_sym_DOT] = ACTIONS(606), - [sym_integer_literal] = ACTIONS(604), - [aux_sym_string_literal_token1] = ACTIONS(604), - [sym_char_literal] = ACTIONS(604), - [anon_sym_true] = ACTIONS(606), - [anon_sym_false] = ACTIONS(606), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(606), - [sym_super] = ACTIONS(606), - [sym_crate] = ACTIONS(606), - [sym_metavariable] = ACTIONS(604), - [sym_raw_string_literal] = ACTIONS(604), - [sym_float_literal] = ACTIONS(604), + [104] = { + [ts_builtin_sym_end] = ACTIONS(598), + [sym_identifier] = ACTIONS(600), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_macro_rules_BANG] = ACTIONS(598), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_u8] = ACTIONS(600), + [anon_sym_i8] = ACTIONS(600), + [anon_sym_u16] = ACTIONS(600), + [anon_sym_i16] = ACTIONS(600), + [anon_sym_u32] = ACTIONS(600), + [anon_sym_i32] = ACTIONS(600), + [anon_sym_u64] = ACTIONS(600), + [anon_sym_i64] = ACTIONS(600), + [anon_sym_u128] = ACTIONS(600), + [anon_sym_i128] = ACTIONS(600), + [anon_sym_isize] = ACTIONS(600), + [anon_sym_usize] = ACTIONS(600), + [anon_sym_f32] = ACTIONS(600), + [anon_sym_f64] = ACTIONS(600), + [anon_sym_bool] = ACTIONS(600), + [anon_sym_str] = ACTIONS(600), + [anon_sym_char] = ACTIONS(600), + [anon_sym_SQUOTE] = ACTIONS(600), + [anon_sym_as] = ACTIONS(600), + [anon_sym_async] = ACTIONS(600), + [anon_sym_break] = ACTIONS(600), + [anon_sym_const] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(600), + [anon_sym_default] = ACTIONS(600), + [anon_sym_enum] = ACTIONS(600), + [anon_sym_fn] = ACTIONS(600), + [anon_sym_for] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_impl] = ACTIONS(600), + [anon_sym_let] = ACTIONS(600), + [anon_sym_loop] = ACTIONS(600), + [anon_sym_match] = ACTIONS(600), + [anon_sym_mod] = ACTIONS(600), + [anon_sym_pub] = ACTIONS(600), + [anon_sym_return] = ACTIONS(600), + [anon_sym_static] = ACTIONS(600), + [anon_sym_struct] = ACTIONS(600), + [anon_sym_trait] = ACTIONS(600), + [anon_sym_type] = ACTIONS(600), + [anon_sym_union] = ACTIONS(600), + [anon_sym_unsafe] = ACTIONS(600), + [anon_sym_use] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [anon_sym_POUND] = ACTIONS(598), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_EQ] = ACTIONS(600), + [anon_sym_extern] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT_EQ] = ACTIONS(598), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [anon_sym_PIPE] = ACTIONS(600), + [anon_sym_CARET] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(598), + [anon_sym_BANG_EQ] = ACTIONS(598), + [anon_sym_LT_EQ] = ACTIONS(598), + [anon_sym_GT_EQ] = ACTIONS(598), + [anon_sym_LT_LT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_SLASH] = ACTIONS(600), + [anon_sym_PERCENT] = ACTIONS(600), + [anon_sym_PLUS_EQ] = ACTIONS(598), + [anon_sym_DASH_EQ] = ACTIONS(598), + [anon_sym_STAR_EQ] = ACTIONS(598), + [anon_sym_SLASH_EQ] = ACTIONS(598), + [anon_sym_PERCENT_EQ] = ACTIONS(598), + [anon_sym_AMP_EQ] = ACTIONS(598), + [anon_sym_PIPE_EQ] = ACTIONS(598), + [anon_sym_CARET_EQ] = ACTIONS(598), + [anon_sym_LT_LT_EQ] = ACTIONS(598), + [anon_sym_GT_GT_EQ] = ACTIONS(598), + [anon_sym_yield] = ACTIONS(600), + [anon_sym_move] = ACTIONS(600), + [anon_sym_DOT] = ACTIONS(600), + [sym_integer_literal] = ACTIONS(598), + [aux_sym_string_literal_token1] = ACTIONS(598), + [sym_char_literal] = ACTIONS(598), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_crate] = ACTIONS(600), + [sym_metavariable] = ACTIONS(598), + [sym_raw_string_literal] = ACTIONS(598), + [sym_float_literal] = ACTIONS(598), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1333), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [105] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1320), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27310,371 +28571,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [94] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1285), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [95] = { - [ts_builtin_sym_end] = ACTIONS(608), - [sym_identifier] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(608), - [anon_sym_macro_rules_BANG] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(608), - [anon_sym_RBRACE] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(608), - [anon_sym_u8] = ACTIONS(610), - [anon_sym_i8] = ACTIONS(610), - [anon_sym_u16] = ACTIONS(610), - [anon_sym_i16] = ACTIONS(610), - [anon_sym_u32] = ACTIONS(610), - [anon_sym_i32] = ACTIONS(610), - [anon_sym_u64] = ACTIONS(610), - [anon_sym_i64] = ACTIONS(610), - [anon_sym_u128] = ACTIONS(610), - [anon_sym_i128] = ACTIONS(610), - [anon_sym_isize] = ACTIONS(610), - [anon_sym_usize] = ACTIONS(610), - [anon_sym_f32] = ACTIONS(610), - [anon_sym_f64] = ACTIONS(610), - [anon_sym_bool] = ACTIONS(610), - [anon_sym_str] = ACTIONS(610), - [anon_sym_char] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_as] = ACTIONS(610), - [anon_sym_async] = ACTIONS(610), - [anon_sym_break] = ACTIONS(610), - [anon_sym_const] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(610), - [anon_sym_default] = ACTIONS(610), - [anon_sym_enum] = ACTIONS(610), - [anon_sym_fn] = ACTIONS(610), - [anon_sym_for] = ACTIONS(610), - [anon_sym_if] = ACTIONS(610), - [anon_sym_impl] = ACTIONS(610), - [anon_sym_let] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(610), - [anon_sym_match] = ACTIONS(610), - [anon_sym_mod] = ACTIONS(610), - [anon_sym_pub] = ACTIONS(610), - [anon_sym_return] = ACTIONS(610), - [anon_sym_static] = ACTIONS(610), - [anon_sym_struct] = ACTIONS(610), - [anon_sym_trait] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_union] = ACTIONS(610), - [anon_sym_unsafe] = ACTIONS(610), - [anon_sym_use] = ACTIONS(610), - [anon_sym_while] = ACTIONS(610), - [anon_sym_POUND] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(610), - [anon_sym_EQ] = ACTIONS(610), - [anon_sym_extern] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_COLON_COLON] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_DOT_DOT] = ACTIONS(610), - [anon_sym_DOT_DOT_EQ] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(608), - [anon_sym_PIPE_PIPE] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_CARET] = ACTIONS(610), - [anon_sym_EQ_EQ] = ACTIONS(608), - [anon_sym_BANG_EQ] = ACTIONS(608), - [anon_sym_LT_EQ] = ACTIONS(608), - [anon_sym_GT_EQ] = ACTIONS(608), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_SLASH] = ACTIONS(610), - [anon_sym_PERCENT] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(608), - [anon_sym_STAR_EQ] = ACTIONS(608), - [anon_sym_SLASH_EQ] = ACTIONS(608), - [anon_sym_PERCENT_EQ] = ACTIONS(608), - [anon_sym_AMP_EQ] = ACTIONS(608), - [anon_sym_PIPE_EQ] = ACTIONS(608), - [anon_sym_CARET_EQ] = ACTIONS(608), - [anon_sym_LT_LT_EQ] = ACTIONS(608), - [anon_sym_GT_GT_EQ] = ACTIONS(608), - [anon_sym_yield] = ACTIONS(610), - [anon_sym_move] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(610), - [sym_integer_literal] = ACTIONS(608), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(608), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(610), - [sym_super] = ACTIONS(610), - [sym_crate] = ACTIONS(610), - [sym_metavariable] = ACTIONS(608), - [sym_raw_string_literal] = ACTIONS(608), - [sym_float_literal] = ACTIONS(608), - [sym_block_comment] = ACTIONS(3), - }, - [96] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1228), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [97] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [106] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27734,268 +28677,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [98] = { - [ts_builtin_sym_end] = ACTIONS(612), - [sym_identifier] = ACTIONS(614), - [anon_sym_SEMI] = ACTIONS(612), - [anon_sym_macro_rules_BANG] = ACTIONS(612), - [anon_sym_LPAREN] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(612), - [anon_sym_RBRACE] = ACTIONS(612), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(614), - [anon_sym_QMARK] = ACTIONS(612), - [anon_sym_u8] = ACTIONS(614), - [anon_sym_i8] = ACTIONS(614), - [anon_sym_u16] = ACTIONS(614), - [anon_sym_i16] = ACTIONS(614), - [anon_sym_u32] = ACTIONS(614), - [anon_sym_i32] = ACTIONS(614), - [anon_sym_u64] = ACTIONS(614), - [anon_sym_i64] = ACTIONS(614), - [anon_sym_u128] = ACTIONS(614), - [anon_sym_i128] = ACTIONS(614), - [anon_sym_isize] = ACTIONS(614), - [anon_sym_usize] = ACTIONS(614), - [anon_sym_f32] = ACTIONS(614), - [anon_sym_f64] = ACTIONS(614), - [anon_sym_bool] = ACTIONS(614), - [anon_sym_str] = ACTIONS(614), - [anon_sym_char] = ACTIONS(614), - [anon_sym_SQUOTE] = ACTIONS(614), - [anon_sym_as] = ACTIONS(614), - [anon_sym_async] = ACTIONS(614), - [anon_sym_break] = ACTIONS(614), - [anon_sym_const] = ACTIONS(614), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_default] = ACTIONS(614), - [anon_sym_enum] = ACTIONS(614), - [anon_sym_fn] = ACTIONS(614), - [anon_sym_for] = ACTIONS(614), - [anon_sym_if] = ACTIONS(614), - [anon_sym_impl] = ACTIONS(614), - [anon_sym_let] = ACTIONS(614), - [anon_sym_loop] = ACTIONS(614), - [anon_sym_match] = ACTIONS(614), - [anon_sym_mod] = ACTIONS(614), - [anon_sym_pub] = ACTIONS(614), - [anon_sym_return] = ACTIONS(614), - [anon_sym_static] = ACTIONS(614), - [anon_sym_struct] = ACTIONS(614), - [anon_sym_trait] = ACTIONS(614), - [anon_sym_type] = ACTIONS(614), - [anon_sym_union] = ACTIONS(614), - [anon_sym_unsafe] = ACTIONS(614), - [anon_sym_use] = ACTIONS(614), - [anon_sym_while] = ACTIONS(614), - [anon_sym_POUND] = ACTIONS(612), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_EQ] = ACTIONS(614), - [anon_sym_extern] = ACTIONS(614), - [anon_sym_LT] = ACTIONS(614), - [anon_sym_GT] = ACTIONS(614), - [anon_sym_COLON_COLON] = ACTIONS(612), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [anon_sym_DOT_DOT] = ACTIONS(614), - [anon_sym_DOT_DOT_EQ] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_AMP_AMP] = ACTIONS(612), - [anon_sym_PIPE_PIPE] = ACTIONS(612), - [anon_sym_PIPE] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_EQ_EQ] = ACTIONS(612), - [anon_sym_BANG_EQ] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(612), - [anon_sym_GT_EQ] = ACTIONS(612), - [anon_sym_LT_LT] = ACTIONS(614), - [anon_sym_GT_GT] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(614), - [anon_sym_PERCENT] = ACTIONS(614), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_move] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(614), - [sym_integer_literal] = ACTIONS(612), - [aux_sym_string_literal_token1] = ACTIONS(612), - [sym_char_literal] = ACTIONS(612), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(614), - [sym_super] = ACTIONS(614), - [sym_crate] = ACTIONS(614), - [sym_metavariable] = ACTIONS(612), - [sym_raw_string_literal] = ACTIONS(612), - [sym_float_literal] = ACTIONS(612), - [sym_block_comment] = ACTIONS(3), - }, - [99] = { - [ts_builtin_sym_end] = ACTIONS(616), - [sym_identifier] = ACTIONS(618), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_macro_rules_BANG] = ACTIONS(616), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_LBRACK] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(618), - [anon_sym_QMARK] = ACTIONS(616), - [anon_sym_u8] = ACTIONS(618), - [anon_sym_i8] = ACTIONS(618), - [anon_sym_u16] = ACTIONS(618), - [anon_sym_i16] = ACTIONS(618), - [anon_sym_u32] = ACTIONS(618), - [anon_sym_i32] = ACTIONS(618), - [anon_sym_u64] = ACTIONS(618), - [anon_sym_i64] = ACTIONS(618), - [anon_sym_u128] = ACTIONS(618), - [anon_sym_i128] = ACTIONS(618), - [anon_sym_isize] = ACTIONS(618), - [anon_sym_usize] = ACTIONS(618), - [anon_sym_f32] = ACTIONS(618), - [anon_sym_f64] = ACTIONS(618), - [anon_sym_bool] = ACTIONS(618), - [anon_sym_str] = ACTIONS(618), - [anon_sym_char] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(618), - [anon_sym_as] = ACTIONS(618), - [anon_sym_async] = ACTIONS(618), - [anon_sym_break] = ACTIONS(618), - [anon_sym_const] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(618), - [anon_sym_default] = ACTIONS(618), - [anon_sym_enum] = ACTIONS(618), - [anon_sym_fn] = ACTIONS(618), - [anon_sym_for] = ACTIONS(618), - [anon_sym_if] = ACTIONS(618), - [anon_sym_impl] = ACTIONS(618), - [anon_sym_let] = ACTIONS(618), - [anon_sym_loop] = ACTIONS(618), - [anon_sym_match] = ACTIONS(618), - [anon_sym_mod] = ACTIONS(618), - [anon_sym_pub] = ACTIONS(618), - [anon_sym_return] = ACTIONS(618), - [anon_sym_static] = ACTIONS(618), - [anon_sym_struct] = ACTIONS(618), - [anon_sym_trait] = ACTIONS(618), - [anon_sym_type] = ACTIONS(618), - [anon_sym_union] = ACTIONS(618), - [anon_sym_unsafe] = ACTIONS(618), - [anon_sym_use] = ACTIONS(618), - [anon_sym_while] = ACTIONS(618), - [anon_sym_POUND] = ACTIONS(616), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_EQ] = ACTIONS(618), - [anon_sym_extern] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(618), - [anon_sym_GT] = ACTIONS(618), - [anon_sym_COLON_COLON] = ACTIONS(616), - [anon_sym_AMP] = ACTIONS(618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(616), - [anon_sym_DOT_DOT] = ACTIONS(618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_AMP_AMP] = ACTIONS(616), - [anon_sym_PIPE_PIPE] = ACTIONS(616), - [anon_sym_PIPE] = ACTIONS(618), - [anon_sym_CARET] = ACTIONS(618), - [anon_sym_EQ_EQ] = ACTIONS(616), - [anon_sym_BANG_EQ] = ACTIONS(616), - [anon_sym_LT_EQ] = ACTIONS(616), - [anon_sym_GT_EQ] = ACTIONS(616), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_GT_GT] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(618), - [anon_sym_PLUS_EQ] = ACTIONS(616), - [anon_sym_DASH_EQ] = ACTIONS(616), - [anon_sym_STAR_EQ] = ACTIONS(616), - [anon_sym_SLASH_EQ] = ACTIONS(616), - [anon_sym_PERCENT_EQ] = ACTIONS(616), - [anon_sym_AMP_EQ] = ACTIONS(616), - [anon_sym_PIPE_EQ] = ACTIONS(616), - [anon_sym_CARET_EQ] = ACTIONS(616), - [anon_sym_LT_LT_EQ] = ACTIONS(616), - [anon_sym_GT_GT_EQ] = ACTIONS(616), - [anon_sym_yield] = ACTIONS(618), - [anon_sym_move] = ACTIONS(618), - [anon_sym_DOT] = ACTIONS(618), - [sym_integer_literal] = ACTIONS(616), - [aux_sym_string_literal_token1] = ACTIONS(616), - [sym_char_literal] = ACTIONS(616), - [anon_sym_true] = ACTIONS(618), - [anon_sym_false] = ACTIONS(618), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(618), - [sym_super] = ACTIONS(618), - [sym_crate] = ACTIONS(618), - [sym_metavariable] = ACTIONS(616), - [sym_raw_string_literal] = ACTIONS(616), - [sym_float_literal] = ACTIONS(616), - [sym_block_comment] = ACTIONS(3), - }, - [100] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1231), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [107] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1322), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(235), + [sym_if_let_expression] = STATE(235), + [sym_match_expression] = STATE(235), + [sym_while_expression] = STATE(235), + [sym_while_let_expression] = STATE(235), + [sym_loop_expression] = STATE(235), + [sym_for_expression] = STATE(235), + [sym_const_block] = STATE(235), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2554), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(235), + [sym_async_block] = STATE(235), + [sym_block] = STATE(235), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(602), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -28016,19 +28747,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(604), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(606), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(608), + [anon_sym_if] = ACTIONS(610), + [anon_sym_loop] = ACTIONS(612), + [anon_sym_match] = ACTIONS(614), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -28052,7 +28783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [101] = { + [108] = { [ts_builtin_sym_end] = ACTIONS(620), [sym_identifier] = ACTIONS(622), [anon_sym_SEMI] = ACTIONS(620), @@ -28158,56 +28889,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(620), [sym_block_comment] = ACTIONS(3), }, - [102] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1326), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [109] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1264), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(235), + [sym_if_let_expression] = STATE(235), + [sym_match_expression] = STATE(235), + [sym_while_expression] = STATE(235), + [sym_while_let_expression] = STATE(235), + [sym_loop_expression] = STATE(235), + [sym_for_expression] = STATE(235), + [sym_const_block] = STATE(235), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2554), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(235), + [sym_async_block] = STATE(235), + [sym_block] = STATE(235), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(602), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -28228,19 +28959,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(604), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(606), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(608), + [anon_sym_if] = ACTIONS(610), + [anon_sym_loop] = ACTIONS(612), + [anon_sym_match] = ACTIONS(614), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -28264,53 +28995,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [103] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1305), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [110] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1327), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28370,159 +29101,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [104] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1334), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(280), + [111] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [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_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [105] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1306), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [112] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28582,265 +29313,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [106] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1324), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(280), + [113] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [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_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [107] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1175), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(280), + [114] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [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_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [108] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1300), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [115] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [116] = { + [ts_builtin_sym_end] = ACTIONS(624), + [sym_identifier] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(624), + [anon_sym_macro_rules_BANG] = ACTIONS(624), + [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(624), + [anon_sym_u8] = ACTIONS(626), + [anon_sym_i8] = ACTIONS(626), + [anon_sym_u16] = ACTIONS(626), + [anon_sym_i16] = ACTIONS(626), + [anon_sym_u32] = ACTIONS(626), + [anon_sym_i32] = ACTIONS(626), + [anon_sym_u64] = ACTIONS(626), + [anon_sym_i64] = ACTIONS(626), + [anon_sym_u128] = ACTIONS(626), + [anon_sym_i128] = ACTIONS(626), + [anon_sym_isize] = ACTIONS(626), + [anon_sym_usize] = ACTIONS(626), + [anon_sym_f32] = ACTIONS(626), + [anon_sym_f64] = ACTIONS(626), + [anon_sym_bool] = ACTIONS(626), + [anon_sym_str] = ACTIONS(626), + [anon_sym_char] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(626), + [anon_sym_as] = ACTIONS(626), + [anon_sym_async] = ACTIONS(626), + [anon_sym_break] = ACTIONS(626), + [anon_sym_const] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_enum] = ACTIONS(626), + [anon_sym_fn] = ACTIONS(626), + [anon_sym_for] = ACTIONS(626), + [anon_sym_if] = ACTIONS(626), + [anon_sym_impl] = ACTIONS(626), + [anon_sym_let] = ACTIONS(626), + [anon_sym_loop] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_mod] = ACTIONS(626), + [anon_sym_pub] = ACTIONS(626), + [anon_sym_return] = ACTIONS(626), + [anon_sym_static] = ACTIONS(626), + [anon_sym_struct] = ACTIONS(626), + [anon_sym_trait] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_union] = ACTIONS(626), + [anon_sym_unsafe] = ACTIONS(626), + [anon_sym_use] = ACTIONS(626), + [anon_sym_while] = ACTIONS(626), + [anon_sym_POUND] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_extern] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_COLON_COLON] = ACTIONS(624), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(624), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_BANG_EQ] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(624), + [anon_sym_DASH_EQ] = ACTIONS(624), + [anon_sym_STAR_EQ] = ACTIONS(624), + [anon_sym_SLASH_EQ] = ACTIONS(624), + [anon_sym_PERCENT_EQ] = ACTIONS(624), + [anon_sym_AMP_EQ] = ACTIONS(624), + [anon_sym_PIPE_EQ] = ACTIONS(624), + [anon_sym_CARET_EQ] = ACTIONS(624), + [anon_sym_LT_LT_EQ] = ACTIONS(624), + [anon_sym_GT_GT_EQ] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_move] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [sym_integer_literal] = ACTIONS(624), + [aux_sym_string_literal_token1] = ACTIONS(624), + [sym_char_literal] = ACTIONS(624), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_crate] = ACTIONS(626), + [sym_metavariable] = ACTIONS(624), + [sym_raw_string_literal] = ACTIONS(624), + [sym_float_literal] = ACTIONS(624), + [sym_block_comment] = ACTIONS(3), + }, + [117] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1311), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28900,53 +29843,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [109] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1310), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [118] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1247), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29006,159 +29949,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [110] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1238), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [111] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1309), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [119] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1111), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29199,7 +30036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29218,53 +30055,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [112] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [120] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1282), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29305,7 +30142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -29324,64 +30161,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [113] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1248), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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), + [121] = { + [ts_builtin_sym_end] = ACTIONS(628), + [sym_identifier] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(628), + [anon_sym_macro_rules_BANG] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_u8] = ACTIONS(630), + [anon_sym_i8] = ACTIONS(630), + [anon_sym_u16] = ACTIONS(630), + [anon_sym_i16] = ACTIONS(630), + [anon_sym_u32] = ACTIONS(630), + [anon_sym_i32] = ACTIONS(630), + [anon_sym_u64] = ACTIONS(630), + [anon_sym_i64] = ACTIONS(630), + [anon_sym_u128] = ACTIONS(630), + [anon_sym_i128] = ACTIONS(630), + [anon_sym_isize] = ACTIONS(630), + [anon_sym_usize] = ACTIONS(630), + [anon_sym_f32] = ACTIONS(630), + [anon_sym_f64] = ACTIONS(630), + [anon_sym_bool] = ACTIONS(630), + [anon_sym_str] = ACTIONS(630), + [anon_sym_char] = ACTIONS(630), + [anon_sym_SQUOTE] = ACTIONS(630), + [anon_sym_as] = ACTIONS(630), + [anon_sym_async] = ACTIONS(630), + [anon_sym_break] = ACTIONS(630), + [anon_sym_const] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(630), + [anon_sym_default] = ACTIONS(630), + [anon_sym_enum] = ACTIONS(630), + [anon_sym_fn] = ACTIONS(630), + [anon_sym_for] = ACTIONS(630), + [anon_sym_if] = ACTIONS(630), + [anon_sym_impl] = ACTIONS(630), + [anon_sym_let] = ACTIONS(630), + [anon_sym_loop] = ACTIONS(630), + [anon_sym_match] = ACTIONS(630), + [anon_sym_mod] = ACTIONS(630), + [anon_sym_pub] = ACTIONS(630), + [anon_sym_return] = ACTIONS(630), + [anon_sym_static] = ACTIONS(630), + [anon_sym_struct] = ACTIONS(630), + [anon_sym_trait] = ACTIONS(630), + [anon_sym_type] = ACTIONS(630), + [anon_sym_union] = ACTIONS(630), + [anon_sym_unsafe] = ACTIONS(630), + [anon_sym_use] = ACTIONS(630), + [anon_sym_while] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(628), + [anon_sym_BANG] = ACTIONS(630), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_extern] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_COLON_COLON] = ACTIONS(628), + [anon_sym_AMP] = ACTIONS(630), + [anon_sym_DOT_DOT_DOT] = ACTIONS(628), + [anon_sym_DOT_DOT] = ACTIONS(630), + [anon_sym_DOT_DOT_EQ] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_PIPE_PIPE] = ACTIONS(628), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym_EQ_EQ] = ACTIONS(628), + [anon_sym_BANG_EQ] = ACTIONS(628), + [anon_sym_LT_EQ] = ACTIONS(628), + [anon_sym_GT_EQ] = ACTIONS(628), + [anon_sym_LT_LT] = ACTIONS(630), + [anon_sym_GT_GT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_PLUS_EQ] = ACTIONS(628), + [anon_sym_DASH_EQ] = ACTIONS(628), + [anon_sym_STAR_EQ] = ACTIONS(628), + [anon_sym_SLASH_EQ] = ACTIONS(628), + [anon_sym_PERCENT_EQ] = ACTIONS(628), + [anon_sym_AMP_EQ] = ACTIONS(628), + [anon_sym_PIPE_EQ] = ACTIONS(628), + [anon_sym_CARET_EQ] = ACTIONS(628), + [anon_sym_LT_LT_EQ] = ACTIONS(628), + [anon_sym_GT_GT_EQ] = ACTIONS(628), + [anon_sym_yield] = ACTIONS(630), + [anon_sym_move] = ACTIONS(630), + [anon_sym_DOT] = ACTIONS(630), + [sym_integer_literal] = ACTIONS(628), + [aux_sym_string_literal_token1] = ACTIONS(628), + [sym_char_literal] = ACTIONS(628), + [anon_sym_true] = ACTIONS(630), + [anon_sym_false] = ACTIONS(630), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(630), + [sym_super] = ACTIONS(630), + [sym_crate] = ACTIONS(630), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(628), + [sym_float_literal] = ACTIONS(628), + [sym_block_comment] = ACTIONS(3), + }, + [122] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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), @@ -29430,53 +30373,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [114] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [123] = { + [ts_builtin_sym_end] = ACTIONS(632), + [sym_identifier] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(632), + [anon_sym_macro_rules_BANG] = ACTIONS(632), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_u8] = ACTIONS(634), + [anon_sym_i8] = ACTIONS(634), + [anon_sym_u16] = ACTIONS(634), + [anon_sym_i16] = ACTIONS(634), + [anon_sym_u32] = ACTIONS(634), + [anon_sym_i32] = ACTIONS(634), + [anon_sym_u64] = ACTIONS(634), + [anon_sym_i64] = ACTIONS(634), + [anon_sym_u128] = ACTIONS(634), + [anon_sym_i128] = ACTIONS(634), + [anon_sym_isize] = ACTIONS(634), + [anon_sym_usize] = ACTIONS(634), + [anon_sym_f32] = ACTIONS(634), + [anon_sym_f64] = ACTIONS(634), + [anon_sym_bool] = ACTIONS(634), + [anon_sym_str] = ACTIONS(634), + [anon_sym_char] = ACTIONS(634), + [anon_sym_SQUOTE] = ACTIONS(634), + [anon_sym_as] = ACTIONS(634), + [anon_sym_async] = ACTIONS(634), + [anon_sym_break] = ACTIONS(634), + [anon_sym_const] = ACTIONS(634), + [anon_sym_continue] = ACTIONS(634), + [anon_sym_default] = ACTIONS(634), + [anon_sym_enum] = ACTIONS(634), + [anon_sym_fn] = ACTIONS(634), + [anon_sym_for] = ACTIONS(634), + [anon_sym_if] = ACTIONS(634), + [anon_sym_impl] = ACTIONS(634), + [anon_sym_let] = ACTIONS(634), + [anon_sym_loop] = ACTIONS(634), + [anon_sym_match] = ACTIONS(634), + [anon_sym_mod] = ACTIONS(634), + [anon_sym_pub] = ACTIONS(634), + [anon_sym_return] = ACTIONS(634), + [anon_sym_static] = ACTIONS(634), + [anon_sym_struct] = ACTIONS(634), + [anon_sym_trait] = ACTIONS(634), + [anon_sym_type] = ACTIONS(634), + [anon_sym_union] = ACTIONS(634), + [anon_sym_unsafe] = ACTIONS(634), + [anon_sym_use] = ACTIONS(634), + [anon_sym_while] = ACTIONS(634), + [anon_sym_POUND] = ACTIONS(632), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_EQ] = ACTIONS(634), + [anon_sym_extern] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(634), + [anon_sym_COLON_COLON] = ACTIONS(632), + [anon_sym_AMP] = ACTIONS(634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(632), + [anon_sym_DOT_DOT] = ACTIONS(634), + [anon_sym_DOT_DOT_EQ] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_AMP_AMP] = ACTIONS(632), + [anon_sym_PIPE_PIPE] = ACTIONS(632), + [anon_sym_PIPE] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_EQ_EQ] = ACTIONS(632), + [anon_sym_BANG_EQ] = ACTIONS(632), + [anon_sym_LT_EQ] = ACTIONS(632), + [anon_sym_GT_EQ] = ACTIONS(632), + [anon_sym_LT_LT] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(634), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(634), + [anon_sym_PLUS_EQ] = ACTIONS(632), + [anon_sym_DASH_EQ] = ACTIONS(632), + [anon_sym_STAR_EQ] = ACTIONS(632), + [anon_sym_SLASH_EQ] = ACTIONS(632), + [anon_sym_PERCENT_EQ] = ACTIONS(632), + [anon_sym_AMP_EQ] = ACTIONS(632), + [anon_sym_PIPE_EQ] = ACTIONS(632), + [anon_sym_CARET_EQ] = ACTIONS(632), + [anon_sym_LT_LT_EQ] = ACTIONS(632), + [anon_sym_GT_GT_EQ] = ACTIONS(632), + [anon_sym_yield] = ACTIONS(634), + [anon_sym_move] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(634), + [sym_integer_literal] = ACTIONS(632), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(634), + [sym_super] = ACTIONS(634), + [sym_crate] = ACTIONS(634), + [sym_metavariable] = ACTIONS(632), + [sym_raw_string_literal] = ACTIONS(632), + [sym_float_literal] = ACTIONS(632), + [sym_block_comment] = ACTIONS(3), + }, + [124] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1225), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29536,53 +30585,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [115] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1307), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [125] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1224), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [126] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1297), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29642,53 +30797,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1312), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [127] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1294), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29748,53 +30903,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [117] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1314), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [128] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1220), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [129] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [130] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [131] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1157), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29835,7 +31308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29854,53 +31327,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1321), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [132] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1165), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29941,7 +31414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29960,53 +31433,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1313), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [133] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1179), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30047,7 +31520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30066,53 +31539,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [120] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1232), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [134] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1333), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30172,53 +31645,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [135] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1158), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30259,7 +31732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30278,265 +31751,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [122] = { - [ts_builtin_sym_end] = ACTIONS(624), - [sym_identifier] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(624), - [anon_sym_macro_rules_BANG] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_QMARK] = ACTIONS(624), - [anon_sym_u8] = ACTIONS(626), - [anon_sym_i8] = ACTIONS(626), - [anon_sym_u16] = ACTIONS(626), - [anon_sym_i16] = ACTIONS(626), - [anon_sym_u32] = ACTIONS(626), - [anon_sym_i32] = ACTIONS(626), - [anon_sym_u64] = ACTIONS(626), - [anon_sym_i64] = ACTIONS(626), - [anon_sym_u128] = ACTIONS(626), - [anon_sym_i128] = ACTIONS(626), - [anon_sym_isize] = ACTIONS(626), - [anon_sym_usize] = ACTIONS(626), - [anon_sym_f32] = ACTIONS(626), - [anon_sym_f64] = ACTIONS(626), - [anon_sym_bool] = ACTIONS(626), - [anon_sym_str] = ACTIONS(626), - [anon_sym_char] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), - [anon_sym_async] = ACTIONS(626), - [anon_sym_break] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_enum] = ACTIONS(626), - [anon_sym_fn] = ACTIONS(626), - [anon_sym_for] = ACTIONS(626), - [anon_sym_if] = ACTIONS(626), - [anon_sym_impl] = ACTIONS(626), - [anon_sym_let] = ACTIONS(626), - [anon_sym_loop] = ACTIONS(626), - [anon_sym_match] = ACTIONS(626), - [anon_sym_mod] = ACTIONS(626), - [anon_sym_pub] = ACTIONS(626), - [anon_sym_return] = ACTIONS(626), - [anon_sym_static] = ACTIONS(626), - [anon_sym_struct] = ACTIONS(626), - [anon_sym_trait] = ACTIONS(626), - [anon_sym_type] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_unsafe] = ACTIONS(626), - [anon_sym_use] = ACTIONS(626), - [anon_sym_while] = ACTIONS(626), - [anon_sym_POUND] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(626), - [anon_sym_EQ] = ACTIONS(626), - [anon_sym_extern] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_COLON_COLON] = ACTIONS(624), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(624), - [anon_sym_DOT_DOT] = ACTIONS(626), - [anon_sym_DOT_DOT_EQ] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_CARET] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_BANG_EQ] = ACTIONS(624), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_SLASH] = ACTIONS(626), - [anon_sym_PERCENT] = ACTIONS(626), - [anon_sym_PLUS_EQ] = ACTIONS(624), - [anon_sym_DASH_EQ] = ACTIONS(624), - [anon_sym_STAR_EQ] = ACTIONS(624), - [anon_sym_SLASH_EQ] = ACTIONS(624), - [anon_sym_PERCENT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(624), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_move] = ACTIONS(626), - [anon_sym_DOT] = ACTIONS(626), - [sym_integer_literal] = ACTIONS(624), - [aux_sym_string_literal_token1] = ACTIONS(624), - [sym_char_literal] = ACTIONS(624), - [anon_sym_true] = ACTIONS(626), - [anon_sym_false] = ACTIONS(626), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_crate] = ACTIONS(626), - [sym_metavariable] = ACTIONS(624), - [sym_raw_string_literal] = ACTIONS(624), - [sym_float_literal] = ACTIONS(624), - [sym_block_comment] = ACTIONS(3), - }, - [123] = { - [ts_builtin_sym_end] = ACTIONS(628), - [sym_identifier] = ACTIONS(630), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_macro_rules_BANG] = ACTIONS(628), - [anon_sym_LPAREN] = ACTIONS(628), - [anon_sym_LBRACE] = ACTIONS(628), - [anon_sym_RBRACE] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_PLUS] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_u8] = ACTIONS(630), - [anon_sym_i8] = ACTIONS(630), - [anon_sym_u16] = ACTIONS(630), - [anon_sym_i16] = ACTIONS(630), - [anon_sym_u32] = ACTIONS(630), - [anon_sym_i32] = ACTIONS(630), - [anon_sym_u64] = ACTIONS(630), - [anon_sym_i64] = ACTIONS(630), - [anon_sym_u128] = ACTIONS(630), - [anon_sym_i128] = ACTIONS(630), - [anon_sym_isize] = ACTIONS(630), - [anon_sym_usize] = ACTIONS(630), - [anon_sym_f32] = ACTIONS(630), - [anon_sym_f64] = ACTIONS(630), - [anon_sym_bool] = ACTIONS(630), - [anon_sym_str] = ACTIONS(630), - [anon_sym_char] = ACTIONS(630), - [anon_sym_SQUOTE] = ACTIONS(630), - [anon_sym_as] = ACTIONS(630), - [anon_sym_async] = ACTIONS(630), - [anon_sym_break] = ACTIONS(630), - [anon_sym_const] = ACTIONS(630), - [anon_sym_continue] = ACTIONS(630), - [anon_sym_default] = ACTIONS(630), - [anon_sym_enum] = ACTIONS(630), - [anon_sym_fn] = ACTIONS(630), - [anon_sym_for] = ACTIONS(630), - [anon_sym_if] = ACTIONS(630), - [anon_sym_impl] = ACTIONS(630), - [anon_sym_let] = ACTIONS(630), - [anon_sym_loop] = ACTIONS(630), - [anon_sym_match] = ACTIONS(630), - [anon_sym_mod] = ACTIONS(630), - [anon_sym_pub] = ACTIONS(630), - [anon_sym_return] = ACTIONS(630), - [anon_sym_static] = ACTIONS(630), - [anon_sym_struct] = ACTIONS(630), - [anon_sym_trait] = ACTIONS(630), - [anon_sym_type] = ACTIONS(630), - [anon_sym_union] = ACTIONS(630), - [anon_sym_unsafe] = ACTIONS(630), - [anon_sym_use] = ACTIONS(630), - [anon_sym_while] = ACTIONS(630), - [anon_sym_POUND] = ACTIONS(628), - [anon_sym_BANG] = ACTIONS(630), - [anon_sym_EQ] = ACTIONS(630), - [anon_sym_extern] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_GT] = ACTIONS(630), - [anon_sym_COLON_COLON] = ACTIONS(628), - [anon_sym_AMP] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [anon_sym_DOT_DOT] = ACTIONS(630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(628), - [anon_sym_PIPE_PIPE] = ACTIONS(628), - [anon_sym_PIPE] = ACTIONS(630), - [anon_sym_CARET] = ACTIONS(630), - [anon_sym_EQ_EQ] = ACTIONS(628), - [anon_sym_BANG_EQ] = ACTIONS(628), - [anon_sym_LT_EQ] = ACTIONS(628), - [anon_sym_GT_EQ] = ACTIONS(628), - [anon_sym_LT_LT] = ACTIONS(630), - [anon_sym_GT_GT] = ACTIONS(630), - [anon_sym_SLASH] = ACTIONS(630), - [anon_sym_PERCENT] = ACTIONS(630), - [anon_sym_PLUS_EQ] = ACTIONS(628), - [anon_sym_DASH_EQ] = ACTIONS(628), - [anon_sym_STAR_EQ] = ACTIONS(628), - [anon_sym_SLASH_EQ] = ACTIONS(628), - [anon_sym_PERCENT_EQ] = ACTIONS(628), - [anon_sym_AMP_EQ] = ACTIONS(628), - [anon_sym_PIPE_EQ] = ACTIONS(628), - [anon_sym_CARET_EQ] = ACTIONS(628), - [anon_sym_LT_LT_EQ] = ACTIONS(628), - [anon_sym_GT_GT_EQ] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(630), - [anon_sym_move] = ACTIONS(630), - [anon_sym_DOT] = ACTIONS(630), - [sym_integer_literal] = ACTIONS(628), - [aux_sym_string_literal_token1] = ACTIONS(628), - [sym_char_literal] = ACTIONS(628), - [anon_sym_true] = ACTIONS(630), - [anon_sym_false] = ACTIONS(630), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(630), - [sym_super] = ACTIONS(630), - [sym_crate] = ACTIONS(630), - [sym_metavariable] = ACTIONS(628), - [sym_raw_string_literal] = ACTIONS(628), - [sym_float_literal] = ACTIONS(628), - [sym_block_comment] = ACTIONS(3), - }, - [124] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1319), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [136] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1175), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30577,7 +31838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30596,265 +31857,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [ts_builtin_sym_end] = ACTIONS(632), - [sym_identifier] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(632), - [anon_sym_macro_rules_BANG] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(634), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_u8] = ACTIONS(634), - [anon_sym_i8] = ACTIONS(634), - [anon_sym_u16] = ACTIONS(634), - [anon_sym_i16] = ACTIONS(634), - [anon_sym_u32] = ACTIONS(634), - [anon_sym_i32] = ACTIONS(634), - [anon_sym_u64] = ACTIONS(634), - [anon_sym_i64] = ACTIONS(634), - [anon_sym_u128] = ACTIONS(634), - [anon_sym_i128] = ACTIONS(634), - [anon_sym_isize] = ACTIONS(634), - [anon_sym_usize] = ACTIONS(634), - [anon_sym_f32] = ACTIONS(634), - [anon_sym_f64] = ACTIONS(634), - [anon_sym_bool] = ACTIONS(634), - [anon_sym_str] = ACTIONS(634), - [anon_sym_char] = ACTIONS(634), - [anon_sym_SQUOTE] = ACTIONS(634), - [anon_sym_as] = ACTIONS(634), - [anon_sym_async] = ACTIONS(634), - [anon_sym_break] = ACTIONS(634), - [anon_sym_const] = ACTIONS(634), - [anon_sym_continue] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(634), - [anon_sym_fn] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_impl] = ACTIONS(634), - [anon_sym_let] = ACTIONS(634), - [anon_sym_loop] = ACTIONS(634), - [anon_sym_match] = ACTIONS(634), - [anon_sym_mod] = ACTIONS(634), - [anon_sym_pub] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_static] = ACTIONS(634), - [anon_sym_struct] = ACTIONS(634), - [anon_sym_trait] = ACTIONS(634), - [anon_sym_type] = ACTIONS(634), - [anon_sym_union] = ACTIONS(634), - [anon_sym_unsafe] = ACTIONS(634), - [anon_sym_use] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(632), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_extern] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(634), - [anon_sym_COLON_COLON] = ACTIONS(632), - [anon_sym_AMP] = ACTIONS(634), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [anon_sym_DOT_DOT] = ACTIONS(634), - [anon_sym_DOT_DOT_EQ] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(634), - [anon_sym_AMP_AMP] = ACTIONS(632), - [anon_sym_PIPE_PIPE] = ACTIONS(632), - [anon_sym_PIPE] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_EQ_EQ] = ACTIONS(632), - [anon_sym_BANG_EQ] = ACTIONS(632), - [anon_sym_LT_EQ] = ACTIONS(632), - [anon_sym_GT_EQ] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_SLASH] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(632), - [anon_sym_DASH_EQ] = ACTIONS(632), - [anon_sym_STAR_EQ] = ACTIONS(632), - [anon_sym_SLASH_EQ] = ACTIONS(632), - [anon_sym_PERCENT_EQ] = ACTIONS(632), - [anon_sym_AMP_EQ] = ACTIONS(632), - [anon_sym_PIPE_EQ] = ACTIONS(632), - [anon_sym_CARET_EQ] = ACTIONS(632), - [anon_sym_LT_LT_EQ] = ACTIONS(632), - [anon_sym_GT_GT_EQ] = ACTIONS(632), - [anon_sym_yield] = ACTIONS(634), - [anon_sym_move] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(634), - [sym_integer_literal] = ACTIONS(632), - [aux_sym_string_literal_token1] = ACTIONS(632), - [sym_char_literal] = ACTIONS(632), - [anon_sym_true] = ACTIONS(634), - [anon_sym_false] = ACTIONS(634), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(634), - [sym_super] = ACTIONS(634), - [sym_crate] = ACTIONS(634), - [sym_metavariable] = ACTIONS(632), - [sym_raw_string_literal] = ACTIONS(632), - [sym_float_literal] = ACTIONS(632), - [sym_block_comment] = ACTIONS(3), - }, - [126] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1230), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), + [137] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1310), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1325), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [138] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1329), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30914,162 +32069,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1253), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), + [139] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1177), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [129] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1250), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(256), - [sym_if_let_expression] = STATE(256), - [sym_match_expression] = STATE(256), - [sym_while_expression] = STATE(256), - [sym_while_let_expression] = STATE(256), - [sym_loop_expression] = STATE(256), - [sym_for_expression] = STATE(256), - [sym_const_block] = STATE(256), - [sym_closure_expression] = STATE(886), + [140] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1111), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2555), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(256), - [sym_async_block] = STATE(256), - [sym_block] = STATE(256), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -31090,19 +32245,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(584), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(586), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(592), - [anon_sym_match] = ACTIONS(594), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(596), - [anon_sym_while] = ACTIONS(598), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -31126,20 +32281,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [ts_builtin_sym_end] = ACTIONS(636), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_macro_rules_BANG] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), + [141] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1324), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(251), + [sym_if_let_expression] = STATE(251), + [sym_match_expression] = STATE(251), + [sym_while_expression] = STATE(251), + [sym_while_let_expression] = STATE(251), + [sym_loop_expression] = STATE(251), + [sym_for_expression] = STATE(251), + [sym_const_block] = STATE(251), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2554), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(251), + [sym_async_block] = STATE(251), + [sym_block] = STATE(251), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(602), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(604), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(608), + [anon_sym_if] = ACTIONS(610), + [anon_sym_loop] = ACTIONS(612), + [anon_sym_match] = ACTIONS(614), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [142] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1173), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [143] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(251), + [sym_if_let_expression] = STATE(251), + [sym_match_expression] = STATE(251), + [sym_while_expression] = STATE(251), + [sym_while_let_expression] = STATE(251), + [sym_loop_expression] = STATE(251), + [sym_for_expression] = STATE(251), + [sym_const_block] = STATE(251), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2554), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(251), + [sym_async_block] = STATE(251), + [sym_block] = STATE(251), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(602), + [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_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(604), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(608), + [anon_sym_if] = ACTIONS(610), + [anon_sym_loop] = ACTIONS(612), + [anon_sym_match] = ACTIONS(614), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_while] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [144] = { + [ts_builtin_sym_end] = ACTIONS(636), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_macro_rules_BANG] = ACTIONS(636), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_LBRACE] = ACTIONS(636), + [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(638), + [anon_sym_QMARK] = ACTIONS(636), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), [anon_sym_u16] = ACTIONS(638), [anon_sym_i16] = ACTIONS(638), [anon_sym_u32] = ACTIONS(638), @@ -31232,162 +32705,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(636), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), + [145] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1319), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [132] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1328), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(256), - [sym_if_let_expression] = STATE(256), - [sym_match_expression] = STATE(256), - [sym_while_expression] = STATE(256), - [sym_while_let_expression] = STATE(256), - [sym_loop_expression] = STATE(256), - [sym_for_expression] = STATE(256), - [sym_const_block] = STATE(256), - [sym_closure_expression] = STATE(886), + [146] = { + [ts_builtin_sym_end] = ACTIONS(640), + [sym_identifier] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_macro_rules_BANG] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(640), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(642), + [anon_sym_i8] = ACTIONS(642), + [anon_sym_u16] = ACTIONS(642), + [anon_sym_i16] = ACTIONS(642), + [anon_sym_u32] = ACTIONS(642), + [anon_sym_i32] = ACTIONS(642), + [anon_sym_u64] = ACTIONS(642), + [anon_sym_i64] = ACTIONS(642), + [anon_sym_u128] = ACTIONS(642), + [anon_sym_i128] = ACTIONS(642), + [anon_sym_isize] = ACTIONS(642), + [anon_sym_usize] = ACTIONS(642), + [anon_sym_f32] = ACTIONS(642), + [anon_sym_f64] = ACTIONS(642), + [anon_sym_bool] = ACTIONS(642), + [anon_sym_str] = ACTIONS(642), + [anon_sym_char] = ACTIONS(642), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_as] = ACTIONS(642), + [anon_sym_async] = ACTIONS(642), + [anon_sym_break] = ACTIONS(642), + [anon_sym_const] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_enum] = ACTIONS(642), + [anon_sym_fn] = ACTIONS(642), + [anon_sym_for] = ACTIONS(642), + [anon_sym_if] = ACTIONS(642), + [anon_sym_impl] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(642), + [anon_sym_mod] = ACTIONS(642), + [anon_sym_pub] = ACTIONS(642), + [anon_sym_return] = ACTIONS(642), + [anon_sym_static] = ACTIONS(642), + [anon_sym_struct] = ACTIONS(642), + [anon_sym_trait] = ACTIONS(642), + [anon_sym_type] = ACTIONS(642), + [anon_sym_union] = ACTIONS(642), + [anon_sym_unsafe] = ACTIONS(642), + [anon_sym_use] = ACTIONS(642), + [anon_sym_while] = ACTIONS(642), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_extern] = ACTIONS(642), + [anon_sym_LT] = ACTIONS(642), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT] = ACTIONS(642), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(642), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(642), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_yield] = ACTIONS(642), + [anon_sym_move] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [sym_integer_literal] = ACTIONS(640), + [aux_sym_string_literal_token1] = ACTIONS(640), + [sym_char_literal] = ACTIONS(640), + [anon_sym_true] = ACTIONS(642), + [anon_sym_false] = ACTIONS(642), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(642), + [sym_super] = ACTIONS(642), + [sym_crate] = ACTIONS(642), + [sym_metavariable] = ACTIONS(640), + [sym_raw_string_literal] = ACTIONS(640), + [sym_float_literal] = ACTIONS(640), + [sym_block_comment] = ACTIONS(3), + }, + [147] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1285), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2555), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(256), - [sym_async_block] = STATE(256), - [sym_block] = STATE(256), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -31408,19 +32987,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(584), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(586), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(592), - [anon_sym_match] = ACTIONS(594), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(596), - [anon_sym_while] = ACTIONS(598), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -31444,53 +33023,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [133] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1240), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [148] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1171), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31531,7 +33110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31550,159 +33129,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [134] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), + [149] = { + [ts_builtin_sym_end] = ACTIONS(644), + [sym_identifier] = ACTIONS(646), + [anon_sym_SEMI] = ACTIONS(644), + [anon_sym_macro_rules_BANG] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_QMARK] = ACTIONS(644), + [anon_sym_u8] = ACTIONS(646), + [anon_sym_i8] = ACTIONS(646), + [anon_sym_u16] = ACTIONS(646), + [anon_sym_i16] = ACTIONS(646), + [anon_sym_u32] = ACTIONS(646), + [anon_sym_i32] = ACTIONS(646), + [anon_sym_u64] = ACTIONS(646), + [anon_sym_i64] = ACTIONS(646), + [anon_sym_u128] = ACTIONS(646), + [anon_sym_i128] = ACTIONS(646), + [anon_sym_isize] = ACTIONS(646), + [anon_sym_usize] = ACTIONS(646), + [anon_sym_f32] = ACTIONS(646), + [anon_sym_f64] = ACTIONS(646), + [anon_sym_bool] = ACTIONS(646), + [anon_sym_str] = ACTIONS(646), + [anon_sym_char] = ACTIONS(646), + [anon_sym_SQUOTE] = ACTIONS(646), + [anon_sym_as] = ACTIONS(646), + [anon_sym_async] = ACTIONS(646), + [anon_sym_break] = ACTIONS(646), + [anon_sym_const] = ACTIONS(646), + [anon_sym_continue] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_enum] = ACTIONS(646), + [anon_sym_fn] = ACTIONS(646), + [anon_sym_for] = ACTIONS(646), + [anon_sym_if] = ACTIONS(646), + [anon_sym_impl] = ACTIONS(646), + [anon_sym_let] = ACTIONS(646), + [anon_sym_loop] = ACTIONS(646), + [anon_sym_match] = ACTIONS(646), + [anon_sym_mod] = ACTIONS(646), + [anon_sym_pub] = ACTIONS(646), + [anon_sym_return] = ACTIONS(646), + [anon_sym_static] = ACTIONS(646), + [anon_sym_struct] = ACTIONS(646), + [anon_sym_trait] = ACTIONS(646), + [anon_sym_type] = ACTIONS(646), + [anon_sym_union] = ACTIONS(646), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_use] = ACTIONS(646), + [anon_sym_while] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(644), + [anon_sym_AMP] = ACTIONS(646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(644), + [anon_sym_DOT_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_LT_LT] = ACTIONS(646), + [anon_sym_GT_GT] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PERCENT] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_SLASH_EQ] = ACTIONS(644), + [anon_sym_PERCENT_EQ] = ACTIONS(644), + [anon_sym_AMP_EQ] = ACTIONS(644), + [anon_sym_PIPE_EQ] = ACTIONS(644), + [anon_sym_CARET_EQ] = ACTIONS(644), + [anon_sym_LT_LT_EQ] = ACTIONS(644), + [anon_sym_GT_GT_EQ] = ACTIONS(644), + [anon_sym_yield] = ACTIONS(646), + [anon_sym_move] = ACTIONS(646), + [anon_sym_DOT] = ACTIONS(646), + [sym_integer_literal] = ACTIONS(644), + [aux_sym_string_literal_token1] = ACTIONS(644), + [sym_char_literal] = ACTIONS(644), + [anon_sym_true] = ACTIONS(646), + [anon_sym_false] = ACTIONS(646), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(646), + [sym_super] = ACTIONS(646), + [sym_crate] = ACTIONS(646), + [sym_metavariable] = ACTIONS(644), + [sym_raw_string_literal] = ACTIONS(644), + [sym_float_literal] = ACTIONS(644), + [sym_block_comment] = ACTIONS(3), + }, + [150] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1170), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [151] = { + [ts_builtin_sym_end] = ACTIONS(648), + [sym_identifier] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_macro_rules_BANG] = ACTIONS(648), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(648), + [anon_sym_u8] = ACTIONS(650), + [anon_sym_i8] = ACTIONS(650), + [anon_sym_u16] = ACTIONS(650), + [anon_sym_i16] = ACTIONS(650), + [anon_sym_u32] = ACTIONS(650), + [anon_sym_i32] = ACTIONS(650), + [anon_sym_u64] = ACTIONS(650), + [anon_sym_i64] = ACTIONS(650), + [anon_sym_u128] = ACTIONS(650), + [anon_sym_i128] = ACTIONS(650), + [anon_sym_isize] = ACTIONS(650), + [anon_sym_usize] = ACTIONS(650), + [anon_sym_f32] = ACTIONS(650), + [anon_sym_f64] = ACTIONS(650), + [anon_sym_bool] = ACTIONS(650), + [anon_sym_str] = ACTIONS(650), + [anon_sym_char] = ACTIONS(650), + [anon_sym_SQUOTE] = ACTIONS(650), + [anon_sym_as] = ACTIONS(650), + [anon_sym_async] = ACTIONS(650), + [anon_sym_break] = ACTIONS(650), + [anon_sym_const] = ACTIONS(650), + [anon_sym_continue] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_enum] = ACTIONS(650), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_for] = ACTIONS(650), + [anon_sym_if] = ACTIONS(650), + [anon_sym_impl] = ACTIONS(650), + [anon_sym_let] = ACTIONS(650), + [anon_sym_loop] = ACTIONS(650), + [anon_sym_match] = ACTIONS(650), + [anon_sym_mod] = ACTIONS(650), + [anon_sym_pub] = ACTIONS(650), + [anon_sym_return] = ACTIONS(650), + [anon_sym_static] = ACTIONS(650), + [anon_sym_struct] = ACTIONS(650), + [anon_sym_trait] = ACTIONS(650), + [anon_sym_type] = ACTIONS(650), + [anon_sym_union] = ACTIONS(650), + [anon_sym_unsafe] = ACTIONS(650), + [anon_sym_use] = ACTIONS(650), + [anon_sym_while] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_extern] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(648), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(648), + [anon_sym_DASH_EQ] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(648), + [anon_sym_SLASH_EQ] = ACTIONS(648), + [anon_sym_PERCENT_EQ] = ACTIONS(648), + [anon_sym_AMP_EQ] = ACTIONS(648), + [anon_sym_PIPE_EQ] = ACTIONS(648), + [anon_sym_CARET_EQ] = ACTIONS(648), + [anon_sym_LT_LT_EQ] = ACTIONS(648), + [anon_sym_GT_GT_EQ] = ACTIONS(648), + [anon_sym_yield] = ACTIONS(650), + [anon_sym_move] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [sym_integer_literal] = ACTIONS(648), + [aux_sym_string_literal_token1] = ACTIONS(648), + [sym_char_literal] = ACTIONS(648), + [anon_sym_true] = ACTIONS(650), + [anon_sym_false] = ACTIONS(650), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(650), + [sym_super] = ACTIONS(650), + [sym_crate] = ACTIONS(650), + [sym_metavariable] = ACTIONS(648), + [sym_raw_string_literal] = ACTIONS(648), + [sym_float_literal] = ACTIONS(648), + [sym_block_comment] = ACTIONS(3), + }, + [152] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31762,159 +33553,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1224), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), + [153] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1180), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [154] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31955,7 +33746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31974,53 +33765,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1179), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [155] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1301), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32061,7 +33852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32080,53 +33871,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [156] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32186,53 +33977,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1301), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [157] = { + [ts_builtin_sym_end] = ACTIONS(652), + [sym_identifier] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_macro_rules_BANG] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_QMARK] = ACTIONS(652), + [anon_sym_u8] = ACTIONS(654), + [anon_sym_i8] = ACTIONS(654), + [anon_sym_u16] = ACTIONS(654), + [anon_sym_i16] = ACTIONS(654), + [anon_sym_u32] = ACTIONS(654), + [anon_sym_i32] = ACTIONS(654), + [anon_sym_u64] = ACTIONS(654), + [anon_sym_i64] = ACTIONS(654), + [anon_sym_u128] = ACTIONS(654), + [anon_sym_i128] = ACTIONS(654), + [anon_sym_isize] = ACTIONS(654), + [anon_sym_usize] = ACTIONS(654), + [anon_sym_f32] = ACTIONS(654), + [anon_sym_f64] = ACTIONS(654), + [anon_sym_bool] = ACTIONS(654), + [anon_sym_str] = ACTIONS(654), + [anon_sym_char] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(654), + [anon_sym_as] = ACTIONS(654), + [anon_sym_async] = ACTIONS(654), + [anon_sym_break] = ACTIONS(654), + [anon_sym_const] = ACTIONS(654), + [anon_sym_continue] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_enum] = ACTIONS(654), + [anon_sym_fn] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_impl] = ACTIONS(654), + [anon_sym_let] = ACTIONS(654), + [anon_sym_loop] = ACTIONS(654), + [anon_sym_match] = ACTIONS(654), + [anon_sym_mod] = ACTIONS(654), + [anon_sym_pub] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_static] = ACTIONS(654), + [anon_sym_struct] = ACTIONS(654), + [anon_sym_trait] = ACTIONS(654), + [anon_sym_type] = ACTIONS(654), + [anon_sym_union] = ACTIONS(654), + [anon_sym_unsafe] = ACTIONS(654), + [anon_sym_use] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_extern] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(652), + [anon_sym_DOT_DOT] = ACTIONS(654), + [anon_sym_DOT_DOT_EQ] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_AMP_AMP] = ACTIONS(652), + [anon_sym_PIPE_PIPE] = ACTIONS(652), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_LT_EQ] = ACTIONS(652), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(652), + [anon_sym_DASH_EQ] = ACTIONS(652), + [anon_sym_STAR_EQ] = ACTIONS(652), + [anon_sym_SLASH_EQ] = ACTIONS(652), + [anon_sym_PERCENT_EQ] = ACTIONS(652), + [anon_sym_AMP_EQ] = ACTIONS(652), + [anon_sym_PIPE_EQ] = ACTIONS(652), + [anon_sym_CARET_EQ] = ACTIONS(652), + [anon_sym_LT_LT_EQ] = ACTIONS(652), + [anon_sym_GT_GT_EQ] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(654), + [anon_sym_move] = ACTIONS(654), + [anon_sym_DOT] = ACTIONS(654), + [sym_integer_literal] = ACTIONS(652), + [aux_sym_string_literal_token1] = ACTIONS(652), + [sym_char_literal] = ACTIONS(652), + [anon_sym_true] = ACTIONS(654), + [anon_sym_false] = ACTIONS(654), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(654), + [sym_super] = ACTIONS(654), + [sym_crate] = ACTIONS(654), + [sym_metavariable] = ACTIONS(652), + [sym_raw_string_literal] = ACTIONS(652), + [sym_float_literal] = ACTIONS(652), + [sym_block_comment] = ACTIONS(3), + }, + [158] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1169), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32273,7 +34170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32292,371 +34189,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [141] = { - [ts_builtin_sym_end] = ACTIONS(640), - [sym_identifier] = ACTIONS(642), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_macro_rules_BANG] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(640), - [anon_sym_PLUS] = ACTIONS(642), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(642), - [anon_sym_i8] = ACTIONS(642), - [anon_sym_u16] = ACTIONS(642), - [anon_sym_i16] = ACTIONS(642), - [anon_sym_u32] = ACTIONS(642), - [anon_sym_i32] = ACTIONS(642), - [anon_sym_u64] = ACTIONS(642), - [anon_sym_i64] = ACTIONS(642), - [anon_sym_u128] = ACTIONS(642), - [anon_sym_i128] = ACTIONS(642), - [anon_sym_isize] = ACTIONS(642), - [anon_sym_usize] = ACTIONS(642), - [anon_sym_f32] = ACTIONS(642), - [anon_sym_f64] = ACTIONS(642), - [anon_sym_bool] = ACTIONS(642), - [anon_sym_str] = ACTIONS(642), - [anon_sym_char] = ACTIONS(642), - [anon_sym_SQUOTE] = ACTIONS(642), - [anon_sym_as] = ACTIONS(642), - [anon_sym_async] = ACTIONS(642), - [anon_sym_break] = ACTIONS(642), - [anon_sym_const] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), - [anon_sym_enum] = ACTIONS(642), - [anon_sym_fn] = ACTIONS(642), - [anon_sym_for] = ACTIONS(642), - [anon_sym_if] = ACTIONS(642), - [anon_sym_impl] = ACTIONS(642), - [anon_sym_let] = ACTIONS(642), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(642), - [anon_sym_mod] = ACTIONS(642), - [anon_sym_pub] = ACTIONS(642), - [anon_sym_return] = ACTIONS(642), - [anon_sym_static] = ACTIONS(642), - [anon_sym_struct] = ACTIONS(642), - [anon_sym_trait] = ACTIONS(642), - [anon_sym_type] = ACTIONS(642), - [anon_sym_union] = ACTIONS(642), - [anon_sym_unsafe] = ACTIONS(642), - [anon_sym_use] = ACTIONS(642), - [anon_sym_while] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(642), - [anon_sym_EQ] = ACTIONS(642), - [anon_sym_extern] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(642), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(642), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_CARET] = ACTIONS(642), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(642), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(642), - [anon_sym_move] = ACTIONS(642), - [anon_sym_DOT] = ACTIONS(642), - [sym_integer_literal] = ACTIONS(640), - [aux_sym_string_literal_token1] = ACTIONS(640), - [sym_char_literal] = ACTIONS(640), - [anon_sym_true] = ACTIONS(642), - [anon_sym_false] = ACTIONS(642), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(642), - [sym_super] = ACTIONS(642), - [sym_crate] = ACTIONS(642), - [sym_metavariable] = ACTIONS(640), - [sym_raw_string_literal] = ACTIONS(640), - [sym_float_literal] = ACTIONS(640), - [sym_block_comment] = ACTIONS(3), - }, - [142] = { - [ts_builtin_sym_end] = ACTIONS(644), - [sym_identifier] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_macro_rules_BANG] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_u8] = ACTIONS(646), - [anon_sym_i8] = ACTIONS(646), - [anon_sym_u16] = ACTIONS(646), - [anon_sym_i16] = ACTIONS(646), - [anon_sym_u32] = ACTIONS(646), - [anon_sym_i32] = ACTIONS(646), - [anon_sym_u64] = ACTIONS(646), - [anon_sym_i64] = ACTIONS(646), - [anon_sym_u128] = ACTIONS(646), - [anon_sym_i128] = ACTIONS(646), - [anon_sym_isize] = ACTIONS(646), - [anon_sym_usize] = ACTIONS(646), - [anon_sym_f32] = ACTIONS(646), - [anon_sym_f64] = ACTIONS(646), - [anon_sym_bool] = ACTIONS(646), - [anon_sym_str] = ACTIONS(646), - [anon_sym_char] = ACTIONS(646), - [anon_sym_SQUOTE] = ACTIONS(646), - [anon_sym_as] = ACTIONS(646), - [anon_sym_async] = ACTIONS(646), - [anon_sym_break] = ACTIONS(646), - [anon_sym_const] = ACTIONS(646), - [anon_sym_continue] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_enum] = ACTIONS(646), - [anon_sym_fn] = ACTIONS(646), - [anon_sym_for] = ACTIONS(646), - [anon_sym_if] = ACTIONS(646), - [anon_sym_impl] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_loop] = ACTIONS(646), - [anon_sym_match] = ACTIONS(646), - [anon_sym_mod] = ACTIONS(646), - [anon_sym_pub] = ACTIONS(646), - [anon_sym_return] = ACTIONS(646), - [anon_sym_static] = ACTIONS(646), - [anon_sym_struct] = ACTIONS(646), - [anon_sym_trait] = ACTIONS(646), - [anon_sym_type] = ACTIONS(646), - [anon_sym_union] = ACTIONS(646), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_use] = ACTIONS(646), - [anon_sym_while] = ACTIONS(646), - [anon_sym_POUND] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(646), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_extern] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(646), - [anon_sym_GT] = ACTIONS(646), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_DOT_DOT] = ACTIONS(646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(646), - [anon_sym_CARET] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_LT_LT] = ACTIONS(646), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_AMP_EQ] = ACTIONS(644), - [anon_sym_PIPE_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_LT_LT_EQ] = ACTIONS(644), - [anon_sym_GT_GT_EQ] = ACTIONS(644), - [anon_sym_yield] = ACTIONS(646), - [anon_sym_move] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [sym_integer_literal] = ACTIONS(644), - [aux_sym_string_literal_token1] = ACTIONS(644), - [sym_char_literal] = ACTIONS(644), - [anon_sym_true] = ACTIONS(646), - [anon_sym_false] = ACTIONS(646), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(646), - [sym_super] = ACTIONS(646), - [sym_crate] = ACTIONS(646), - [sym_metavariable] = ACTIONS(644), - [sym_raw_string_literal] = ACTIONS(644), - [sym_float_literal] = ACTIONS(644), - [sym_block_comment] = ACTIONS(3), - }, - [143] = { - [ts_builtin_sym_end] = ACTIONS(648), - [sym_identifier] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(648), - [anon_sym_macro_rules_BANG] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(648), - [anon_sym_u8] = ACTIONS(650), - [anon_sym_i8] = ACTIONS(650), - [anon_sym_u16] = ACTIONS(650), - [anon_sym_i16] = ACTIONS(650), - [anon_sym_u32] = ACTIONS(650), - [anon_sym_i32] = ACTIONS(650), - [anon_sym_u64] = ACTIONS(650), - [anon_sym_i64] = ACTIONS(650), - [anon_sym_u128] = ACTIONS(650), - [anon_sym_i128] = ACTIONS(650), - [anon_sym_isize] = ACTIONS(650), - [anon_sym_usize] = ACTIONS(650), - [anon_sym_f32] = ACTIONS(650), - [anon_sym_f64] = ACTIONS(650), - [anon_sym_bool] = ACTIONS(650), - [anon_sym_str] = ACTIONS(650), - [anon_sym_char] = ACTIONS(650), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_as] = ACTIONS(650), - [anon_sym_async] = ACTIONS(650), - [anon_sym_break] = ACTIONS(650), - [anon_sym_const] = ACTIONS(650), - [anon_sym_continue] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), - [anon_sym_enum] = ACTIONS(650), - [anon_sym_fn] = ACTIONS(650), - [anon_sym_for] = ACTIONS(650), - [anon_sym_if] = ACTIONS(650), - [anon_sym_impl] = ACTIONS(650), - [anon_sym_let] = ACTIONS(650), - [anon_sym_loop] = ACTIONS(650), - [anon_sym_match] = ACTIONS(650), - [anon_sym_mod] = ACTIONS(650), - [anon_sym_pub] = ACTIONS(650), - [anon_sym_return] = ACTIONS(650), - [anon_sym_static] = ACTIONS(650), - [anon_sym_struct] = ACTIONS(650), - [anon_sym_trait] = ACTIONS(650), - [anon_sym_type] = ACTIONS(650), - [anon_sym_union] = ACTIONS(650), - [anon_sym_unsafe] = ACTIONS(650), - [anon_sym_use] = ACTIONS(650), - [anon_sym_while] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(648), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_extern] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_COLON_COLON] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(648), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_yield] = ACTIONS(650), - [anon_sym_move] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [sym_integer_literal] = ACTIONS(648), - [aux_sym_string_literal_token1] = ACTIONS(648), - [sym_char_literal] = ACTIONS(648), - [anon_sym_true] = ACTIONS(650), - [anon_sym_false] = ACTIONS(650), + [159] = { + [ts_builtin_sym_end] = ACTIONS(656), + [sym_identifier] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(656), + [anon_sym_macro_rules_BANG] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_u8] = ACTIONS(658), + [anon_sym_i8] = ACTIONS(658), + [anon_sym_u16] = ACTIONS(658), + [anon_sym_i16] = ACTIONS(658), + [anon_sym_u32] = ACTIONS(658), + [anon_sym_i32] = ACTIONS(658), + [anon_sym_u64] = ACTIONS(658), + [anon_sym_i64] = ACTIONS(658), + [anon_sym_u128] = ACTIONS(658), + [anon_sym_i128] = ACTIONS(658), + [anon_sym_isize] = ACTIONS(658), + [anon_sym_usize] = ACTIONS(658), + [anon_sym_f32] = ACTIONS(658), + [anon_sym_f64] = ACTIONS(658), + [anon_sym_bool] = ACTIONS(658), + [anon_sym_str] = ACTIONS(658), + [anon_sym_char] = ACTIONS(658), + [anon_sym_SQUOTE] = ACTIONS(658), + [anon_sym_as] = ACTIONS(658), + [anon_sym_async] = ACTIONS(658), + [anon_sym_break] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_continue] = ACTIONS(658), + [anon_sym_default] = ACTIONS(658), + [anon_sym_enum] = ACTIONS(658), + [anon_sym_fn] = ACTIONS(658), + [anon_sym_for] = ACTIONS(658), + [anon_sym_if] = ACTIONS(658), + [anon_sym_impl] = ACTIONS(658), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(658), + [anon_sym_match] = ACTIONS(658), + [anon_sym_mod] = ACTIONS(658), + [anon_sym_pub] = ACTIONS(658), + [anon_sym_return] = ACTIONS(658), + [anon_sym_static] = ACTIONS(658), + [anon_sym_struct] = ACTIONS(658), + [anon_sym_trait] = ACTIONS(658), + [anon_sym_type] = ACTIONS(658), + [anon_sym_union] = ACTIONS(658), + [anon_sym_unsafe] = ACTIONS(658), + [anon_sym_use] = ACTIONS(658), + [anon_sym_while] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(656), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_extern] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_COLON_COLON] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_PERCENT] = ACTIONS(658), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_yield] = ACTIONS(658), + [anon_sym_move] = ACTIONS(658), + [anon_sym_DOT] = ACTIONS(658), + [sym_integer_literal] = ACTIONS(656), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(656), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(650), - [sym_super] = ACTIONS(650), - [sym_crate] = ACTIONS(650), - [sym_metavariable] = ACTIONS(648), - [sym_raw_string_literal] = ACTIONS(648), - [sym_float_literal] = ACTIONS(648), + [sym_self] = ACTIONS(658), + [sym_super] = ACTIONS(658), + [sym_crate] = ACTIONS(658), + [sym_metavariable] = ACTIONS(656), + [sym_raw_string_literal] = ACTIONS(656), + [sym_float_literal] = ACTIONS(656), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1318), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [160] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1312), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32716,53 +34401,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1172), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [161] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1316), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32803,7 +34488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32822,53 +34507,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [162] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [163] = { + [ts_builtin_sym_end] = ACTIONS(660), + [sym_identifier] = ACTIONS(662), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_macro_rules_BANG] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_LBRACE] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_QMARK] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(662), + [anon_sym_i8] = ACTIONS(662), + [anon_sym_u16] = ACTIONS(662), + [anon_sym_i16] = ACTIONS(662), + [anon_sym_u32] = ACTIONS(662), + [anon_sym_i32] = ACTIONS(662), + [anon_sym_u64] = ACTIONS(662), + [anon_sym_i64] = ACTIONS(662), + [anon_sym_u128] = ACTIONS(662), + [anon_sym_i128] = ACTIONS(662), + [anon_sym_isize] = ACTIONS(662), + [anon_sym_usize] = ACTIONS(662), + [anon_sym_f32] = ACTIONS(662), + [anon_sym_f64] = ACTIONS(662), + [anon_sym_bool] = ACTIONS(662), + [anon_sym_str] = ACTIONS(662), + [anon_sym_char] = ACTIONS(662), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_as] = ACTIONS(662), + [anon_sym_async] = ACTIONS(662), + [anon_sym_break] = ACTIONS(662), + [anon_sym_const] = ACTIONS(662), + [anon_sym_continue] = ACTIONS(662), + [anon_sym_default] = ACTIONS(662), + [anon_sym_enum] = ACTIONS(662), + [anon_sym_fn] = ACTIONS(662), + [anon_sym_for] = ACTIONS(662), + [anon_sym_if] = ACTIONS(662), + [anon_sym_impl] = ACTIONS(662), + [anon_sym_let] = ACTIONS(662), + [anon_sym_loop] = ACTIONS(662), + [anon_sym_match] = ACTIONS(662), + [anon_sym_mod] = ACTIONS(662), + [anon_sym_pub] = ACTIONS(662), + [anon_sym_return] = ACTIONS(662), + [anon_sym_static] = ACTIONS(662), + [anon_sym_struct] = ACTIONS(662), + [anon_sym_trait] = ACTIONS(662), + [anon_sym_type] = ACTIONS(662), + [anon_sym_union] = ACTIONS(662), + [anon_sym_unsafe] = ACTIONS(662), + [anon_sym_use] = ACTIONS(662), + [anon_sym_while] = ACTIONS(662), + [anon_sym_POUND] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_EQ] = ACTIONS(662), + [anon_sym_extern] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(662), + [anon_sym_GT] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(660), + [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT_EQ] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(662), + [anon_sym_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ] = ACTIONS(660), + [anon_sym_LT_EQ] = ACTIONS(660), + [anon_sym_GT_EQ] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(662), + [anon_sym_SLASH] = ACTIONS(662), + [anon_sym_PERCENT] = ACTIONS(662), + [anon_sym_PLUS_EQ] = ACTIONS(660), + [anon_sym_DASH_EQ] = ACTIONS(660), + [anon_sym_STAR_EQ] = ACTIONS(660), + [anon_sym_SLASH_EQ] = ACTIONS(660), + [anon_sym_PERCENT_EQ] = ACTIONS(660), + [anon_sym_AMP_EQ] = ACTIONS(660), + [anon_sym_PIPE_EQ] = ACTIONS(660), + [anon_sym_CARET_EQ] = ACTIONS(660), + [anon_sym_LT_LT_EQ] = ACTIONS(660), + [anon_sym_GT_GT_EQ] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(662), + [anon_sym_move] = ACTIONS(662), + [anon_sym_DOT] = ACTIONS(662), + [sym_integer_literal] = ACTIONS(660), + [aux_sym_string_literal_token1] = ACTIONS(660), + [sym_char_literal] = ACTIONS(660), + [anon_sym_true] = ACTIONS(662), + [anon_sym_false] = ACTIONS(662), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(662), + [sym_super] = ACTIONS(662), + [sym_crate] = ACTIONS(662), + [sym_metavariable] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(660), + [sym_float_literal] = ACTIONS(660), + [sym_block_comment] = ACTIONS(3), + }, + [164] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32928,53 +34825,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1298), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [165] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1167), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33015,7 +34912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33034,53 +34931,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [148] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1332), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [166] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1313), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33140,265 +35037,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [ts_builtin_sym_end] = ACTIONS(652), - [sym_identifier] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_macro_rules_BANG] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(654), - [anon_sym_i8] = ACTIONS(654), - [anon_sym_u16] = ACTIONS(654), - [anon_sym_i16] = ACTIONS(654), - [anon_sym_u32] = ACTIONS(654), - [anon_sym_i32] = ACTIONS(654), - [anon_sym_u64] = ACTIONS(654), - [anon_sym_i64] = ACTIONS(654), - [anon_sym_u128] = ACTIONS(654), - [anon_sym_i128] = ACTIONS(654), - [anon_sym_isize] = ACTIONS(654), - [anon_sym_usize] = ACTIONS(654), - [anon_sym_f32] = ACTIONS(654), - [anon_sym_f64] = ACTIONS(654), - [anon_sym_bool] = ACTIONS(654), - [anon_sym_str] = ACTIONS(654), - [anon_sym_char] = ACTIONS(654), - [anon_sym_SQUOTE] = ACTIONS(654), - [anon_sym_as] = ACTIONS(654), - [anon_sym_async] = ACTIONS(654), - [anon_sym_break] = ACTIONS(654), - [anon_sym_const] = ACTIONS(654), - [anon_sym_continue] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_enum] = ACTIONS(654), - [anon_sym_fn] = ACTIONS(654), - [anon_sym_for] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_impl] = ACTIONS(654), - [anon_sym_let] = ACTIONS(654), - [anon_sym_loop] = ACTIONS(654), - [anon_sym_match] = ACTIONS(654), - [anon_sym_mod] = ACTIONS(654), - [anon_sym_pub] = ACTIONS(654), - [anon_sym_return] = ACTIONS(654), - [anon_sym_static] = ACTIONS(654), - [anon_sym_struct] = ACTIONS(654), - [anon_sym_trait] = ACTIONS(654), - [anon_sym_type] = ACTIONS(654), - [anon_sym_union] = ACTIONS(654), - [anon_sym_unsafe] = ACTIONS(654), - [anon_sym_use] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_POUND] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_extern] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_COLON_COLON] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(652), - [anon_sym_DOT_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT_EQ] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_SLASH_EQ] = ACTIONS(652), - [anon_sym_PERCENT_EQ] = ACTIONS(652), - [anon_sym_AMP_EQ] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(652), - [anon_sym_LT_LT_EQ] = ACTIONS(652), - [anon_sym_GT_GT_EQ] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_move] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(654), - [sym_integer_literal] = ACTIONS(652), - [aux_sym_string_literal_token1] = ACTIONS(652), - [sym_char_literal] = ACTIONS(652), - [anon_sym_true] = ACTIONS(654), - [anon_sym_false] = ACTIONS(654), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(654), - [sym_super] = ACTIONS(654), - [sym_crate] = ACTIONS(654), - [sym_metavariable] = ACTIONS(652), - [sym_raw_string_literal] = ACTIONS(652), - [sym_float_literal] = ACTIONS(652), - [sym_block_comment] = ACTIONS(3), - }, - [150] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1164), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [151] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1227), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [167] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1289), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33439,7 +35124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -33458,265 +35143,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1170), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [153] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1292), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [154] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1258), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [168] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33776,53 +35249,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1158), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [169] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1308), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33863,7 +35336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33882,53 +35355,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [170] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33988,159 +35461,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1176), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [171] = { + [ts_builtin_sym_end] = ACTIONS(664), + [sym_identifier] = ACTIONS(666), + [anon_sym_SEMI] = ACTIONS(664), + [anon_sym_macro_rules_BANG] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_QMARK] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(666), + [anon_sym_as] = ACTIONS(666), + [anon_sym_async] = ACTIONS(666), + [anon_sym_break] = ACTIONS(666), + [anon_sym_const] = ACTIONS(666), + [anon_sym_continue] = ACTIONS(666), + [anon_sym_default] = ACTIONS(666), + [anon_sym_enum] = ACTIONS(666), + [anon_sym_fn] = ACTIONS(666), + [anon_sym_for] = ACTIONS(666), + [anon_sym_if] = ACTIONS(666), + [anon_sym_impl] = ACTIONS(666), + [anon_sym_let] = ACTIONS(666), + [anon_sym_loop] = ACTIONS(666), + [anon_sym_match] = ACTIONS(666), + [anon_sym_mod] = ACTIONS(666), + [anon_sym_pub] = ACTIONS(666), + [anon_sym_return] = ACTIONS(666), + [anon_sym_static] = ACTIONS(666), + [anon_sym_struct] = ACTIONS(666), + [anon_sym_trait] = ACTIONS(666), + [anon_sym_type] = ACTIONS(666), + [anon_sym_union] = ACTIONS(666), + [anon_sym_unsafe] = ACTIONS(666), + [anon_sym_use] = ACTIONS(666), + [anon_sym_while] = ACTIONS(666), + [anon_sym_POUND] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(666), + [anon_sym_EQ] = ACTIONS(666), + [anon_sym_extern] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(666), + [anon_sym_COLON_COLON] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [anon_sym_DOT_DOT] = ACTIONS(666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(666), + [anon_sym_AMP_AMP] = ACTIONS(664), + [anon_sym_PIPE_PIPE] = ACTIONS(664), + [anon_sym_PIPE] = ACTIONS(666), + [anon_sym_CARET] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(664), + [anon_sym_BANG_EQ] = ACTIONS(664), + [anon_sym_LT_EQ] = ACTIONS(664), + [anon_sym_GT_EQ] = ACTIONS(664), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(666), + [anon_sym_PERCENT] = ACTIONS(666), + [anon_sym_PLUS_EQ] = ACTIONS(664), + [anon_sym_DASH_EQ] = ACTIONS(664), + [anon_sym_STAR_EQ] = ACTIONS(664), + [anon_sym_SLASH_EQ] = ACTIONS(664), + [anon_sym_PERCENT_EQ] = ACTIONS(664), + [anon_sym_AMP_EQ] = ACTIONS(664), + [anon_sym_PIPE_EQ] = ACTIONS(664), + [anon_sym_CARET_EQ] = ACTIONS(664), + [anon_sym_LT_LT_EQ] = ACTIONS(664), + [anon_sym_GT_GT_EQ] = ACTIONS(664), + [anon_sym_yield] = ACTIONS(666), + [anon_sym_move] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(666), + [sym_integer_literal] = ACTIONS(664), + [aux_sym_string_literal_token1] = ACTIONS(664), + [sym_char_literal] = ACTIONS(664), + [anon_sym_true] = ACTIONS(666), + [anon_sym_false] = ACTIONS(666), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(666), + [sym_super] = ACTIONS(666), + [sym_crate] = ACTIONS(666), + [sym_metavariable] = ACTIONS(664), + [sym_raw_string_literal] = ACTIONS(664), + [sym_float_literal] = ACTIONS(664), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1265), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [172] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1111), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34200,53 +35673,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1284), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [173] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34306,325 +35779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [ts_builtin_sym_end] = ACTIONS(656), - [sym_identifier] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(656), - [anon_sym_macro_rules_BANG] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(658), - [anon_sym_i8] = ACTIONS(658), - [anon_sym_u16] = ACTIONS(658), - [anon_sym_i16] = ACTIONS(658), - [anon_sym_u32] = ACTIONS(658), - [anon_sym_i32] = ACTIONS(658), - [anon_sym_u64] = ACTIONS(658), - [anon_sym_i64] = ACTIONS(658), - [anon_sym_u128] = ACTIONS(658), - [anon_sym_i128] = ACTIONS(658), - [anon_sym_isize] = ACTIONS(658), - [anon_sym_usize] = ACTIONS(658), - [anon_sym_f32] = ACTIONS(658), - [anon_sym_f64] = ACTIONS(658), - [anon_sym_bool] = ACTIONS(658), - [anon_sym_str] = ACTIONS(658), - [anon_sym_char] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_as] = ACTIONS(658), - [anon_sym_async] = ACTIONS(658), - [anon_sym_break] = ACTIONS(658), - [anon_sym_const] = ACTIONS(658), - [anon_sym_continue] = ACTIONS(658), - [anon_sym_default] = ACTIONS(658), - [anon_sym_enum] = ACTIONS(658), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(658), - [anon_sym_if] = ACTIONS(658), - [anon_sym_impl] = ACTIONS(658), - [anon_sym_let] = ACTIONS(658), - [anon_sym_loop] = ACTIONS(658), - [anon_sym_match] = ACTIONS(658), - [anon_sym_mod] = ACTIONS(658), - [anon_sym_pub] = ACTIONS(658), - [anon_sym_return] = ACTIONS(658), - [anon_sym_static] = ACTIONS(658), - [anon_sym_struct] = ACTIONS(658), - [anon_sym_trait] = ACTIONS(658), - [anon_sym_type] = ACTIONS(658), - [anon_sym_union] = ACTIONS(658), - [anon_sym_unsafe] = ACTIONS(658), - [anon_sym_use] = ACTIONS(658), - [anon_sym_while] = ACTIONS(658), - [anon_sym_POUND] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_EQ] = ACTIONS(658), - [anon_sym_extern] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_COLON_COLON] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(656), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_AMP_AMP] = ACTIONS(656), - [anon_sym_PIPE_PIPE] = ACTIONS(656), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(656), - [anon_sym_BANG_EQ] = ACTIONS(656), - [anon_sym_LT_EQ] = ACTIONS(656), - [anon_sym_GT_EQ] = ACTIONS(656), - [anon_sym_LT_LT] = ACTIONS(658), - [anon_sym_GT_GT] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_PERCENT] = ACTIONS(658), - [anon_sym_PLUS_EQ] = ACTIONS(656), - [anon_sym_DASH_EQ] = ACTIONS(656), - [anon_sym_STAR_EQ] = ACTIONS(656), - [anon_sym_SLASH_EQ] = ACTIONS(656), - [anon_sym_PERCENT_EQ] = ACTIONS(656), - [anon_sym_AMP_EQ] = ACTIONS(656), - [anon_sym_PIPE_EQ] = ACTIONS(656), - [anon_sym_CARET_EQ] = ACTIONS(656), - [anon_sym_LT_LT_EQ] = ACTIONS(656), - [anon_sym_GT_GT_EQ] = ACTIONS(656), - [anon_sym_yield] = ACTIONS(658), - [anon_sym_move] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(658), - [sym_integer_literal] = ACTIONS(656), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(656), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(658), - [sym_super] = ACTIONS(658), - [sym_crate] = ACTIONS(658), - [sym_metavariable] = ACTIONS(656), - [sym_raw_string_literal] = ACTIONS(656), - [sym_float_literal] = ACTIONS(656), - [sym_block_comment] = ACTIONS(3), - }, - [161] = { - [ts_builtin_sym_end] = ACTIONS(660), - [sym_identifier] = ACTIONS(662), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_macro_rules_BANG] = ACTIONS(660), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_RBRACE] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(660), - [anon_sym_u8] = ACTIONS(662), - [anon_sym_i8] = ACTIONS(662), - [anon_sym_u16] = ACTIONS(662), - [anon_sym_i16] = ACTIONS(662), - [anon_sym_u32] = ACTIONS(662), - [anon_sym_i32] = ACTIONS(662), - [anon_sym_u64] = ACTIONS(662), - [anon_sym_i64] = ACTIONS(662), - [anon_sym_u128] = ACTIONS(662), - [anon_sym_i128] = ACTIONS(662), - [anon_sym_isize] = ACTIONS(662), - [anon_sym_usize] = ACTIONS(662), - [anon_sym_f32] = ACTIONS(662), - [anon_sym_f64] = ACTIONS(662), - [anon_sym_bool] = ACTIONS(662), - [anon_sym_str] = ACTIONS(662), - [anon_sym_char] = ACTIONS(662), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_as] = ACTIONS(662), - [anon_sym_async] = ACTIONS(662), - [anon_sym_break] = ACTIONS(662), - [anon_sym_const] = ACTIONS(662), - [anon_sym_continue] = ACTIONS(662), - [anon_sym_default] = ACTIONS(662), - [anon_sym_enum] = ACTIONS(662), - [anon_sym_fn] = ACTIONS(662), - [anon_sym_for] = ACTIONS(662), - [anon_sym_if] = ACTIONS(662), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_let] = ACTIONS(662), - [anon_sym_loop] = ACTIONS(662), - [anon_sym_match] = ACTIONS(662), - [anon_sym_mod] = ACTIONS(662), - [anon_sym_pub] = ACTIONS(662), - [anon_sym_return] = ACTIONS(662), - [anon_sym_static] = ACTIONS(662), - [anon_sym_struct] = ACTIONS(662), - [anon_sym_trait] = ACTIONS(662), - [anon_sym_type] = ACTIONS(662), - [anon_sym_union] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(662), - [anon_sym_use] = ACTIONS(662), - [anon_sym_while] = ACTIONS(662), - [anon_sym_POUND] = ACTIONS(660), - [anon_sym_BANG] = ACTIONS(662), - [anon_sym_EQ] = ACTIONS(662), - [anon_sym_extern] = ACTIONS(662), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_COLON_COLON] = ACTIONS(660), - [anon_sym_AMP] = ACTIONS(662), - [anon_sym_DOT_DOT_DOT] = ACTIONS(660), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_DOT_DOT_EQ] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(660), - [anon_sym_PIPE_PIPE] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(662), - [anon_sym_CARET] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(660), - [anon_sym_LT_LT] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_SLASH] = ACTIONS(662), - [anon_sym_PERCENT] = ACTIONS(662), - [anon_sym_PLUS_EQ] = ACTIONS(660), - [anon_sym_DASH_EQ] = ACTIONS(660), - [anon_sym_STAR_EQ] = ACTIONS(660), - [anon_sym_SLASH_EQ] = ACTIONS(660), - [anon_sym_PERCENT_EQ] = ACTIONS(660), - [anon_sym_AMP_EQ] = ACTIONS(660), - [anon_sym_PIPE_EQ] = ACTIONS(660), - [anon_sym_CARET_EQ] = ACTIONS(660), - [anon_sym_LT_LT_EQ] = ACTIONS(660), - [anon_sym_GT_GT_EQ] = ACTIONS(660), - [anon_sym_yield] = ACTIONS(662), - [anon_sym_move] = ACTIONS(662), - [anon_sym_DOT] = ACTIONS(662), - [sym_integer_literal] = ACTIONS(660), - [aux_sym_string_literal_token1] = ACTIONS(660), - [sym_char_literal] = ACTIONS(660), - [anon_sym_true] = ACTIONS(662), - [anon_sym_false] = ACTIONS(662), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(662), - [sym_super] = ACTIONS(662), - [sym_crate] = ACTIONS(662), - [sym_metavariable] = ACTIONS(660), - [sym_raw_string_literal] = ACTIONS(660), - [sym_float_literal] = ACTIONS(660), - [sym_block_comment] = ACTIONS(3), - }, - [162] = { - [ts_builtin_sym_end] = ACTIONS(664), - [sym_identifier] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(664), - [anon_sym_macro_rules_BANG] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(664), - [anon_sym_RBRACE] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(666), - [anon_sym_as] = ACTIONS(666), - [anon_sym_async] = ACTIONS(666), - [anon_sym_break] = ACTIONS(666), - [anon_sym_const] = ACTIONS(666), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_enum] = ACTIONS(666), - [anon_sym_fn] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_impl] = ACTIONS(666), - [anon_sym_let] = ACTIONS(666), - [anon_sym_loop] = ACTIONS(666), - [anon_sym_match] = ACTIONS(666), - [anon_sym_mod] = ACTIONS(666), - [anon_sym_pub] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_static] = ACTIONS(666), - [anon_sym_struct] = ACTIONS(666), - [anon_sym_trait] = ACTIONS(666), - [anon_sym_type] = ACTIONS(666), - [anon_sym_union] = ACTIONS(666), - [anon_sym_unsafe] = ACTIONS(666), - [anon_sym_use] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_extern] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_COLON_COLON] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(664), - [anon_sym_DOT_DOT] = ACTIONS(666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_move] = ACTIONS(666), - [anon_sym_DOT] = ACTIONS(666), - [sym_integer_literal] = ACTIONS(664), - [aux_sym_string_literal_token1] = ACTIONS(664), - [sym_char_literal] = ACTIONS(664), - [anon_sym_true] = ACTIONS(666), - [anon_sym_false] = ACTIONS(666), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(666), - [sym_super] = ACTIONS(666), - [sym_crate] = ACTIONS(666), - [sym_metavariable] = ACTIONS(664), - [sym_raw_string_literal] = ACTIONS(664), - [sym_float_literal] = ACTIONS(664), - [sym_block_comment] = ACTIONS(3), - }, - [163] = { + [174] = { [ts_builtin_sym_end] = ACTIONS(668), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(668), @@ -34730,53 +35885,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(668), [sym_block_comment] = ACTIONS(3), }, - [164] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1178), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [175] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1331), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34817,7 +35972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -34836,7 +35991,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [165] = { + [176] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1111), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [177] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [178] = { [ts_builtin_sym_end] = ACTIONS(672), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(672), @@ -34942,53 +36309,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(672), [sym_block_comment] = ACTIONS(3), }, - [166] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1280), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [179] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35048,478 +36415,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [167] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1225), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(280), + [180] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1271), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [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_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [168] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1159), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [169] = { - [ts_builtin_sym_end] = ACTIONS(676), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_macro_rules_BANG] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(676), - [anon_sym_RBRACE] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(678), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_extern] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT] = ACTIONS(678), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(678), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(678), - [anon_sym_CARET] = ACTIONS(678), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_PERCENT] = ACTIONS(678), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_move] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(676), - [aux_sym_string_literal_token1] = ACTIONS(676), - [sym_char_literal] = ACTIONS(676), - [anon_sym_true] = ACTIONS(678), - [anon_sym_false] = ACTIONS(678), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym_metavariable] = ACTIONS(676), - [sym_raw_string_literal] = ACTIONS(676), - [sym_float_literal] = ACTIONS(676), - [sym_block_comment] = ACTIONS(3), - }, - [170] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1267), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [171] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1271), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), + [181] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1283), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), @@ -35559,7 +36608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -35578,53 +36627,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [172] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1293), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [182] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35665,7 +36714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -35684,159 +36733,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [173] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), + [183] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1302), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [174] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [184] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(1196), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(52), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35877,7 +36926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -35896,53 +36945,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [175] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1173), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), + [185] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1166), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35983,7 +37032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -36002,1400 +37051,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [176] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1243), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), + [186] = { + [ts_builtin_sym_end] = ACTIONS(676), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_macro_rules_BANG] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_EQ] = ACTIONS(678), + [anon_sym_extern] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym_AMP] = ACTIONS(678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [anon_sym_DOT_DOT] = ACTIONS(678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(678), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_PERCENT] = ACTIONS(678), + [anon_sym_PLUS_EQ] = ACTIONS(676), + [anon_sym_DASH_EQ] = ACTIONS(676), + [anon_sym_STAR_EQ] = ACTIONS(676), + [anon_sym_SLASH_EQ] = ACTIONS(676), + [anon_sym_PERCENT_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_CARET_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_move] = ACTIONS(678), + [anon_sym_DOT] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(676), + [aux_sym_string_literal_token1] = ACTIONS(676), + [sym_char_literal] = ACTIONS(676), + [anon_sym_true] = ACTIONS(678), + [anon_sym_false] = ACTIONS(678), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym_metavariable] = ACTIONS(676), + [sym_raw_string_literal] = ACTIONS(676), + [sym_float_literal] = ACTIONS(676), + [sym_block_comment] = ACTIONS(3), + }, + [187] = { + [sym_bracketed_type] = STATE(2378), + [sym_generic_function] = STATE(802), + [sym_generic_type_with_turbofish] = STATE(1906), + [sym__expression_except_range] = STATE(802), + [sym__expression] = STATE(1303), + [sym_macro_invocation] = STATE(802), + [sym_scoped_identifier] = STATE(816), + [sym_scoped_type_identifier_in_expression_position] = STATE(2289), + [sym_range_expression] = STATE(1136), + [sym_unary_expression] = STATE(802), + [sym_try_expression] = STATE(802), + [sym_reference_expression] = STATE(802), + [sym_binary_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_compound_assignment_expr] = STATE(802), + [sym_type_cast_expression] = STATE(802), + [sym_return_expression] = STATE(802), + [sym_yield_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_array_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_tuple_expression] = STATE(802), + [sym_unit_expression] = STATE(802), + [sym_struct_expression] = STATE(802), + [sym_if_expression] = STATE(802), + [sym_if_let_expression] = STATE(802), + [sym_match_expression] = STATE(802), + [sym_while_expression] = STATE(802), + [sym_while_let_expression] = STATE(802), + [sym_loop_expression] = STATE(802), + [sym_for_expression] = STATE(802), + [sym_const_block] = STATE(802), + [sym_closure_expression] = STATE(802), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2522), + [sym_break_expression] = STATE(802), + [sym_continue_expression] = STATE(802), + [sym_index_expression] = STATE(802), + [sym_await_expression] = STATE(802), + [sym_field_expression] = STATE(809), + [sym_unsafe_block] = STATE(802), + [sym_async_block] = STATE(802), + [sym_block] = STATE(802), + [sym__literal] = STATE(802), + [sym_string_literal] = STATE(1096), + [sym_boolean_literal] = STATE(1096), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [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_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [177] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1246), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [178] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1276), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [179] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1247), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [180] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1254), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [181] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1255), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [182] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [183] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [184] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1986), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1168), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(947), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [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_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [185] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [186] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1256), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [187] = { - [sym_bracketed_type] = STATE(2492), - [sym_generic_function] = STATE(886), - [sym_generic_type_with_turbofish] = STATE(1929), - [sym__expression_except_range] = STATE(886), - [sym__expression] = STATE(1264), - [sym_macro_invocation] = STATE(886), - [sym_scoped_identifier] = STATE(1203), - [sym_scoped_type_identifier_in_expression_position] = STATE(2245), - [sym_range_expression] = STATE(1081), - [sym_unary_expression] = STATE(886), - [sym_try_expression] = STATE(886), - [sym_reference_expression] = STATE(886), - [sym_binary_expression] = STATE(886), - [sym_assignment_expression] = STATE(886), - [sym_compound_assignment_expr] = STATE(886), - [sym_type_cast_expression] = STATE(886), - [sym_return_expression] = STATE(886), - [sym_yield_expression] = STATE(886), - [sym_call_expression] = STATE(886), - [sym_array_expression] = STATE(886), - [sym_parenthesized_expression] = STATE(886), - [sym_tuple_expression] = STATE(886), - [sym_unit_expression] = STATE(886), - [sym_struct_expression] = STATE(886), - [sym_if_expression] = STATE(886), - [sym_if_let_expression] = STATE(886), - [sym_match_expression] = STATE(886), - [sym_while_expression] = STATE(886), - [sym_while_let_expression] = STATE(886), - [sym_loop_expression] = STATE(886), - [sym_for_expression] = STATE(886), - [sym_const_block] = STATE(886), - [sym_closure_expression] = STATE(886), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2523), - [sym_break_expression] = STATE(886), - [sym_continue_expression] = STATE(886), - [sym_index_expression] = STATE(886), - [sym_await_expression] = STATE(886), - [sym_field_expression] = STATE(834), - [sym_unsafe_block] = STATE(886), - [sym_async_block] = STATE(886), - [sym_block] = STATE(886), - [sym__literal] = STATE(886), - [sym_string_literal] = STATE(1130), - [sym_boolean_literal] = STATE(1130), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [188] = { - [sym_identifier] = ACTIONS(560), - [anon_sym_SEMI] = ACTIONS(562), - [anon_sym_macro_rules_BANG] = ACTIONS(558), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(558), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(562), - [anon_sym_u8] = ACTIONS(560), - [anon_sym_i8] = ACTIONS(560), - [anon_sym_u16] = ACTIONS(560), - [anon_sym_i16] = ACTIONS(560), - [anon_sym_u32] = ACTIONS(560), - [anon_sym_i32] = ACTIONS(560), - [anon_sym_u64] = ACTIONS(560), - [anon_sym_i64] = ACTIONS(560), - [anon_sym_u128] = ACTIONS(560), - [anon_sym_i128] = ACTIONS(560), - [anon_sym_isize] = ACTIONS(560), - [anon_sym_usize] = ACTIONS(560), - [anon_sym_f32] = ACTIONS(560), - [anon_sym_f64] = ACTIONS(560), - [anon_sym_bool] = ACTIONS(560), - [anon_sym_str] = ACTIONS(560), - [anon_sym_char] = ACTIONS(560), - [anon_sym_SQUOTE] = ACTIONS(560), - [anon_sym_as] = ACTIONS(564), - [anon_sym_async] = ACTIONS(560), - [anon_sym_break] = ACTIONS(560), - [anon_sym_const] = ACTIONS(560), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_default] = ACTIONS(560), - [anon_sym_enum] = ACTIONS(560), - [anon_sym_fn] = ACTIONS(560), - [anon_sym_for] = ACTIONS(560), - [anon_sym_if] = ACTIONS(560), - [anon_sym_impl] = ACTIONS(560), - [anon_sym_let] = ACTIONS(560), - [anon_sym_loop] = ACTIONS(560), - [anon_sym_match] = ACTIONS(560), - [anon_sym_mod] = ACTIONS(560), - [anon_sym_pub] = ACTIONS(560), - [anon_sym_return] = ACTIONS(560), - [anon_sym_static] = ACTIONS(560), - [anon_sym_struct] = ACTIONS(560), - [anon_sym_trait] = ACTIONS(560), - [anon_sym_type] = ACTIONS(560), - [anon_sym_union] = ACTIONS(560), - [anon_sym_unsafe] = ACTIONS(560), - [anon_sym_use] = ACTIONS(560), - [anon_sym_while] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(558), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_extern] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_COLON_COLON] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(562), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT_EQ] = ACTIONS(562), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(562), - [anon_sym_DASH_EQ] = ACTIONS(562), - [anon_sym_STAR_EQ] = ACTIONS(562), - [anon_sym_SLASH_EQ] = ACTIONS(562), - [anon_sym_PERCENT_EQ] = ACTIONS(562), - [anon_sym_AMP_EQ] = ACTIONS(562), - [anon_sym_PIPE_EQ] = ACTIONS(562), - [anon_sym_CARET_EQ] = ACTIONS(562), - [anon_sym_LT_LT_EQ] = ACTIONS(562), - [anon_sym_GT_GT_EQ] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(560), - [anon_sym_move] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(564), - [sym_integer_literal] = ACTIONS(558), - [aux_sym_string_literal_token1] = ACTIONS(558), - [sym_char_literal] = ACTIONS(558), - [anon_sym_true] = ACTIONS(560), - [anon_sym_false] = ACTIONS(560), + [sym_identifier] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_macro_rules_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(564), + [anon_sym_i8] = ACTIONS(564), + [anon_sym_u16] = ACTIONS(564), + [anon_sym_i16] = ACTIONS(564), + [anon_sym_u32] = ACTIONS(564), + [anon_sym_i32] = ACTIONS(564), + [anon_sym_u64] = ACTIONS(564), + [anon_sym_i64] = ACTIONS(564), + [anon_sym_u128] = ACTIONS(564), + [anon_sym_i128] = ACTIONS(564), + [anon_sym_isize] = ACTIONS(564), + [anon_sym_usize] = ACTIONS(564), + [anon_sym_f32] = ACTIONS(564), + [anon_sym_f64] = ACTIONS(564), + [anon_sym_bool] = ACTIONS(564), + [anon_sym_str] = ACTIONS(564), + [anon_sym_char] = ACTIONS(564), + [anon_sym_SQUOTE] = ACTIONS(564), + [anon_sym_as] = ACTIONS(568), + [anon_sym_async] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_const] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_default] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_fn] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_if] = ACTIONS(564), + [anon_sym_impl] = ACTIONS(564), + [anon_sym_let] = ACTIONS(564), + [anon_sym_loop] = ACTIONS(564), + [anon_sym_match] = ACTIONS(564), + [anon_sym_mod] = ACTIONS(564), + [anon_sym_pub] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_static] = ACTIONS(564), + [anon_sym_struct] = ACTIONS(564), + [anon_sym_trait] = ACTIONS(564), + [anon_sym_type] = ACTIONS(564), + [anon_sym_union] = ACTIONS(564), + [anon_sym_unsafe] = ACTIONS(564), + [anon_sym_use] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_POUND] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_extern] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_move] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(562), + [aux_sym_string_literal_token1] = ACTIONS(562), + [sym_char_literal] = ACTIONS(562), + [anon_sym_true] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(560), - [sym_super] = ACTIONS(560), - [sym_crate] = ACTIONS(560), - [sym_metavariable] = ACTIONS(558), - [sym_raw_string_literal] = ACTIONS(558), - [sym_float_literal] = ACTIONS(558), + [sym_self] = ACTIONS(564), + [sym_super] = ACTIONS(564), + [sym_crate] = ACTIONS(564), + [sym_metavariable] = ACTIONS(562), + [sym_raw_string_literal] = ACTIONS(562), + [sym_float_literal] = ACTIONS(562), [sym_block_comment] = ACTIONS(3), }, [189] = { - [sym_attribute_item] = STATE(202), - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(1977), - [sym_variadic_parameter] = STATE(1977), - [sym_parameter] = STATE(1977), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1854), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(1979), + [sym_attribute_item] = STATE(201), + [sym_function_modifiers] = STATE(2577), + [sym_self_parameter] = STATE(2110), + [sym_variadic_parameter] = STATE(2110), + [sym_parameter] = STATE(2110), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(2513), + [sym_lifetime] = STATE(2107), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2514), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -37403,26 +37392,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2242), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1781), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(684), @@ -37484,21 +37473,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [190] = { [sym_attribute_item] = STATE(202), - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(1977), - [sym_variadic_parameter] = STATE(1977), - [sym_parameter] = STATE(1977), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1854), - [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(1979), + [sym_function_modifiers] = STATE(2577), + [sym_self_parameter] = STATE(2088), + [sym_variadic_parameter] = STATE(2088), + [sym_parameter] = STATE(2088), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1816), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(2107), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2515), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -37506,26 +37495,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1516), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1755), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2161), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(750), @@ -37586,22 +37575,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [191] = { - [sym_attribute_item] = STATE(202), - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(1977), - [sym_variadic_parameter] = STATE(1977), - [sym_parameter] = STATE(1977), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1854), - [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(1979), + [sym_attribute_item] = STATE(201), + [sym_function_modifiers] = STATE(2577), + [sym_self_parameter] = STATE(2110), + [sym_variadic_parameter] = STATE(2110), + [sym_parameter] = STATE(2110), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(2107), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2515), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -37609,26 +37598,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1516), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1755), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2161), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(772), @@ -37667,7 +37656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(762), + [anon_sym__] = ACTIONS(776), [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -37689,125 +37678,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [192] = { - [sym_attribute_item] = STATE(202), - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(1977), - [sym_variadic_parameter] = STATE(1977), - [sym_parameter] = STATE(1977), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1854), - [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(1979), - [sym_array_type] = STATE(1432), - [sym_for_lifetimes] = STATE(1216), - [sym_function_type] = STATE(1432), - [sym_tuple_type] = STATE(1432), - [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2515), - [sym_bounded_type] = STATE(1432), - [sym_reference_type] = STATE(1432), - [sym_pointer_type] = STATE(1432), - [sym_empty_type] = STATE(1432), - [sym_abstract_type] = STATE(1432), - [sym_dynamic_type] = STATE(1432), - [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1516), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1755), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(776), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(778), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [193] = { - [sym_attribute_item] = STATE(203), - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2089), - [sym_variadic_parameter] = STATE(2089), - [sym_parameter] = STATE(2089), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1813), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(1979), + [sym_attribute_item] = STATE(201), + [sym_function_modifiers] = STATE(2577), + [sym_self_parameter] = STATE(2110), + [sym_variadic_parameter] = STATE(2110), + [sym_parameter] = STATE(2110), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(2513), + [sym_lifetime] = STATE(2107), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2514), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -37815,29 +37701,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2242), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1781), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_RPAREN] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -37868,12 +37754,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_COMMA] = ACTIONS(780), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(784), + [anon_sym__] = ACTIONS(720), [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -37894,23 +37780,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [194] = { + [193] = { [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2258), - [sym_variadic_parameter] = STATE(2258), - [sym_parameter] = STATE(2258), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(2051), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(1979), + [sym_function_modifiers] = STATE(2577), + [sym_self_parameter] = STATE(2110), + [sym_variadic_parameter] = STATE(2110), + [sym_parameter] = STATE(2110), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(2513), + [sym_lifetime] = STATE(2107), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2514), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -37918,29 +37804,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2242), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1781), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(786), + [anon_sym_RPAREN] = ACTIONS(782), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -37971,11 +37857,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(784), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(788), + [anon_sym__] = ACTIONS(720), [anon_sym_AMP] = ACTIONS(722), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -37996,23 +37883,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [195] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2258), - [sym_variadic_parameter] = STATE(2258), - [sym_parameter] = STATE(2258), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(2051), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(1979), + [194] = { + [sym_attribute_item] = STATE(203), + [sym_function_modifiers] = STATE(2577), + [sym_self_parameter] = STATE(2333), + [sym_variadic_parameter] = STATE(2333), + [sym_parameter] = STATE(2333), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1951), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(2107), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -38020,65 +37907,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2242), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2161), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), + [anon_sym_default] = ACTIONS(754), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), + [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -38090,31 +37977,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [196] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2258), - [sym_variadic_parameter] = STATE(2258), - [sym_parameter] = STATE(2258), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(2051), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(1979), + [195] = { + [sym_attribute_item] = STATE(203), + [sym_function_modifiers] = STATE(2577), + [sym_self_parameter] = STATE(2333), + [sym_variadic_parameter] = STATE(2333), + [sym_parameter] = STATE(2333), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1951), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(2107), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -38122,65 +38009,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2242), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(792), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2161), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(790), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), + [anon_sym_default] = ACTIONS(754), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), + [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -38192,31 +38079,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [197] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2258), - [sym_variadic_parameter] = STATE(2258), - [sym_parameter] = STATE(2258), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(2051), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(1979), + [196] = { + [sym_attribute_item] = STATE(203), + [sym_function_modifiers] = STATE(2577), + [sym_self_parameter] = STATE(2333), + [sym_variadic_parameter] = STATE(2333), + [sym_parameter] = STATE(2333), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1951), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(2107), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -38224,65 +38111,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2242), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(794), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2161), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(792), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), + [anon_sym_default] = ACTIONS(754), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), + [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -38294,31 +38181,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [198] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2258), - [sym_variadic_parameter] = STATE(2258), - [sym_parameter] = STATE(2258), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(2051), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(1979), + [197] = { + [sym_attribute_item] = STATE(203), + [sym_function_modifiers] = STATE(2577), + [sym_self_parameter] = STATE(2333), + [sym_variadic_parameter] = STATE(2333), + [sym_parameter] = STATE(2333), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1951), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(2107), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -38326,65 +38213,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2242), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(796), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2161), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), + [anon_sym_default] = ACTIONS(754), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), + [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -38396,31 +38283,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [199] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2258), - [sym_variadic_parameter] = STATE(2258), - [sym_parameter] = STATE(2258), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(2051), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(1979), + [198] = { + [sym_attribute_item] = STATE(203), + [sym_function_modifiers] = STATE(2577), + [sym_self_parameter] = STATE(2333), + [sym_variadic_parameter] = STATE(2333), + [sym_parameter] = STATE(2333), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1951), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(2107), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -38428,65 +38315,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2242), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(798), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2161), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(796), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), + [anon_sym_default] = ACTIONS(754), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), + [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -38498,31 +38385,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [200] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2258), - [sym_variadic_parameter] = STATE(2258), - [sym_parameter] = STATE(2258), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(2051), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(1979), + [199] = { + [sym_attribute_item] = STATE(203), + [sym_function_modifiers] = STATE(2577), + [sym_self_parameter] = STATE(2333), + [sym_variadic_parameter] = STATE(2333), + [sym_parameter] = STATE(2333), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1951), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(2107), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -38530,64 +38417,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2242), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2161), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(798), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), + [anon_sym_default] = ACTIONS(754), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), + [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -38599,30 +38487,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [201] = { - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2270), - [sym_variadic_parameter] = STATE(2270), - [sym_parameter] = STATE(2270), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1949), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(1979), + [200] = { + [sym_attribute_item] = STATE(203), + [sym_function_modifiers] = STATE(2577), + [sym_self_parameter] = STATE(2333), + [sym_variadic_parameter] = STATE(2333), + [sym_parameter] = STATE(2333), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1951), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(2107), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -38630,63 +38519,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2242), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2161), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), + [anon_sym_default] = ACTIONS(754), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), + [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -38698,30 +38588,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [202] = { - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(1981), - [sym_variadic_parameter] = STATE(1981), - [sym_parameter] = STATE(1981), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1849), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(1979), + [201] = { + [sym_function_modifiers] = STATE(2577), + [sym_self_parameter] = STATE(1973), + [sym_variadic_parameter] = STATE(1973), + [sym_parameter] = STATE(1973), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1864), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(2107), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -38729,63 +38619,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2242), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2161), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), + [anon_sym_default] = ACTIONS(754), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), + [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -38797,30 +38687,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [203] = { - [sym_function_modifiers] = STATE(2427), - [sym_self_parameter] = STATE(2142), - [sym_variadic_parameter] = STATE(2142), - [sym_parameter] = STATE(2142), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1798), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(1979), + [202] = { + [sym_function_modifiers] = STATE(2577), + [sym_self_parameter] = STATE(2147), + [sym_variadic_parameter] = STATE(2147), + [sym_parameter] = STATE(2147), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1795), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(2107), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -38828,63 +38718,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2242), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2161), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), + [anon_sym_default] = ACTIONS(754), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), + [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(804), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(802), + [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(728), @@ -38896,27 +38786,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [204] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1808), - [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(2425), + [203] = { + [sym_function_modifiers] = STATE(2577), + [sym_self_parameter] = STATE(2287), + [sym_variadic_parameter] = STATE(2287), + [sym_parameter] = STATE(2287), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(2005), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(2107), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2515), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -38924,29 +38817,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1516), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1838), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2161), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(806), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -38969,23 +38861,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), + [anon_sym_default] = ACTIONS(754), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), + [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(812), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym__] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -38993,7 +38885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), + [sym_self] = ACTIONS(766), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), @@ -39001,19 +38893,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, + [204] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1899), + [sym_bracketed_type] = STATE(2516), + [sym_lifetime] = STATE(2509), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2517), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1884), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(810), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(812), + [anon_sym_i8] = ACTIONS(812), + [anon_sym_u16] = ACTIONS(812), + [anon_sym_i16] = ACTIONS(812), + [anon_sym_u32] = ACTIONS(812), + [anon_sym_i32] = ACTIONS(812), + [anon_sym_u64] = ACTIONS(812), + [anon_sym_i64] = ACTIONS(812), + [anon_sym_u128] = ACTIONS(812), + [anon_sym_i128] = ACTIONS(812), + [anon_sym_isize] = ACTIONS(812), + [anon_sym_usize] = ACTIONS(812), + [anon_sym_f32] = ACTIONS(812), + [anon_sym_f64] = ACTIONS(812), + [anon_sym_bool] = ACTIONS(812), + [anon_sym_str] = ACTIONS(812), + [anon_sym_char] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(814), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(820), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(830), + [sym_super] = ACTIONS(830), + [sym_crate] = ACTIONS(830), + [sym_metavariable] = ACTIONS(832), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, [205] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1808), - [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(2425), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1865), + [sym_bracketed_type] = STATE(2513), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2515), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2514), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -39021,68 +39010,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1516), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1838), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(822), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1878), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(834), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), + [anon_sym_union] = ACTIONS(838), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_COMMA] = ACTIONS(840), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -39090,27 +39079,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [206] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1808), - [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(2425), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1865), + [sym_bracketed_type] = STATE(2513), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2515), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2514), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -39118,68 +39107,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1516), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1838), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(824), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1878), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(844), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), + [anon_sym_union] = ACTIONS(838), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_COMMA] = ACTIONS(840), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -39187,27 +39176,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [207] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(2108), - [sym_bracketed_type] = STATE(2517), - [sym_lifetime] = STATE(2425), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1865), + [sym_bracketed_type] = STATE(2513), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2518), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2514), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -39215,68 +39204,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1832), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(828), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1878), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(846), [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(830), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(832), - [anon_sym_i8] = ACTIONS(832), - [anon_sym_u16] = ACTIONS(832), - [anon_sym_i16] = ACTIONS(832), - [anon_sym_u32] = ACTIONS(832), - [anon_sym_i32] = ACTIONS(832), - [anon_sym_u64] = ACTIONS(832), - [anon_sym_i64] = ACTIONS(832), - [anon_sym_u128] = ACTIONS(832), - [anon_sym_i128] = ACTIONS(832), - [anon_sym_isize] = ACTIONS(832), - [anon_sym_usize] = ACTIONS(832), - [anon_sym_f32] = ACTIONS(832), - [anon_sym_f64] = ACTIONS(832), - [anon_sym_bool] = ACTIONS(832), - [anon_sym_str] = ACTIONS(832), - [anon_sym_char] = ACTIONS(832), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(834), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(836), + [anon_sym_union] = ACTIONS(838), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(840), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(840), - [anon_sym__] = ACTIONS(814), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(822), [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -39284,10 +39273,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(844), - [sym_super] = ACTIONS(844), - [sym_crate] = ACTIONS(844), - [sym_metavariable] = ACTIONS(846), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -39389,18 +39378,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [209] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1405), - [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(2425), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1407), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(616), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2515), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -39408,26 +39397,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1516), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1468), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1464), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -39449,25 +39438,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(752), [anon_sym_str] = ACTIONS(752), [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), + [anon_sym_default] = ACTIONS(854), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), + [anon_sym_union] = ACTIONS(856), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(858), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(860), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -39475,7 +39464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(852), + [sym_self] = ACTIONS(768), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), @@ -39484,18 +39473,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [210] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1405), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2425), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1407), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(620), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -39503,48 +39492,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1468), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1464), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(854), @@ -39557,12 +39546,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(814), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(822), [anon_sym_AMP] = ACTIONS(858), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(862), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -39570,27 +39559,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(864), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [211] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1422), - [sym_bracketed_type] = STATE(2517), - [sym_lifetime] = STATE(635), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1420), + [sym_bracketed_type] = STATE(2516), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2518), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2517), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -39598,66 +39587,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1492), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(828), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1469), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(832), - [anon_sym_i8] = ACTIONS(832), - [anon_sym_u16] = ACTIONS(832), - [anon_sym_i16] = ACTIONS(832), - [anon_sym_u32] = ACTIONS(832), - [anon_sym_i32] = ACTIONS(832), - [anon_sym_u64] = ACTIONS(832), - [anon_sym_i64] = ACTIONS(832), - [anon_sym_u128] = ACTIONS(832), - [anon_sym_i128] = ACTIONS(832), - [anon_sym_isize] = ACTIONS(832), - [anon_sym_usize] = ACTIONS(832), - [anon_sym_f32] = ACTIONS(832), - [anon_sym_f64] = ACTIONS(832), - [anon_sym_bool] = ACTIONS(832), - [anon_sym_str] = ACTIONS(832), - [anon_sym_char] = ACTIONS(832), - [anon_sym_SQUOTE] = ACTIONS(860), + [anon_sym_u8] = ACTIONS(812), + [anon_sym_i8] = ACTIONS(812), + [anon_sym_u16] = ACTIONS(812), + [anon_sym_i16] = ACTIONS(812), + [anon_sym_u32] = ACTIONS(812), + [anon_sym_i32] = ACTIONS(812), + [anon_sym_u64] = ACTIONS(812), + [anon_sym_i64] = ACTIONS(812), + [anon_sym_u128] = ACTIONS(812), + [anon_sym_i128] = ACTIONS(812), + [anon_sym_isize] = ACTIONS(812), + [anon_sym_usize] = ACTIONS(812), + [anon_sym_f32] = ACTIONS(812), + [anon_sym_f64] = ACTIONS(812), + [anon_sym_bool] = ACTIONS(812), + [anon_sym_str] = ACTIONS(812), + [anon_sym_char] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(834), + [anon_sym_default] = ACTIONS(814), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(836), + [anon_sym_union] = ACTIONS(816), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(840), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(820), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(824), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(862), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -39665,27 +39654,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(844), - [sym_super] = ACTIONS(844), - [sym_crate] = ACTIONS(844), - [sym_metavariable] = ACTIONS(846), + [sym_self] = ACTIONS(830), + [sym_super] = ACTIONS(830), + [sym_crate] = ACTIONS(830), + [sym_metavariable] = ACTIONS(832), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [212] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1422), - [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(611), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1420), + [sym_bracketed_type] = STATE(2513), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2515), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2514), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -39693,121 +39682,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1516), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1492), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(860), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(864), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(866), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [213] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1405), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1432), - [sym_for_lifetimes] = STATE(1216), - [sym_function_type] = STATE(1432), - [sym_tuple_type] = STATE(1432), - [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1432), - [sym_reference_type] = STATE(1432), - [sym_pointer_type] = STATE(1432), - [sym_empty_type] = STATE(1432), - [sym_abstract_type] = STATE(1432), - [sym_dynamic_type] = STATE(1432), - [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1468), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1469), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -39832,22 +39726,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(854), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(856), + [anon_sym_union] = ACTIONS(838), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(858), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -39855,7 +39749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(868), + [sym_self] = ACTIONS(742), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), [sym_metavariable] = ACTIONS(744), @@ -39863,19 +39757,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [214] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1422), - [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(635), + [213] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1407), + [sym_bracketed_type] = STATE(2516), + [sym_lifetime] = STATE(616), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2515), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2517), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -39883,66 +39777,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1516), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1492), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), + [sym_scoped_identifier] = STATE(1567), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1464), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(860), + [anon_sym_u8] = ACTIONS(812), + [anon_sym_i8] = ACTIONS(812), + [anon_sym_u16] = ACTIONS(812), + [anon_sym_i16] = ACTIONS(812), + [anon_sym_u32] = ACTIONS(812), + [anon_sym_i32] = ACTIONS(812), + [anon_sym_u64] = ACTIONS(812), + [anon_sym_i64] = ACTIONS(812), + [anon_sym_u128] = ACTIONS(812), + [anon_sym_i128] = ACTIONS(812), + [anon_sym_isize] = ACTIONS(812), + [anon_sym_usize] = ACTIONS(812), + [anon_sym_f32] = ACTIONS(812), + [anon_sym_f64] = ACTIONS(812), + [anon_sym_bool] = ACTIONS(812), + [anon_sym_str] = ACTIONS(812), + [anon_sym_char] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), + [anon_sym_default] = ACTIONS(814), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), + [anon_sym_union] = ACTIONS(816), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym_COLON_COLON] = ACTIONS(820), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(824), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(870), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(866), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -39950,27 +39844,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_self] = ACTIONS(830), + [sym_super] = ACTIONS(830), + [sym_crate] = ACTIONS(830), + [sym_metavariable] = ACTIONS(832), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [215] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1422), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(635), + [214] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1407), + [sym_bracketed_type] = STATE(2513), + [sym_lifetime] = STATE(616), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2514), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -39978,26 +39872,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1492), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1464), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -40019,25 +39913,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(690), [anon_sym_str] = ACTIONS(690), [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(860), + [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(854), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(856), + [anon_sym_union] = ACTIONS(838), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(858), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(872), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(868), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -40053,19 +39947,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [216] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1422), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(611), + [215] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1407), + [sym_bracketed_type] = STATE(2513), + [sym_lifetime] = STATE(620), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2512), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2514), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -40073,26 +39967,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1633), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1492), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1464), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -40114,25 +40008,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(690), [anon_sym_str] = ACTIONS(690), [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(860), + [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(854), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(856), + [anon_sym_union] = ACTIONS(838), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(858), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(874), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(870), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -40140,7 +40034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), + [sym_self] = ACTIONS(872), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), [sym_metavariable] = ACTIONS(744), @@ -40148,19 +40042,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [217] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1405), - [sym_bracketed_type] = STATE(2517), - [sym_lifetime] = STATE(2425), + [216] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1420), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2518), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -40168,66 +40062,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1468), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(828), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1469), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(832), - [anon_sym_i8] = ACTIONS(832), - [anon_sym_u16] = ACTIONS(832), - [anon_sym_i16] = ACTIONS(832), - [anon_sym_u32] = ACTIONS(832), - [anon_sym_i32] = ACTIONS(832), - [anon_sym_u64] = ACTIONS(832), - [anon_sym_i64] = ACTIONS(832), - [anon_sym_u128] = ACTIONS(832), - [anon_sym_i128] = ACTIONS(832), - [anon_sym_isize] = ACTIONS(832), - [anon_sym_usize] = ACTIONS(832), - [anon_sym_f32] = ACTIONS(832), - [anon_sym_f64] = ACTIONS(832), - [anon_sym_bool] = ACTIONS(832), - [anon_sym_str] = ACTIONS(832), - [anon_sym_char] = ACTIONS(832), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(834), + [anon_sym_default] = ACTIONS(854), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(836), + [anon_sym_union] = ACTIONS(856), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(840), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(858), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -40235,27 +40129,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(844), - [sym_super] = ACTIONS(844), - [sym_crate] = ACTIONS(844), - [sym_metavariable] = ACTIONS(846), + [sym_self] = ACTIONS(874), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [218] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1405), - [sym_bracketed_type] = STATE(2514), - [sym_lifetime] = STATE(2425), + [217] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1420), + [sym_bracketed_type] = STATE(2510), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2515), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2511), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -40263,26 +40157,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(1516), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1468), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(1602), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1469), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -40307,22 +40201,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), + [anon_sym_default] = ACTIONS(854), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), + [anon_sym_union] = ACTIONS(856), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(858), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -40338,29 +40232,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, + [218] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1420), + [sym_bracketed_type] = STATE(2513), + [sym_lifetime] = STATE(2509), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2514), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(1534), + [sym_scoped_type_identifier] = STATE(1508), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1469), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(836), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(838), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, [219] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1461), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1479), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), [sym_identifier] = ACTIONS(878), [anon_sym_LPAREN] = ACTIONS(880), [anon_sym_LBRACE] = ACTIONS(880), @@ -40402,9 +40391,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(880), [anon_sym_LT] = ACTIONS(880), [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym__] = ACTIONS(814), + [anon_sym__] = ACTIONS(822), [anon_sym_AMP] = ACTIONS(880), - [sym_mutable_specifier] = ACTIONS(818), + [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(880), [anon_sym_DASH] = ACTIONS(878), [anon_sym_PIPE] = ACTIONS(880), @@ -40425,13 +40414,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [220] = { - [sym__attr] = STATE(2353), - [sym_custom_attr] = STATE(2353), - [sym_built_in_attr] = STATE(2353), - [sym__built_in_attr_path] = STATE(1862), - [sym_bracketed_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(2373), - [sym_scoped_identifier] = STATE(1604), + [sym__attr] = STATE(2475), + [sym_custom_attr] = STATE(2475), + [sym_built_in_attr] = STATE(2475), + [sym__built_in_attr_path] = STATE(1793), + [sym_bracketed_type] = STATE(2378), + [sym_generic_type_with_turbofish] = STATE(2405), + [sym_scoped_identifier] = STATE(1635), [sym_identifier] = ACTIONS(882), [anon_sym_path] = ACTIONS(884), [anon_sym_u8] = ACTIONS(886), @@ -40507,13 +40496,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [221] = { - [sym__attr] = STATE(2461), - [sym_custom_attr] = STATE(2461), - [sym_built_in_attr] = STATE(2461), - [sym__built_in_attr_path] = STATE(1862), - [sym_bracketed_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(2373), - [sym_scoped_identifier] = STATE(1604), + [sym__attr] = STATE(2463), + [sym_custom_attr] = STATE(2463), + [sym_built_in_attr] = STATE(2463), + [sym__built_in_attr_path] = STATE(1793), + [sym_bracketed_type] = STATE(2378), + [sym_generic_type_with_turbofish] = STATE(2405), + [sym_scoped_identifier] = STATE(1635), [sym_identifier] = ACTIONS(882), [anon_sym_path] = ACTIONS(884), [anon_sym_u8] = ACTIONS(886), @@ -40589,177 +40578,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [222] = { - [sym_else_clause] = STATE(251), - [sym_identifier] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(494), - [anon_sym_QMARK] = ACTIONS(492), - [anon_sym_u8] = ACTIONS(494), - [anon_sym_i8] = ACTIONS(494), - [anon_sym_u16] = ACTIONS(494), - [anon_sym_i16] = ACTIONS(494), - [anon_sym_u32] = ACTIONS(494), - [anon_sym_i32] = ACTIONS(494), - [anon_sym_u64] = ACTIONS(494), - [anon_sym_i64] = ACTIONS(494), - [anon_sym_u128] = ACTIONS(494), - [anon_sym_i128] = ACTIONS(494), - [anon_sym_isize] = ACTIONS(494), - [anon_sym_usize] = ACTIONS(494), - [anon_sym_f32] = ACTIONS(494), - [anon_sym_f64] = ACTIONS(494), - [anon_sym_bool] = ACTIONS(494), - [anon_sym_str] = ACTIONS(494), - [anon_sym_char] = ACTIONS(494), - [anon_sym_as] = ACTIONS(494), - [anon_sym_const] = ACTIONS(494), - [anon_sym_default] = ACTIONS(494), - [anon_sym_union] = ACTIONS(494), - [anon_sym_POUND] = ACTIONS(492), - [anon_sym_EQ] = ACTIONS(494), - [anon_sym_COMMA] = ACTIONS(492), - [anon_sym_ref] = ACTIONS(494), - [anon_sym_LT] = ACTIONS(494), - [anon_sym_GT] = ACTIONS(494), - [anon_sym_COLON_COLON] = ACTIONS(492), - [anon_sym__] = ACTIONS(494), - [anon_sym_AMP] = ACTIONS(494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(492), - [sym_mutable_specifier] = ACTIONS(494), - [anon_sym_DOT_DOT] = ACTIONS(494), - [anon_sym_DOT_DOT_EQ] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(494), - [anon_sym_CARET] = ACTIONS(494), - [anon_sym_EQ_EQ] = ACTIONS(492), - [anon_sym_BANG_EQ] = ACTIONS(492), - [anon_sym_LT_EQ] = ACTIONS(492), - [anon_sym_GT_EQ] = ACTIONS(492), - [anon_sym_LT_LT] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(494), - [anon_sym_SLASH] = ACTIONS(494), - [anon_sym_PERCENT] = ACTIONS(494), - [anon_sym_PLUS_EQ] = ACTIONS(492), - [anon_sym_DASH_EQ] = ACTIONS(492), - [anon_sym_STAR_EQ] = ACTIONS(492), - [anon_sym_SLASH_EQ] = ACTIONS(492), - [anon_sym_PERCENT_EQ] = ACTIONS(492), - [anon_sym_AMP_EQ] = ACTIONS(492), - [anon_sym_PIPE_EQ] = ACTIONS(492), - [anon_sym_CARET_EQ] = ACTIONS(492), - [anon_sym_LT_LT_EQ] = ACTIONS(492), - [anon_sym_GT_GT_EQ] = ACTIONS(492), - [anon_sym_else] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(494), - [sym_integer_literal] = ACTIONS(492), - [aux_sym_string_literal_token1] = ACTIONS(492), - [sym_char_literal] = ACTIONS(492), - [anon_sym_true] = ACTIONS(494), - [anon_sym_false] = ACTIONS(494), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(494), - [sym_crate] = ACTIONS(494), - [sym_metavariable] = ACTIONS(492), - [sym_raw_string_literal] = ACTIONS(492), - [sym_float_literal] = ACTIONS(492), - [sym_block_comment] = ACTIONS(3), - }, - [223] = { - [sym_else_clause] = STATE(248), - [sym_identifier] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(498), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_PLUS] = ACTIONS(500), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_u8] = ACTIONS(500), - [anon_sym_i8] = ACTIONS(500), - [anon_sym_u16] = ACTIONS(500), - [anon_sym_i16] = ACTIONS(500), - [anon_sym_u32] = ACTIONS(500), - [anon_sym_i32] = ACTIONS(500), - [anon_sym_u64] = ACTIONS(500), - [anon_sym_i64] = ACTIONS(500), - [anon_sym_u128] = ACTIONS(500), - [anon_sym_i128] = ACTIONS(500), - [anon_sym_isize] = ACTIONS(500), - [anon_sym_usize] = ACTIONS(500), - [anon_sym_f32] = ACTIONS(500), - [anon_sym_f64] = ACTIONS(500), - [anon_sym_bool] = ACTIONS(500), - [anon_sym_str] = ACTIONS(500), - [anon_sym_char] = ACTIONS(500), - [anon_sym_as] = ACTIONS(500), - [anon_sym_const] = ACTIONS(500), - [anon_sym_default] = ACTIONS(500), - [anon_sym_union] = ACTIONS(500), - [anon_sym_POUND] = ACTIONS(498), - [anon_sym_EQ] = ACTIONS(500), - [anon_sym_COMMA] = ACTIONS(498), - [anon_sym_ref] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_COLON_COLON] = ACTIONS(498), - [anon_sym__] = ACTIONS(500), - [anon_sym_AMP] = ACTIONS(500), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), - [sym_mutable_specifier] = ACTIONS(500), - [anon_sym_DOT_DOT] = ACTIONS(500), - [anon_sym_DOT_DOT_EQ] = ACTIONS(498), - [anon_sym_DASH] = ACTIONS(500), - [anon_sym_AMP_AMP] = ACTIONS(498), - [anon_sym_PIPE_PIPE] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(500), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(498), - [anon_sym_BANG_EQ] = ACTIONS(498), - [anon_sym_LT_EQ] = ACTIONS(498), - [anon_sym_GT_EQ] = ACTIONS(498), - [anon_sym_LT_LT] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(500), - [anon_sym_SLASH] = ACTIONS(500), - [anon_sym_PERCENT] = ACTIONS(500), - [anon_sym_PLUS_EQ] = ACTIONS(498), - [anon_sym_DASH_EQ] = ACTIONS(498), - [anon_sym_STAR_EQ] = ACTIONS(498), - [anon_sym_SLASH_EQ] = ACTIONS(498), - [anon_sym_PERCENT_EQ] = ACTIONS(498), - [anon_sym_AMP_EQ] = ACTIONS(498), - [anon_sym_PIPE_EQ] = ACTIONS(498), - [anon_sym_CARET_EQ] = ACTIONS(498), - [anon_sym_LT_LT_EQ] = ACTIONS(498), - [anon_sym_GT_GT_EQ] = ACTIONS(498), - [anon_sym_else] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(500), - [sym_integer_literal] = ACTIONS(498), - [aux_sym_string_literal_token1] = ACTIONS(498), - [sym_char_literal] = ACTIONS(498), - [anon_sym_true] = ACTIONS(500), - [anon_sym_false] = ACTIONS(500), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(500), - [sym_super] = ACTIONS(500), - [sym_crate] = ACTIONS(500), - [sym_metavariable] = ACTIONS(498), - [sym_raw_string_literal] = ACTIONS(498), - [sym_float_literal] = ACTIONS(498), - [sym_block_comment] = ACTIONS(3), - }, - [224] = { - [sym__attr] = STATE(2559), - [sym_custom_attr] = STATE(2559), - [sym_built_in_attr] = STATE(2559), - [sym__built_in_attr_path] = STATE(1862), - [sym_bracketed_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(2373), - [sym_scoped_identifier] = STATE(1604), + [sym__attr] = STATE(2431), + [sym_custom_attr] = STATE(2431), + [sym_built_in_attr] = STATE(2431), + [sym__built_in_attr_path] = STATE(1793), + [sym_bracketed_type] = STATE(2378), + [sym_generic_type_with_turbofish] = STATE(2405), + [sym_scoped_identifier] = STATE(1635), [sym_identifier] = ACTIONS(882), [anon_sym_path] = ACTIONS(884), [anon_sym_u8] = ACTIONS(886), @@ -40834,14 +40659,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, - [225] = { - [sym__attr] = STATE(2464), - [sym_custom_attr] = STATE(2464), - [sym_built_in_attr] = STATE(2464), - [sym__built_in_attr_path] = STATE(1862), - [sym_bracketed_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(2373), - [sym_scoped_identifier] = STATE(1604), + [223] = { + [sym_else_clause] = STATE(248), + [sym_identifier] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_RBRACE] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_as] = ACTIONS(404), + [anon_sym_const] = ACTIONS(404), + [anon_sym_default] = ACTIONS(404), + [anon_sym_union] = ACTIONS(404), + [anon_sym_POUND] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(402), + [anon_sym_ref] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_COLON_COLON] = ACTIONS(402), + [anon_sym__] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(402), + [sym_mutable_specifier] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT_EQ] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_AMP_AMP] = ACTIONS(402), + [anon_sym_PIPE_PIPE] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_GT_GT] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(402), + [anon_sym_DASH_EQ] = ACTIONS(402), + [anon_sym_STAR_EQ] = ACTIONS(402), + [anon_sym_SLASH_EQ] = ACTIONS(402), + [anon_sym_PERCENT_EQ] = ACTIONS(402), + [anon_sym_AMP_EQ] = ACTIONS(402), + [anon_sym_PIPE_EQ] = ACTIONS(402), + [anon_sym_CARET_EQ] = ACTIONS(402), + [anon_sym_LT_LT_EQ] = ACTIONS(402), + [anon_sym_GT_GT_EQ] = ACTIONS(402), + [anon_sym_else] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(404), + [sym_integer_literal] = ACTIONS(402), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_char_literal] = ACTIONS(402), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(404), + [sym_super] = ACTIONS(404), + [sym_crate] = ACTIONS(404), + [sym_metavariable] = ACTIONS(402), + [sym_raw_string_literal] = ACTIONS(402), + [sym_float_literal] = ACTIONS(402), + [sym_block_comment] = ACTIONS(3), + }, + [224] = { + [sym__attr] = STATE(2556), + [sym_custom_attr] = STATE(2556), + [sym_built_in_attr] = STATE(2556), + [sym__built_in_attr_path] = STATE(1793), + [sym_bracketed_type] = STATE(2378), + [sym_generic_type_with_turbofish] = STATE(2405), + [sym_scoped_identifier] = STATE(1635), [sym_identifier] = ACTIONS(882), [anon_sym_path] = ACTIONS(884), [anon_sym_u8] = ACTIONS(886), @@ -40916,14 +40823,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, - [226] = { - [sym__attr] = STATE(2397), - [sym_custom_attr] = STATE(2397), - [sym_built_in_attr] = STATE(2397), - [sym__built_in_attr_path] = STATE(1862), - [sym_bracketed_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(2373), - [sym_scoped_identifier] = STATE(1604), + [225] = { + [sym__attr] = STATE(2379), + [sym_custom_attr] = STATE(2379), + [sym_built_in_attr] = STATE(2379), + [sym__built_in_attr_path] = STATE(1793), + [sym_bracketed_type] = STATE(2378), + [sym_generic_type_with_turbofish] = STATE(2405), + [sym_scoped_identifier] = STATE(1635), [sym_identifier] = ACTIONS(882), [anon_sym_path] = ACTIONS(884), [anon_sym_u8] = ACTIONS(886), @@ -40998,14 +40905,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), }, + [226] = { + [sym_else_clause] = STATE(232), + [sym_identifier] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_RBRACE] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_isize] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_f32] = ACTIONS(394), + [anon_sym_f64] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_str] = ACTIONS(394), + [anon_sym_char] = ACTIONS(394), + [anon_sym_as] = ACTIONS(394), + [anon_sym_const] = ACTIONS(394), + [anon_sym_default] = ACTIONS(394), + [anon_sym_union] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(392), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_ref] = ACTIONS(394), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_COLON_COLON] = ACTIONS(392), + [anon_sym__] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(392), + [sym_mutable_specifier] = ACTIONS(394), + [anon_sym_DOT_DOT] = ACTIONS(394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(392), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(394), + [anon_sym_GT_GT] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_LT_LT_EQ] = ACTIONS(392), + [anon_sym_GT_GT_EQ] = ACTIONS(392), + [anon_sym_else] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(394), + [sym_integer_literal] = ACTIONS(392), + [aux_sym_string_literal_token1] = ACTIONS(392), + [sym_char_literal] = ACTIONS(392), + [anon_sym_true] = ACTIONS(394), + [anon_sym_false] = ACTIONS(394), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(394), + [sym_super] = ACTIONS(394), + [sym_crate] = ACTIONS(394), + [sym_metavariable] = ACTIONS(392), + [sym_raw_string_literal] = ACTIONS(392), + [sym_float_literal] = ACTIONS(392), + [sym_block_comment] = ACTIONS(3), + }, [227] = { - [sym__attr] = STATE(2477), - [sym_custom_attr] = STATE(2477), - [sym_built_in_attr] = STATE(2477), - [sym__built_in_attr_path] = STATE(1862), - [sym_bracketed_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(2373), - [sym_scoped_identifier] = STATE(1604), + [sym__attr] = STATE(2411), + [sym_custom_attr] = STATE(2411), + [sym_built_in_attr] = STATE(2411), + [sym__built_in_attr_path] = STATE(1793), + [sym_bracketed_type] = STATE(2378), + [sym_generic_type_with_turbofish] = STATE(2405), + [sym_scoped_identifier] = STATE(1635), [sym_identifier] = ACTIONS(882), [anon_sym_path] = ACTIONS(884), [anon_sym_u8] = ACTIONS(886), @@ -41081,13 +41070,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [228] = { - [sym__attr] = STATE(2435), - [sym_custom_attr] = STATE(2435), - [sym_built_in_attr] = STATE(2435), - [sym__built_in_attr_path] = STATE(1862), - [sym_bracketed_type] = STATE(2492), - [sym_generic_type_with_turbofish] = STATE(2373), - [sym_scoped_identifier] = STATE(1604), + [sym__attr] = STATE(2560), + [sym_custom_attr] = STATE(2560), + [sym_built_in_attr] = STATE(2560), + [sym__built_in_attr_path] = STATE(1793), + [sym_bracketed_type] = STATE(2378), + [sym_generic_type_with_turbofish] = STATE(2405), + [sym_scoped_identifier] = STATE(1635), [sym_identifier] = ACTIONS(882), [anon_sym_path] = ACTIONS(884), [anon_sym_u8] = ACTIONS(886), @@ -41161,731 +41150,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(890), [sym_metavariable] = ACTIONS(892), [sym_block_comment] = ACTIONS(3), - }, - [229] = { - [sym_identifier] = ACTIONS(528), - [anon_sym_LPAREN] = ACTIONS(526), - [anon_sym_RBRACE] = ACTIONS(526), - [anon_sym_LBRACK] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_QMARK] = ACTIONS(526), - [anon_sym_u8] = ACTIONS(528), - [anon_sym_i8] = ACTIONS(528), - [anon_sym_u16] = ACTIONS(528), - [anon_sym_i16] = ACTIONS(528), - [anon_sym_u32] = ACTIONS(528), - [anon_sym_i32] = ACTIONS(528), - [anon_sym_u64] = ACTIONS(528), - [anon_sym_i64] = ACTIONS(528), - [anon_sym_u128] = ACTIONS(528), - [anon_sym_i128] = ACTIONS(528), - [anon_sym_isize] = ACTIONS(528), - [anon_sym_usize] = ACTIONS(528), - [anon_sym_f32] = ACTIONS(528), - [anon_sym_f64] = ACTIONS(528), - [anon_sym_bool] = ACTIONS(528), - [anon_sym_str] = ACTIONS(528), - [anon_sym_char] = ACTIONS(528), - [anon_sym_as] = ACTIONS(528), - [anon_sym_const] = ACTIONS(528), - [anon_sym_default] = ACTIONS(528), - [anon_sym_union] = ACTIONS(528), - [anon_sym_POUND] = ACTIONS(526), - [anon_sym_EQ] = ACTIONS(528), - [anon_sym_COMMA] = ACTIONS(526), - [anon_sym_ref] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(528), - [anon_sym_COLON_COLON] = ACTIONS(526), - [anon_sym__] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_DOT_DOT_DOT] = ACTIONS(526), - [sym_mutable_specifier] = ACTIONS(528), - [anon_sym_DOT_DOT] = ACTIONS(528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(528), - [anon_sym_AMP_AMP] = ACTIONS(526), - [anon_sym_PIPE_PIPE] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(528), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(526), - [anon_sym_BANG_EQ] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_else] = ACTIONS(528), - [anon_sym_DOT] = ACTIONS(528), - [sym_integer_literal] = ACTIONS(526), - [aux_sym_string_literal_token1] = ACTIONS(526), - [sym_char_literal] = ACTIONS(526), - [anon_sym_true] = ACTIONS(528), - [anon_sym_false] = ACTIONS(528), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(528), - [sym_super] = ACTIONS(528), - [sym_crate] = ACTIONS(528), - [sym_metavariable] = ACTIONS(526), - [sym_raw_string_literal] = ACTIONS(526), - [sym_float_literal] = ACTIONS(526), - [sym_block_comment] = ACTIONS(3), - }, - [230] = { - [sym_identifier] = ACTIONS(538), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_PLUS] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(536), - [anon_sym_u8] = ACTIONS(538), - [anon_sym_i8] = ACTIONS(538), - [anon_sym_u16] = ACTIONS(538), - [anon_sym_i16] = ACTIONS(538), - [anon_sym_u32] = ACTIONS(538), - [anon_sym_i32] = ACTIONS(538), - [anon_sym_u64] = ACTIONS(538), - [anon_sym_i64] = ACTIONS(538), - [anon_sym_u128] = ACTIONS(538), - [anon_sym_i128] = ACTIONS(538), - [anon_sym_isize] = ACTIONS(538), - [anon_sym_usize] = ACTIONS(538), - [anon_sym_f32] = ACTIONS(538), - [anon_sym_f64] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(538), - [anon_sym_str] = ACTIONS(538), - [anon_sym_char] = ACTIONS(538), - [anon_sym_as] = ACTIONS(538), - [anon_sym_const] = ACTIONS(538), - [anon_sym_default] = ACTIONS(538), - [anon_sym_union] = ACTIONS(538), - [anon_sym_POUND] = ACTIONS(536), - [anon_sym_EQ] = ACTIONS(538), - [anon_sym_COMMA] = ACTIONS(536), - [anon_sym_ref] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_GT] = ACTIONS(538), - [anon_sym_COLON_COLON] = ACTIONS(536), - [anon_sym__] = ACTIONS(538), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_DOT_DOT_DOT] = ACTIONS(536), - [sym_mutable_specifier] = ACTIONS(538), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(536), - [anon_sym_DASH] = ACTIONS(538), - [anon_sym_AMP_AMP] = ACTIONS(536), - [anon_sym_PIPE_PIPE] = ACTIONS(536), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_CARET] = ACTIONS(538), - [anon_sym_EQ_EQ] = ACTIONS(536), - [anon_sym_BANG_EQ] = ACTIONS(536), - [anon_sym_LT_EQ] = ACTIONS(536), - [anon_sym_GT_EQ] = ACTIONS(536), - [anon_sym_LT_LT] = ACTIONS(538), - [anon_sym_GT_GT] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(538), - [anon_sym_PERCENT] = ACTIONS(538), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_else] = ACTIONS(538), - [anon_sym_DOT] = ACTIONS(538), - [sym_integer_literal] = ACTIONS(536), - [aux_sym_string_literal_token1] = ACTIONS(536), - [sym_char_literal] = ACTIONS(536), - [anon_sym_true] = ACTIONS(538), - [anon_sym_false] = ACTIONS(538), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(538), - [sym_super] = ACTIONS(538), - [sym_crate] = ACTIONS(538), - [sym_metavariable] = ACTIONS(536), - [sym_raw_string_literal] = ACTIONS(536), - [sym_float_literal] = ACTIONS(536), - [sym_block_comment] = ACTIONS(3), - }, - [231] = { - [sym_identifier] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(550), - [anon_sym_PLUS] = ACTIONS(552), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_QMARK] = ACTIONS(550), - [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_as] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_POUND] = ACTIONS(550), - [anon_sym_EQ] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(550), - [anon_sym_ref] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(552), - [anon_sym_GT] = ACTIONS(552), - [anon_sym_COLON_COLON] = ACTIONS(550), - [anon_sym__] = ACTIONS(552), - [anon_sym_AMP] = ACTIONS(552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(550), - [sym_mutable_specifier] = ACTIONS(552), - [anon_sym_DOT_DOT] = ACTIONS(552), - [anon_sym_DOT_DOT_EQ] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(552), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [anon_sym_PIPE] = ACTIONS(552), - [anon_sym_CARET] = ACTIONS(552), - [anon_sym_EQ_EQ] = ACTIONS(550), - [anon_sym_BANG_EQ] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(550), - [anon_sym_GT_EQ] = ACTIONS(550), - [anon_sym_LT_LT] = ACTIONS(552), - [anon_sym_GT_GT] = ACTIONS(552), - [anon_sym_SLASH] = ACTIONS(552), - [anon_sym_PERCENT] = ACTIONS(552), - [anon_sym_PLUS_EQ] = ACTIONS(550), - [anon_sym_DASH_EQ] = ACTIONS(550), - [anon_sym_STAR_EQ] = ACTIONS(550), - [anon_sym_SLASH_EQ] = ACTIONS(550), - [anon_sym_PERCENT_EQ] = ACTIONS(550), - [anon_sym_AMP_EQ] = ACTIONS(550), - [anon_sym_PIPE_EQ] = ACTIONS(550), - [anon_sym_CARET_EQ] = ACTIONS(550), - [anon_sym_LT_LT_EQ] = ACTIONS(550), - [anon_sym_GT_GT_EQ] = ACTIONS(550), - [anon_sym_else] = ACTIONS(552), - [anon_sym_DOT] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(550), - [aux_sym_string_literal_token1] = ACTIONS(550), - [sym_char_literal] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(550), - [sym_raw_string_literal] = ACTIONS(550), - [sym_float_literal] = ACTIONS(550), - [sym_block_comment] = ACTIONS(3), - }, - [232] = { - [sym_identifier] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(568), - [anon_sym_i8] = ACTIONS(568), - [anon_sym_u16] = ACTIONS(568), - [anon_sym_i16] = ACTIONS(568), - [anon_sym_u32] = ACTIONS(568), - [anon_sym_i32] = ACTIONS(568), - [anon_sym_u64] = ACTIONS(568), - [anon_sym_i64] = ACTIONS(568), - [anon_sym_u128] = ACTIONS(568), - [anon_sym_i128] = ACTIONS(568), - [anon_sym_isize] = ACTIONS(568), - [anon_sym_usize] = ACTIONS(568), - [anon_sym_f32] = ACTIONS(568), - [anon_sym_f64] = ACTIONS(568), - [anon_sym_bool] = ACTIONS(568), - [anon_sym_str] = ACTIONS(568), - [anon_sym_char] = ACTIONS(568), - [anon_sym_as] = ACTIONS(568), - [anon_sym_const] = ACTIONS(568), - [anon_sym_default] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(566), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_ref] = ACTIONS(568), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(566), - [anon_sym__] = ACTIONS(568), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [sym_mutable_specifier] = ACTIONS(568), - [anon_sym_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(566), - [aux_sym_string_literal_token1] = ACTIONS(566), - [sym_char_literal] = ACTIONS(566), - [anon_sym_true] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(568), - [sym_super] = ACTIONS(568), - [sym_crate] = ACTIONS(568), - [sym_metavariable] = ACTIONS(566), - [sym_raw_string_literal] = ACTIONS(566), - [sym_float_literal] = ACTIONS(566), - [sym_block_comment] = ACTIONS(3), - }, - [233] = { - [sym_identifier] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_u8] = ACTIONS(572), - [anon_sym_i8] = ACTIONS(572), - [anon_sym_u16] = ACTIONS(572), - [anon_sym_i16] = ACTIONS(572), - [anon_sym_u32] = ACTIONS(572), - [anon_sym_i32] = ACTIONS(572), - [anon_sym_u64] = ACTIONS(572), - [anon_sym_i64] = ACTIONS(572), - [anon_sym_u128] = ACTIONS(572), - [anon_sym_i128] = ACTIONS(572), - [anon_sym_isize] = ACTIONS(572), - [anon_sym_usize] = ACTIONS(572), - [anon_sym_f32] = ACTIONS(572), - [anon_sym_f64] = ACTIONS(572), - [anon_sym_bool] = ACTIONS(572), - [anon_sym_str] = ACTIONS(572), - [anon_sym_char] = ACTIONS(572), - [anon_sym_as] = ACTIONS(572), - [anon_sym_const] = ACTIONS(572), - [anon_sym_default] = ACTIONS(572), - [anon_sym_union] = ACTIONS(572), - [anon_sym_POUND] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(572), - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_ref] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_COLON_COLON] = ACTIONS(570), - [anon_sym__] = ACTIONS(572), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(570), - [sym_mutable_specifier] = ACTIONS(572), - [anon_sym_DOT_DOT] = ACTIONS(572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_AMP_AMP] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_DOT] = ACTIONS(572), - [sym_integer_literal] = ACTIONS(570), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(570), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(572), - [sym_super] = ACTIONS(572), - [sym_crate] = ACTIONS(572), - [sym_metavariable] = ACTIONS(570), - [sym_raw_string_literal] = ACTIONS(570), - [sym_float_literal] = ACTIONS(570), - [sym_block_comment] = ACTIONS(3), - }, - [234] = { - [sym_identifier] = ACTIONS(614), - [anon_sym_LPAREN] = ACTIONS(612), - [anon_sym_RBRACE] = ACTIONS(612), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(614), - [anon_sym_QMARK] = ACTIONS(612), - [anon_sym_u8] = ACTIONS(614), - [anon_sym_i8] = ACTIONS(614), - [anon_sym_u16] = ACTIONS(614), - [anon_sym_i16] = ACTIONS(614), - [anon_sym_u32] = ACTIONS(614), - [anon_sym_i32] = ACTIONS(614), - [anon_sym_u64] = ACTIONS(614), - [anon_sym_i64] = ACTIONS(614), - [anon_sym_u128] = ACTIONS(614), - [anon_sym_i128] = ACTIONS(614), - [anon_sym_isize] = ACTIONS(614), - [anon_sym_usize] = ACTIONS(614), - [anon_sym_f32] = ACTIONS(614), - [anon_sym_f64] = ACTIONS(614), - [anon_sym_bool] = ACTIONS(614), - [anon_sym_str] = ACTIONS(614), - [anon_sym_char] = ACTIONS(614), - [anon_sym_as] = ACTIONS(614), - [anon_sym_const] = ACTIONS(614), - [anon_sym_default] = ACTIONS(614), - [anon_sym_union] = ACTIONS(614), - [anon_sym_POUND] = ACTIONS(612), - [anon_sym_EQ] = ACTIONS(614), - [anon_sym_COMMA] = ACTIONS(612), - [anon_sym_ref] = ACTIONS(614), - [anon_sym_LT] = ACTIONS(614), - [anon_sym_GT] = ACTIONS(614), - [anon_sym_COLON_COLON] = ACTIONS(612), - [anon_sym__] = ACTIONS(614), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [sym_mutable_specifier] = ACTIONS(614), - [anon_sym_DOT_DOT] = ACTIONS(614), - [anon_sym_DOT_DOT_EQ] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_AMP_AMP] = ACTIONS(612), - [anon_sym_PIPE_PIPE] = ACTIONS(612), - [anon_sym_PIPE] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_EQ_EQ] = ACTIONS(612), - [anon_sym_BANG_EQ] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(612), - [anon_sym_GT_EQ] = ACTIONS(612), - [anon_sym_LT_LT] = ACTIONS(614), - [anon_sym_GT_GT] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(614), - [anon_sym_PERCENT] = ACTIONS(614), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_DOT] = ACTIONS(614), - [sym_integer_literal] = ACTIONS(612), - [aux_sym_string_literal_token1] = ACTIONS(612), - [sym_char_literal] = ACTIONS(612), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(614), - [sym_super] = ACTIONS(614), - [sym_crate] = ACTIONS(614), - [sym_metavariable] = ACTIONS(612), - [sym_raw_string_literal] = ACTIONS(612), - [sym_float_literal] = ACTIONS(612), - [sym_block_comment] = ACTIONS(3), - }, - [235] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1989), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(1988), - [sym_array_type] = STATE(1432), - [sym_for_lifetimes] = STATE(1216), - [sym_function_type] = STATE(1432), - [sym_tuple_type] = STATE(1432), - [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), - [sym_bounded_type] = STATE(1432), - [sym_type_binding] = STATE(2307), - [sym_reference_type] = STATE(1432), - [sym_pointer_type] = STATE(1432), - [sym_empty_type] = STATE(1432), - [sym_abstract_type] = STATE(1432), - [sym_dynamic_type] = STATE(1432), - [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [sym_block] = STATE(2307), - [sym__literal] = STATE(2307), - [sym_string_literal] = STATE(2267), - [sym_boolean_literal] = STATE(2267), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(910), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(916), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(916), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_raw_string_literal] = ACTIONS(916), - [sym_float_literal] = ACTIONS(916), - [sym_block_comment] = ACTIONS(3), - }, - [236] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1989), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(1988), - [sym_array_type] = STATE(1432), - [sym_for_lifetimes] = STATE(1216), - [sym_function_type] = STATE(1432), - [sym_tuple_type] = STATE(1432), - [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), - [sym_bounded_type] = STATE(1432), - [sym_type_binding] = STATE(2307), - [sym_reference_type] = STATE(1432), - [sym_pointer_type] = STATE(1432), - [sym_empty_type] = STATE(1432), - [sym_abstract_type] = STATE(1432), - [sym_dynamic_type] = STATE(1432), - [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [sym_block] = STATE(2307), - [sym__literal] = STATE(2307), - [sym_string_literal] = STATE(2267), - [sym_boolean_literal] = STATE(2267), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(916), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(916), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_raw_string_literal] = ACTIONS(916), - [sym_float_literal] = ACTIONS(916), + }, + [229] = { + [sym_identifier] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_QMARK] = ACTIONS(548), + [anon_sym_u8] = ACTIONS(550), + [anon_sym_i8] = ACTIONS(550), + [anon_sym_u16] = ACTIONS(550), + [anon_sym_i16] = ACTIONS(550), + [anon_sym_u32] = ACTIONS(550), + [anon_sym_i32] = ACTIONS(550), + [anon_sym_u64] = ACTIONS(550), + [anon_sym_i64] = ACTIONS(550), + [anon_sym_u128] = ACTIONS(550), + [anon_sym_i128] = ACTIONS(550), + [anon_sym_isize] = ACTIONS(550), + [anon_sym_usize] = ACTIONS(550), + [anon_sym_f32] = ACTIONS(550), + [anon_sym_f64] = ACTIONS(550), + [anon_sym_bool] = ACTIONS(550), + [anon_sym_str] = ACTIONS(550), + [anon_sym_char] = ACTIONS(550), + [anon_sym_as] = ACTIONS(550), + [anon_sym_const] = ACTIONS(550), + [anon_sym_default] = ACTIONS(550), + [anon_sym_union] = ACTIONS(550), + [anon_sym_POUND] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(550), + [anon_sym_COMMA] = ACTIONS(548), + [anon_sym_ref] = ACTIONS(550), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_COLON_COLON] = ACTIONS(548), + [anon_sym__] = ACTIONS(550), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(548), + [sym_mutable_specifier] = ACTIONS(550), + [anon_sym_DOT_DOT] = ACTIONS(550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_PLUS_EQ] = ACTIONS(548), + [anon_sym_DASH_EQ] = ACTIONS(548), + [anon_sym_STAR_EQ] = ACTIONS(548), + [anon_sym_SLASH_EQ] = ACTIONS(548), + [anon_sym_PERCENT_EQ] = ACTIONS(548), + [anon_sym_AMP_EQ] = ACTIONS(548), + [anon_sym_PIPE_EQ] = ACTIONS(548), + [anon_sym_CARET_EQ] = ACTIONS(548), + [anon_sym_LT_LT_EQ] = ACTIONS(548), + [anon_sym_GT_GT_EQ] = ACTIONS(548), + [anon_sym_else] = ACTIONS(550), + [anon_sym_DOT] = ACTIONS(550), + [sym_integer_literal] = ACTIONS(548), + [aux_sym_string_literal_token1] = ACTIONS(548), + [sym_char_literal] = ACTIONS(548), + [anon_sym_true] = ACTIONS(550), + [anon_sym_false] = ACTIONS(550), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(550), + [sym_super] = ACTIONS(550), + [sym_crate] = ACTIONS(550), + [sym_metavariable] = ACTIONS(548), + [sym_raw_string_literal] = ACTIONS(548), + [sym_float_literal] = ACTIONS(548), [sym_block_comment] = ACTIONS(3), }, - [237] = { - [sym_identifier] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(654), - [anon_sym_i8] = ACTIONS(654), - [anon_sym_u16] = ACTIONS(654), - [anon_sym_i16] = ACTIONS(654), - [anon_sym_u32] = ACTIONS(654), - [anon_sym_i32] = ACTIONS(654), - [anon_sym_u64] = ACTIONS(654), - [anon_sym_i64] = ACTIONS(654), - [anon_sym_u128] = ACTIONS(654), - [anon_sym_i128] = ACTIONS(654), - [anon_sym_isize] = ACTIONS(654), - [anon_sym_usize] = ACTIONS(654), - [anon_sym_f32] = ACTIONS(654), - [anon_sym_f64] = ACTIONS(654), - [anon_sym_bool] = ACTIONS(654), - [anon_sym_str] = ACTIONS(654), - [anon_sym_char] = ACTIONS(654), - [anon_sym_as] = ACTIONS(654), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_union] = ACTIONS(654), - [anon_sym_POUND] = ACTIONS(652), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_ref] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_COLON_COLON] = ACTIONS(652), - [anon_sym__] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(652), - [sym_mutable_specifier] = ACTIONS(654), - [anon_sym_DOT_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT_EQ] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_SLASH_EQ] = ACTIONS(652), - [anon_sym_PERCENT_EQ] = ACTIONS(652), - [anon_sym_AMP_EQ] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(652), - [anon_sym_LT_LT_EQ] = ACTIONS(652), - [anon_sym_GT_GT_EQ] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(654), - [sym_integer_literal] = ACTIONS(652), - [aux_sym_string_literal_token1] = ACTIONS(652), - [sym_char_literal] = ACTIONS(652), - [anon_sym_true] = ACTIONS(654), - [anon_sym_false] = ACTIONS(654), + [230] = { + [sym_identifier] = ACTIONS(540), + [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_STAR] = ACTIONS(540), + [anon_sym_QMARK] = ACTIONS(538), + [anon_sym_u8] = ACTIONS(540), + [anon_sym_i8] = ACTIONS(540), + [anon_sym_u16] = ACTIONS(540), + [anon_sym_i16] = ACTIONS(540), + [anon_sym_u32] = ACTIONS(540), + [anon_sym_i32] = ACTIONS(540), + [anon_sym_u64] = ACTIONS(540), + [anon_sym_i64] = ACTIONS(540), + [anon_sym_u128] = ACTIONS(540), + [anon_sym_i128] = ACTIONS(540), + [anon_sym_isize] = ACTIONS(540), + [anon_sym_usize] = ACTIONS(540), + [anon_sym_f32] = ACTIONS(540), + [anon_sym_f64] = ACTIONS(540), + [anon_sym_bool] = ACTIONS(540), + [anon_sym_str] = ACTIONS(540), + [anon_sym_char] = ACTIONS(540), + [anon_sym_as] = ACTIONS(540), + [anon_sym_const] = ACTIONS(540), + [anon_sym_default] = ACTIONS(540), + [anon_sym_union] = ACTIONS(540), + [anon_sym_POUND] = ACTIONS(538), + [anon_sym_EQ] = ACTIONS(540), + [anon_sym_COMMA] = ACTIONS(538), + [anon_sym_ref] = ACTIONS(540), + [anon_sym_LT] = ACTIONS(540), + [anon_sym_GT] = ACTIONS(540), + [anon_sym_COLON_COLON] = ACTIONS(538), + [anon_sym__] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(540), + [anon_sym_DOT_DOT_DOT] = ACTIONS(538), + [sym_mutable_specifier] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_AMP_AMP] = ACTIONS(538), + [anon_sym_PIPE_PIPE] = ACTIONS(538), + [anon_sym_PIPE] = ACTIONS(540), + [anon_sym_CARET] = ACTIONS(540), + [anon_sym_EQ_EQ] = ACTIONS(538), + [anon_sym_BANG_EQ] = ACTIONS(538), + [anon_sym_LT_EQ] = ACTIONS(538), + [anon_sym_GT_EQ] = ACTIONS(538), + [anon_sym_LT_LT] = ACTIONS(540), + [anon_sym_GT_GT] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(540), + [anon_sym_PERCENT] = ACTIONS(540), + [anon_sym_PLUS_EQ] = ACTIONS(538), + [anon_sym_DASH_EQ] = ACTIONS(538), + [anon_sym_STAR_EQ] = ACTIONS(538), + [anon_sym_SLASH_EQ] = ACTIONS(538), + [anon_sym_PERCENT_EQ] = ACTIONS(538), + [anon_sym_AMP_EQ] = ACTIONS(538), + [anon_sym_PIPE_EQ] = ACTIONS(538), + [anon_sym_CARET_EQ] = ACTIONS(538), + [anon_sym_LT_LT_EQ] = ACTIONS(538), + [anon_sym_GT_GT_EQ] = ACTIONS(538), + [anon_sym_else] = ACTIONS(540), + [anon_sym_DOT] = ACTIONS(540), + [sym_integer_literal] = ACTIONS(538), + [aux_sym_string_literal_token1] = ACTIONS(538), + [sym_char_literal] = ACTIONS(538), + [anon_sym_true] = ACTIONS(540), + [anon_sym_false] = ACTIONS(540), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(540), + [sym_super] = ACTIONS(540), + [sym_crate] = ACTIONS(540), + [sym_metavariable] = ACTIONS(538), + [sym_raw_string_literal] = ACTIONS(538), + [sym_float_literal] = ACTIONS(538), + [sym_block_comment] = ACTIONS(3), + }, + [231] = { + [sym_identifier] = ACTIONS(520), + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(518), + [anon_sym_u8] = ACTIONS(520), + [anon_sym_i8] = ACTIONS(520), + [anon_sym_u16] = ACTIONS(520), + [anon_sym_i16] = ACTIONS(520), + [anon_sym_u32] = ACTIONS(520), + [anon_sym_i32] = ACTIONS(520), + [anon_sym_u64] = ACTIONS(520), + [anon_sym_i64] = ACTIONS(520), + [anon_sym_u128] = ACTIONS(520), + [anon_sym_i128] = ACTIONS(520), + [anon_sym_isize] = ACTIONS(520), + [anon_sym_usize] = ACTIONS(520), + [anon_sym_f32] = ACTIONS(520), + [anon_sym_f64] = ACTIONS(520), + [anon_sym_bool] = ACTIONS(520), + [anon_sym_str] = ACTIONS(520), + [anon_sym_char] = ACTIONS(520), + [anon_sym_as] = ACTIONS(520), + [anon_sym_const] = ACTIONS(520), + [anon_sym_default] = ACTIONS(520), + [anon_sym_union] = ACTIONS(520), + [anon_sym_POUND] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_ref] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(518), + [anon_sym__] = ACTIONS(520), + [anon_sym_AMP] = ACTIONS(520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(518), + [sym_mutable_specifier] = ACTIONS(520), + [anon_sym_DOT_DOT] = ACTIONS(520), + [anon_sym_DOT_DOT_EQ] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_AMP_AMP] = ACTIONS(518), + [anon_sym_PIPE_PIPE] = ACTIONS(518), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_CARET] = ACTIONS(520), + [anon_sym_EQ_EQ] = ACTIONS(518), + [anon_sym_BANG_EQ] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(518), + [anon_sym_LT_LT] = ACTIONS(520), + [anon_sym_GT_GT] = ACTIONS(520), + [anon_sym_SLASH] = ACTIONS(520), + [anon_sym_PERCENT] = ACTIONS(520), + [anon_sym_PLUS_EQ] = ACTIONS(518), + [anon_sym_DASH_EQ] = ACTIONS(518), + [anon_sym_STAR_EQ] = ACTIONS(518), + [anon_sym_SLASH_EQ] = ACTIONS(518), + [anon_sym_PERCENT_EQ] = ACTIONS(518), + [anon_sym_AMP_EQ] = ACTIONS(518), + [anon_sym_PIPE_EQ] = ACTIONS(518), + [anon_sym_CARET_EQ] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(518), + [anon_sym_GT_GT_EQ] = ACTIONS(518), + [anon_sym_else] = ACTIONS(520), + [anon_sym_DOT] = ACTIONS(520), + [sym_integer_literal] = ACTIONS(518), + [aux_sym_string_literal_token1] = ACTIONS(518), + [sym_char_literal] = ACTIONS(518), + [anon_sym_true] = ACTIONS(520), + [anon_sym_false] = ACTIONS(520), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(520), + [sym_super] = ACTIONS(520), + [sym_crate] = ACTIONS(520), + [sym_metavariable] = ACTIONS(518), + [sym_raw_string_literal] = ACTIONS(518), + [sym_float_literal] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + }, + [232] = { + [sym_identifier] = ACTIONS(674), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_PLUS] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_u8] = ACTIONS(674), + [anon_sym_i8] = ACTIONS(674), + [anon_sym_u16] = ACTIONS(674), + [anon_sym_i16] = ACTIONS(674), + [anon_sym_u32] = ACTIONS(674), + [anon_sym_i32] = ACTIONS(674), + [anon_sym_u64] = ACTIONS(674), + [anon_sym_i64] = ACTIONS(674), + [anon_sym_u128] = ACTIONS(674), + [anon_sym_i128] = ACTIONS(674), + [anon_sym_isize] = ACTIONS(674), + [anon_sym_usize] = ACTIONS(674), + [anon_sym_f32] = ACTIONS(674), + [anon_sym_f64] = ACTIONS(674), + [anon_sym_bool] = ACTIONS(674), + [anon_sym_str] = ACTIONS(674), + [anon_sym_char] = ACTIONS(674), + [anon_sym_as] = ACTIONS(674), + [anon_sym_const] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_union] = ACTIONS(674), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_ref] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym__] = ACTIONS(674), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [sym_mutable_specifier] = ACTIONS(674), + [anon_sym_DOT_DOT] = ACTIONS(674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(674), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_PIPE] = ACTIONS(674), + [anon_sym_CARET] = ACTIONS(674), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(674), + [anon_sym_SLASH] = ACTIONS(674), + [anon_sym_PERCENT] = ACTIONS(674), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_STAR_EQ] = ACTIONS(672), + [anon_sym_SLASH_EQ] = ACTIONS(672), + [anon_sym_PERCENT_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_CARET_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_DOT] = ACTIONS(674), + [sym_integer_literal] = ACTIONS(672), + [aux_sym_string_literal_token1] = ACTIONS(672), + [sym_char_literal] = ACTIONS(672), + [anon_sym_true] = ACTIONS(674), + [anon_sym_false] = ACTIONS(674), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(654), - [sym_super] = ACTIONS(654), - [sym_crate] = ACTIONS(654), - [sym_metavariable] = ACTIONS(652), - [sym_raw_string_literal] = ACTIONS(652), - [sym_float_literal] = ACTIONS(652), + [sym_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(672), + [sym_raw_string_literal] = ACTIONS(672), + [sym_float_literal] = ACTIONS(672), [sym_block_comment] = ACTIONS(3), }, - [238] = { + [233] = { [sym_identifier] = ACTIONS(670), [anon_sym_LPAREN] = ACTIONS(668), [anon_sym_RBRACE] = ACTIONS(668), @@ -41965,567 +41554,487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(668), [sym_block_comment] = ACTIONS(3), }, - [239] = { - [sym_identifier] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(658), - [anon_sym_i8] = ACTIONS(658), - [anon_sym_u16] = ACTIONS(658), - [anon_sym_i16] = ACTIONS(658), - [anon_sym_u32] = ACTIONS(658), - [anon_sym_i32] = ACTIONS(658), - [anon_sym_u64] = ACTIONS(658), - [anon_sym_i64] = ACTIONS(658), - [anon_sym_u128] = ACTIONS(658), - [anon_sym_i128] = ACTIONS(658), - [anon_sym_isize] = ACTIONS(658), - [anon_sym_usize] = ACTIONS(658), - [anon_sym_f32] = ACTIONS(658), - [anon_sym_f64] = ACTIONS(658), - [anon_sym_bool] = ACTIONS(658), - [anon_sym_str] = ACTIONS(658), - [anon_sym_char] = ACTIONS(658), - [anon_sym_as] = ACTIONS(658), - [anon_sym_const] = ACTIONS(658), - [anon_sym_default] = ACTIONS(658), - [anon_sym_union] = ACTIONS(658), - [anon_sym_POUND] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(658), - [anon_sym_COMMA] = ACTIONS(656), - [anon_sym_ref] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_COLON_COLON] = ACTIONS(656), - [anon_sym__] = ACTIONS(658), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [sym_mutable_specifier] = ACTIONS(658), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(656), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_AMP_AMP] = ACTIONS(656), - [anon_sym_PIPE_PIPE] = ACTIONS(656), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(656), - [anon_sym_BANG_EQ] = ACTIONS(656), - [anon_sym_LT_EQ] = ACTIONS(656), - [anon_sym_GT_EQ] = ACTIONS(656), - [anon_sym_LT_LT] = ACTIONS(658), - [anon_sym_GT_GT] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_PERCENT] = ACTIONS(658), - [anon_sym_PLUS_EQ] = ACTIONS(656), - [anon_sym_DASH_EQ] = ACTIONS(656), - [anon_sym_STAR_EQ] = ACTIONS(656), - [anon_sym_SLASH_EQ] = ACTIONS(656), - [anon_sym_PERCENT_EQ] = ACTIONS(656), - [anon_sym_AMP_EQ] = ACTIONS(656), - [anon_sym_PIPE_EQ] = ACTIONS(656), - [anon_sym_CARET_EQ] = ACTIONS(656), - [anon_sym_LT_LT_EQ] = ACTIONS(656), - [anon_sym_GT_GT_EQ] = ACTIONS(656), - [anon_sym_DOT] = ACTIONS(658), - [sym_integer_literal] = ACTIONS(656), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(656), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(658), - [sym_super] = ACTIONS(658), - [sym_crate] = ACTIONS(658), - [sym_metavariable] = ACTIONS(656), - [sym_raw_string_literal] = ACTIONS(656), - [sym_float_literal] = ACTIONS(656), - [sym_block_comment] = ACTIONS(3), - }, - [240] = { - [sym_identifier] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(622), - [anon_sym_QMARK] = ACTIONS(620), - [anon_sym_u8] = ACTIONS(622), - [anon_sym_i8] = ACTIONS(622), - [anon_sym_u16] = ACTIONS(622), - [anon_sym_i16] = ACTIONS(622), - [anon_sym_u32] = ACTIONS(622), - [anon_sym_i32] = ACTIONS(622), - [anon_sym_u64] = ACTIONS(622), - [anon_sym_i64] = ACTIONS(622), - [anon_sym_u128] = ACTIONS(622), - [anon_sym_i128] = ACTIONS(622), - [anon_sym_isize] = ACTIONS(622), - [anon_sym_usize] = ACTIONS(622), - [anon_sym_f32] = ACTIONS(622), - [anon_sym_f64] = ACTIONS(622), - [anon_sym_bool] = ACTIONS(622), - [anon_sym_str] = ACTIONS(622), - [anon_sym_char] = ACTIONS(622), - [anon_sym_as] = ACTIONS(622), - [anon_sym_const] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_union] = ACTIONS(622), - [anon_sym_POUND] = ACTIONS(620), - [anon_sym_EQ] = ACTIONS(622), - [anon_sym_COMMA] = ACTIONS(620), - [anon_sym_ref] = ACTIONS(622), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_COLON_COLON] = ACTIONS(620), - [anon_sym__] = ACTIONS(622), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(620), - [sym_mutable_specifier] = ACTIONS(622), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DOT_DOT_EQ] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(622), - [anon_sym_AMP_AMP] = ACTIONS(620), - [anon_sym_PIPE_PIPE] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(622), - [anon_sym_CARET] = ACTIONS(622), - [anon_sym_EQ_EQ] = ACTIONS(620), - [anon_sym_BANG_EQ] = ACTIONS(620), - [anon_sym_LT_EQ] = ACTIONS(620), - [anon_sym_GT_EQ] = ACTIONS(620), - [anon_sym_LT_LT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(622), - [anon_sym_SLASH] = ACTIONS(622), - [anon_sym_PERCENT] = ACTIONS(622), - [anon_sym_PLUS_EQ] = ACTIONS(620), - [anon_sym_DASH_EQ] = ACTIONS(620), - [anon_sym_STAR_EQ] = ACTIONS(620), - [anon_sym_SLASH_EQ] = ACTIONS(620), - [anon_sym_PERCENT_EQ] = ACTIONS(620), - [anon_sym_AMP_EQ] = ACTIONS(620), - [anon_sym_PIPE_EQ] = ACTIONS(620), - [anon_sym_CARET_EQ] = ACTIONS(620), - [anon_sym_LT_LT_EQ] = ACTIONS(620), - [anon_sym_GT_GT_EQ] = ACTIONS(620), - [anon_sym_DOT] = ACTIONS(622), - [sym_integer_literal] = ACTIONS(620), - [aux_sym_string_literal_token1] = ACTIONS(620), - [sym_char_literal] = ACTIONS(620), - [anon_sym_true] = ACTIONS(622), - [anon_sym_false] = ACTIONS(622), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(622), - [sym_super] = ACTIONS(622), - [sym_crate] = ACTIONS(622), - [sym_metavariable] = ACTIONS(620), - [sym_raw_string_literal] = ACTIONS(620), - [sym_float_literal] = ACTIONS(620), - [sym_block_comment] = ACTIONS(3), - }, - [241] = { - [sym_identifier] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(562), - [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_as] = ACTIONS(564), - [anon_sym_const] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_POUND] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(562), - [anon_sym_ref] = ACTIONS(924), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_COLON_COLON] = ACTIONS(926), - [anon_sym__] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(562), - [sym_mutable_specifier] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(562), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(562), - [anon_sym_DASH_EQ] = ACTIONS(562), - [anon_sym_STAR_EQ] = ACTIONS(562), - [anon_sym_SLASH_EQ] = ACTIONS(562), - [anon_sym_PERCENT_EQ] = ACTIONS(562), - [anon_sym_AMP_EQ] = ACTIONS(562), - [anon_sym_PIPE_EQ] = ACTIONS(562), - [anon_sym_CARET_EQ] = ACTIONS(562), - [anon_sym_LT_LT_EQ] = ACTIONS(562), - [anon_sym_GT_GT_EQ] = ACTIONS(562), - [anon_sym_DOT] = ACTIONS(564), - [sym_integer_literal] = ACTIONS(926), - [aux_sym_string_literal_token1] = ACTIONS(926), - [sym_char_literal] = ACTIONS(926), - [anon_sym_true] = ACTIONS(924), - [anon_sym_false] = ACTIONS(924), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(924), - [sym_super] = ACTIONS(924), - [sym_crate] = ACTIONS(924), - [sym_metavariable] = ACTIONS(926), - [sym_raw_string_literal] = ACTIONS(926), - [sym_float_literal] = ACTIONS(926), + [234] = { + [sym_identifier] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_QMARK] = ACTIONS(590), + [anon_sym_u8] = ACTIONS(592), + [anon_sym_i8] = ACTIONS(592), + [anon_sym_u16] = ACTIONS(592), + [anon_sym_i16] = ACTIONS(592), + [anon_sym_u32] = ACTIONS(592), + [anon_sym_i32] = ACTIONS(592), + [anon_sym_u64] = ACTIONS(592), + [anon_sym_i64] = ACTIONS(592), + [anon_sym_u128] = ACTIONS(592), + [anon_sym_i128] = ACTIONS(592), + [anon_sym_isize] = ACTIONS(592), + [anon_sym_usize] = ACTIONS(592), + [anon_sym_f32] = ACTIONS(592), + [anon_sym_f64] = ACTIONS(592), + [anon_sym_bool] = ACTIONS(592), + [anon_sym_str] = ACTIONS(592), + [anon_sym_char] = ACTIONS(592), + [anon_sym_as] = ACTIONS(592), + [anon_sym_const] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_union] = ACTIONS(592), + [anon_sym_POUND] = ACTIONS(590), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(590), + [anon_sym_ref] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_COLON_COLON] = ACTIONS(590), + [anon_sym__] = ACTIONS(592), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(590), + [sym_mutable_specifier] = ACTIONS(592), + [anon_sym_DOT_DOT] = ACTIONS(592), + [anon_sym_DOT_DOT_EQ] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(590), + [anon_sym_PIPE_PIPE] = ACTIONS(590), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(590), + [anon_sym_LT_EQ] = ACTIONS(590), + [anon_sym_GT_EQ] = ACTIONS(590), + [anon_sym_LT_LT] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_PLUS_EQ] = ACTIONS(590), + [anon_sym_DASH_EQ] = ACTIONS(590), + [anon_sym_STAR_EQ] = ACTIONS(590), + [anon_sym_SLASH_EQ] = ACTIONS(590), + [anon_sym_PERCENT_EQ] = ACTIONS(590), + [anon_sym_AMP_EQ] = ACTIONS(590), + [anon_sym_PIPE_EQ] = ACTIONS(590), + [anon_sym_CARET_EQ] = ACTIONS(590), + [anon_sym_LT_LT_EQ] = ACTIONS(590), + [anon_sym_GT_GT_EQ] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(592), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(590), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(592), + [anon_sym_false] = ACTIONS(592), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(592), + [sym_super] = ACTIONS(592), + [sym_crate] = ACTIONS(592), + [sym_metavariable] = ACTIONS(590), + [sym_raw_string_literal] = ACTIONS(590), + [sym_float_literal] = ACTIONS(590), [sym_block_comment] = ACTIONS(3), }, - [242] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1989), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(1988), - [sym_array_type] = STATE(1432), - [sym_for_lifetimes] = STATE(1216), - [sym_function_type] = STATE(1432), - [sym_tuple_type] = STATE(1432), - [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), - [sym_bounded_type] = STATE(1432), - [sym_type_binding] = STATE(2307), - [sym_reference_type] = STATE(1432), - [sym_pointer_type] = STATE(1432), - [sym_empty_type] = STATE(1432), - [sym_abstract_type] = STATE(1432), - [sym_dynamic_type] = STATE(1432), - [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [sym_block] = STATE(2307), - [sym__literal] = STATE(2307), - [sym_string_literal] = STATE(2267), - [sym_boolean_literal] = STATE(2267), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [235] = { [sym_identifier] = ACTIONS(896), [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(916), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(916), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_raw_string_literal] = ACTIONS(916), - [sym_float_literal] = ACTIONS(916), - [sym_block_comment] = ACTIONS(3), - }, - [243] = { - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RBRACE] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(660), - [anon_sym_u8] = ACTIONS(662), - [anon_sym_i8] = ACTIONS(662), - [anon_sym_u16] = ACTIONS(662), - [anon_sym_i16] = ACTIONS(662), - [anon_sym_u32] = ACTIONS(662), - [anon_sym_i32] = ACTIONS(662), - [anon_sym_u64] = ACTIONS(662), - [anon_sym_i64] = ACTIONS(662), - [anon_sym_u128] = ACTIONS(662), - [anon_sym_i128] = ACTIONS(662), - [anon_sym_isize] = ACTIONS(662), - [anon_sym_usize] = ACTIONS(662), - [anon_sym_f32] = ACTIONS(662), - [anon_sym_f64] = ACTIONS(662), - [anon_sym_bool] = ACTIONS(662), - [anon_sym_str] = ACTIONS(662), - [anon_sym_char] = ACTIONS(662), - [anon_sym_as] = ACTIONS(662), - [anon_sym_const] = ACTIONS(662), - [anon_sym_default] = ACTIONS(662), - [anon_sym_union] = ACTIONS(662), - [anon_sym_POUND] = ACTIONS(660), - [anon_sym_EQ] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(660), - [anon_sym_ref] = ACTIONS(662), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_COLON_COLON] = ACTIONS(660), - [anon_sym__] = ACTIONS(662), - [anon_sym_AMP] = ACTIONS(662), - [anon_sym_DOT_DOT_DOT] = ACTIONS(660), - [sym_mutable_specifier] = ACTIONS(662), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_DOT_DOT_EQ] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(660), - [anon_sym_PIPE_PIPE] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(662), - [anon_sym_CARET] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(660), - [anon_sym_LT_LT] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_SLASH] = ACTIONS(662), - [anon_sym_PERCENT] = ACTIONS(662), - [anon_sym_PLUS_EQ] = ACTIONS(660), - [anon_sym_DASH_EQ] = ACTIONS(660), - [anon_sym_STAR_EQ] = ACTIONS(660), - [anon_sym_SLASH_EQ] = ACTIONS(660), - [anon_sym_PERCENT_EQ] = ACTIONS(660), - [anon_sym_AMP_EQ] = ACTIONS(660), - [anon_sym_PIPE_EQ] = ACTIONS(660), - [anon_sym_CARET_EQ] = ACTIONS(660), - [anon_sym_LT_LT_EQ] = ACTIONS(660), - [anon_sym_GT_GT_EQ] = ACTIONS(660), - [anon_sym_DOT] = ACTIONS(662), - [sym_integer_literal] = ACTIONS(660), - [aux_sym_string_literal_token1] = ACTIONS(660), - [sym_char_literal] = ACTIONS(660), - [anon_sym_true] = ACTIONS(662), - [anon_sym_false] = ACTIONS(662), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(662), - [sym_super] = ACTIONS(662), - [sym_crate] = ACTIONS(662), - [sym_metavariable] = ACTIONS(660), - [sym_raw_string_literal] = ACTIONS(660), - [sym_float_literal] = ACTIONS(660), - [sym_block_comment] = ACTIONS(3), - }, - [244] = { - [sym_identifier] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_RBRACE] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(678), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_ref] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym__] = ACTIONS(678), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [sym_mutable_specifier] = ACTIONS(678), - [anon_sym_DOT_DOT] = ACTIONS(678), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(678), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(678), - [anon_sym_CARET] = ACTIONS(678), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_PERCENT] = ACTIONS(678), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(676), - [aux_sym_string_literal_token1] = ACTIONS(676), - [sym_char_literal] = ACTIONS(676), - [anon_sym_true] = ACTIONS(678), - [anon_sym_false] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [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_as] = ACTIONS(568), + [anon_sym_const] = ACTIONS(896), + [anon_sym_default] = ACTIONS(896), + [anon_sym_union] = ACTIONS(896), + [anon_sym_POUND] = ACTIONS(898), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_ref] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(896), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(898), + [anon_sym__] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [sym_mutable_specifier] = ACTIONS(896), + [anon_sym_DOT_DOT] = ACTIONS(896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(898), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(898), + [anon_sym_true] = ACTIONS(896), + [anon_sym_false] = ACTIONS(896), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym_metavariable] = ACTIONS(676), - [sym_raw_string_literal] = ACTIONS(676), - [sym_float_literal] = ACTIONS(676), + [sym_self] = ACTIONS(896), + [sym_super] = ACTIONS(896), + [sym_crate] = ACTIONS(896), + [sym_metavariable] = ACTIONS(898), + [sym_raw_string_literal] = ACTIONS(898), + [sym_float_literal] = ACTIONS(898), [sym_block_comment] = ACTIONS(3), }, - [245] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1989), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(1988), + [236] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1992), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(1994), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), - [sym_type_binding] = STATE(2307), + [sym_type_binding] = STATE(2314), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), [sym_empty_type] = STATE(1432), [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [sym_block] = STATE(2307), - [sym__literal] = STATE(2307), - [sym_string_literal] = STATE(2267), - [sym_boolean_literal] = STATE(2267), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(902), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [sym_block] = STATE(2314), + [sym__literal] = STATE(2314), + [sym_string_literal] = STATE(2237), + [sym_boolean_literal] = STATE(2237), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(930), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_GT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(916), + [sym_integer_literal] = ACTIONS(920), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(916), + [sym_char_literal] = ACTIONS(920), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_raw_string_literal] = ACTIONS(916), - [sym_float_literal] = ACTIONS(916), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_raw_string_literal] = ACTIONS(920), + [sym_float_literal] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [246] = { + [237] = { + [sym_identifier] = ACTIONS(588), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(586), + [anon_sym_u8] = ACTIONS(588), + [anon_sym_i8] = ACTIONS(588), + [anon_sym_u16] = ACTIONS(588), + [anon_sym_i16] = ACTIONS(588), + [anon_sym_u32] = ACTIONS(588), + [anon_sym_i32] = ACTIONS(588), + [anon_sym_u64] = ACTIONS(588), + [anon_sym_i64] = ACTIONS(588), + [anon_sym_u128] = ACTIONS(588), + [anon_sym_i128] = ACTIONS(588), + [anon_sym_isize] = ACTIONS(588), + [anon_sym_usize] = ACTIONS(588), + [anon_sym_f32] = ACTIONS(588), + [anon_sym_f64] = ACTIONS(588), + [anon_sym_bool] = ACTIONS(588), + [anon_sym_str] = ACTIONS(588), + [anon_sym_char] = ACTIONS(588), + [anon_sym_as] = ACTIONS(588), + [anon_sym_const] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_union] = ACTIONS(588), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(588), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_ref] = ACTIONS(588), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_GT] = ACTIONS(588), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym__] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(586), + [sym_mutable_specifier] = ACTIONS(588), + [anon_sym_DOT_DOT] = ACTIONS(588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_AMP_AMP] = ACTIONS(586), + [anon_sym_PIPE_PIPE] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(588), + [anon_sym_PERCENT] = ACTIONS(588), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_STAR_EQ] = ACTIONS(586), + [anon_sym_SLASH_EQ] = ACTIONS(586), + [anon_sym_PERCENT_EQ] = ACTIONS(586), + [anon_sym_AMP_EQ] = ACTIONS(586), + [anon_sym_PIPE_EQ] = ACTIONS(586), + [anon_sym_CARET_EQ] = ACTIONS(586), + [anon_sym_LT_LT_EQ] = ACTIONS(586), + [anon_sym_GT_GT_EQ] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(586), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(588), + [anon_sym_false] = ACTIONS(588), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(588), + [sym_super] = ACTIONS(588), + [sym_crate] = ACTIONS(588), + [sym_metavariable] = ACTIONS(586), + [sym_raw_string_literal] = ACTIONS(586), + [sym_float_literal] = ACTIONS(586), + [sym_block_comment] = ACTIONS(3), + }, + [238] = { + [sym_identifier] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_u8] = ACTIONS(630), + [anon_sym_i8] = ACTIONS(630), + [anon_sym_u16] = ACTIONS(630), + [anon_sym_i16] = ACTIONS(630), + [anon_sym_u32] = ACTIONS(630), + [anon_sym_i32] = ACTIONS(630), + [anon_sym_u64] = ACTIONS(630), + [anon_sym_i64] = ACTIONS(630), + [anon_sym_u128] = ACTIONS(630), + [anon_sym_i128] = ACTIONS(630), + [anon_sym_isize] = ACTIONS(630), + [anon_sym_usize] = ACTIONS(630), + [anon_sym_f32] = ACTIONS(630), + [anon_sym_f64] = ACTIONS(630), + [anon_sym_bool] = ACTIONS(630), + [anon_sym_str] = ACTIONS(630), + [anon_sym_char] = ACTIONS(630), + [anon_sym_as] = ACTIONS(630), + [anon_sym_const] = ACTIONS(630), + [anon_sym_default] = ACTIONS(630), + [anon_sym_union] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(628), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(628), + [anon_sym_ref] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_COLON_COLON] = ACTIONS(628), + [anon_sym__] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(630), + [anon_sym_DOT_DOT_DOT] = ACTIONS(628), + [sym_mutable_specifier] = ACTIONS(630), + [anon_sym_DOT_DOT] = ACTIONS(630), + [anon_sym_DOT_DOT_EQ] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_PIPE_PIPE] = ACTIONS(628), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym_EQ_EQ] = ACTIONS(628), + [anon_sym_BANG_EQ] = ACTIONS(628), + [anon_sym_LT_EQ] = ACTIONS(628), + [anon_sym_GT_EQ] = ACTIONS(628), + [anon_sym_LT_LT] = ACTIONS(630), + [anon_sym_GT_GT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_PLUS_EQ] = ACTIONS(628), + [anon_sym_DASH_EQ] = ACTIONS(628), + [anon_sym_STAR_EQ] = ACTIONS(628), + [anon_sym_SLASH_EQ] = ACTIONS(628), + [anon_sym_PERCENT_EQ] = ACTIONS(628), + [anon_sym_AMP_EQ] = ACTIONS(628), + [anon_sym_PIPE_EQ] = ACTIONS(628), + [anon_sym_CARET_EQ] = ACTIONS(628), + [anon_sym_LT_LT_EQ] = ACTIONS(628), + [anon_sym_GT_GT_EQ] = ACTIONS(628), + [anon_sym_DOT] = ACTIONS(630), + [sym_integer_literal] = ACTIONS(628), + [aux_sym_string_literal_token1] = ACTIONS(628), + [sym_char_literal] = ACTIONS(628), + [anon_sym_true] = ACTIONS(630), + [anon_sym_false] = ACTIONS(630), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(630), + [sym_super] = ACTIONS(630), + [sym_crate] = ACTIONS(630), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(628), + [sym_float_literal] = ACTIONS(628), + [sym_block_comment] = ACTIONS(3), + }, + [239] = { + [sym_identifier] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(638), + [anon_sym_QMARK] = ACTIONS(636), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_POUND] = ACTIONS(636), + [anon_sym_EQ] = ACTIONS(638), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_ref] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_COLON_COLON] = ACTIONS(636), + [anon_sym__] = ACTIONS(638), + [anon_sym_AMP] = ACTIONS(638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(636), + [sym_mutable_specifier] = ACTIONS(638), + [anon_sym_DOT_DOT] = ACTIONS(638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(638), + [anon_sym_AMP_AMP] = ACTIONS(636), + [anon_sym_PIPE_PIPE] = ACTIONS(636), + [anon_sym_PIPE] = ACTIONS(638), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_EQ_EQ] = ACTIONS(636), + [anon_sym_BANG_EQ] = ACTIONS(636), + [anon_sym_LT_EQ] = ACTIONS(636), + [anon_sym_GT_EQ] = ACTIONS(636), + [anon_sym_LT_LT] = ACTIONS(638), + [anon_sym_GT_GT] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(638), + [anon_sym_PERCENT] = ACTIONS(638), + [anon_sym_PLUS_EQ] = ACTIONS(636), + [anon_sym_DASH_EQ] = ACTIONS(636), + [anon_sym_STAR_EQ] = ACTIONS(636), + [anon_sym_SLASH_EQ] = ACTIONS(636), + [anon_sym_PERCENT_EQ] = ACTIONS(636), + [anon_sym_AMP_EQ] = ACTIONS(636), + [anon_sym_PIPE_EQ] = ACTIONS(636), + [anon_sym_CARET_EQ] = ACTIONS(636), + [anon_sym_LT_LT_EQ] = ACTIONS(636), + [anon_sym_GT_GT_EQ] = ACTIONS(636), + [anon_sym_DOT] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(636), + [aux_sym_string_literal_token1] = ACTIONS(636), + [sym_char_literal] = ACTIONS(636), + [anon_sym_true] = ACTIONS(638), + [anon_sym_false] = ACTIONS(638), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(636), + [sym_raw_string_literal] = ACTIONS(636), + [sym_float_literal] = ACTIONS(636), + [sym_block_comment] = ACTIONS(3), + }, + [240] = { [sym_identifier] = ACTIONS(666), [anon_sym_LPAREN] = ACTIONS(664), [anon_sym_RBRACE] = ACTIONS(664), @@ -42605,327 +42114,567 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(664), [sym_block_comment] = ACTIONS(3), }, - [247] = { - [sym_identifier] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(640), - [anon_sym_PLUS] = ACTIONS(642), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(642), - [anon_sym_i8] = ACTIONS(642), - [anon_sym_u16] = ACTIONS(642), - [anon_sym_i16] = ACTIONS(642), - [anon_sym_u32] = ACTIONS(642), - [anon_sym_i32] = ACTIONS(642), - [anon_sym_u64] = ACTIONS(642), - [anon_sym_i64] = ACTIONS(642), - [anon_sym_u128] = ACTIONS(642), - [anon_sym_i128] = ACTIONS(642), - [anon_sym_isize] = ACTIONS(642), - [anon_sym_usize] = ACTIONS(642), - [anon_sym_f32] = ACTIONS(642), - [anon_sym_f64] = ACTIONS(642), - [anon_sym_bool] = ACTIONS(642), - [anon_sym_str] = ACTIONS(642), - [anon_sym_char] = ACTIONS(642), - [anon_sym_as] = ACTIONS(642), - [anon_sym_const] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), - [anon_sym_union] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(642), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_ref] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(642), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym__] = ACTIONS(642), - [anon_sym_AMP] = ACTIONS(642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [sym_mutable_specifier] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(642), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_CARET] = ACTIONS(642), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(642), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_DOT] = ACTIONS(642), - [sym_integer_literal] = ACTIONS(640), - [aux_sym_string_literal_token1] = ACTIONS(640), - [sym_char_literal] = ACTIONS(640), - [anon_sym_true] = ACTIONS(642), - [anon_sym_false] = ACTIONS(642), + [241] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1992), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(1994), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), + [sym_bounded_type] = STATE(1432), + [sym_type_binding] = STATE(2314), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [sym_block] = STATE(2314), + [sym__literal] = STATE(2314), + [sym_string_literal] = STATE(2237), + [sym_boolean_literal] = STATE(2237), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(920), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(920), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_raw_string_literal] = ACTIONS(920), + [sym_float_literal] = ACTIONS(920), + [sym_block_comment] = ACTIONS(3), + }, + [242] = { + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(648), + [anon_sym_u8] = ACTIONS(650), + [anon_sym_i8] = ACTIONS(650), + [anon_sym_u16] = ACTIONS(650), + [anon_sym_i16] = ACTIONS(650), + [anon_sym_u32] = ACTIONS(650), + [anon_sym_i32] = ACTIONS(650), + [anon_sym_u64] = ACTIONS(650), + [anon_sym_i64] = ACTIONS(650), + [anon_sym_u128] = ACTIONS(650), + [anon_sym_i128] = ACTIONS(650), + [anon_sym_isize] = ACTIONS(650), + [anon_sym_usize] = ACTIONS(650), + [anon_sym_f32] = ACTIONS(650), + [anon_sym_f64] = ACTIONS(650), + [anon_sym_bool] = ACTIONS(650), + [anon_sym_str] = ACTIONS(650), + [anon_sym_char] = ACTIONS(650), + [anon_sym_as] = ACTIONS(650), + [anon_sym_const] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_union] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(648), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(648), + [anon_sym_ref] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym__] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(648), + [sym_mutable_specifier] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(648), + [anon_sym_DASH_EQ] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(648), + [anon_sym_SLASH_EQ] = ACTIONS(648), + [anon_sym_PERCENT_EQ] = ACTIONS(648), + [anon_sym_AMP_EQ] = ACTIONS(648), + [anon_sym_PIPE_EQ] = ACTIONS(648), + [anon_sym_CARET_EQ] = ACTIONS(648), + [anon_sym_LT_LT_EQ] = ACTIONS(648), + [anon_sym_GT_GT_EQ] = ACTIONS(648), + [anon_sym_DOT] = ACTIONS(650), + [sym_integer_literal] = ACTIONS(648), + [aux_sym_string_literal_token1] = ACTIONS(648), + [sym_char_literal] = ACTIONS(648), + [anon_sym_true] = ACTIONS(650), + [anon_sym_false] = ACTIONS(650), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(650), + [sym_super] = ACTIONS(650), + [sym_crate] = ACTIONS(650), + [sym_metavariable] = ACTIONS(648), + [sym_raw_string_literal] = ACTIONS(648), + [sym_float_literal] = ACTIONS(648), + [sym_block_comment] = ACTIONS(3), + }, + [243] = { + [sym_identifier] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_QMARK] = ACTIONS(644), + [anon_sym_u8] = ACTIONS(646), + [anon_sym_i8] = ACTIONS(646), + [anon_sym_u16] = ACTIONS(646), + [anon_sym_i16] = ACTIONS(646), + [anon_sym_u32] = ACTIONS(646), + [anon_sym_i32] = ACTIONS(646), + [anon_sym_u64] = ACTIONS(646), + [anon_sym_i64] = ACTIONS(646), + [anon_sym_u128] = ACTIONS(646), + [anon_sym_i128] = ACTIONS(646), + [anon_sym_isize] = ACTIONS(646), + [anon_sym_usize] = ACTIONS(646), + [anon_sym_f32] = ACTIONS(646), + [anon_sym_f64] = ACTIONS(646), + [anon_sym_bool] = ACTIONS(646), + [anon_sym_str] = ACTIONS(646), + [anon_sym_char] = ACTIONS(646), + [anon_sym_as] = ACTIONS(646), + [anon_sym_const] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_union] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_ref] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(644), + [anon_sym__] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(644), + [sym_mutable_specifier] = ACTIONS(646), + [anon_sym_DOT_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_LT_LT] = ACTIONS(646), + [anon_sym_GT_GT] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PERCENT] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_SLASH_EQ] = ACTIONS(644), + [anon_sym_PERCENT_EQ] = ACTIONS(644), + [anon_sym_AMP_EQ] = ACTIONS(644), + [anon_sym_PIPE_EQ] = ACTIONS(644), + [anon_sym_CARET_EQ] = ACTIONS(644), + [anon_sym_LT_LT_EQ] = ACTIONS(644), + [anon_sym_GT_GT_EQ] = ACTIONS(644), + [anon_sym_DOT] = ACTIONS(646), + [sym_integer_literal] = ACTIONS(644), + [aux_sym_string_literal_token1] = ACTIONS(644), + [sym_char_literal] = ACTIONS(644), + [anon_sym_true] = ACTIONS(646), + [anon_sym_false] = ACTIONS(646), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(646), + [sym_super] = ACTIONS(646), + [sym_crate] = ACTIONS(646), + [sym_metavariable] = ACTIONS(644), + [sym_raw_string_literal] = ACTIONS(644), + [sym_float_literal] = ACTIONS(644), + [sym_block_comment] = ACTIONS(3), + }, + [244] = { + [sym_identifier] = ACTIONS(662), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_QMARK] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(662), + [anon_sym_i8] = ACTIONS(662), + [anon_sym_u16] = ACTIONS(662), + [anon_sym_i16] = ACTIONS(662), + [anon_sym_u32] = ACTIONS(662), + [anon_sym_i32] = ACTIONS(662), + [anon_sym_u64] = ACTIONS(662), + [anon_sym_i64] = ACTIONS(662), + [anon_sym_u128] = ACTIONS(662), + [anon_sym_i128] = ACTIONS(662), + [anon_sym_isize] = ACTIONS(662), + [anon_sym_usize] = ACTIONS(662), + [anon_sym_f32] = ACTIONS(662), + [anon_sym_f64] = ACTIONS(662), + [anon_sym_bool] = ACTIONS(662), + [anon_sym_str] = ACTIONS(662), + [anon_sym_char] = ACTIONS(662), + [anon_sym_as] = ACTIONS(662), + [anon_sym_const] = ACTIONS(662), + [anon_sym_default] = ACTIONS(662), + [anon_sym_union] = ACTIONS(662), + [anon_sym_POUND] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(662), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_ref] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(662), + [anon_sym_GT] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(660), + [anon_sym__] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(660), + [sym_mutable_specifier] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT_EQ] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(662), + [anon_sym_EQ_EQ] = ACTIONS(660), + [anon_sym_BANG_EQ] = ACTIONS(660), + [anon_sym_LT_EQ] = ACTIONS(660), + [anon_sym_GT_EQ] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(662), + [anon_sym_SLASH] = ACTIONS(662), + [anon_sym_PERCENT] = ACTIONS(662), + [anon_sym_PLUS_EQ] = ACTIONS(660), + [anon_sym_DASH_EQ] = ACTIONS(660), + [anon_sym_STAR_EQ] = ACTIONS(660), + [anon_sym_SLASH_EQ] = ACTIONS(660), + [anon_sym_PERCENT_EQ] = ACTIONS(660), + [anon_sym_AMP_EQ] = ACTIONS(660), + [anon_sym_PIPE_EQ] = ACTIONS(660), + [anon_sym_CARET_EQ] = ACTIONS(660), + [anon_sym_LT_LT_EQ] = ACTIONS(660), + [anon_sym_GT_GT_EQ] = ACTIONS(660), + [anon_sym_DOT] = ACTIONS(662), + [sym_integer_literal] = ACTIONS(660), + [aux_sym_string_literal_token1] = ACTIONS(660), + [sym_char_literal] = ACTIONS(660), + [anon_sym_true] = ACTIONS(662), + [anon_sym_false] = ACTIONS(662), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(642), - [sym_super] = ACTIONS(642), - [sym_crate] = ACTIONS(642), - [sym_metavariable] = ACTIONS(640), - [sym_raw_string_literal] = ACTIONS(640), - [sym_float_literal] = ACTIONS(640), + [sym_self] = ACTIONS(662), + [sym_super] = ACTIONS(662), + [sym_crate] = ACTIONS(662), + [sym_metavariable] = ACTIONS(660), + [sym_raw_string_literal] = ACTIONS(660), + [sym_float_literal] = ACTIONS(660), [sym_block_comment] = ACTIONS(3), }, - [248] = { - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_EQ] = ACTIONS(638), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_ref] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(638), - [anon_sym_COLON_COLON] = ACTIONS(636), - [anon_sym__] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(636), - [sym_mutable_specifier] = ACTIONS(638), - [anon_sym_DOT_DOT] = ACTIONS(638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(638), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_LT_LT] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_SLASH] = ACTIONS(638), - [anon_sym_PERCENT] = ACTIONS(638), - [anon_sym_PLUS_EQ] = ACTIONS(636), - [anon_sym_DASH_EQ] = ACTIONS(636), - [anon_sym_STAR_EQ] = ACTIONS(636), - [anon_sym_SLASH_EQ] = ACTIONS(636), - [anon_sym_PERCENT_EQ] = ACTIONS(636), - [anon_sym_AMP_EQ] = ACTIONS(636), - [anon_sym_PIPE_EQ] = ACTIONS(636), - [anon_sym_CARET_EQ] = ACTIONS(636), - [anon_sym_LT_LT_EQ] = ACTIONS(636), - [anon_sym_GT_GT_EQ] = ACTIONS(636), - [anon_sym_DOT] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(636), - [aux_sym_string_literal_token1] = ACTIONS(636), - [sym_char_literal] = ACTIONS(636), - [anon_sym_true] = ACTIONS(638), - [anon_sym_false] = ACTIONS(638), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(636), - [sym_raw_string_literal] = ACTIONS(636), - [sym_float_literal] = ACTIONS(636), + [245] = { + [sym_identifier] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_u8] = ACTIONS(600), + [anon_sym_i8] = ACTIONS(600), + [anon_sym_u16] = ACTIONS(600), + [anon_sym_i16] = ACTIONS(600), + [anon_sym_u32] = ACTIONS(600), + [anon_sym_i32] = ACTIONS(600), + [anon_sym_u64] = ACTIONS(600), + [anon_sym_i64] = ACTIONS(600), + [anon_sym_u128] = ACTIONS(600), + [anon_sym_i128] = ACTIONS(600), + [anon_sym_isize] = ACTIONS(600), + [anon_sym_usize] = ACTIONS(600), + [anon_sym_f32] = ACTIONS(600), + [anon_sym_f64] = ACTIONS(600), + [anon_sym_bool] = ACTIONS(600), + [anon_sym_str] = ACTIONS(600), + [anon_sym_char] = ACTIONS(600), + [anon_sym_as] = ACTIONS(600), + [anon_sym_const] = ACTIONS(600), + [anon_sym_default] = ACTIONS(600), + [anon_sym_union] = ACTIONS(600), + [anon_sym_POUND] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(600), + [anon_sym_COMMA] = ACTIONS(598), + [anon_sym_ref] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(598), + [anon_sym__] = ACTIONS(600), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(598), + [sym_mutable_specifier] = ACTIONS(600), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT_EQ] = ACTIONS(598), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(598), + [anon_sym_PIPE] = ACTIONS(600), + [anon_sym_CARET] = ACTIONS(600), + [anon_sym_EQ_EQ] = ACTIONS(598), + [anon_sym_BANG_EQ] = ACTIONS(598), + [anon_sym_LT_EQ] = ACTIONS(598), + [anon_sym_GT_EQ] = ACTIONS(598), + [anon_sym_LT_LT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_SLASH] = ACTIONS(600), + [anon_sym_PERCENT] = ACTIONS(600), + [anon_sym_PLUS_EQ] = ACTIONS(598), + [anon_sym_DASH_EQ] = ACTIONS(598), + [anon_sym_STAR_EQ] = ACTIONS(598), + [anon_sym_SLASH_EQ] = ACTIONS(598), + [anon_sym_PERCENT_EQ] = ACTIONS(598), + [anon_sym_AMP_EQ] = ACTIONS(598), + [anon_sym_PIPE_EQ] = ACTIONS(598), + [anon_sym_CARET_EQ] = ACTIONS(598), + [anon_sym_LT_LT_EQ] = ACTIONS(598), + [anon_sym_GT_GT_EQ] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(600), + [sym_integer_literal] = ACTIONS(598), + [aux_sym_string_literal_token1] = ACTIONS(598), + [sym_char_literal] = ACTIONS(598), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_crate] = ACTIONS(600), + [sym_metavariable] = ACTIONS(598), + [sym_raw_string_literal] = ACTIONS(598), + [sym_float_literal] = ACTIONS(598), [sym_block_comment] = ACTIONS(3), }, - [249] = { - [sym_identifier] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_QMARK] = ACTIONS(624), - [anon_sym_u8] = ACTIONS(626), - [anon_sym_i8] = ACTIONS(626), - [anon_sym_u16] = ACTIONS(626), - [anon_sym_i16] = ACTIONS(626), - [anon_sym_u32] = ACTIONS(626), - [anon_sym_i32] = ACTIONS(626), - [anon_sym_u64] = ACTIONS(626), - [anon_sym_i64] = ACTIONS(626), - [anon_sym_u128] = ACTIONS(626), - [anon_sym_i128] = ACTIONS(626), - [anon_sym_isize] = ACTIONS(626), - [anon_sym_usize] = ACTIONS(626), - [anon_sym_f32] = ACTIONS(626), - [anon_sym_f64] = ACTIONS(626), - [anon_sym_bool] = ACTIONS(626), - [anon_sym_str] = ACTIONS(626), - [anon_sym_char] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_POUND] = ACTIONS(624), - [anon_sym_EQ] = ACTIONS(626), - [anon_sym_COMMA] = ACTIONS(624), - [anon_sym_ref] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_COLON_COLON] = ACTIONS(624), - [anon_sym__] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(624), - [sym_mutable_specifier] = ACTIONS(626), - [anon_sym_DOT_DOT] = ACTIONS(626), - [anon_sym_DOT_DOT_EQ] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_CARET] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_BANG_EQ] = ACTIONS(624), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_SLASH] = ACTIONS(626), - [anon_sym_PERCENT] = ACTIONS(626), - [anon_sym_PLUS_EQ] = ACTIONS(624), - [anon_sym_DASH_EQ] = ACTIONS(624), - [anon_sym_STAR_EQ] = ACTIONS(624), - [anon_sym_SLASH_EQ] = ACTIONS(624), - [anon_sym_PERCENT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(624), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_DOT] = ACTIONS(626), - [sym_integer_literal] = ACTIONS(624), - [aux_sym_string_literal_token1] = ACTIONS(624), - [sym_char_literal] = ACTIONS(624), - [anon_sym_true] = ACTIONS(626), - [anon_sym_false] = ACTIONS(626), + [246] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1992), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(1994), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), + [sym_bounded_type] = STATE(1432), + [sym_type_binding] = STATE(2314), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [sym_block] = STATE(2314), + [sym__literal] = STATE(2314), + [sym_string_literal] = STATE(2237), + [sym_boolean_literal] = STATE(2237), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(920), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(920), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_crate] = ACTIONS(626), - [sym_metavariable] = ACTIONS(624), - [sym_raw_string_literal] = ACTIONS(624), - [sym_float_literal] = ACTIONS(624), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_raw_string_literal] = ACTIONS(920), + [sym_float_literal] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, - [250] = { - [sym_identifier] = ACTIONS(630), - [anon_sym_LPAREN] = ACTIONS(628), - [anon_sym_RBRACE] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_PLUS] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_u8] = ACTIONS(630), - [anon_sym_i8] = ACTIONS(630), - [anon_sym_u16] = ACTIONS(630), - [anon_sym_i16] = ACTIONS(630), - [anon_sym_u32] = ACTIONS(630), - [anon_sym_i32] = ACTIONS(630), - [anon_sym_u64] = ACTIONS(630), - [anon_sym_i64] = ACTIONS(630), - [anon_sym_u128] = ACTIONS(630), - [anon_sym_i128] = ACTIONS(630), - [anon_sym_isize] = ACTIONS(630), - [anon_sym_usize] = ACTIONS(630), - [anon_sym_f32] = ACTIONS(630), - [anon_sym_f64] = ACTIONS(630), - [anon_sym_bool] = ACTIONS(630), - [anon_sym_str] = ACTIONS(630), - [anon_sym_char] = ACTIONS(630), - [anon_sym_as] = ACTIONS(630), - [anon_sym_const] = ACTIONS(630), - [anon_sym_default] = ACTIONS(630), - [anon_sym_union] = ACTIONS(630), - [anon_sym_POUND] = ACTIONS(628), - [anon_sym_EQ] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(628), - [anon_sym_ref] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_GT] = ACTIONS(630), - [anon_sym_COLON_COLON] = ACTIONS(628), - [anon_sym__] = ACTIONS(630), - [anon_sym_AMP] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [sym_mutable_specifier] = ACTIONS(630), - [anon_sym_DOT_DOT] = ACTIONS(630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(628), - [anon_sym_PIPE_PIPE] = ACTIONS(628), - [anon_sym_PIPE] = ACTIONS(630), - [anon_sym_CARET] = ACTIONS(630), - [anon_sym_EQ_EQ] = ACTIONS(628), - [anon_sym_BANG_EQ] = ACTIONS(628), - [anon_sym_LT_EQ] = ACTIONS(628), - [anon_sym_GT_EQ] = ACTIONS(628), - [anon_sym_LT_LT] = ACTIONS(630), - [anon_sym_GT_GT] = ACTIONS(630), - [anon_sym_SLASH] = ACTIONS(630), - [anon_sym_PERCENT] = ACTIONS(630), - [anon_sym_PLUS_EQ] = ACTIONS(628), - [anon_sym_DASH_EQ] = ACTIONS(628), - [anon_sym_STAR_EQ] = ACTIONS(628), - [anon_sym_SLASH_EQ] = ACTIONS(628), - [anon_sym_PERCENT_EQ] = ACTIONS(628), - [anon_sym_AMP_EQ] = ACTIONS(628), - [anon_sym_PIPE_EQ] = ACTIONS(628), - [anon_sym_CARET_EQ] = ACTIONS(628), - [anon_sym_LT_LT_EQ] = ACTIONS(628), - [anon_sym_GT_GT_EQ] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(630), - [sym_integer_literal] = ACTIONS(628), - [aux_sym_string_literal_token1] = ACTIONS(628), - [sym_char_literal] = ACTIONS(628), - [anon_sym_true] = ACTIONS(630), - [anon_sym_false] = ACTIONS(630), + [247] = { + [sym_identifier] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_u8] = ACTIONS(576), + [anon_sym_i8] = ACTIONS(576), + [anon_sym_u16] = ACTIONS(576), + [anon_sym_i16] = ACTIONS(576), + [anon_sym_u32] = ACTIONS(576), + [anon_sym_i32] = ACTIONS(576), + [anon_sym_u64] = ACTIONS(576), + [anon_sym_i64] = ACTIONS(576), + [anon_sym_u128] = ACTIONS(576), + [anon_sym_i128] = ACTIONS(576), + [anon_sym_isize] = ACTIONS(576), + [anon_sym_usize] = ACTIONS(576), + [anon_sym_f32] = ACTIONS(576), + [anon_sym_f64] = ACTIONS(576), + [anon_sym_bool] = ACTIONS(576), + [anon_sym_str] = ACTIONS(576), + [anon_sym_char] = ACTIONS(576), + [anon_sym_as] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_union] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(574), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(574), + [anon_sym_ref] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(574), + [anon_sym__] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(576), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), + [anon_sym_DOT] = ACTIONS(576), + [sym_integer_literal] = ACTIONS(574), + [aux_sym_string_literal_token1] = ACTIONS(574), + [sym_char_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(630), - [sym_super] = ACTIONS(630), - [sym_crate] = ACTIONS(630), - [sym_metavariable] = ACTIONS(628), - [sym_raw_string_literal] = ACTIONS(628), - [sym_float_literal] = ACTIONS(628), + [sym_self] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_crate] = ACTIONS(576), + [sym_metavariable] = ACTIONS(574), + [sym_raw_string_literal] = ACTIONS(574), + [sym_float_literal] = ACTIONS(574), [sym_block_comment] = ACTIONS(3), }, - [251] = { + [248] = { [sym_identifier] = ACTIONS(634), [anon_sym_LPAREN] = ACTIONS(632), [anon_sym_RBRACE] = ACTIONS(632), @@ -43005,673 +42754,913 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(632), [sym_block_comment] = ACTIONS(3), }, - [252] = { - [sym_identifier] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_u8] = ACTIONS(646), - [anon_sym_i8] = ACTIONS(646), - [anon_sym_u16] = ACTIONS(646), - [anon_sym_i16] = ACTIONS(646), - [anon_sym_u32] = ACTIONS(646), - [anon_sym_i32] = ACTIONS(646), - [anon_sym_u64] = ACTIONS(646), - [anon_sym_i64] = ACTIONS(646), - [anon_sym_u128] = ACTIONS(646), - [anon_sym_i128] = ACTIONS(646), - [anon_sym_isize] = ACTIONS(646), - [anon_sym_usize] = ACTIONS(646), - [anon_sym_f32] = ACTIONS(646), - [anon_sym_f64] = ACTIONS(646), - [anon_sym_bool] = ACTIONS(646), - [anon_sym_str] = ACTIONS(646), - [anon_sym_char] = ACTIONS(646), - [anon_sym_as] = ACTIONS(646), - [anon_sym_const] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_union] = ACTIONS(646), - [anon_sym_POUND] = ACTIONS(644), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_ref] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(646), - [anon_sym_GT] = ACTIONS(646), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym__] = ACTIONS(646), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [sym_mutable_specifier] = ACTIONS(646), - [anon_sym_DOT_DOT] = ACTIONS(646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(646), - [anon_sym_CARET] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_LT_LT] = ACTIONS(646), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_AMP_EQ] = ACTIONS(644), - [anon_sym_PIPE_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_LT_LT_EQ] = ACTIONS(644), - [anon_sym_GT_GT_EQ] = ACTIONS(644), - [anon_sym_DOT] = ACTIONS(646), - [sym_integer_literal] = ACTIONS(644), - [aux_sym_string_literal_token1] = ACTIONS(644), - [sym_char_literal] = ACTIONS(644), - [anon_sym_true] = ACTIONS(646), - [anon_sym_false] = ACTIONS(646), + [249] = { + [sym_identifier] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_u8] = ACTIONS(622), + [anon_sym_i8] = ACTIONS(622), + [anon_sym_u16] = ACTIONS(622), + [anon_sym_i16] = ACTIONS(622), + [anon_sym_u32] = ACTIONS(622), + [anon_sym_i32] = ACTIONS(622), + [anon_sym_u64] = ACTIONS(622), + [anon_sym_i64] = ACTIONS(622), + [anon_sym_u128] = ACTIONS(622), + [anon_sym_i128] = ACTIONS(622), + [anon_sym_isize] = ACTIONS(622), + [anon_sym_usize] = ACTIONS(622), + [anon_sym_f32] = ACTIONS(622), + [anon_sym_f64] = ACTIONS(622), + [anon_sym_bool] = ACTIONS(622), + [anon_sym_str] = ACTIONS(622), + [anon_sym_char] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_default] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(620), + [anon_sym_ref] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_COLON_COLON] = ACTIONS(620), + [anon_sym__] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(620), + [sym_mutable_specifier] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT_EQ] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(620), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_BANG_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_PLUS_EQ] = ACTIONS(620), + [anon_sym_DASH_EQ] = ACTIONS(620), + [anon_sym_STAR_EQ] = ACTIONS(620), + [anon_sym_SLASH_EQ] = ACTIONS(620), + [anon_sym_PERCENT_EQ] = ACTIONS(620), + [anon_sym_AMP_EQ] = ACTIONS(620), + [anon_sym_PIPE_EQ] = ACTIONS(620), + [anon_sym_CARET_EQ] = ACTIONS(620), + [anon_sym_LT_LT_EQ] = ACTIONS(620), + [anon_sym_GT_GT_EQ] = ACTIONS(620), + [anon_sym_DOT] = ACTIONS(622), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(620), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(622), + [sym_super] = ACTIONS(622), + [sym_crate] = ACTIONS(622), + [sym_metavariable] = ACTIONS(620), + [sym_raw_string_literal] = ACTIONS(620), + [sym_float_literal] = ACTIONS(620), + [sym_block_comment] = ACTIONS(3), + }, + [250] = { + [sym_identifier] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_u8] = ACTIONS(596), + [anon_sym_i8] = ACTIONS(596), + [anon_sym_u16] = ACTIONS(596), + [anon_sym_i16] = ACTIONS(596), + [anon_sym_u32] = ACTIONS(596), + [anon_sym_i32] = ACTIONS(596), + [anon_sym_u64] = ACTIONS(596), + [anon_sym_i64] = ACTIONS(596), + [anon_sym_u128] = ACTIONS(596), + [anon_sym_i128] = ACTIONS(596), + [anon_sym_isize] = ACTIONS(596), + [anon_sym_usize] = ACTIONS(596), + [anon_sym_f32] = ACTIONS(596), + [anon_sym_f64] = ACTIONS(596), + [anon_sym_bool] = ACTIONS(596), + [anon_sym_str] = ACTIONS(596), + [anon_sym_char] = ACTIONS(596), + [anon_sym_as] = ACTIONS(596), + [anon_sym_const] = ACTIONS(596), + [anon_sym_default] = ACTIONS(596), + [anon_sym_union] = ACTIONS(596), + [anon_sym_POUND] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_COMMA] = ACTIONS(594), + [anon_sym_ref] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(594), + [anon_sym__] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [sym_mutable_specifier] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(594), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_PLUS_EQ] = ACTIONS(594), + [anon_sym_DASH_EQ] = ACTIONS(594), + [anon_sym_STAR_EQ] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(594), + [anon_sym_AMP_EQ] = ACTIONS(594), + [anon_sym_PIPE_EQ] = ACTIONS(594), + [anon_sym_CARET_EQ] = ACTIONS(594), + [anon_sym_LT_LT_EQ] = ACTIONS(594), + [anon_sym_GT_GT_EQ] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(596), + [sym_integer_literal] = ACTIONS(594), + [aux_sym_string_literal_token1] = ACTIONS(594), + [sym_char_literal] = ACTIONS(594), + [anon_sym_true] = ACTIONS(596), + [anon_sym_false] = ACTIONS(596), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(596), + [sym_super] = ACTIONS(596), + [sym_crate] = ACTIONS(596), + [sym_metavariable] = ACTIONS(594), + [sym_raw_string_literal] = ACTIONS(594), + [sym_float_literal] = ACTIONS(594), + [sym_block_comment] = ACTIONS(3), + }, + [251] = { + [sym_identifier] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(930), + [anon_sym_i8] = ACTIONS(930), + [anon_sym_u16] = ACTIONS(930), + [anon_sym_i16] = ACTIONS(930), + [anon_sym_u32] = ACTIONS(930), + [anon_sym_i32] = ACTIONS(930), + [anon_sym_u64] = ACTIONS(930), + [anon_sym_i64] = ACTIONS(930), + [anon_sym_u128] = ACTIONS(930), + [anon_sym_i128] = ACTIONS(930), + [anon_sym_isize] = ACTIONS(930), + [anon_sym_usize] = ACTIONS(930), + [anon_sym_f32] = ACTIONS(930), + [anon_sym_f64] = ACTIONS(930), + [anon_sym_bool] = ACTIONS(930), + [anon_sym_str] = ACTIONS(930), + [anon_sym_char] = ACTIONS(930), + [anon_sym_as] = ACTIONS(568), + [anon_sym_const] = ACTIONS(930), + [anon_sym_default] = ACTIONS(930), + [anon_sym_union] = ACTIONS(930), + [anon_sym_POUND] = ACTIONS(932), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_ref] = ACTIONS(930), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(932), + [anon_sym__] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [sym_mutable_specifier] = ACTIONS(930), + [anon_sym_DOT_DOT] = ACTIONS(930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(930), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(932), + [aux_sym_string_literal_token1] = ACTIONS(932), + [sym_char_literal] = ACTIONS(932), + [anon_sym_true] = ACTIONS(930), + [anon_sym_false] = ACTIONS(930), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(646), - [sym_super] = ACTIONS(646), - [sym_crate] = ACTIONS(646), - [sym_metavariable] = ACTIONS(644), - [sym_raw_string_literal] = ACTIONS(644), - [sym_float_literal] = ACTIONS(644), + [sym_self] = ACTIONS(930), + [sym_super] = ACTIONS(930), + [sym_crate] = ACTIONS(930), + [sym_metavariable] = ACTIONS(932), + [sym_raw_string_literal] = ACTIONS(932), + [sym_float_literal] = ACTIONS(932), + [sym_block_comment] = ACTIONS(3), + }, + [252] = { + [sym_identifier] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u128] = ACTIONS(572), + [anon_sym_i128] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_str] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_as] = ACTIONS(572), + [anon_sym_const] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_union] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_ref] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym__] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(572), + [sym_integer_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(570), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(572), + [sym_super] = ACTIONS(572), + [sym_crate] = ACTIONS(572), + [sym_metavariable] = ACTIONS(570), + [sym_raw_string_literal] = ACTIONS(570), + [sym_float_literal] = ACTIONS(570), [sym_block_comment] = ACTIONS(3), }, [253] = { - [sym_identifier] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(602), - [anon_sym_i8] = ACTIONS(602), - [anon_sym_u16] = ACTIONS(602), - [anon_sym_i16] = ACTIONS(602), - [anon_sym_u32] = ACTIONS(602), - [anon_sym_i32] = ACTIONS(602), - [anon_sym_u64] = ACTIONS(602), - [anon_sym_i64] = ACTIONS(602), - [anon_sym_u128] = ACTIONS(602), - [anon_sym_i128] = ACTIONS(602), - [anon_sym_isize] = ACTIONS(602), - [anon_sym_usize] = ACTIONS(602), - [anon_sym_f32] = ACTIONS(602), - [anon_sym_f64] = ACTIONS(602), - [anon_sym_bool] = ACTIONS(602), - [anon_sym_str] = ACTIONS(602), - [anon_sym_char] = ACTIONS(602), - [anon_sym_as] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_default] = ACTIONS(602), - [anon_sym_union] = ACTIONS(602), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_COMMA] = ACTIONS(600), - [anon_sym_ref] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym__] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(600), - [sym_mutable_specifier] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_EQ] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(600), - [anon_sym_DASH_EQ] = ACTIONS(600), - [anon_sym_STAR_EQ] = ACTIONS(600), - [anon_sym_SLASH_EQ] = ACTIONS(600), - [anon_sym_PERCENT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(602), - [sym_integer_literal] = ACTIONS(600), - [aux_sym_string_literal_token1] = ACTIONS(600), - [sym_char_literal] = ACTIONS(600), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(602), - [sym_super] = ACTIONS(602), - [sym_crate] = ACTIONS(602), - [sym_metavariable] = ACTIONS(600), - [sym_raw_string_literal] = ACTIONS(600), - [sym_float_literal] = ACTIONS(600), + [sym_identifier] = ACTIONS(678), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(678), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_ref] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym__] = ACTIONS(678), + [anon_sym_AMP] = ACTIONS(678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [sym_mutable_specifier] = ACTIONS(678), + [anon_sym_DOT_DOT] = ACTIONS(678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(678), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_PERCENT] = ACTIONS(678), + [anon_sym_PLUS_EQ] = ACTIONS(676), + [anon_sym_DASH_EQ] = ACTIONS(676), + [anon_sym_STAR_EQ] = ACTIONS(676), + [anon_sym_SLASH_EQ] = ACTIONS(676), + [anon_sym_PERCENT_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_CARET_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(676), + [aux_sym_string_literal_token1] = ACTIONS(676), + [sym_char_literal] = ACTIONS(676), + [anon_sym_true] = ACTIONS(678), + [anon_sym_false] = ACTIONS(678), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym_metavariable] = ACTIONS(676), + [sym_raw_string_literal] = ACTIONS(676), + [sym_float_literal] = ACTIONS(676), [sym_block_comment] = ACTIONS(3), }, [254] = { - [sym_identifier] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_RBRACE] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(608), - [anon_sym_u8] = ACTIONS(610), - [anon_sym_i8] = ACTIONS(610), - [anon_sym_u16] = ACTIONS(610), - [anon_sym_i16] = ACTIONS(610), - [anon_sym_u32] = ACTIONS(610), - [anon_sym_i32] = ACTIONS(610), - [anon_sym_u64] = ACTIONS(610), - [anon_sym_i64] = ACTIONS(610), - [anon_sym_u128] = ACTIONS(610), - [anon_sym_i128] = ACTIONS(610), - [anon_sym_isize] = ACTIONS(610), - [anon_sym_usize] = ACTIONS(610), - [anon_sym_f32] = ACTIONS(610), - [anon_sym_f64] = ACTIONS(610), - [anon_sym_bool] = ACTIONS(610), - [anon_sym_str] = ACTIONS(610), - [anon_sym_char] = ACTIONS(610), - [anon_sym_as] = ACTIONS(610), - [anon_sym_const] = ACTIONS(610), - [anon_sym_default] = ACTIONS(610), - [anon_sym_union] = ACTIONS(610), - [anon_sym_POUND] = ACTIONS(608), - [anon_sym_EQ] = ACTIONS(610), - [anon_sym_COMMA] = ACTIONS(608), - [anon_sym_ref] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_COLON_COLON] = ACTIONS(608), - [anon_sym__] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [sym_mutable_specifier] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(610), - [anon_sym_DOT_DOT_EQ] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(608), - [anon_sym_PIPE_PIPE] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_CARET] = ACTIONS(610), - [anon_sym_EQ_EQ] = ACTIONS(608), - [anon_sym_BANG_EQ] = ACTIONS(608), - [anon_sym_LT_EQ] = ACTIONS(608), - [anon_sym_GT_EQ] = ACTIONS(608), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_SLASH] = ACTIONS(610), - [anon_sym_PERCENT] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(608), - [anon_sym_STAR_EQ] = ACTIONS(608), - [anon_sym_SLASH_EQ] = ACTIONS(608), - [anon_sym_PERCENT_EQ] = ACTIONS(608), - [anon_sym_AMP_EQ] = ACTIONS(608), - [anon_sym_PIPE_EQ] = ACTIONS(608), - [anon_sym_CARET_EQ] = ACTIONS(608), - [anon_sym_LT_LT_EQ] = ACTIONS(608), - [anon_sym_GT_GT_EQ] = ACTIONS(608), - [anon_sym_DOT] = ACTIONS(610), - [sym_integer_literal] = ACTIONS(608), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(608), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(610), - [sym_super] = ACTIONS(610), - [sym_crate] = ACTIONS(610), - [sym_metavariable] = ACTIONS(608), - [sym_raw_string_literal] = ACTIONS(608), - [sym_float_literal] = ACTIONS(608), + [sym_identifier] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(656), + [anon_sym_u8] = ACTIONS(658), + [anon_sym_i8] = ACTIONS(658), + [anon_sym_u16] = ACTIONS(658), + [anon_sym_i16] = ACTIONS(658), + [anon_sym_u32] = ACTIONS(658), + [anon_sym_i32] = ACTIONS(658), + [anon_sym_u64] = ACTIONS(658), + [anon_sym_i64] = ACTIONS(658), + [anon_sym_u128] = ACTIONS(658), + [anon_sym_i128] = ACTIONS(658), + [anon_sym_isize] = ACTIONS(658), + [anon_sym_usize] = ACTIONS(658), + [anon_sym_f32] = ACTIONS(658), + [anon_sym_f64] = ACTIONS(658), + [anon_sym_bool] = ACTIONS(658), + [anon_sym_str] = ACTIONS(658), + [anon_sym_char] = ACTIONS(658), + [anon_sym_as] = ACTIONS(658), + [anon_sym_const] = ACTIONS(658), + [anon_sym_default] = ACTIONS(658), + [anon_sym_union] = ACTIONS(658), + [anon_sym_POUND] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_ref] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_COLON_COLON] = ACTIONS(656), + [anon_sym__] = ACTIONS(658), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(656), + [sym_mutable_specifier] = ACTIONS(658), + [anon_sym_DOT_DOT] = ACTIONS(658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(656), + [anon_sym_PIPE_PIPE] = ACTIONS(656), + [anon_sym_PIPE] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_PERCENT] = ACTIONS(658), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(658), + [sym_integer_literal] = ACTIONS(656), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(656), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(658), + [sym_super] = ACTIONS(658), + [sym_crate] = ACTIONS(658), + [sym_metavariable] = ACTIONS(656), + [sym_raw_string_literal] = ACTIONS(656), + [sym_float_literal] = ACTIONS(656), [sym_block_comment] = ACTIONS(3), }, [255] = { - [sym_identifier] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(578), - [anon_sym_ref] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym__] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [sym_mutable_specifier] = ACTIONS(580), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1992), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(1994), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), + [sym_bounded_type] = STATE(1432), + [sym_type_binding] = STATE(2314), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [sym_block] = STATE(2314), + [sym__literal] = STATE(2314), + [sym_string_literal] = STATE(2237), + [sym_boolean_literal] = STATE(2237), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(934), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(920), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(920), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_raw_string_literal] = ACTIONS(920), + [sym_float_literal] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, [256] = { - [sym_identifier] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(562), - [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_as] = ACTIONS(564), - [anon_sym_const] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(562), - [anon_sym_ref] = ACTIONS(932), - [anon_sym_LT] = ACTIONS(932), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_COLON_COLON] = ACTIONS(934), - [anon_sym__] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_DOT_DOT_DOT] = ACTIONS(562), - [sym_mutable_specifier] = ACTIONS(932), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(562), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_PLUS_EQ] = ACTIONS(562), - [anon_sym_DASH_EQ] = ACTIONS(562), - [anon_sym_STAR_EQ] = ACTIONS(562), - [anon_sym_SLASH_EQ] = ACTIONS(562), - [anon_sym_PERCENT_EQ] = ACTIONS(562), - [anon_sym_AMP_EQ] = ACTIONS(562), - [anon_sym_PIPE_EQ] = ACTIONS(562), - [anon_sym_CARET_EQ] = ACTIONS(562), - [anon_sym_LT_LT_EQ] = ACTIONS(562), - [anon_sym_GT_GT_EQ] = ACTIONS(562), - [anon_sym_DOT] = ACTIONS(564), - [sym_integer_literal] = ACTIONS(934), - [aux_sym_string_literal_token1] = ACTIONS(934), - [sym_char_literal] = ACTIONS(934), - [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(934), - [sym_raw_string_literal] = ACTIONS(934), - [sym_float_literal] = ACTIONS(934), + [sym_identifier] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(558), + [anon_sym_u8] = ACTIONS(560), + [anon_sym_i8] = ACTIONS(560), + [anon_sym_u16] = ACTIONS(560), + [anon_sym_i16] = ACTIONS(560), + [anon_sym_u32] = ACTIONS(560), + [anon_sym_i32] = ACTIONS(560), + [anon_sym_u64] = ACTIONS(560), + [anon_sym_i64] = ACTIONS(560), + [anon_sym_u128] = ACTIONS(560), + [anon_sym_i128] = ACTIONS(560), + [anon_sym_isize] = ACTIONS(560), + [anon_sym_usize] = ACTIONS(560), + [anon_sym_f32] = ACTIONS(560), + [anon_sym_f64] = ACTIONS(560), + [anon_sym_bool] = ACTIONS(560), + [anon_sym_str] = ACTIONS(560), + [anon_sym_char] = ACTIONS(560), + [anon_sym_as] = ACTIONS(560), + [anon_sym_const] = ACTIONS(560), + [anon_sym_default] = ACTIONS(560), + [anon_sym_union] = ACTIONS(560), + [anon_sym_POUND] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(560), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_ref] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_COLON_COLON] = ACTIONS(558), + [anon_sym__] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(558), + [sym_mutable_specifier] = ACTIONS(560), + [anon_sym_DOT_DOT] = ACTIONS(560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(558), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_AMP_AMP] = ACTIONS(558), + [anon_sym_PIPE_PIPE] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_PLUS_EQ] = ACTIONS(558), + [anon_sym_DASH_EQ] = ACTIONS(558), + [anon_sym_STAR_EQ] = ACTIONS(558), + [anon_sym_SLASH_EQ] = ACTIONS(558), + [anon_sym_PERCENT_EQ] = ACTIONS(558), + [anon_sym_AMP_EQ] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(558), + [anon_sym_LT_LT_EQ] = ACTIONS(558), + [anon_sym_GT_GT_EQ] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(560), + [sym_integer_literal] = ACTIONS(558), + [aux_sym_string_literal_token1] = ACTIONS(558), + [sym_char_literal] = ACTIONS(558), + [anon_sym_true] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(560), + [sym_super] = ACTIONS(560), + [sym_crate] = ACTIONS(560), + [sym_metavariable] = ACTIONS(558), + [sym_raw_string_literal] = ACTIONS(558), + [sym_float_literal] = ACTIONS(558), [sym_block_comment] = ACTIONS(3), }, [257] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1821), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(1820), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1815), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(1814), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), - [sym_type_binding] = STATE(2054), + [sym_type_binding] = STATE(2095), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), [sym_empty_type] = STATE(1432), [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [sym_block] = STATE(2054), - [sym__literal] = STATE(2054), - [sym_string_literal] = STATE(2267), - [sym_boolean_literal] = STATE(2267), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(902), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [sym_block] = STATE(2095), + [sym__literal] = STATE(2095), + [sym_string_literal] = STATE(2237), + [sym_boolean_literal] = STATE(2237), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(916), + [sym_integer_literal] = ACTIONS(920), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(916), + [sym_char_literal] = ACTIONS(920), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_raw_string_literal] = ACTIONS(916), - [sym_float_literal] = ACTIONS(916), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_raw_string_literal] = ACTIONS(920), + [sym_float_literal] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, [258] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1989), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(1988), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1850), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(1848), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), - [sym_type_binding] = STATE(2307), + [sym_type_binding] = STATE(2013), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), [sym_empty_type] = STATE(1432), [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [sym_block] = STATE(2307), - [sym__literal] = STATE(2307), - [sym_string_literal] = STATE(2267), - [sym_boolean_literal] = STATE(2267), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(902), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [sym_block] = STATE(2013), + [sym__literal] = STATE(2013), + [sym_string_literal] = STATE(2237), + [sym_boolean_literal] = STATE(2237), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(916), + [sym_integer_literal] = ACTIONS(920), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(916), + [sym_char_literal] = ACTIONS(920), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_raw_string_literal] = ACTIONS(916), - [sym_float_literal] = ACTIONS(916), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_raw_string_literal] = ACTIONS(920), + [sym_float_literal] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, [259] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1812), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(1811), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1992), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(1994), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), - [sym_type_binding] = STATE(2096), + [sym_type_binding] = STATE(2314), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), [sym_empty_type] = STATE(1432), [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [sym_block] = STATE(2096), - [sym__literal] = STATE(2096), - [sym_string_literal] = STATE(2267), - [sym_boolean_literal] = STATE(2267), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(902), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [sym_block] = STATE(2314), + [sym__literal] = STATE(2314), + [sym_string_literal] = STATE(2237), + [sym_boolean_literal] = STATE(2237), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(916), + [sym_integer_literal] = ACTIONS(920), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(916), + [sym_char_literal] = ACTIONS(920), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_raw_string_literal] = ACTIONS(916), - [sym_float_literal] = ACTIONS(916), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_raw_string_literal] = ACTIONS(920), + [sym_float_literal] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, [260] = { - [sym_empty_statement] = STATE(261), - [sym_macro_definition] = STATE(261), - [sym_attribute_item] = STATE(261), - [sym_inner_attribute_item] = STATE(261), - [sym_mod_item] = STATE(261), - [sym_foreign_mod_item] = STATE(261), - [sym_struct_item] = STATE(261), - [sym_union_item] = STATE(261), - [sym_enum_item] = STATE(261), - [sym_extern_crate_declaration] = STATE(261), - [sym_const_item] = STATE(261), - [sym_static_item] = STATE(261), - [sym_type_item] = STATE(261), - [sym_function_item] = STATE(261), - [sym_function_signature_item] = STATE(261), - [sym_function_modifiers] = STATE(2564), - [sym_impl_item] = STATE(261), - [sym_trait_item] = STATE(261), - [sym_associated_type] = STATE(261), - [sym_let_declaration] = STATE(261), - [sym_use_declaration] = STATE(261), - [sym_extern_modifier] = STATE(1518), - [sym_visibility_modifier] = STATE(1363), - [sym_bracketed_type] = STATE(2378), - [sym_generic_type_with_turbofish] = STATE(2373), - [sym_macro_invocation] = STATE(261), - [sym_scoped_identifier] = STATE(2341), - [aux_sym_declaration_list_repeat1] = STATE(261), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_empty_statement] = STATE(264), + [sym_macro_definition] = STATE(264), + [sym_attribute_item] = STATE(264), + [sym_inner_attribute_item] = STATE(264), + [sym_mod_item] = STATE(264), + [sym_foreign_mod_item] = STATE(264), + [sym_struct_item] = STATE(264), + [sym_union_item] = STATE(264), + [sym_enum_item] = STATE(264), + [sym_extern_crate_declaration] = STATE(264), + [sym_const_item] = STATE(264), + [sym_static_item] = STATE(264), + [sym_type_item] = STATE(264), + [sym_function_item] = STATE(264), + [sym_function_signature_item] = STATE(264), + [sym_function_modifiers] = STATE(2563), + [sym_impl_item] = STATE(264), + [sym_trait_item] = STATE(264), + [sym_associated_type] = STATE(264), + [sym_let_declaration] = STATE(264), + [sym_use_declaration] = STATE(264), + [sym_extern_modifier] = STATE(1543), + [sym_visibility_modifier] = STATE(1364), + [sym_bracketed_type] = STATE(2377), + [sym_generic_type_with_turbofish] = STATE(2405), + [sym_macro_invocation] = STATE(264), + [sym_scoped_identifier] = STATE(2252), + [aux_sym_declaration_list_repeat1] = STATE(264), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(936), [anon_sym_SEMI] = ACTIONS(938), [anon_sym_macro_rules_BANG] = ACTIONS(940), @@ -43720,163 +43709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(982), [sym_block_comment] = ACTIONS(3), }, - [261] = { - [sym_empty_statement] = STATE(265), - [sym_macro_definition] = STATE(265), - [sym_attribute_item] = STATE(265), - [sym_inner_attribute_item] = STATE(265), - [sym_mod_item] = STATE(265), - [sym_foreign_mod_item] = STATE(265), - [sym_struct_item] = STATE(265), - [sym_union_item] = STATE(265), - [sym_enum_item] = STATE(265), - [sym_extern_crate_declaration] = STATE(265), - [sym_const_item] = STATE(265), - [sym_static_item] = STATE(265), - [sym_type_item] = STATE(265), - [sym_function_item] = STATE(265), - [sym_function_signature_item] = STATE(265), - [sym_function_modifiers] = STATE(2564), - [sym_impl_item] = STATE(265), - [sym_trait_item] = STATE(265), - [sym_associated_type] = STATE(265), - [sym_let_declaration] = STATE(265), - [sym_use_declaration] = STATE(265), - [sym_extern_modifier] = STATE(1518), - [sym_visibility_modifier] = STATE(1363), - [sym_bracketed_type] = STATE(2378), - [sym_generic_type_with_turbofish] = STATE(2373), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(2341), - [aux_sym_declaration_list_repeat1] = STATE(265), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_macro_rules_BANG] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(984), - [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_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(946), - [anon_sym_default] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_fn] = ACTIONS(952), - [anon_sym_impl] = ACTIONS(954), - [anon_sym_let] = ACTIONS(956), - [anon_sym_mod] = ACTIONS(958), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_trait] = ACTIONS(964), - [anon_sym_type] = ACTIONS(966), - [anon_sym_union] = ACTIONS(968), - [anon_sym_unsafe] = ACTIONS(970), - [anon_sym_use] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(888), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(978), - [sym_super] = ACTIONS(978), - [sym_crate] = ACTIONS(980), - [sym_metavariable] = ACTIONS(982), - [sym_block_comment] = ACTIONS(3), - }, - [262] = { - [sym_empty_statement] = STATE(263), - [sym_macro_definition] = STATE(263), - [sym_attribute_item] = STATE(263), - [sym_inner_attribute_item] = STATE(263), - [sym_mod_item] = STATE(263), - [sym_foreign_mod_item] = STATE(263), - [sym_struct_item] = STATE(263), - [sym_union_item] = STATE(263), - [sym_enum_item] = STATE(263), - [sym_extern_crate_declaration] = STATE(263), - [sym_const_item] = STATE(263), - [sym_static_item] = STATE(263), - [sym_type_item] = STATE(263), - [sym_function_item] = STATE(263), - [sym_function_signature_item] = STATE(263), - [sym_function_modifiers] = STATE(2564), - [sym_impl_item] = STATE(263), - [sym_trait_item] = STATE(263), - [sym_associated_type] = STATE(263), - [sym_let_declaration] = STATE(263), - [sym_use_declaration] = STATE(263), - [sym_extern_modifier] = STATE(1518), - [sym_visibility_modifier] = STATE(1363), - [sym_bracketed_type] = STATE(2378), - [sym_generic_type_with_turbofish] = STATE(2373), - [sym_macro_invocation] = STATE(263), - [sym_scoped_identifier] = STATE(2341), - [aux_sym_declaration_list_repeat1] = STATE(263), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_macro_rules_BANG] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(986), - [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_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(946), - [anon_sym_default] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_fn] = ACTIONS(952), - [anon_sym_impl] = ACTIONS(954), - [anon_sym_let] = ACTIONS(956), - [anon_sym_mod] = ACTIONS(958), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_trait] = ACTIONS(964), - [anon_sym_type] = ACTIONS(966), - [anon_sym_union] = ACTIONS(968), - [anon_sym_unsafe] = ACTIONS(970), - [anon_sym_use] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(888), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(978), - [sym_super] = ACTIONS(978), - [sym_crate] = ACTIONS(980), - [sym_metavariable] = ACTIONS(982), - [sym_block_comment] = ACTIONS(3), - }, - [263] = { + [261] = { [sym_empty_statement] = STATE(265), [sym_macro_definition] = STATE(265), [sym_attribute_item] = STATE(265), @@ -43892,24 +43725,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(265), [sym_function_item] = STATE(265), [sym_function_signature_item] = STATE(265), - [sym_function_modifiers] = STATE(2564), + [sym_function_modifiers] = STATE(2563), [sym_impl_item] = STATE(265), [sym_trait_item] = STATE(265), [sym_associated_type] = STATE(265), [sym_let_declaration] = STATE(265), [sym_use_declaration] = STATE(265), - [sym_extern_modifier] = STATE(1518), - [sym_visibility_modifier] = STATE(1363), - [sym_bracketed_type] = STATE(2378), - [sym_generic_type_with_turbofish] = STATE(2373), + [sym_extern_modifier] = STATE(1543), + [sym_visibility_modifier] = STATE(1364), + [sym_bracketed_type] = STATE(2377), + [sym_generic_type_with_turbofish] = STATE(2405), [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(2341), + [sym_scoped_identifier] = STATE(2252), [aux_sym_declaration_list_repeat1] = STATE(265), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(936), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_macro_rules_BANG] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(984), + [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_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(946), + [anon_sym_default] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(950), + [anon_sym_fn] = ACTIONS(952), + [anon_sym_impl] = ACTIONS(954), + [anon_sym_let] = ACTIONS(956), + [anon_sym_mod] = ACTIONS(958), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(962), + [anon_sym_trait] = ACTIONS(964), + [anon_sym_type] = ACTIONS(966), + [anon_sym_union] = ACTIONS(968), + [anon_sym_unsafe] = ACTIONS(970), + [anon_sym_use] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(888), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_crate] = ACTIONS(980), + [sym_metavariable] = ACTIONS(982), + [sym_block_comment] = ACTIONS(3), + }, + [262] = { + [sym__token_pattern] = STATE(262), + [sym_token_tree_pattern] = STATE(262), + [sym_token_binding_pattern] = STATE(262), + [sym_token_repetition_pattern] = STATE(262), + [sym__literal] = STATE(262), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(262), + [sym_identifier] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(989), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_RBRACK] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(1000), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_async] = ACTIONS(986), + [anon_sym_await] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_default] = ACTIONS(986), + [anon_sym_enum] = ACTIONS(986), + [anon_sym_fn] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_impl] = ACTIONS(986), + [anon_sym_let] = ACTIONS(986), + [anon_sym_loop] = ACTIONS(986), + [anon_sym_match] = ACTIONS(986), + [anon_sym_mod] = ACTIONS(986), + [anon_sym_pub] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_static] = ACTIONS(986), + [anon_sym_struct] = ACTIONS(986), + [anon_sym_trait] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_union] = ACTIONS(986), + [anon_sym_unsafe] = ACTIONS(986), + [anon_sym_use] = ACTIONS(986), + [anon_sym_where] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [sym_mutable_specifier] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(1003), + [aux_sym_string_literal_token1] = ACTIONS(1006), + [sym_char_literal] = ACTIONS(1003), + [anon_sym_true] = ACTIONS(1009), + [anon_sym_false] = ACTIONS(1009), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(986), + [sym_super] = ACTIONS(986), + [sym_crate] = ACTIONS(986), + [sym_metavariable] = ACTIONS(1014), + [sym_raw_string_literal] = ACTIONS(1003), + [sym_float_literal] = ACTIONS(1003), + [sym_block_comment] = ACTIONS(3), + }, + [263] = { + [sym_empty_statement] = STATE(261), + [sym_macro_definition] = STATE(261), + [sym_attribute_item] = STATE(261), + [sym_inner_attribute_item] = STATE(261), + [sym_mod_item] = STATE(261), + [sym_foreign_mod_item] = STATE(261), + [sym_struct_item] = STATE(261), + [sym_union_item] = STATE(261), + [sym_enum_item] = STATE(261), + [sym_extern_crate_declaration] = STATE(261), + [sym_const_item] = STATE(261), + [sym_static_item] = STATE(261), + [sym_type_item] = STATE(261), + [sym_function_item] = STATE(261), + [sym_function_signature_item] = STATE(261), + [sym_function_modifiers] = STATE(2563), + [sym_impl_item] = STATE(261), + [sym_trait_item] = STATE(261), + [sym_associated_type] = STATE(261), + [sym_let_declaration] = STATE(261), + [sym_use_declaration] = STATE(261), + [sym_extern_modifier] = STATE(1543), + [sym_visibility_modifier] = STATE(1364), + [sym_bracketed_type] = STATE(2377), + [sym_generic_type_with_turbofish] = STATE(2405), + [sym_macro_invocation] = STATE(261), + [sym_scoped_identifier] = STATE(2252), + [aux_sym_declaration_list_repeat1] = STATE(261), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(936), [anon_sym_SEMI] = ACTIONS(938), [anon_sym_macro_rules_BANG] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(1017), [anon_sym_u8] = ACTIONS(944), [anon_sym_i8] = ACTIONS(944), [anon_sym_u16] = ACTIONS(944), @@ -43955,81 +43944,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [264] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(1001), - [anon_sym_RBRACK] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(1004), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_async] = ACTIONS(990), - [anon_sym_await] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_fn] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_impl] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_pub] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_static] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_trait] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_unsafe] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_where] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [sym_mutable_specifier] = ACTIONS(990), - [sym_integer_literal] = ACTIONS(1007), - [aux_sym_string_literal_token1] = ACTIONS(1010), - [sym_char_literal] = ACTIONS(1007), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(990), - [sym_super] = ACTIONS(990), - [sym_crate] = ACTIONS(990), - [sym_metavariable] = ACTIONS(1018), - [sym_raw_string_literal] = ACTIONS(1007), - [sym_float_literal] = ACTIONS(1007), + [sym_empty_statement] = STATE(265), + [sym_macro_definition] = STATE(265), + [sym_attribute_item] = STATE(265), + [sym_inner_attribute_item] = STATE(265), + [sym_mod_item] = STATE(265), + [sym_foreign_mod_item] = STATE(265), + [sym_struct_item] = STATE(265), + [sym_union_item] = STATE(265), + [sym_enum_item] = STATE(265), + [sym_extern_crate_declaration] = STATE(265), + [sym_const_item] = STATE(265), + [sym_static_item] = STATE(265), + [sym_type_item] = STATE(265), + [sym_function_item] = STATE(265), + [sym_function_signature_item] = STATE(265), + [sym_function_modifiers] = STATE(2563), + [sym_impl_item] = STATE(265), + [sym_trait_item] = STATE(265), + [sym_associated_type] = STATE(265), + [sym_let_declaration] = STATE(265), + [sym_use_declaration] = STATE(265), + [sym_extern_modifier] = STATE(1543), + [sym_visibility_modifier] = STATE(1364), + [sym_bracketed_type] = STATE(2377), + [sym_generic_type_with_turbofish] = STATE(2405), + [sym_macro_invocation] = STATE(265), + [sym_scoped_identifier] = STATE(2252), + [aux_sym_declaration_list_repeat1] = STATE(265), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(936), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_macro_rules_BANG] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(1019), + [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_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(946), + [anon_sym_default] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(950), + [anon_sym_fn] = ACTIONS(952), + [anon_sym_impl] = ACTIONS(954), + [anon_sym_let] = ACTIONS(956), + [anon_sym_mod] = ACTIONS(958), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(962), + [anon_sym_trait] = ACTIONS(964), + [anon_sym_type] = ACTIONS(966), + [anon_sym_union] = ACTIONS(968), + [anon_sym_unsafe] = ACTIONS(970), + [anon_sym_use] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(888), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_crate] = ACTIONS(980), + [sym_metavariable] = ACTIONS(982), [sym_block_comment] = ACTIONS(3), }, [265] = { @@ -44048,20 +44037,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(265), [sym_function_item] = STATE(265), [sym_function_signature_item] = STATE(265), - [sym_function_modifiers] = STATE(2564), + [sym_function_modifiers] = STATE(2563), [sym_impl_item] = STATE(265), [sym_trait_item] = STATE(265), [sym_associated_type] = STATE(265), [sym_let_declaration] = STATE(265), [sym_use_declaration] = STATE(265), - [sym_extern_modifier] = STATE(1518), - [sym_visibility_modifier] = STATE(1363), - [sym_bracketed_type] = STATE(2378), - [sym_generic_type_with_turbofish] = STATE(2373), + [sym_extern_modifier] = STATE(1543), + [sym_visibility_modifier] = STATE(1364), + [sym_bracketed_type] = STATE(2377), + [sym_generic_type_with_turbofish] = STATE(2405), [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(2341), + [sym_scoped_identifier] = STATE(2252), [aux_sym_declaration_list_repeat1] = STATE(265), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(1021), [anon_sym_SEMI] = ACTIONS(1024), [anon_sym_macro_rules_BANG] = ACTIONS(1027), @@ -44650,6560 +44639,6815 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [273] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2581), - [sym_scoped_identifier] = STATE(1567), - [sym_scoped_type_identifier] = STATE(1919), - [sym_match_arm] = STATE(507), - [sym_last_match_arm] = STATE(2428), - [sym_match_pattern] = STATE(2569), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2123), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(1132), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_RBRACE] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_union] = ACTIONS(1144), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [ts_builtin_sym_end] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_macro_rules_BANG] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1132), + [anon_sym_u8] = ACTIONS(1134), + [anon_sym_i8] = ACTIONS(1134), + [anon_sym_u16] = ACTIONS(1134), + [anon_sym_i16] = ACTIONS(1134), + [anon_sym_u32] = ACTIONS(1134), + [anon_sym_i32] = ACTIONS(1134), + [anon_sym_u64] = ACTIONS(1134), + [anon_sym_i64] = ACTIONS(1134), + [anon_sym_u128] = ACTIONS(1134), + [anon_sym_i128] = ACTIONS(1134), + [anon_sym_isize] = ACTIONS(1134), + [anon_sym_usize] = ACTIONS(1134), + [anon_sym_f32] = ACTIONS(1134), + [anon_sym_f64] = ACTIONS(1134), + [anon_sym_bool] = ACTIONS(1134), + [anon_sym_str] = ACTIONS(1134), + [anon_sym_char] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(1134), + [anon_sym_async] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_fn] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_impl] = ACTIONS(1134), + [anon_sym_let] = ACTIONS(1134), + [anon_sym_loop] = ACTIONS(1134), + [anon_sym_match] = ACTIONS(1134), + [anon_sym_mod] = ACTIONS(1134), + [anon_sym_pub] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_trait] = ACTIONS(1134), + [anon_sym_type] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_unsafe] = ACTIONS(1134), + [anon_sym_use] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [anon_sym_POUND] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_COLON_COLON] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_DOT_DOT] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_yield] = ACTIONS(1134), + [anon_sym_move] = ACTIONS(1134), + [sym_integer_literal] = ACTIONS(1132), + [aux_sym_string_literal_token1] = ACTIONS(1132), + [sym_char_literal] = ACTIONS(1132), + [anon_sym_true] = ACTIONS(1134), + [anon_sym_false] = ACTIONS(1134), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1134), + [sym_super] = ACTIONS(1134), + [sym_crate] = ACTIONS(1134), + [sym_metavariable] = ACTIONS(1132), + [sym_raw_string_literal] = ACTIONS(1132), + [sym_float_literal] = ACTIONS(1132), [sym_block_comment] = ACTIONS(3), }, [274] = { - [ts_builtin_sym_end] = ACTIONS(1154), - [sym_identifier] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1154), - [anon_sym_macro_rules_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [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_SQUOTE] = ACTIONS(1156), - [anon_sym_async] = 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_while] = ACTIONS(1156), - [anon_sym_POUND] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1156), - [anon_sym_LT] = ACTIONS(1154), - [anon_sym_COLON_COLON] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PIPE] = ACTIONS(1154), - [anon_sym_yield] = ACTIONS(1156), - [anon_sym_move] = ACTIONS(1156), - [sym_integer_literal] = ACTIONS(1154), - [aux_sym_string_literal_token1] = ACTIONS(1154), - [sym_char_literal] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1156), - [anon_sym_false] = ACTIONS(1156), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1156), - [sym_super] = ACTIONS(1156), - [sym_crate] = ACTIONS(1156), - [sym_metavariable] = ACTIONS(1154), - [sym_raw_string_literal] = ACTIONS(1154), - [sym_float_literal] = ACTIONS(1154), + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_macro_rules_BANG] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1136), + [anon_sym_u8] = ACTIONS(1138), + [anon_sym_i8] = ACTIONS(1138), + [anon_sym_u16] = ACTIONS(1138), + [anon_sym_i16] = ACTIONS(1138), + [anon_sym_u32] = ACTIONS(1138), + [anon_sym_i32] = ACTIONS(1138), + [anon_sym_u64] = ACTIONS(1138), + [anon_sym_i64] = ACTIONS(1138), + [anon_sym_u128] = ACTIONS(1138), + [anon_sym_i128] = ACTIONS(1138), + [anon_sym_isize] = ACTIONS(1138), + [anon_sym_usize] = ACTIONS(1138), + [anon_sym_f32] = ACTIONS(1138), + [anon_sym_f64] = ACTIONS(1138), + [anon_sym_bool] = ACTIONS(1138), + [anon_sym_str] = ACTIONS(1138), + [anon_sym_char] = ACTIONS(1138), + [anon_sym_SQUOTE] = ACTIONS(1138), + [anon_sym_async] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_const] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_fn] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_impl] = ACTIONS(1138), + [anon_sym_let] = ACTIONS(1138), + [anon_sym_loop] = ACTIONS(1138), + [anon_sym_match] = ACTIONS(1138), + [anon_sym_mod] = ACTIONS(1138), + [anon_sym_pub] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_struct] = ACTIONS(1138), + [anon_sym_trait] = ACTIONS(1138), + [anon_sym_type] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1138), + [anon_sym_unsafe] = ACTIONS(1138), + [anon_sym_use] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [anon_sym_POUND] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym_LT] = ACTIONS(1136), + [anon_sym_COLON_COLON] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_yield] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1136), + [aux_sym_string_literal_token1] = ACTIONS(1136), + [sym_char_literal] = ACTIONS(1136), + [anon_sym_true] = ACTIONS(1138), + [anon_sym_false] = ACTIONS(1138), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1138), + [sym_super] = ACTIONS(1138), + [sym_crate] = ACTIONS(1138), + [sym_metavariable] = ACTIONS(1136), + [sym_raw_string_literal] = ACTIONS(1136), + [sym_float_literal] = ACTIONS(1136), [sym_block_comment] = ACTIONS(3), }, [275] = { - [ts_builtin_sym_end] = ACTIONS(1158), - [sym_identifier] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym_macro_rules_BANG] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_async] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_default] = ACTIONS(1160), - [anon_sym_enum] = ACTIONS(1160), - [anon_sym_fn] = ACTIONS(1160), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_impl] = ACTIONS(1160), - [anon_sym_let] = ACTIONS(1160), - [anon_sym_loop] = ACTIONS(1160), - [anon_sym_match] = ACTIONS(1160), - [anon_sym_mod] = ACTIONS(1160), - [anon_sym_pub] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_struct] = ACTIONS(1160), - [anon_sym_trait] = ACTIONS(1160), - [anon_sym_type] = ACTIONS(1160), - [anon_sym_union] = ACTIONS(1160), - [anon_sym_unsafe] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [anon_sym_POUND] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1160), - [anon_sym_LT] = ACTIONS(1158), - [anon_sym_COLON_COLON] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_PIPE] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_move] = ACTIONS(1160), - [sym_integer_literal] = ACTIONS(1158), - [aux_sym_string_literal_token1] = ACTIONS(1158), - [sym_char_literal] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1160), - [anon_sym_false] = ACTIONS(1160), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1160), - [sym_super] = ACTIONS(1160), - [sym_crate] = ACTIONS(1160), - [sym_metavariable] = ACTIONS(1158), - [sym_raw_string_literal] = ACTIONS(1158), - [sym_float_literal] = ACTIONS(1158), + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1142), + [anon_sym_SEMI] = ACTIONS(1140), + [anon_sym_macro_rules_BANG] = ACTIONS(1140), + [anon_sym_LPAREN] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_STAR] = ACTIONS(1140), + [anon_sym_u8] = ACTIONS(1142), + [anon_sym_i8] = ACTIONS(1142), + [anon_sym_u16] = ACTIONS(1142), + [anon_sym_i16] = ACTIONS(1142), + [anon_sym_u32] = ACTIONS(1142), + [anon_sym_i32] = ACTIONS(1142), + [anon_sym_u64] = ACTIONS(1142), + [anon_sym_i64] = ACTIONS(1142), + [anon_sym_u128] = ACTIONS(1142), + [anon_sym_i128] = ACTIONS(1142), + [anon_sym_isize] = ACTIONS(1142), + [anon_sym_usize] = ACTIONS(1142), + [anon_sym_f32] = ACTIONS(1142), + [anon_sym_f64] = ACTIONS(1142), + [anon_sym_bool] = ACTIONS(1142), + [anon_sym_str] = ACTIONS(1142), + [anon_sym_char] = ACTIONS(1142), + [anon_sym_SQUOTE] = ACTIONS(1142), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_const] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_fn] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_impl] = ACTIONS(1142), + [anon_sym_let] = ACTIONS(1142), + [anon_sym_loop] = ACTIONS(1142), + [anon_sym_match] = ACTIONS(1142), + [anon_sym_mod] = ACTIONS(1142), + [anon_sym_pub] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_struct] = ACTIONS(1142), + [anon_sym_trait] = ACTIONS(1142), + [anon_sym_type] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1142), + [anon_sym_unsafe] = ACTIONS(1142), + [anon_sym_use] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_POUND] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym_LT] = ACTIONS(1140), + [anon_sym_COLON_COLON] = ACTIONS(1140), + [anon_sym_AMP] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1140), + [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1142), + [anon_sym_move] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1140), + [aux_sym_string_literal_token1] = ACTIONS(1140), + [sym_char_literal] = ACTIONS(1140), + [anon_sym_true] = ACTIONS(1142), + [anon_sym_false] = ACTIONS(1142), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1142), + [sym_super] = ACTIONS(1142), + [sym_crate] = ACTIONS(1142), + [sym_metavariable] = ACTIONS(1140), + [sym_raw_string_literal] = ACTIONS(1140), + [sym_float_literal] = ACTIONS(1140), [sym_block_comment] = ACTIONS(3), }, [276] = { - [ts_builtin_sym_end] = ACTIONS(1162), - [sym_identifier] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym_macro_rules_BANG] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_RBRACE] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_u8] = ACTIONS(1164), - [anon_sym_i8] = ACTIONS(1164), - [anon_sym_u16] = ACTIONS(1164), - [anon_sym_i16] = ACTIONS(1164), - [anon_sym_u32] = ACTIONS(1164), - [anon_sym_i32] = ACTIONS(1164), - [anon_sym_u64] = ACTIONS(1164), - [anon_sym_i64] = ACTIONS(1164), - [anon_sym_u128] = ACTIONS(1164), - [anon_sym_i128] = ACTIONS(1164), - [anon_sym_isize] = ACTIONS(1164), - [anon_sym_usize] = ACTIONS(1164), - [anon_sym_f32] = ACTIONS(1164), - [anon_sym_f64] = ACTIONS(1164), - [anon_sym_bool] = ACTIONS(1164), - [anon_sym_str] = ACTIONS(1164), - [anon_sym_char] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_const] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_fn] = ACTIONS(1164), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_impl] = ACTIONS(1164), - [anon_sym_let] = ACTIONS(1164), - [anon_sym_loop] = ACTIONS(1164), - [anon_sym_match] = ACTIONS(1164), - [anon_sym_mod] = ACTIONS(1164), - [anon_sym_pub] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_static] = ACTIONS(1164), - [anon_sym_struct] = ACTIONS(1164), - [anon_sym_trait] = ACTIONS(1164), - [anon_sym_type] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), - [anon_sym_unsafe] = ACTIONS(1164), - [anon_sym_use] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(1164), - [anon_sym_LT] = ACTIONS(1162), - [anon_sym_COLON_COLON] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1162), - [anon_sym_DOT_DOT] = ACTIONS(1162), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1162), - [anon_sym_yield] = ACTIONS(1164), - [anon_sym_move] = ACTIONS(1164), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1162), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1164), - [anon_sym_false] = ACTIONS(1164), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1164), - [sym_super] = ACTIONS(1164), - [sym_crate] = ACTIONS(1164), - [sym_metavariable] = ACTIONS(1162), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_macro_rules_BANG] = ACTIONS(1144), + [anon_sym_LPAREN] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_u8] = ACTIONS(1146), + [anon_sym_i8] = ACTIONS(1146), + [anon_sym_u16] = ACTIONS(1146), + [anon_sym_i16] = ACTIONS(1146), + [anon_sym_u32] = ACTIONS(1146), + [anon_sym_i32] = ACTIONS(1146), + [anon_sym_u64] = ACTIONS(1146), + [anon_sym_i64] = ACTIONS(1146), + [anon_sym_u128] = ACTIONS(1146), + [anon_sym_i128] = ACTIONS(1146), + [anon_sym_isize] = ACTIONS(1146), + [anon_sym_usize] = ACTIONS(1146), + [anon_sym_f32] = ACTIONS(1146), + [anon_sym_f64] = ACTIONS(1146), + [anon_sym_bool] = ACTIONS(1146), + [anon_sym_str] = ACTIONS(1146), + [anon_sym_char] = ACTIONS(1146), + [anon_sym_SQUOTE] = ACTIONS(1146), + [anon_sym_async] = ACTIONS(1146), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_const] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_fn] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_impl] = ACTIONS(1146), + [anon_sym_let] = ACTIONS(1146), + [anon_sym_loop] = ACTIONS(1146), + [anon_sym_match] = ACTIONS(1146), + [anon_sym_mod] = ACTIONS(1146), + [anon_sym_pub] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_struct] = ACTIONS(1146), + [anon_sym_trait] = ACTIONS(1146), + [anon_sym_type] = ACTIONS(1146), + [anon_sym_union] = ACTIONS(1146), + [anon_sym_unsafe] = ACTIONS(1146), + [anon_sym_use] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [anon_sym_POUND] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1144), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1144), + [anon_sym_COLON_COLON] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1144), + [anon_sym_PIPE] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1146), + [anon_sym_move] = ACTIONS(1146), + [sym_integer_literal] = ACTIONS(1144), + [aux_sym_string_literal_token1] = ACTIONS(1144), + [sym_char_literal] = ACTIONS(1144), + [anon_sym_true] = ACTIONS(1146), + [anon_sym_false] = ACTIONS(1146), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1146), + [sym_super] = ACTIONS(1146), + [sym_crate] = ACTIONS(1146), + [sym_metavariable] = ACTIONS(1144), + [sym_raw_string_literal] = ACTIONS(1144), + [sym_float_literal] = ACTIONS(1144), [sym_block_comment] = ACTIONS(3), }, [277] = { - [ts_builtin_sym_end] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym_macro_rules_BANG] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_RBRACE] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_async] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_default] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_fn] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_impl] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_pub] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1168), - [anon_sym_trait] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1168), - [anon_sym_unsafe] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_LT] = ACTIONS(1166), - [anon_sym_COLON_COLON] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_DOT_DOT] = ACTIONS(1166), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_PIPE] = ACTIONS(1166), - [anon_sym_yield] = ACTIONS(1168), - [anon_sym_move] = ACTIONS(1168), - [sym_integer_literal] = ACTIONS(1166), - [aux_sym_string_literal_token1] = ACTIONS(1166), - [sym_char_literal] = ACTIONS(1166), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1168), - [sym_super] = ACTIONS(1168), - [sym_crate] = ACTIONS(1168), - [sym_metavariable] = ACTIONS(1166), - [sym_raw_string_literal] = ACTIONS(1166), - [sym_float_literal] = ACTIONS(1166), + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1150), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_macro_rules_BANG] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1148), + [anon_sym_STAR] = ACTIONS(1148), + [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_SQUOTE] = ACTIONS(1150), + [anon_sym_async] = 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_while] = ACTIONS(1150), + [anon_sym_POUND] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_COLON_COLON] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_DOT_DOT] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_yield] = ACTIONS(1150), + [anon_sym_move] = ACTIONS(1150), + [sym_integer_literal] = ACTIONS(1148), + [aux_sym_string_literal_token1] = ACTIONS(1148), + [sym_char_literal] = ACTIONS(1148), + [anon_sym_true] = ACTIONS(1150), + [anon_sym_false] = ACTIONS(1150), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1148), + [sym_raw_string_literal] = ACTIONS(1148), + [sym_float_literal] = ACTIONS(1148), [sym_block_comment] = ACTIONS(3), }, [278] = { - [ts_builtin_sym_end] = ACTIONS(1170), - [sym_identifier] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_macro_rules_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_u8] = ACTIONS(1172), - [anon_sym_i8] = ACTIONS(1172), - [anon_sym_u16] = ACTIONS(1172), - [anon_sym_i16] = ACTIONS(1172), - [anon_sym_u32] = ACTIONS(1172), - [anon_sym_i32] = ACTIONS(1172), - [anon_sym_u64] = ACTIONS(1172), - [anon_sym_i64] = ACTIONS(1172), - [anon_sym_u128] = ACTIONS(1172), - [anon_sym_i128] = ACTIONS(1172), - [anon_sym_isize] = ACTIONS(1172), - [anon_sym_usize] = ACTIONS(1172), - [anon_sym_f32] = ACTIONS(1172), - [anon_sym_f64] = ACTIONS(1172), - [anon_sym_bool] = ACTIONS(1172), - [anon_sym_str] = ACTIONS(1172), - [anon_sym_char] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_async] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_fn] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_impl] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_pub] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_trait] = ACTIONS(1172), - [anon_sym_type] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1172), - [anon_sym_unsafe] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(1170), - [anon_sym_COLON_COLON] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1170), - [anon_sym_yield] = ACTIONS(1172), - [anon_sym_move] = ACTIONS(1172), - [sym_integer_literal] = ACTIONS(1170), - [aux_sym_string_literal_token1] = ACTIONS(1170), - [sym_char_literal] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1172), - [sym_super] = ACTIONS(1172), - [sym_crate] = ACTIONS(1172), - [sym_metavariable] = ACTIONS(1170), - [sym_raw_string_literal] = ACTIONS(1170), - [sym_float_literal] = ACTIONS(1170), + [ts_builtin_sym_end] = ACTIONS(1152), + [sym_identifier] = ACTIONS(1154), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_macro_rules_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_RBRACE] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(1152), + [anon_sym_u8] = ACTIONS(1154), + [anon_sym_i8] = ACTIONS(1154), + [anon_sym_u16] = ACTIONS(1154), + [anon_sym_i16] = ACTIONS(1154), + [anon_sym_u32] = ACTIONS(1154), + [anon_sym_i32] = ACTIONS(1154), + [anon_sym_u64] = ACTIONS(1154), + [anon_sym_i64] = ACTIONS(1154), + [anon_sym_u128] = ACTIONS(1154), + [anon_sym_i128] = ACTIONS(1154), + [anon_sym_isize] = ACTIONS(1154), + [anon_sym_usize] = ACTIONS(1154), + [anon_sym_f32] = ACTIONS(1154), + [anon_sym_f64] = ACTIONS(1154), + [anon_sym_bool] = ACTIONS(1154), + [anon_sym_str] = ACTIONS(1154), + [anon_sym_char] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(1154), + [anon_sym_async] = ACTIONS(1154), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_const] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_fn] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_impl] = ACTIONS(1154), + [anon_sym_let] = ACTIONS(1154), + [anon_sym_loop] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1154), + [anon_sym_mod] = ACTIONS(1154), + [anon_sym_pub] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_struct] = ACTIONS(1154), + [anon_sym_trait] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_union] = ACTIONS(1154), + [anon_sym_unsafe] = ACTIONS(1154), + [anon_sym_use] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [anon_sym_POUND] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym_LT] = ACTIONS(1152), + [anon_sym_COLON_COLON] = ACTIONS(1152), + [anon_sym_AMP] = ACTIONS(1152), + [anon_sym_DOT_DOT] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_PIPE] = ACTIONS(1152), + [anon_sym_yield] = ACTIONS(1154), + [anon_sym_move] = ACTIONS(1154), + [sym_integer_literal] = ACTIONS(1152), + [aux_sym_string_literal_token1] = ACTIONS(1152), + [sym_char_literal] = ACTIONS(1152), + [anon_sym_true] = ACTIONS(1154), + [anon_sym_false] = ACTIONS(1154), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1154), + [sym_super] = ACTIONS(1154), + [sym_crate] = ACTIONS(1154), + [sym_metavariable] = ACTIONS(1152), + [sym_raw_string_literal] = ACTIONS(1152), + [sym_float_literal] = ACTIONS(1152), [sym_block_comment] = ACTIONS(3), }, [279] = { - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_identifier] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_macro_rules_BANG] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_u8] = ACTIONS(1176), - [anon_sym_i8] = ACTIONS(1176), - [anon_sym_u16] = ACTIONS(1176), - [anon_sym_i16] = ACTIONS(1176), - [anon_sym_u32] = ACTIONS(1176), - [anon_sym_i32] = ACTIONS(1176), - [anon_sym_u64] = ACTIONS(1176), - [anon_sym_i64] = ACTIONS(1176), - [anon_sym_u128] = ACTIONS(1176), - [anon_sym_i128] = ACTIONS(1176), - [anon_sym_isize] = ACTIONS(1176), - [anon_sym_usize] = ACTIONS(1176), - [anon_sym_f32] = ACTIONS(1176), - [anon_sym_f64] = ACTIONS(1176), - [anon_sym_bool] = ACTIONS(1176), - [anon_sym_str] = ACTIONS(1176), - [anon_sym_char] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_async] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_fn] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_impl] = ACTIONS(1176), - [anon_sym_let] = ACTIONS(1176), - [anon_sym_loop] = ACTIONS(1176), - [anon_sym_match] = ACTIONS(1176), - [anon_sym_mod] = ACTIONS(1176), - [anon_sym_pub] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_struct] = ACTIONS(1176), - [anon_sym_trait] = ACTIONS(1176), - [anon_sym_type] = ACTIONS(1176), - [anon_sym_union] = ACTIONS(1176), - [anon_sym_unsafe] = ACTIONS(1176), - [anon_sym_use] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym_LT] = ACTIONS(1174), - [anon_sym_COLON_COLON] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_DOT_DOT] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PIPE] = ACTIONS(1174), - [anon_sym_yield] = ACTIONS(1176), - [anon_sym_move] = ACTIONS(1176), - [sym_integer_literal] = ACTIONS(1174), - [aux_sym_string_literal_token1] = ACTIONS(1174), - [sym_char_literal] = ACTIONS(1174), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1176), - [sym_super] = ACTIONS(1176), - [sym_crate] = ACTIONS(1176), - [sym_metavariable] = ACTIONS(1174), - [sym_raw_string_literal] = ACTIONS(1174), - [sym_float_literal] = ACTIONS(1174), + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_macro_rules_BANG] = ACTIONS(1156), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_STAR] = ACTIONS(1156), + [anon_sym_u8] = ACTIONS(1158), + [anon_sym_i8] = ACTIONS(1158), + [anon_sym_u16] = ACTIONS(1158), + [anon_sym_i16] = ACTIONS(1158), + [anon_sym_u32] = ACTIONS(1158), + [anon_sym_i32] = ACTIONS(1158), + [anon_sym_u64] = ACTIONS(1158), + [anon_sym_i64] = ACTIONS(1158), + [anon_sym_u128] = ACTIONS(1158), + [anon_sym_i128] = ACTIONS(1158), + [anon_sym_isize] = ACTIONS(1158), + [anon_sym_usize] = ACTIONS(1158), + [anon_sym_f32] = ACTIONS(1158), + [anon_sym_f64] = ACTIONS(1158), + [anon_sym_bool] = ACTIONS(1158), + [anon_sym_str] = ACTIONS(1158), + [anon_sym_char] = ACTIONS(1158), + [anon_sym_SQUOTE] = ACTIONS(1158), + [anon_sym_async] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_fn] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_impl] = ACTIONS(1158), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_loop] = ACTIONS(1158), + [anon_sym_match] = ACTIONS(1158), + [anon_sym_mod] = ACTIONS(1158), + [anon_sym_pub] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_trait] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_unsafe] = ACTIONS(1158), + [anon_sym_use] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_POUND] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym_LT] = ACTIONS(1156), + [anon_sym_COLON_COLON] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_DOT_DOT] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_yield] = ACTIONS(1158), + [anon_sym_move] = ACTIONS(1158), + [sym_integer_literal] = ACTIONS(1156), + [aux_sym_string_literal_token1] = ACTIONS(1156), + [sym_char_literal] = ACTIONS(1156), + [anon_sym_true] = ACTIONS(1158), + [anon_sym_false] = ACTIONS(1158), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1158), + [sym_super] = ACTIONS(1158), + [sym_crate] = ACTIONS(1158), + [sym_metavariable] = ACTIONS(1156), + [sym_raw_string_literal] = ACTIONS(1156), + [sym_float_literal] = ACTIONS(1156), [sym_block_comment] = ACTIONS(3), }, [280] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym_macro_rules_BANG] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1178), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1180), - [anon_sym_i8] = ACTIONS(1180), - [anon_sym_u16] = ACTIONS(1180), - [anon_sym_i16] = ACTIONS(1180), - [anon_sym_u32] = ACTIONS(1180), - [anon_sym_i32] = ACTIONS(1180), - [anon_sym_u64] = ACTIONS(1180), - [anon_sym_i64] = ACTIONS(1180), - [anon_sym_u128] = ACTIONS(1180), - [anon_sym_i128] = ACTIONS(1180), - [anon_sym_isize] = ACTIONS(1180), - [anon_sym_usize] = ACTIONS(1180), - [anon_sym_f32] = ACTIONS(1180), - [anon_sym_f64] = ACTIONS(1180), - [anon_sym_bool] = ACTIONS(1180), - [anon_sym_str] = ACTIONS(1180), - [anon_sym_char] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_async] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_const] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_default] = ACTIONS(1180), - [anon_sym_enum] = ACTIONS(1180), - [anon_sym_fn] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1180), - [anon_sym_let] = ACTIONS(1180), - [anon_sym_loop] = ACTIONS(1180), - [anon_sym_match] = ACTIONS(1180), - [anon_sym_mod] = ACTIONS(1180), - [anon_sym_pub] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1180), - [anon_sym_struct] = ACTIONS(1180), - [anon_sym_trait] = ACTIONS(1180), - [anon_sym_type] = ACTIONS(1180), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1180), - [anon_sym_use] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_POUND] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_COLON_COLON] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_move] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1178), - [aux_sym_string_literal_token1] = ACTIONS(1178), - [sym_char_literal] = ACTIONS(1178), - [anon_sym_true] = ACTIONS(1180), - [anon_sym_false] = ACTIONS(1180), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1178), - [sym_raw_string_literal] = ACTIONS(1178), - [sym_float_literal] = ACTIONS(1178), + [ts_builtin_sym_end] = ACTIONS(1160), + [sym_identifier] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1160), + [anon_sym_macro_rules_BANG] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1160), + [anon_sym_LBRACK] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_u8] = ACTIONS(1162), + [anon_sym_i8] = ACTIONS(1162), + [anon_sym_u16] = ACTIONS(1162), + [anon_sym_i16] = ACTIONS(1162), + [anon_sym_u32] = ACTIONS(1162), + [anon_sym_i32] = ACTIONS(1162), + [anon_sym_u64] = ACTIONS(1162), + [anon_sym_i64] = ACTIONS(1162), + [anon_sym_u128] = ACTIONS(1162), + [anon_sym_i128] = ACTIONS(1162), + [anon_sym_isize] = ACTIONS(1162), + [anon_sym_usize] = ACTIONS(1162), + [anon_sym_f32] = ACTIONS(1162), + [anon_sym_f64] = ACTIONS(1162), + [anon_sym_bool] = ACTIONS(1162), + [anon_sym_str] = ACTIONS(1162), + [anon_sym_char] = ACTIONS(1162), + [anon_sym_SQUOTE] = ACTIONS(1162), + [anon_sym_async] = ACTIONS(1162), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_const] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_fn] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_impl] = ACTIONS(1162), + [anon_sym_let] = ACTIONS(1162), + [anon_sym_loop] = ACTIONS(1162), + [anon_sym_match] = ACTIONS(1162), + [anon_sym_mod] = ACTIONS(1162), + [anon_sym_pub] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_struct] = ACTIONS(1162), + [anon_sym_trait] = ACTIONS(1162), + [anon_sym_type] = ACTIONS(1162), + [anon_sym_union] = ACTIONS(1162), + [anon_sym_unsafe] = ACTIONS(1162), + [anon_sym_use] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [anon_sym_POUND] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_COLON_COLON] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_PIPE] = ACTIONS(1160), + [anon_sym_yield] = ACTIONS(1162), + [anon_sym_move] = ACTIONS(1162), + [sym_integer_literal] = ACTIONS(1160), + [aux_sym_string_literal_token1] = ACTIONS(1160), + [sym_char_literal] = ACTIONS(1160), + [anon_sym_true] = ACTIONS(1162), + [anon_sym_false] = ACTIONS(1162), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1162), + [sym_super] = ACTIONS(1162), + [sym_crate] = ACTIONS(1162), + [sym_metavariable] = ACTIONS(1160), + [sym_raw_string_literal] = ACTIONS(1160), + [sym_float_literal] = ACTIONS(1160), [sym_block_comment] = ACTIONS(3), }, [281] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1182), - [anon_sym_macro_rules_BANG] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_RBRACE] = ACTIONS(1182), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_u8] = ACTIONS(1184), - [anon_sym_i8] = ACTIONS(1184), - [anon_sym_u16] = ACTIONS(1184), - [anon_sym_i16] = ACTIONS(1184), - [anon_sym_u32] = ACTIONS(1184), - [anon_sym_i32] = ACTIONS(1184), - [anon_sym_u64] = ACTIONS(1184), - [anon_sym_i64] = ACTIONS(1184), - [anon_sym_u128] = ACTIONS(1184), - [anon_sym_i128] = ACTIONS(1184), - [anon_sym_isize] = ACTIONS(1184), - [anon_sym_usize] = ACTIONS(1184), - [anon_sym_f32] = ACTIONS(1184), - [anon_sym_f64] = ACTIONS(1184), - [anon_sym_bool] = ACTIONS(1184), - [anon_sym_str] = ACTIONS(1184), - [anon_sym_char] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_async] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_default] = ACTIONS(1184), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_fn] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_impl] = ACTIONS(1184), - [anon_sym_let] = ACTIONS(1184), - [anon_sym_loop] = ACTIONS(1184), - [anon_sym_match] = ACTIONS(1184), - [anon_sym_mod] = ACTIONS(1184), - [anon_sym_pub] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_static] = ACTIONS(1184), - [anon_sym_struct] = ACTIONS(1184), - [anon_sym_trait] = ACTIONS(1184), - [anon_sym_type] = ACTIONS(1184), - [anon_sym_union] = ACTIONS(1184), - [anon_sym_unsafe] = ACTIONS(1184), - [anon_sym_use] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1182), - [anon_sym_extern] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1182), - [anon_sym_COLON_COLON] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1182), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_DASH] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_move] = ACTIONS(1184), - [sym_integer_literal] = ACTIONS(1182), - [aux_sym_string_literal_token1] = ACTIONS(1182), - [sym_char_literal] = ACTIONS(1182), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(1182), - [sym_float_literal] = ACTIONS(1182), + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1166), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_macro_rules_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_u8] = ACTIONS(1166), + [anon_sym_i8] = ACTIONS(1166), + [anon_sym_u16] = ACTIONS(1166), + [anon_sym_i16] = ACTIONS(1166), + [anon_sym_u32] = ACTIONS(1166), + [anon_sym_i32] = ACTIONS(1166), + [anon_sym_u64] = ACTIONS(1166), + [anon_sym_i64] = ACTIONS(1166), + [anon_sym_u128] = ACTIONS(1166), + [anon_sym_i128] = ACTIONS(1166), + [anon_sym_isize] = ACTIONS(1166), + [anon_sym_usize] = ACTIONS(1166), + [anon_sym_f32] = ACTIONS(1166), + [anon_sym_f64] = ACTIONS(1166), + [anon_sym_bool] = ACTIONS(1166), + [anon_sym_str] = ACTIONS(1166), + [anon_sym_char] = ACTIONS(1166), + [anon_sym_SQUOTE] = ACTIONS(1166), + [anon_sym_async] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_const] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_fn] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_impl] = ACTIONS(1166), + [anon_sym_let] = ACTIONS(1166), + [anon_sym_loop] = ACTIONS(1166), + [anon_sym_match] = ACTIONS(1166), + [anon_sym_mod] = ACTIONS(1166), + [anon_sym_pub] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_struct] = ACTIONS(1166), + [anon_sym_trait] = ACTIONS(1166), + [anon_sym_type] = ACTIONS(1166), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_unsafe] = ACTIONS(1166), + [anon_sym_use] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_POUND] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym_LT] = ACTIONS(1164), + [anon_sym_COLON_COLON] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1164), + [anon_sym_DOT_DOT] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1166), + [anon_sym_move] = ACTIONS(1166), + [sym_integer_literal] = ACTIONS(1164), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1164), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1166), + [sym_super] = ACTIONS(1166), + [sym_crate] = ACTIONS(1166), + [sym_metavariable] = ACTIONS(1164), + [sym_raw_string_literal] = ACTIONS(1164), + [sym_float_literal] = ACTIONS(1164), [sym_block_comment] = ACTIONS(3), }, [282] = { - [ts_builtin_sym_end] = ACTIONS(1186), - [sym_identifier] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_macro_rules_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_u8] = ACTIONS(1188), - [anon_sym_i8] = ACTIONS(1188), - [anon_sym_u16] = ACTIONS(1188), - [anon_sym_i16] = ACTIONS(1188), - [anon_sym_u32] = ACTIONS(1188), - [anon_sym_i32] = ACTIONS(1188), - [anon_sym_u64] = ACTIONS(1188), - [anon_sym_i64] = ACTIONS(1188), - [anon_sym_u128] = ACTIONS(1188), - [anon_sym_i128] = ACTIONS(1188), - [anon_sym_isize] = ACTIONS(1188), - [anon_sym_usize] = ACTIONS(1188), - [anon_sym_f32] = ACTIONS(1188), - [anon_sym_f64] = ACTIONS(1188), - [anon_sym_bool] = ACTIONS(1188), - [anon_sym_str] = ACTIONS(1188), - [anon_sym_char] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_async] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_const] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1188), - [anon_sym_default] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1188), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1188), - [anon_sym_impl] = ACTIONS(1188), - [anon_sym_let] = ACTIONS(1188), - [anon_sym_loop] = ACTIONS(1188), - [anon_sym_match] = ACTIONS(1188), - [anon_sym_mod] = ACTIONS(1188), - [anon_sym_pub] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1188), - [anon_sym_static] = ACTIONS(1188), - [anon_sym_struct] = ACTIONS(1188), - [anon_sym_trait] = ACTIONS(1188), - [anon_sym_type] = ACTIONS(1188), - [anon_sym_union] = ACTIONS(1188), - [anon_sym_unsafe] = ACTIONS(1188), - [anon_sym_use] = ACTIONS(1188), - [anon_sym_while] = ACTIONS(1188), - [anon_sym_POUND] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_COLON_COLON] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_yield] = ACTIONS(1188), - [anon_sym_move] = ACTIONS(1188), - [sym_integer_literal] = ACTIONS(1186), - [aux_sym_string_literal_token1] = ACTIONS(1186), - [sym_char_literal] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1188), - [anon_sym_false] = ACTIONS(1188), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1188), - [sym_super] = ACTIONS(1188), - [sym_crate] = ACTIONS(1188), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(1186), - [sym_float_literal] = ACTIONS(1186), + [ts_builtin_sym_end] = ACTIONS(1168), + [sym_identifier] = ACTIONS(1170), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym_macro_rules_BANG] = ACTIONS(1168), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_SQUOTE] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [anon_sym_fn] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_impl] = ACTIONS(1170), + [anon_sym_let] = ACTIONS(1170), + [anon_sym_loop] = ACTIONS(1170), + [anon_sym_match] = ACTIONS(1170), + [anon_sym_mod] = ACTIONS(1170), + [anon_sym_pub] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_struct] = ACTIONS(1170), + [anon_sym_trait] = ACTIONS(1170), + [anon_sym_type] = ACTIONS(1170), + [anon_sym_union] = ACTIONS(1170), + [anon_sym_unsafe] = ACTIONS(1170), + [anon_sym_use] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [anon_sym_POUND] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1168), + [anon_sym_extern] = ACTIONS(1170), + [anon_sym_LT] = ACTIONS(1168), + [anon_sym_COLON_COLON] = ACTIONS(1168), + [anon_sym_AMP] = ACTIONS(1168), + [anon_sym_DOT_DOT] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_PIPE] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_move] = ACTIONS(1170), + [sym_integer_literal] = ACTIONS(1168), + [aux_sym_string_literal_token1] = ACTIONS(1168), + [sym_char_literal] = ACTIONS(1168), + [anon_sym_true] = ACTIONS(1170), + [anon_sym_false] = ACTIONS(1170), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1168), + [sym_raw_string_literal] = ACTIONS(1168), + [sym_float_literal] = ACTIONS(1168), [sym_block_comment] = ACTIONS(3), }, [283] = { - [ts_builtin_sym_end] = ACTIONS(1190), - [sym_identifier] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_macro_rules_BANG] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1192), - [anon_sym_i8] = ACTIONS(1192), - [anon_sym_u16] = ACTIONS(1192), - [anon_sym_i16] = ACTIONS(1192), - [anon_sym_u32] = ACTIONS(1192), - [anon_sym_i32] = ACTIONS(1192), - [anon_sym_u64] = ACTIONS(1192), - [anon_sym_i64] = ACTIONS(1192), - [anon_sym_u128] = ACTIONS(1192), - [anon_sym_i128] = ACTIONS(1192), - [anon_sym_isize] = ACTIONS(1192), - [anon_sym_usize] = ACTIONS(1192), - [anon_sym_f32] = ACTIONS(1192), - [anon_sym_f64] = ACTIONS(1192), - [anon_sym_bool] = ACTIONS(1192), - [anon_sym_str] = ACTIONS(1192), - [anon_sym_char] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_break] = ACTIONS(1192), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_continue] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1192), - [anon_sym_fn] = ACTIONS(1192), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1192), - [anon_sym_impl] = ACTIONS(1192), - [anon_sym_let] = ACTIONS(1192), - [anon_sym_loop] = ACTIONS(1192), - [anon_sym_match] = ACTIONS(1192), - [anon_sym_mod] = ACTIONS(1192), - [anon_sym_pub] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1192), - [anon_sym_static] = ACTIONS(1192), - [anon_sym_struct] = ACTIONS(1192), - [anon_sym_trait] = ACTIONS(1192), - [anon_sym_type] = ACTIONS(1192), - [anon_sym_union] = ACTIONS(1192), - [anon_sym_unsafe] = ACTIONS(1192), - [anon_sym_use] = ACTIONS(1192), - [anon_sym_while] = ACTIONS(1192), - [anon_sym_POUND] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_COLON_COLON] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_move] = ACTIONS(1192), - [sym_integer_literal] = ACTIONS(1190), - [aux_sym_string_literal_token1] = ACTIONS(1190), - [sym_char_literal] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1192), - [anon_sym_false] = ACTIONS(1192), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1192), - [sym_super] = ACTIONS(1192), - [sym_crate] = ACTIONS(1192), - [sym_metavariable] = ACTIONS(1190), - [sym_raw_string_literal] = ACTIONS(1190), - [sym_float_literal] = ACTIONS(1190), + [ts_builtin_sym_end] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym_macro_rules_BANG] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_SQUOTE] = ACTIONS(1174), + [anon_sym_async] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_fn] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_impl] = ACTIONS(1174), + [anon_sym_let] = ACTIONS(1174), + [anon_sym_loop] = ACTIONS(1174), + [anon_sym_match] = ACTIONS(1174), + [anon_sym_mod] = ACTIONS(1174), + [anon_sym_pub] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_trait] = ACTIONS(1174), + [anon_sym_type] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_unsafe] = ACTIONS(1174), + [anon_sym_use] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_POUND] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym_LT] = ACTIONS(1172), + [anon_sym_COLON_COLON] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1172), + [anon_sym_DOT_DOT] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1172), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_move] = ACTIONS(1174), + [sym_integer_literal] = ACTIONS(1172), + [aux_sym_string_literal_token1] = ACTIONS(1172), + [sym_char_literal] = ACTIONS(1172), + [anon_sym_true] = ACTIONS(1174), + [anon_sym_false] = ACTIONS(1174), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1174), + [sym_super] = ACTIONS(1174), + [sym_crate] = ACTIONS(1174), + [sym_metavariable] = ACTIONS(1172), + [sym_raw_string_literal] = ACTIONS(1172), + [sym_float_literal] = ACTIONS(1172), [sym_block_comment] = ACTIONS(3), }, [284] = { - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_identifier] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_macro_rules_BANG] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_u8] = ACTIONS(1196), - [anon_sym_i8] = ACTIONS(1196), - [anon_sym_u16] = ACTIONS(1196), - [anon_sym_i16] = ACTIONS(1196), - [anon_sym_u32] = ACTIONS(1196), - [anon_sym_i32] = ACTIONS(1196), - [anon_sym_u64] = ACTIONS(1196), - [anon_sym_i64] = ACTIONS(1196), - [anon_sym_u128] = ACTIONS(1196), - [anon_sym_i128] = ACTIONS(1196), - [anon_sym_isize] = ACTIONS(1196), - [anon_sym_usize] = ACTIONS(1196), - [anon_sym_f32] = ACTIONS(1196), - [anon_sym_f64] = ACTIONS(1196), - [anon_sym_bool] = ACTIONS(1196), - [anon_sym_str] = ACTIONS(1196), - [anon_sym_char] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_fn] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_impl] = ACTIONS(1196), - [anon_sym_let] = ACTIONS(1196), - [anon_sym_loop] = ACTIONS(1196), - [anon_sym_match] = ACTIONS(1196), - [anon_sym_mod] = ACTIONS(1196), - [anon_sym_pub] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_trait] = ACTIONS(1196), - [anon_sym_type] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_unsafe] = ACTIONS(1196), - [anon_sym_use] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_COLON_COLON] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_yield] = ACTIONS(1196), - [anon_sym_move] = ACTIONS(1196), - [sym_integer_literal] = ACTIONS(1194), - [aux_sym_string_literal_token1] = ACTIONS(1194), - [sym_char_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1196), - [sym_super] = ACTIONS(1196), - [sym_crate] = ACTIONS(1196), - [sym_metavariable] = ACTIONS(1194), - [sym_raw_string_literal] = ACTIONS(1194), - [sym_float_literal] = ACTIONS(1194), + [ts_builtin_sym_end] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1178), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym_macro_rules_BANG] = ACTIONS(1176), + [anon_sym_LPAREN] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_RBRACE] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1176), + [anon_sym_u8] = ACTIONS(1178), + [anon_sym_i8] = ACTIONS(1178), + [anon_sym_u16] = ACTIONS(1178), + [anon_sym_i16] = ACTIONS(1178), + [anon_sym_u32] = ACTIONS(1178), + [anon_sym_i32] = ACTIONS(1178), + [anon_sym_u64] = ACTIONS(1178), + [anon_sym_i64] = ACTIONS(1178), + [anon_sym_u128] = ACTIONS(1178), + [anon_sym_i128] = ACTIONS(1178), + [anon_sym_isize] = ACTIONS(1178), + [anon_sym_usize] = ACTIONS(1178), + [anon_sym_f32] = ACTIONS(1178), + [anon_sym_f64] = ACTIONS(1178), + [anon_sym_bool] = ACTIONS(1178), + [anon_sym_str] = ACTIONS(1178), + [anon_sym_char] = ACTIONS(1178), + [anon_sym_SQUOTE] = ACTIONS(1178), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_fn] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_impl] = ACTIONS(1178), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_loop] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1178), + [anon_sym_mod] = ACTIONS(1178), + [anon_sym_pub] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_struct] = ACTIONS(1178), + [anon_sym_trait] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_unsafe] = ACTIONS(1178), + [anon_sym_use] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1176), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_PIPE] = ACTIONS(1176), + [anon_sym_yield] = ACTIONS(1178), + [anon_sym_move] = ACTIONS(1178), + [sym_integer_literal] = ACTIONS(1176), + [aux_sym_string_literal_token1] = ACTIONS(1176), + [sym_char_literal] = ACTIONS(1176), + [anon_sym_true] = ACTIONS(1178), + [anon_sym_false] = ACTIONS(1178), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1178), + [sym_super] = ACTIONS(1178), + [sym_crate] = ACTIONS(1178), + [sym_metavariable] = ACTIONS(1176), + [sym_raw_string_literal] = ACTIONS(1176), + [sym_float_literal] = ACTIONS(1176), [sym_block_comment] = ACTIONS(3), }, [285] = { - [ts_builtin_sym_end] = ACTIONS(1198), - [sym_identifier] = ACTIONS(1200), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_macro_rules_BANG] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_u8] = ACTIONS(1200), - [anon_sym_i8] = ACTIONS(1200), - [anon_sym_u16] = ACTIONS(1200), - [anon_sym_i16] = ACTIONS(1200), - [anon_sym_u32] = ACTIONS(1200), - [anon_sym_i32] = ACTIONS(1200), - [anon_sym_u64] = ACTIONS(1200), - [anon_sym_i64] = ACTIONS(1200), - [anon_sym_u128] = ACTIONS(1200), - [anon_sym_i128] = ACTIONS(1200), - [anon_sym_isize] = ACTIONS(1200), - [anon_sym_usize] = ACTIONS(1200), - [anon_sym_f32] = ACTIONS(1200), - [anon_sym_f64] = ACTIONS(1200), - [anon_sym_bool] = ACTIONS(1200), - [anon_sym_str] = ACTIONS(1200), - [anon_sym_char] = ACTIONS(1200), - [anon_sym_SQUOTE] = ACTIONS(1200), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_fn] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_impl] = ACTIONS(1200), - [anon_sym_let] = ACTIONS(1200), - [anon_sym_loop] = ACTIONS(1200), - [anon_sym_match] = ACTIONS(1200), - [anon_sym_mod] = ACTIONS(1200), - [anon_sym_pub] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_trait] = ACTIONS(1200), - [anon_sym_type] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_unsafe] = ACTIONS(1200), - [anon_sym_use] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_POUND] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_COLON_COLON] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_yield] = ACTIONS(1200), - [anon_sym_move] = ACTIONS(1200), - [sym_integer_literal] = ACTIONS(1198), - [aux_sym_string_literal_token1] = ACTIONS(1198), - [sym_char_literal] = ACTIONS(1198), - [anon_sym_true] = ACTIONS(1200), - [anon_sym_false] = ACTIONS(1200), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1198), - [sym_raw_string_literal] = ACTIONS(1198), - [sym_float_literal] = ACTIONS(1198), + [ts_builtin_sym_end] = ACTIONS(1180), + [sym_identifier] = ACTIONS(1182), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym_macro_rules_BANG] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_RBRACE] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_u8] = ACTIONS(1182), + [anon_sym_i8] = ACTIONS(1182), + [anon_sym_u16] = ACTIONS(1182), + [anon_sym_i16] = ACTIONS(1182), + [anon_sym_u32] = ACTIONS(1182), + [anon_sym_i32] = ACTIONS(1182), + [anon_sym_u64] = ACTIONS(1182), + [anon_sym_i64] = ACTIONS(1182), + [anon_sym_u128] = ACTIONS(1182), + [anon_sym_i128] = ACTIONS(1182), + [anon_sym_isize] = ACTIONS(1182), + [anon_sym_usize] = ACTIONS(1182), + [anon_sym_f32] = ACTIONS(1182), + [anon_sym_f64] = ACTIONS(1182), + [anon_sym_bool] = ACTIONS(1182), + [anon_sym_str] = ACTIONS(1182), + [anon_sym_char] = ACTIONS(1182), + [anon_sym_SQUOTE] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1182), + [anon_sym_break] = ACTIONS(1182), + [anon_sym_const] = ACTIONS(1182), + [anon_sym_continue] = ACTIONS(1182), + [anon_sym_default] = ACTIONS(1182), + [anon_sym_enum] = ACTIONS(1182), + [anon_sym_fn] = ACTIONS(1182), + [anon_sym_for] = ACTIONS(1182), + [anon_sym_if] = ACTIONS(1182), + [anon_sym_impl] = ACTIONS(1182), + [anon_sym_let] = ACTIONS(1182), + [anon_sym_loop] = ACTIONS(1182), + [anon_sym_match] = ACTIONS(1182), + [anon_sym_mod] = ACTIONS(1182), + [anon_sym_pub] = ACTIONS(1182), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1182), + [anon_sym_struct] = ACTIONS(1182), + [anon_sym_trait] = ACTIONS(1182), + [anon_sym_type] = ACTIONS(1182), + [anon_sym_union] = ACTIONS(1182), + [anon_sym_unsafe] = ACTIONS(1182), + [anon_sym_use] = ACTIONS(1182), + [anon_sym_while] = ACTIONS(1182), + [anon_sym_POUND] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_extern] = ACTIONS(1182), + [anon_sym_LT] = ACTIONS(1180), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_DOT_DOT] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_yield] = ACTIONS(1182), + [anon_sym_move] = ACTIONS(1182), + [sym_integer_literal] = ACTIONS(1180), + [aux_sym_string_literal_token1] = ACTIONS(1180), + [sym_char_literal] = ACTIONS(1180), + [anon_sym_true] = ACTIONS(1182), + [anon_sym_false] = ACTIONS(1182), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1182), + [sym_super] = ACTIONS(1182), + [sym_crate] = ACTIONS(1182), + [sym_metavariable] = ACTIONS(1180), + [sym_raw_string_literal] = ACTIONS(1180), + [sym_float_literal] = ACTIONS(1180), [sym_block_comment] = ACTIONS(3), }, [286] = { - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_identifier] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_macro_rules_BANG] = ACTIONS(1202), - [anon_sym_LPAREN] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_u8] = ACTIONS(1204), - [anon_sym_i8] = ACTIONS(1204), - [anon_sym_u16] = ACTIONS(1204), - [anon_sym_i16] = ACTIONS(1204), - [anon_sym_u32] = ACTIONS(1204), - [anon_sym_i32] = ACTIONS(1204), - [anon_sym_u64] = ACTIONS(1204), - [anon_sym_i64] = ACTIONS(1204), - [anon_sym_u128] = ACTIONS(1204), - [anon_sym_i128] = ACTIONS(1204), - [anon_sym_isize] = ACTIONS(1204), - [anon_sym_usize] = ACTIONS(1204), - [anon_sym_f32] = ACTIONS(1204), - [anon_sym_f64] = ACTIONS(1204), - [anon_sym_bool] = ACTIONS(1204), - [anon_sym_str] = ACTIONS(1204), - [anon_sym_char] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_async] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_fn] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_impl] = ACTIONS(1204), - [anon_sym_let] = ACTIONS(1204), - [anon_sym_loop] = ACTIONS(1204), - [anon_sym_match] = ACTIONS(1204), - [anon_sym_mod] = ACTIONS(1204), - [anon_sym_pub] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_trait] = ACTIONS(1204), - [anon_sym_type] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_unsafe] = ACTIONS(1204), - [anon_sym_use] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_POUND] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym_LT] = ACTIONS(1202), - [anon_sym_COLON_COLON] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_DOT_DOT] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_PIPE] = ACTIONS(1202), - [anon_sym_yield] = ACTIONS(1204), - [anon_sym_move] = ACTIONS(1204), - [sym_integer_literal] = ACTIONS(1202), - [aux_sym_string_literal_token1] = ACTIONS(1202), - [sym_char_literal] = ACTIONS(1202), - [anon_sym_true] = ACTIONS(1204), - [anon_sym_false] = ACTIONS(1204), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1204), - [sym_super] = ACTIONS(1204), - [sym_crate] = ACTIONS(1204), - [sym_metavariable] = ACTIONS(1202), - [sym_raw_string_literal] = ACTIONS(1202), - [sym_float_literal] = ACTIONS(1202), + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_identifier] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1184), + [anon_sym_macro_rules_BANG] = ACTIONS(1184), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(1184), + [anon_sym_u8] = ACTIONS(1186), + [anon_sym_i8] = ACTIONS(1186), + [anon_sym_u16] = ACTIONS(1186), + [anon_sym_i16] = ACTIONS(1186), + [anon_sym_u32] = ACTIONS(1186), + [anon_sym_i32] = ACTIONS(1186), + [anon_sym_u64] = ACTIONS(1186), + [anon_sym_i64] = ACTIONS(1186), + [anon_sym_u128] = ACTIONS(1186), + [anon_sym_i128] = ACTIONS(1186), + [anon_sym_isize] = ACTIONS(1186), + [anon_sym_usize] = ACTIONS(1186), + [anon_sym_f32] = ACTIONS(1186), + [anon_sym_f64] = ACTIONS(1186), + [anon_sym_bool] = ACTIONS(1186), + [anon_sym_str] = ACTIONS(1186), + [anon_sym_char] = ACTIONS(1186), + [anon_sym_SQUOTE] = ACTIONS(1186), + [anon_sym_async] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_default] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(1186), + [anon_sym_fn] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_impl] = ACTIONS(1186), + [anon_sym_let] = ACTIONS(1186), + [anon_sym_loop] = ACTIONS(1186), + [anon_sym_match] = ACTIONS(1186), + [anon_sym_mod] = ACTIONS(1186), + [anon_sym_pub] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_struct] = ACTIONS(1186), + [anon_sym_trait] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_union] = ACTIONS(1186), + [anon_sym_unsafe] = ACTIONS(1186), + [anon_sym_use] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_POUND] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_extern] = ACTIONS(1186), + [anon_sym_LT] = ACTIONS(1184), + [anon_sym_COLON_COLON] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1184), + [anon_sym_DOT_DOT] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1184), + [anon_sym_yield] = ACTIONS(1186), + [anon_sym_move] = ACTIONS(1186), + [sym_integer_literal] = ACTIONS(1184), + [aux_sym_string_literal_token1] = ACTIONS(1184), + [sym_char_literal] = ACTIONS(1184), + [anon_sym_true] = ACTIONS(1186), + [anon_sym_false] = ACTIONS(1186), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1186), + [sym_super] = ACTIONS(1186), + [sym_crate] = ACTIONS(1186), + [sym_metavariable] = ACTIONS(1184), + [sym_raw_string_literal] = ACTIONS(1184), + [sym_float_literal] = ACTIONS(1184), [sym_block_comment] = ACTIONS(3), }, [287] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_macro_rules_BANG] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_async] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_fn] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_impl] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(1208), - [anon_sym_loop] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [anon_sym_mod] = ACTIONS(1208), - [anon_sym_pub] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_trait] = ACTIONS(1208), - [anon_sym_type] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_unsafe] = ACTIONS(1208), - [anon_sym_use] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_DOT_DOT] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(1206), - [anon_sym_yield] = ACTIONS(1208), - [anon_sym_move] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym_raw_string_literal] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym_macro_rules_BANG] = ACTIONS(1188), + [anon_sym_LPAREN] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_fn] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_impl] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_loop] = ACTIONS(1190), + [anon_sym_match] = ACTIONS(1190), + [anon_sym_mod] = ACTIONS(1190), + [anon_sym_pub] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_trait] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_unsafe] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_POUND] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_COLON_COLON] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_DOT_DOT] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_move] = ACTIONS(1190), + [sym_integer_literal] = ACTIONS(1188), + [aux_sym_string_literal_token1] = ACTIONS(1188), + [sym_char_literal] = ACTIONS(1188), + [anon_sym_true] = ACTIONS(1190), + [anon_sym_false] = ACTIONS(1190), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_crate] = ACTIONS(1190), + [sym_metavariable] = ACTIONS(1188), + [sym_raw_string_literal] = ACTIONS(1188), + [sym_float_literal] = ACTIONS(1188), [sym_block_comment] = ACTIONS(3), }, [288] = { - [ts_builtin_sym_end] = ACTIONS(1210), - [sym_identifier] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_macro_rules_BANG] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(1210), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_RBRACE] = ACTIONS(1210), - [anon_sym_LBRACK] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_u8] = ACTIONS(1212), - [anon_sym_i8] = ACTIONS(1212), - [anon_sym_u16] = ACTIONS(1212), - [anon_sym_i16] = ACTIONS(1212), - [anon_sym_u32] = ACTIONS(1212), - [anon_sym_i32] = ACTIONS(1212), - [anon_sym_u64] = ACTIONS(1212), - [anon_sym_i64] = ACTIONS(1212), - [anon_sym_u128] = ACTIONS(1212), - [anon_sym_i128] = ACTIONS(1212), - [anon_sym_isize] = ACTIONS(1212), - [anon_sym_usize] = ACTIONS(1212), - [anon_sym_f32] = ACTIONS(1212), - [anon_sym_f64] = ACTIONS(1212), - [anon_sym_bool] = ACTIONS(1212), - [anon_sym_str] = ACTIONS(1212), - [anon_sym_char] = ACTIONS(1212), - [anon_sym_SQUOTE] = ACTIONS(1212), - [anon_sym_async] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_fn] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_impl] = ACTIONS(1212), - [anon_sym_let] = ACTIONS(1212), - [anon_sym_loop] = ACTIONS(1212), - [anon_sym_match] = ACTIONS(1212), - [anon_sym_mod] = ACTIONS(1212), - [anon_sym_pub] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_trait] = ACTIONS(1212), - [anon_sym_type] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_unsafe] = ACTIONS(1212), - [anon_sym_use] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_POUND] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_COLON_COLON] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_DOT_DOT] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_PIPE] = ACTIONS(1210), - [anon_sym_yield] = ACTIONS(1212), - [anon_sym_move] = ACTIONS(1212), - [sym_integer_literal] = ACTIONS(1210), - [aux_sym_string_literal_token1] = ACTIONS(1210), - [sym_char_literal] = ACTIONS(1210), - [anon_sym_true] = ACTIONS(1212), - [anon_sym_false] = ACTIONS(1212), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1212), - [sym_super] = ACTIONS(1212), - [sym_crate] = ACTIONS(1212), - [sym_metavariable] = ACTIONS(1210), - [sym_raw_string_literal] = ACTIONS(1210), - [sym_float_literal] = ACTIONS(1210), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_macro_rules_BANG] = ACTIONS(1192), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_u8] = ACTIONS(1194), + [anon_sym_i8] = ACTIONS(1194), + [anon_sym_u16] = ACTIONS(1194), + [anon_sym_i16] = ACTIONS(1194), + [anon_sym_u32] = ACTIONS(1194), + [anon_sym_i32] = ACTIONS(1194), + [anon_sym_u64] = ACTIONS(1194), + [anon_sym_i64] = ACTIONS(1194), + [anon_sym_u128] = ACTIONS(1194), + [anon_sym_i128] = ACTIONS(1194), + [anon_sym_isize] = ACTIONS(1194), + [anon_sym_usize] = ACTIONS(1194), + [anon_sym_f32] = ACTIONS(1194), + [anon_sym_f64] = ACTIONS(1194), + [anon_sym_bool] = ACTIONS(1194), + [anon_sym_str] = ACTIONS(1194), + [anon_sym_char] = ACTIONS(1194), + [anon_sym_SQUOTE] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_fn] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_impl] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_loop] = ACTIONS(1194), + [anon_sym_match] = ACTIONS(1194), + [anon_sym_mod] = ACTIONS(1194), + [anon_sym_pub] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_trait] = ACTIONS(1194), + [anon_sym_type] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_unsafe] = ACTIONS(1194), + [anon_sym_use] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_POUND] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_COLON_COLON] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_DOT_DOT] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [anon_sym_yield] = ACTIONS(1194), + [anon_sym_move] = ACTIONS(1194), + [sym_integer_literal] = ACTIONS(1192), + [aux_sym_string_literal_token1] = ACTIONS(1192), + [sym_char_literal] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1194), + [sym_super] = ACTIONS(1194), + [sym_crate] = ACTIONS(1194), + [sym_metavariable] = ACTIONS(1192), + [sym_raw_string_literal] = ACTIONS(1192), + [sym_float_literal] = ACTIONS(1192), [sym_block_comment] = ACTIONS(3), }, [289] = { - [ts_builtin_sym_end] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_macro_rules_BANG] = ACTIONS(1214), - [anon_sym_LPAREN] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_u8] = ACTIONS(1216), - [anon_sym_i8] = ACTIONS(1216), - [anon_sym_u16] = ACTIONS(1216), - [anon_sym_i16] = ACTIONS(1216), - [anon_sym_u32] = ACTIONS(1216), - [anon_sym_i32] = ACTIONS(1216), - [anon_sym_u64] = ACTIONS(1216), - [anon_sym_i64] = ACTIONS(1216), - [anon_sym_u128] = ACTIONS(1216), - [anon_sym_i128] = ACTIONS(1216), - [anon_sym_isize] = ACTIONS(1216), - [anon_sym_usize] = ACTIONS(1216), - [anon_sym_f32] = ACTIONS(1216), - [anon_sym_f64] = ACTIONS(1216), - [anon_sym_bool] = ACTIONS(1216), - [anon_sym_str] = ACTIONS(1216), - [anon_sym_char] = ACTIONS(1216), - [anon_sym_SQUOTE] = ACTIONS(1216), - [anon_sym_async] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_fn] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_impl] = ACTIONS(1216), - [anon_sym_let] = ACTIONS(1216), - [anon_sym_loop] = ACTIONS(1216), - [anon_sym_match] = ACTIONS(1216), - [anon_sym_mod] = ACTIONS(1216), - [anon_sym_pub] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_trait] = ACTIONS(1216), - [anon_sym_type] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_unsafe] = ACTIONS(1216), - [anon_sym_use] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_POUND] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1214), - [anon_sym_COLON_COLON] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_DOT_DOT] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(1214), - [anon_sym_yield] = ACTIONS(1216), - [anon_sym_move] = ACTIONS(1216), - [sym_integer_literal] = ACTIONS(1214), - [aux_sym_string_literal_token1] = ACTIONS(1214), - [sym_char_literal] = ACTIONS(1214), - [anon_sym_true] = ACTIONS(1216), - [anon_sym_false] = ACTIONS(1216), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1216), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1214), - [sym_raw_string_literal] = ACTIONS(1214), - [sym_float_literal] = ACTIONS(1214), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_identifier] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_macro_rules_BANG] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_u8] = ACTIONS(1198), + [anon_sym_i8] = ACTIONS(1198), + [anon_sym_u16] = ACTIONS(1198), + [anon_sym_i16] = ACTIONS(1198), + [anon_sym_u32] = ACTIONS(1198), + [anon_sym_i32] = ACTIONS(1198), + [anon_sym_u64] = ACTIONS(1198), + [anon_sym_i64] = ACTIONS(1198), + [anon_sym_u128] = ACTIONS(1198), + [anon_sym_i128] = ACTIONS(1198), + [anon_sym_isize] = ACTIONS(1198), + [anon_sym_usize] = ACTIONS(1198), + [anon_sym_f32] = ACTIONS(1198), + [anon_sym_f64] = ACTIONS(1198), + [anon_sym_bool] = ACTIONS(1198), + [anon_sym_str] = ACTIONS(1198), + [anon_sym_char] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_async] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_fn] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_impl] = ACTIONS(1198), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_loop] = ACTIONS(1198), + [anon_sym_match] = ACTIONS(1198), + [anon_sym_mod] = ACTIONS(1198), + [anon_sym_pub] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_trait] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_union] = ACTIONS(1198), + [anon_sym_unsafe] = ACTIONS(1198), + [anon_sym_use] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_POUND] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_move] = ACTIONS(1198), + [sym_integer_literal] = ACTIONS(1196), + [aux_sym_string_literal_token1] = ACTIONS(1196), + [sym_char_literal] = ACTIONS(1196), + [anon_sym_true] = ACTIONS(1198), + [anon_sym_false] = ACTIONS(1198), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1198), + [sym_super] = ACTIONS(1198), + [sym_crate] = ACTIONS(1198), + [sym_metavariable] = ACTIONS(1196), + [sym_raw_string_literal] = ACTIONS(1196), + [sym_float_literal] = ACTIONS(1196), [sym_block_comment] = ACTIONS(3), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(1218), - [sym_identifier] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_macro_rules_BANG] = ACTIONS(1218), - [anon_sym_LPAREN] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_RBRACE] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_u8] = ACTIONS(1220), - [anon_sym_i8] = ACTIONS(1220), - [anon_sym_u16] = ACTIONS(1220), - [anon_sym_i16] = ACTIONS(1220), - [anon_sym_u32] = ACTIONS(1220), - [anon_sym_i32] = ACTIONS(1220), - [anon_sym_u64] = ACTIONS(1220), - [anon_sym_i64] = ACTIONS(1220), - [anon_sym_u128] = ACTIONS(1220), - [anon_sym_i128] = ACTIONS(1220), - [anon_sym_isize] = ACTIONS(1220), - [anon_sym_usize] = ACTIONS(1220), - [anon_sym_f32] = ACTIONS(1220), - [anon_sym_f64] = ACTIONS(1220), - [anon_sym_bool] = ACTIONS(1220), - [anon_sym_str] = ACTIONS(1220), - [anon_sym_char] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [anon_sym_async] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_fn] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_impl] = ACTIONS(1220), - [anon_sym_let] = ACTIONS(1220), - [anon_sym_loop] = ACTIONS(1220), - [anon_sym_match] = ACTIONS(1220), - [anon_sym_mod] = ACTIONS(1220), - [anon_sym_pub] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_trait] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_unsafe] = ACTIONS(1220), - [anon_sym_use] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_DOT_DOT] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_move] = ACTIONS(1220), - [sym_integer_literal] = ACTIONS(1218), - [aux_sym_string_literal_token1] = ACTIONS(1218), - [sym_char_literal] = ACTIONS(1218), - [anon_sym_true] = ACTIONS(1220), - [anon_sym_false] = ACTIONS(1220), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1220), - [sym_super] = ACTIONS(1220), - [sym_crate] = ACTIONS(1220), - [sym_metavariable] = ACTIONS(1218), - [sym_raw_string_literal] = ACTIONS(1218), - [sym_float_literal] = ACTIONS(1218), + [ts_builtin_sym_end] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym_macro_rules_BANG] = ACTIONS(1200), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_u8] = ACTIONS(1202), + [anon_sym_i8] = ACTIONS(1202), + [anon_sym_u16] = ACTIONS(1202), + [anon_sym_i16] = ACTIONS(1202), + [anon_sym_u32] = ACTIONS(1202), + [anon_sym_i32] = ACTIONS(1202), + [anon_sym_u64] = ACTIONS(1202), + [anon_sym_i64] = ACTIONS(1202), + [anon_sym_u128] = ACTIONS(1202), + [anon_sym_i128] = ACTIONS(1202), + [anon_sym_isize] = ACTIONS(1202), + [anon_sym_usize] = ACTIONS(1202), + [anon_sym_f32] = ACTIONS(1202), + [anon_sym_f64] = ACTIONS(1202), + [anon_sym_bool] = ACTIONS(1202), + [anon_sym_str] = ACTIONS(1202), + [anon_sym_char] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_const] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1202), + [anon_sym_fn] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_impl] = ACTIONS(1202), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_loop] = ACTIONS(1202), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_mod] = ACTIONS(1202), + [anon_sym_pub] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_struct] = ACTIONS(1202), + [anon_sym_trait] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_union] = ACTIONS(1202), + [anon_sym_unsafe] = ACTIONS(1202), + [anon_sym_use] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_POUND] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PIPE] = ACTIONS(1200), + [anon_sym_yield] = ACTIONS(1202), + [anon_sym_move] = ACTIONS(1202), + [sym_integer_literal] = ACTIONS(1200), + [aux_sym_string_literal_token1] = ACTIONS(1200), + [sym_char_literal] = ACTIONS(1200), + [anon_sym_true] = ACTIONS(1202), + [anon_sym_false] = ACTIONS(1202), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_crate] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(1200), + [sym_raw_string_literal] = ACTIONS(1200), + [sym_float_literal] = ACTIONS(1200), [sym_block_comment] = ACTIONS(3), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_macro_rules_BANG] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_u8] = ACTIONS(1224), - [anon_sym_i8] = ACTIONS(1224), - [anon_sym_u16] = ACTIONS(1224), - [anon_sym_i16] = ACTIONS(1224), - [anon_sym_u32] = ACTIONS(1224), - [anon_sym_i32] = ACTIONS(1224), - [anon_sym_u64] = ACTIONS(1224), - [anon_sym_i64] = ACTIONS(1224), - [anon_sym_u128] = ACTIONS(1224), - [anon_sym_i128] = ACTIONS(1224), - [anon_sym_isize] = ACTIONS(1224), - [anon_sym_usize] = ACTIONS(1224), - [anon_sym_f32] = ACTIONS(1224), - [anon_sym_f64] = ACTIONS(1224), - [anon_sym_bool] = ACTIONS(1224), - [anon_sym_str] = ACTIONS(1224), - [anon_sym_char] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_fn] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_impl] = ACTIONS(1224), - [anon_sym_let] = ACTIONS(1224), - [anon_sym_loop] = ACTIONS(1224), - [anon_sym_match] = ACTIONS(1224), - [anon_sym_mod] = ACTIONS(1224), - [anon_sym_pub] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_trait] = ACTIONS(1224), - [anon_sym_type] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_unsafe] = ACTIONS(1224), - [anon_sym_use] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_POUND] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_COLON_COLON] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_DOT_DOT] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_yield] = ACTIONS(1224), - [anon_sym_move] = ACTIONS(1224), - [sym_integer_literal] = ACTIONS(1222), - [aux_sym_string_literal_token1] = ACTIONS(1222), - [sym_char_literal] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1224), - [anon_sym_false] = ACTIONS(1224), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1224), - [sym_super] = ACTIONS(1224), - [sym_crate] = ACTIONS(1224), - [sym_metavariable] = ACTIONS(1222), - [sym_raw_string_literal] = ACTIONS(1222), - [sym_float_literal] = ACTIONS(1222), + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym_macro_rules_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1204), + [anon_sym_u8] = ACTIONS(1206), + [anon_sym_i8] = ACTIONS(1206), + [anon_sym_u16] = ACTIONS(1206), + [anon_sym_i16] = ACTIONS(1206), + [anon_sym_u32] = ACTIONS(1206), + [anon_sym_i32] = ACTIONS(1206), + [anon_sym_u64] = ACTIONS(1206), + [anon_sym_i64] = ACTIONS(1206), + [anon_sym_u128] = ACTIONS(1206), + [anon_sym_i128] = ACTIONS(1206), + [anon_sym_isize] = ACTIONS(1206), + [anon_sym_usize] = ACTIONS(1206), + [anon_sym_f32] = ACTIONS(1206), + [anon_sym_f64] = ACTIONS(1206), + [anon_sym_bool] = ACTIONS(1206), + [anon_sym_str] = ACTIONS(1206), + [anon_sym_char] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [anon_sym_async] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1206), + [anon_sym_enum] = ACTIONS(1206), + [anon_sym_fn] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_impl] = ACTIONS(1206), + [anon_sym_let] = ACTIONS(1206), + [anon_sym_loop] = ACTIONS(1206), + [anon_sym_match] = ACTIONS(1206), + [anon_sym_mod] = ACTIONS(1206), + [anon_sym_pub] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1206), + [anon_sym_struct] = ACTIONS(1206), + [anon_sym_trait] = ACTIONS(1206), + [anon_sym_type] = ACTIONS(1206), + [anon_sym_union] = ACTIONS(1206), + [anon_sym_unsafe] = ACTIONS(1206), + [anon_sym_use] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_POUND] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_extern] = ACTIONS(1206), + [anon_sym_LT] = ACTIONS(1204), + [anon_sym_COLON_COLON] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_PIPE] = ACTIONS(1204), + [anon_sym_yield] = ACTIONS(1206), + [anon_sym_move] = ACTIONS(1206), + [sym_integer_literal] = ACTIONS(1204), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1204), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1206), + [sym_super] = ACTIONS(1206), + [sym_crate] = ACTIONS(1206), + [sym_metavariable] = ACTIONS(1204), + [sym_raw_string_literal] = ACTIONS(1204), + [sym_float_literal] = ACTIONS(1204), [sym_block_comment] = ACTIONS(3), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_macro_rules_BANG] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_u8] = ACTIONS(1228), - [anon_sym_i8] = ACTIONS(1228), - [anon_sym_u16] = ACTIONS(1228), - [anon_sym_i16] = ACTIONS(1228), - [anon_sym_u32] = ACTIONS(1228), - [anon_sym_i32] = ACTIONS(1228), - [anon_sym_u64] = ACTIONS(1228), - [anon_sym_i64] = ACTIONS(1228), - [anon_sym_u128] = ACTIONS(1228), - [anon_sym_i128] = ACTIONS(1228), - [anon_sym_isize] = ACTIONS(1228), - [anon_sym_usize] = ACTIONS(1228), - [anon_sym_f32] = ACTIONS(1228), - [anon_sym_f64] = ACTIONS(1228), - [anon_sym_bool] = ACTIONS(1228), - [anon_sym_str] = ACTIONS(1228), - [anon_sym_char] = ACTIONS(1228), - [anon_sym_SQUOTE] = ACTIONS(1228), - [anon_sym_async] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_fn] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_impl] = ACTIONS(1228), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_loop] = ACTIONS(1228), - [anon_sym_match] = ACTIONS(1228), - [anon_sym_mod] = ACTIONS(1228), - [anon_sym_pub] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_trait] = ACTIONS(1228), - [anon_sym_type] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_unsafe] = ACTIONS(1228), - [anon_sym_use] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_POUND] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1226), - [anon_sym_COLON_COLON] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_DOT_DOT] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(1228), - [anon_sym_move] = ACTIONS(1228), - [sym_integer_literal] = ACTIONS(1226), - [aux_sym_string_literal_token1] = ACTIONS(1226), - [sym_char_literal] = ACTIONS(1226), - [anon_sym_true] = ACTIONS(1228), - [anon_sym_false] = ACTIONS(1228), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1228), - [sym_super] = ACTIONS(1228), - [sym_crate] = ACTIONS(1228), - [sym_metavariable] = ACTIONS(1226), - [sym_raw_string_literal] = ACTIONS(1226), - [sym_float_literal] = ACTIONS(1226), + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym_macro_rules_BANG] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_u8] = ACTIONS(1210), + [anon_sym_i8] = ACTIONS(1210), + [anon_sym_u16] = ACTIONS(1210), + [anon_sym_i16] = ACTIONS(1210), + [anon_sym_u32] = ACTIONS(1210), + [anon_sym_i32] = ACTIONS(1210), + [anon_sym_u64] = ACTIONS(1210), + [anon_sym_i64] = ACTIONS(1210), + [anon_sym_u128] = ACTIONS(1210), + [anon_sym_i128] = ACTIONS(1210), + [anon_sym_isize] = ACTIONS(1210), + [anon_sym_usize] = ACTIONS(1210), + [anon_sym_f32] = ACTIONS(1210), + [anon_sym_f64] = ACTIONS(1210), + [anon_sym_bool] = ACTIONS(1210), + [anon_sym_str] = ACTIONS(1210), + [anon_sym_char] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_const] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_enum] = ACTIONS(1210), + [anon_sym_fn] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_impl] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(1210), + [anon_sym_loop] = ACTIONS(1210), + [anon_sym_match] = ACTIONS(1210), + [anon_sym_mod] = ACTIONS(1210), + [anon_sym_pub] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_struct] = ACTIONS(1210), + [anon_sym_trait] = ACTIONS(1210), + [anon_sym_type] = ACTIONS(1210), + [anon_sym_union] = ACTIONS(1210), + [anon_sym_unsafe] = ACTIONS(1210), + [anon_sym_use] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_POUND] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1210), + [anon_sym_LT] = ACTIONS(1208), + [anon_sym_COLON_COLON] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PIPE] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1210), + [anon_sym_move] = ACTIONS(1210), + [sym_integer_literal] = ACTIONS(1208), + [aux_sym_string_literal_token1] = ACTIONS(1208), + [sym_char_literal] = ACTIONS(1208), + [anon_sym_true] = ACTIONS(1210), + [anon_sym_false] = ACTIONS(1210), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1210), + [sym_super] = ACTIONS(1210), + [sym_crate] = ACTIONS(1210), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1208), + [sym_float_literal] = ACTIONS(1208), [sym_block_comment] = ACTIONS(3), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(1230), - [sym_identifier] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_macro_rules_BANG] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_RBRACE] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_u8] = ACTIONS(1232), - [anon_sym_i8] = ACTIONS(1232), - [anon_sym_u16] = ACTIONS(1232), - [anon_sym_i16] = ACTIONS(1232), - [anon_sym_u32] = ACTIONS(1232), - [anon_sym_i32] = ACTIONS(1232), - [anon_sym_u64] = ACTIONS(1232), - [anon_sym_i64] = ACTIONS(1232), - [anon_sym_u128] = ACTIONS(1232), - [anon_sym_i128] = ACTIONS(1232), - [anon_sym_isize] = ACTIONS(1232), - [anon_sym_usize] = ACTIONS(1232), - [anon_sym_f32] = ACTIONS(1232), - [anon_sym_f64] = ACTIONS(1232), - [anon_sym_bool] = ACTIONS(1232), - [anon_sym_str] = ACTIONS(1232), - [anon_sym_char] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1232), - [anon_sym_async] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_fn] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_impl] = ACTIONS(1232), - [anon_sym_let] = ACTIONS(1232), - [anon_sym_loop] = ACTIONS(1232), - [anon_sym_match] = ACTIONS(1232), - [anon_sym_mod] = ACTIONS(1232), - [anon_sym_pub] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_trait] = ACTIONS(1232), - [anon_sym_type] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_unsafe] = ACTIONS(1232), - [anon_sym_use] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_COLON_COLON] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_PIPE] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_move] = ACTIONS(1232), - [sym_integer_literal] = ACTIONS(1230), - [aux_sym_string_literal_token1] = ACTIONS(1230), - [sym_char_literal] = ACTIONS(1230), - [anon_sym_true] = ACTIONS(1232), - [anon_sym_false] = ACTIONS(1232), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1232), - [sym_super] = ACTIONS(1232), - [sym_crate] = ACTIONS(1232), - [sym_metavariable] = ACTIONS(1230), - [sym_raw_string_literal] = ACTIONS(1230), - [sym_float_literal] = ACTIONS(1230), + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_macro_rules_BANG] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_u8] = ACTIONS(1214), + [anon_sym_i8] = ACTIONS(1214), + [anon_sym_u16] = ACTIONS(1214), + [anon_sym_i16] = ACTIONS(1214), + [anon_sym_u32] = ACTIONS(1214), + [anon_sym_i32] = ACTIONS(1214), + [anon_sym_u64] = ACTIONS(1214), + [anon_sym_i64] = ACTIONS(1214), + [anon_sym_u128] = ACTIONS(1214), + [anon_sym_i128] = ACTIONS(1214), + [anon_sym_isize] = ACTIONS(1214), + [anon_sym_usize] = ACTIONS(1214), + [anon_sym_f32] = ACTIONS(1214), + [anon_sym_f64] = ACTIONS(1214), + [anon_sym_bool] = ACTIONS(1214), + [anon_sym_str] = ACTIONS(1214), + [anon_sym_char] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_async] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_fn] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_impl] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_loop] = ACTIONS(1214), + [anon_sym_match] = ACTIONS(1214), + [anon_sym_mod] = ACTIONS(1214), + [anon_sym_pub] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_trait] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_unsafe] = ACTIONS(1214), + [anon_sym_use] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1214), + [anon_sym_LT] = ACTIONS(1212), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_DOT_DOT] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), + [anon_sym_move] = ACTIONS(1214), + [sym_integer_literal] = ACTIONS(1212), + [aux_sym_string_literal_token1] = ACTIONS(1212), + [sym_char_literal] = ACTIONS(1212), + [anon_sym_true] = ACTIONS(1214), + [anon_sym_false] = ACTIONS(1214), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1212), + [sym_raw_string_literal] = ACTIONS(1212), + [sym_float_literal] = ACTIONS(1212), [sym_block_comment] = ACTIONS(3), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_macro_rules_BANG] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_u8] = ACTIONS(1236), - [anon_sym_i8] = ACTIONS(1236), - [anon_sym_u16] = ACTIONS(1236), - [anon_sym_i16] = ACTIONS(1236), - [anon_sym_u32] = ACTIONS(1236), - [anon_sym_i32] = ACTIONS(1236), - [anon_sym_u64] = ACTIONS(1236), - [anon_sym_i64] = ACTIONS(1236), - [anon_sym_u128] = ACTIONS(1236), - [anon_sym_i128] = ACTIONS(1236), - [anon_sym_isize] = ACTIONS(1236), - [anon_sym_usize] = ACTIONS(1236), - [anon_sym_f32] = ACTIONS(1236), - [anon_sym_f64] = ACTIONS(1236), - [anon_sym_bool] = ACTIONS(1236), - [anon_sym_str] = ACTIONS(1236), - [anon_sym_char] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1236), - [anon_sym_async] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_fn] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_impl] = ACTIONS(1236), - [anon_sym_let] = ACTIONS(1236), - [anon_sym_loop] = ACTIONS(1236), - [anon_sym_match] = ACTIONS(1236), - [anon_sym_mod] = ACTIONS(1236), - [anon_sym_pub] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_trait] = ACTIONS(1236), - [anon_sym_type] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_unsafe] = ACTIONS(1236), - [anon_sym_use] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_COLON_COLON] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_DOT_DOT] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_yield] = ACTIONS(1236), - [anon_sym_move] = ACTIONS(1236), - [sym_integer_literal] = ACTIONS(1234), - [aux_sym_string_literal_token1] = ACTIONS(1234), - [sym_char_literal] = ACTIONS(1234), - [anon_sym_true] = ACTIONS(1236), - [anon_sym_false] = ACTIONS(1236), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1236), - [sym_super] = ACTIONS(1236), - [sym_crate] = ACTIONS(1236), - [sym_metavariable] = ACTIONS(1234), - [sym_raw_string_literal] = ACTIONS(1234), - [sym_float_literal] = ACTIONS(1234), + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_macro_rules_BANG] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_default] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1218), + [anon_sym_fn] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_impl] = ACTIONS(1218), + [anon_sym_let] = ACTIONS(1218), + [anon_sym_loop] = ACTIONS(1218), + [anon_sym_match] = ACTIONS(1218), + [anon_sym_mod] = ACTIONS(1218), + [anon_sym_pub] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_struct] = ACTIONS(1218), + [anon_sym_trait] = ACTIONS(1218), + [anon_sym_type] = ACTIONS(1218), + [anon_sym_union] = ACTIONS(1218), + [anon_sym_unsafe] = ACTIONS(1218), + [anon_sym_use] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym_LT] = ACTIONS(1216), + [anon_sym_COLON_COLON] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_DOT_DOT] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_yield] = ACTIONS(1218), + [anon_sym_move] = ACTIONS(1218), + [sym_integer_literal] = ACTIONS(1216), + [aux_sym_string_literal_token1] = ACTIONS(1216), + [sym_char_literal] = ACTIONS(1216), + [anon_sym_true] = ACTIONS(1218), + [anon_sym_false] = ACTIONS(1218), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1218), + [sym_super] = ACTIONS(1218), + [sym_crate] = ACTIONS(1218), + [sym_metavariable] = ACTIONS(1216), + [sym_raw_string_literal] = ACTIONS(1216), + [sym_float_literal] = ACTIONS(1216), [sym_block_comment] = ACTIONS(3), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_macro_rules_BANG] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_COLON_COLON] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_move] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1238), - [aux_sym_string_literal_token1] = ACTIONS(1238), - [sym_char_literal] = ACTIONS(1238), - [anon_sym_true] = ACTIONS(1240), - [anon_sym_false] = ACTIONS(1240), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1238), - [sym_raw_string_literal] = ACTIONS(1238), - [sym_float_literal] = ACTIONS(1238), + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_macro_rules_BANG] = ACTIONS(1220), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_RBRACE] = ACTIONS(1220), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_u8] = ACTIONS(1222), + [anon_sym_i8] = ACTIONS(1222), + [anon_sym_u16] = ACTIONS(1222), + [anon_sym_i16] = ACTIONS(1222), + [anon_sym_u32] = ACTIONS(1222), + [anon_sym_i32] = ACTIONS(1222), + [anon_sym_u64] = ACTIONS(1222), + [anon_sym_i64] = ACTIONS(1222), + [anon_sym_u128] = ACTIONS(1222), + [anon_sym_i128] = ACTIONS(1222), + [anon_sym_isize] = ACTIONS(1222), + [anon_sym_usize] = ACTIONS(1222), + [anon_sym_f32] = ACTIONS(1222), + [anon_sym_f64] = ACTIONS(1222), + [anon_sym_bool] = ACTIONS(1222), + [anon_sym_str] = ACTIONS(1222), + [anon_sym_char] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1222), + [anon_sym_enum] = ACTIONS(1222), + [anon_sym_fn] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_impl] = ACTIONS(1222), + [anon_sym_let] = ACTIONS(1222), + [anon_sym_loop] = ACTIONS(1222), + [anon_sym_match] = ACTIONS(1222), + [anon_sym_mod] = ACTIONS(1222), + [anon_sym_pub] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(1222), + [anon_sym_struct] = ACTIONS(1222), + [anon_sym_trait] = ACTIONS(1222), + [anon_sym_type] = ACTIONS(1222), + [anon_sym_union] = ACTIONS(1222), + [anon_sym_unsafe] = ACTIONS(1222), + [anon_sym_use] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_POUND] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_extern] = ACTIONS(1222), + [anon_sym_LT] = ACTIONS(1220), + [anon_sym_COLON_COLON] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_DOT_DOT] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_PIPE] = ACTIONS(1220), + [anon_sym_yield] = ACTIONS(1222), + [anon_sym_move] = ACTIONS(1222), + [sym_integer_literal] = ACTIONS(1220), + [aux_sym_string_literal_token1] = ACTIONS(1220), + [sym_char_literal] = ACTIONS(1220), + [anon_sym_true] = ACTIONS(1222), + [anon_sym_false] = ACTIONS(1222), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1222), + [sym_super] = ACTIONS(1222), + [sym_crate] = ACTIONS(1222), + [sym_metavariable] = ACTIONS(1220), + [sym_raw_string_literal] = ACTIONS(1220), + [sym_float_literal] = ACTIONS(1220), [sym_block_comment] = ACTIONS(3), }, [296] = { - [ts_builtin_sym_end] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_macro_rules_BANG] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1244), - [anon_sym_i8] = ACTIONS(1244), - [anon_sym_u16] = ACTIONS(1244), - [anon_sym_i16] = ACTIONS(1244), - [anon_sym_u32] = ACTIONS(1244), - [anon_sym_i32] = ACTIONS(1244), - [anon_sym_u64] = ACTIONS(1244), - [anon_sym_i64] = ACTIONS(1244), - [anon_sym_u128] = ACTIONS(1244), - [anon_sym_i128] = ACTIONS(1244), - [anon_sym_isize] = ACTIONS(1244), - [anon_sym_usize] = ACTIONS(1244), - [anon_sym_f32] = ACTIONS(1244), - [anon_sym_f64] = ACTIONS(1244), - [anon_sym_bool] = ACTIONS(1244), - [anon_sym_str] = ACTIONS(1244), - [anon_sym_char] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1244), - [anon_sym_async] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_fn] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_impl] = ACTIONS(1244), - [anon_sym_let] = ACTIONS(1244), - [anon_sym_loop] = ACTIONS(1244), - [anon_sym_match] = ACTIONS(1244), - [anon_sym_mod] = ACTIONS(1244), - [anon_sym_pub] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_trait] = ACTIONS(1244), - [anon_sym_type] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_unsafe] = ACTIONS(1244), - [anon_sym_use] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1244), - [anon_sym_move] = ACTIONS(1244), - [sym_integer_literal] = ACTIONS(1242), - [aux_sym_string_literal_token1] = ACTIONS(1242), - [sym_char_literal] = ACTIONS(1242), - [anon_sym_true] = ACTIONS(1244), - [anon_sym_false] = ACTIONS(1244), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1244), - [sym_super] = ACTIONS(1244), - [sym_crate] = ACTIONS(1244), - [sym_metavariable] = ACTIONS(1242), - [sym_raw_string_literal] = ACTIONS(1242), - [sym_float_literal] = ACTIONS(1242), + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym_macro_rules_BANG] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_u8] = ACTIONS(1226), + [anon_sym_i8] = ACTIONS(1226), + [anon_sym_u16] = ACTIONS(1226), + [anon_sym_i16] = ACTIONS(1226), + [anon_sym_u32] = ACTIONS(1226), + [anon_sym_i32] = ACTIONS(1226), + [anon_sym_u64] = ACTIONS(1226), + [anon_sym_i64] = ACTIONS(1226), + [anon_sym_u128] = ACTIONS(1226), + [anon_sym_i128] = ACTIONS(1226), + [anon_sym_isize] = ACTIONS(1226), + [anon_sym_usize] = ACTIONS(1226), + [anon_sym_f32] = ACTIONS(1226), + [anon_sym_f64] = ACTIONS(1226), + [anon_sym_bool] = ACTIONS(1226), + [anon_sym_str] = ACTIONS(1226), + [anon_sym_char] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_enum] = ACTIONS(1226), + [anon_sym_fn] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_impl] = ACTIONS(1226), + [anon_sym_let] = ACTIONS(1226), + [anon_sym_loop] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_mod] = ACTIONS(1226), + [anon_sym_pub] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1226), + [anon_sym_struct] = ACTIONS(1226), + [anon_sym_trait] = ACTIONS(1226), + [anon_sym_type] = ACTIONS(1226), + [anon_sym_union] = ACTIONS(1226), + [anon_sym_unsafe] = ACTIONS(1226), + [anon_sym_use] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_POUND] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_extern] = ACTIONS(1226), + [anon_sym_LT] = ACTIONS(1224), + [anon_sym_COLON_COLON] = ACTIONS(1224), + [anon_sym_AMP] = ACTIONS(1224), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_move] = ACTIONS(1226), + [sym_integer_literal] = ACTIONS(1224), + [aux_sym_string_literal_token1] = ACTIONS(1224), + [sym_char_literal] = ACTIONS(1224), + [anon_sym_true] = ACTIONS(1226), + [anon_sym_false] = ACTIONS(1226), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1226), + [sym_super] = ACTIONS(1226), + [sym_crate] = ACTIONS(1226), + [sym_metavariable] = ACTIONS(1224), + [sym_raw_string_literal] = ACTIONS(1224), + [sym_float_literal] = ACTIONS(1224), [sym_block_comment] = ACTIONS(3), }, [297] = { - [ts_builtin_sym_end] = ACTIONS(1246), - [sym_identifier] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_macro_rules_BANG] = ACTIONS(1246), - [anon_sym_LPAREN] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_RBRACE] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_async] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_fn] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_impl] = ACTIONS(1248), - [anon_sym_let] = ACTIONS(1248), - [anon_sym_loop] = ACTIONS(1248), - [anon_sym_match] = ACTIONS(1248), - [anon_sym_mod] = ACTIONS(1248), - [anon_sym_pub] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_trait] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_unsafe] = ACTIONS(1248), - [anon_sym_use] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_POUND] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_COLON_COLON] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1248), - [anon_sym_move] = ACTIONS(1248), - [sym_integer_literal] = ACTIONS(1246), - [aux_sym_string_literal_token1] = ACTIONS(1246), - [sym_char_literal] = ACTIONS(1246), - [anon_sym_true] = ACTIONS(1248), - [anon_sym_false] = ACTIONS(1248), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1248), - [sym_super] = ACTIONS(1248), - [sym_crate] = ACTIONS(1248), - [sym_metavariable] = ACTIONS(1246), - [sym_raw_string_literal] = ACTIONS(1246), - [sym_float_literal] = ACTIONS(1246), + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_identifier] = ACTIONS(1230), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym_macro_rules_BANG] = ACTIONS(1228), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1228), + [anon_sym_u8] = ACTIONS(1230), + [anon_sym_i8] = ACTIONS(1230), + [anon_sym_u16] = ACTIONS(1230), + [anon_sym_i16] = ACTIONS(1230), + [anon_sym_u32] = ACTIONS(1230), + [anon_sym_i32] = ACTIONS(1230), + [anon_sym_u64] = ACTIONS(1230), + [anon_sym_i64] = ACTIONS(1230), + [anon_sym_u128] = ACTIONS(1230), + [anon_sym_i128] = ACTIONS(1230), + [anon_sym_isize] = ACTIONS(1230), + [anon_sym_usize] = ACTIONS(1230), + [anon_sym_f32] = ACTIONS(1230), + [anon_sym_f64] = ACTIONS(1230), + [anon_sym_bool] = ACTIONS(1230), + [anon_sym_str] = ACTIONS(1230), + [anon_sym_char] = ACTIONS(1230), + [anon_sym_SQUOTE] = ACTIONS(1230), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_break] = ACTIONS(1230), + [anon_sym_const] = ACTIONS(1230), + [anon_sym_continue] = ACTIONS(1230), + [anon_sym_default] = ACTIONS(1230), + [anon_sym_enum] = ACTIONS(1230), + [anon_sym_fn] = ACTIONS(1230), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_if] = ACTIONS(1230), + [anon_sym_impl] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1230), + [anon_sym_loop] = ACTIONS(1230), + [anon_sym_match] = ACTIONS(1230), + [anon_sym_mod] = ACTIONS(1230), + [anon_sym_pub] = ACTIONS(1230), + [anon_sym_return] = ACTIONS(1230), + [anon_sym_static] = ACTIONS(1230), + [anon_sym_struct] = ACTIONS(1230), + [anon_sym_trait] = ACTIONS(1230), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_union] = ACTIONS(1230), + [anon_sym_unsafe] = ACTIONS(1230), + [anon_sym_use] = ACTIONS(1230), + [anon_sym_while] = ACTIONS(1230), + [anon_sym_POUND] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_extern] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1228), + [anon_sym_COLON_COLON] = ACTIONS(1228), + [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_DOT_DOT] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_PIPE] = ACTIONS(1228), + [anon_sym_yield] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1230), + [sym_integer_literal] = ACTIONS(1228), + [aux_sym_string_literal_token1] = ACTIONS(1228), + [sym_char_literal] = ACTIONS(1228), + [anon_sym_true] = ACTIONS(1230), + [anon_sym_false] = ACTIONS(1230), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1230), + [sym_super] = ACTIONS(1230), + [sym_crate] = ACTIONS(1230), + [sym_metavariable] = ACTIONS(1228), + [sym_raw_string_literal] = ACTIONS(1228), + [sym_float_literal] = ACTIONS(1228), [sym_block_comment] = ACTIONS(3), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_macro_rules_BANG] = ACTIONS(1250), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_u8] = ACTIONS(1252), - [anon_sym_i8] = ACTIONS(1252), - [anon_sym_u16] = ACTIONS(1252), - [anon_sym_i16] = ACTIONS(1252), - [anon_sym_u32] = ACTIONS(1252), - [anon_sym_i32] = ACTIONS(1252), - [anon_sym_u64] = ACTIONS(1252), - [anon_sym_i64] = ACTIONS(1252), - [anon_sym_u128] = ACTIONS(1252), - [anon_sym_i128] = ACTIONS(1252), - [anon_sym_isize] = ACTIONS(1252), - [anon_sym_usize] = ACTIONS(1252), - [anon_sym_f32] = ACTIONS(1252), - [anon_sym_f64] = ACTIONS(1252), - [anon_sym_bool] = ACTIONS(1252), - [anon_sym_str] = ACTIONS(1252), - [anon_sym_char] = ACTIONS(1252), - [anon_sym_SQUOTE] = ACTIONS(1252), - [anon_sym_async] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_fn] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_impl] = ACTIONS(1252), - [anon_sym_let] = ACTIONS(1252), - [anon_sym_loop] = ACTIONS(1252), - [anon_sym_match] = ACTIONS(1252), - [anon_sym_mod] = ACTIONS(1252), - [anon_sym_pub] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_trait] = ACTIONS(1252), - [anon_sym_type] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_unsafe] = ACTIONS(1252), - [anon_sym_use] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_COLON_COLON] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_DOT_DOT] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_yield] = ACTIONS(1252), - [anon_sym_move] = ACTIONS(1252), - [sym_integer_literal] = ACTIONS(1250), - [aux_sym_string_literal_token1] = ACTIONS(1250), - [sym_char_literal] = ACTIONS(1250), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1252), - [sym_super] = ACTIONS(1252), - [sym_crate] = ACTIONS(1252), - [sym_metavariable] = ACTIONS(1250), - [sym_raw_string_literal] = ACTIONS(1250), - [sym_float_literal] = ACTIONS(1250), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_identifier] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym_macro_rules_BANG] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1232), + [anon_sym_u8] = ACTIONS(1234), + [anon_sym_i8] = ACTIONS(1234), + [anon_sym_u16] = ACTIONS(1234), + [anon_sym_i16] = ACTIONS(1234), + [anon_sym_u32] = ACTIONS(1234), + [anon_sym_i32] = ACTIONS(1234), + [anon_sym_u64] = ACTIONS(1234), + [anon_sym_i64] = ACTIONS(1234), + [anon_sym_u128] = ACTIONS(1234), + [anon_sym_i128] = ACTIONS(1234), + [anon_sym_isize] = ACTIONS(1234), + [anon_sym_usize] = ACTIONS(1234), + [anon_sym_f32] = ACTIONS(1234), + [anon_sym_f64] = ACTIONS(1234), + [anon_sym_bool] = ACTIONS(1234), + [anon_sym_str] = ACTIONS(1234), + [anon_sym_char] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_fn] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_impl] = ACTIONS(1234), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_loop] = ACTIONS(1234), + [anon_sym_match] = ACTIONS(1234), + [anon_sym_mod] = ACTIONS(1234), + [anon_sym_pub] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_trait] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1234), + [anon_sym_use] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_POUND] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1232), + [anon_sym_COLON_COLON] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1232), + [anon_sym_DOT_DOT] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_PIPE] = ACTIONS(1232), + [anon_sym_yield] = ACTIONS(1234), + [anon_sym_move] = ACTIONS(1234), + [sym_integer_literal] = ACTIONS(1232), + [aux_sym_string_literal_token1] = ACTIONS(1232), + [sym_char_literal] = ACTIONS(1232), + [anon_sym_true] = ACTIONS(1234), + [anon_sym_false] = ACTIONS(1234), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1232), + [sym_raw_string_literal] = ACTIONS(1232), + [sym_float_literal] = ACTIONS(1232), [sym_block_comment] = ACTIONS(3), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(1254), - [sym_identifier] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_macro_rules_BANG] = ACTIONS(1254), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_u8] = ACTIONS(1256), - [anon_sym_i8] = ACTIONS(1256), - [anon_sym_u16] = ACTIONS(1256), - [anon_sym_i16] = ACTIONS(1256), - [anon_sym_u32] = ACTIONS(1256), - [anon_sym_i32] = ACTIONS(1256), - [anon_sym_u64] = ACTIONS(1256), - [anon_sym_i64] = ACTIONS(1256), - [anon_sym_u128] = ACTIONS(1256), - [anon_sym_i128] = ACTIONS(1256), - [anon_sym_isize] = ACTIONS(1256), - [anon_sym_usize] = ACTIONS(1256), - [anon_sym_f32] = ACTIONS(1256), - [anon_sym_f64] = ACTIONS(1256), - [anon_sym_bool] = ACTIONS(1256), - [anon_sym_str] = ACTIONS(1256), - [anon_sym_char] = ACTIONS(1256), - [anon_sym_SQUOTE] = ACTIONS(1256), - [anon_sym_async] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_fn] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_impl] = ACTIONS(1256), - [anon_sym_let] = ACTIONS(1256), - [anon_sym_loop] = ACTIONS(1256), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_mod] = ACTIONS(1256), - [anon_sym_pub] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_trait] = ACTIONS(1256), - [anon_sym_type] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_unsafe] = ACTIONS(1256), - [anon_sym_use] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_POUND] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_yield] = ACTIONS(1256), - [anon_sym_move] = ACTIONS(1256), - [sym_integer_literal] = ACTIONS(1254), - [aux_sym_string_literal_token1] = ACTIONS(1254), - [sym_char_literal] = ACTIONS(1254), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1256), - [sym_super] = ACTIONS(1256), - [sym_crate] = ACTIONS(1256), - [sym_metavariable] = ACTIONS(1254), - [sym_raw_string_literal] = ACTIONS(1254), - [sym_float_literal] = ACTIONS(1254), + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_macro_rules_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_u8] = ACTIONS(1238), + [anon_sym_i8] = ACTIONS(1238), + [anon_sym_u16] = ACTIONS(1238), + [anon_sym_i16] = ACTIONS(1238), + [anon_sym_u32] = ACTIONS(1238), + [anon_sym_i32] = ACTIONS(1238), + [anon_sym_u64] = ACTIONS(1238), + [anon_sym_i64] = ACTIONS(1238), + [anon_sym_u128] = ACTIONS(1238), + [anon_sym_i128] = ACTIONS(1238), + [anon_sym_isize] = ACTIONS(1238), + [anon_sym_usize] = ACTIONS(1238), + [anon_sym_f32] = ACTIONS(1238), + [anon_sym_f64] = ACTIONS(1238), + [anon_sym_bool] = ACTIONS(1238), + [anon_sym_str] = ACTIONS(1238), + [anon_sym_char] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_fn] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_impl] = ACTIONS(1238), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_loop] = ACTIONS(1238), + [anon_sym_match] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1238), + [anon_sym_pub] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_trait] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_unsafe] = ACTIONS(1238), + [anon_sym_use] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_POUND] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_COLON_COLON] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_DOT_DOT] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(1236), + [anon_sym_yield] = ACTIONS(1238), + [anon_sym_move] = ACTIONS(1238), + [sym_integer_literal] = ACTIONS(1236), + [aux_sym_string_literal_token1] = ACTIONS(1236), + [sym_char_literal] = ACTIONS(1236), + [anon_sym_true] = ACTIONS(1238), + [anon_sym_false] = ACTIONS(1238), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1238), + [sym_super] = ACTIONS(1238), + [sym_crate] = ACTIONS(1238), + [sym_metavariable] = ACTIONS(1236), + [sym_raw_string_literal] = ACTIONS(1236), + [sym_float_literal] = ACTIONS(1236), [sym_block_comment] = ACTIONS(3), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(1258), - [sym_identifier] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_macro_rules_BANG] = ACTIONS(1258), - [anon_sym_LPAREN] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1260), - [anon_sym_async] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_fn] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_impl] = ACTIONS(1260), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_loop] = ACTIONS(1260), - [anon_sym_match] = ACTIONS(1260), - [anon_sym_mod] = ACTIONS(1260), - [anon_sym_pub] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_trait] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_unsafe] = ACTIONS(1260), - [anon_sym_use] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_POUND] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_COLON_COLON] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_DOT_DOT] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1260), - [anon_sym_move] = ACTIONS(1260), - [sym_integer_literal] = ACTIONS(1258), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1258), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1260), - [sym_super] = ACTIONS(1260), - [sym_crate] = ACTIONS(1260), - [sym_metavariable] = ACTIONS(1258), - [sym_raw_string_literal] = ACTIONS(1258), - [sym_float_literal] = ACTIONS(1258), + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_identifier] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_macro_rules_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_u8] = ACTIONS(1242), + [anon_sym_i8] = ACTIONS(1242), + [anon_sym_u16] = ACTIONS(1242), + [anon_sym_i16] = ACTIONS(1242), + [anon_sym_u32] = ACTIONS(1242), + [anon_sym_i32] = ACTIONS(1242), + [anon_sym_u64] = ACTIONS(1242), + [anon_sym_i64] = ACTIONS(1242), + [anon_sym_u128] = ACTIONS(1242), + [anon_sym_i128] = ACTIONS(1242), + [anon_sym_isize] = ACTIONS(1242), + [anon_sym_usize] = ACTIONS(1242), + [anon_sym_f32] = ACTIONS(1242), + [anon_sym_f64] = ACTIONS(1242), + [anon_sym_bool] = ACTIONS(1242), + [anon_sym_str] = ACTIONS(1242), + [anon_sym_char] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_fn] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_impl] = ACTIONS(1242), + [anon_sym_let] = ACTIONS(1242), + [anon_sym_loop] = ACTIONS(1242), + [anon_sym_match] = ACTIONS(1242), + [anon_sym_mod] = ACTIONS(1242), + [anon_sym_pub] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_struct] = ACTIONS(1242), + [anon_sym_trait] = ACTIONS(1242), + [anon_sym_type] = ACTIONS(1242), + [anon_sym_union] = ACTIONS(1242), + [anon_sym_unsafe] = ACTIONS(1242), + [anon_sym_use] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1242), + [anon_sym_LT] = ACTIONS(1240), + [anon_sym_COLON_COLON] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym_DOT_DOT] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_yield] = ACTIONS(1242), + [anon_sym_move] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1240), + [aux_sym_string_literal_token1] = ACTIONS(1240), + [sym_char_literal] = ACTIONS(1240), + [anon_sym_true] = ACTIONS(1242), + [anon_sym_false] = ACTIONS(1242), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1242), + [sym_super] = ACTIONS(1242), + [sym_crate] = ACTIONS(1242), + [sym_metavariable] = ACTIONS(1240), + [sym_raw_string_literal] = ACTIONS(1240), + [sym_float_literal] = ACTIONS(1240), [sym_block_comment] = ACTIONS(3), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(1262), - [sym_identifier] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_macro_rules_BANG] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1264), - [anon_sym_i8] = ACTIONS(1264), - [anon_sym_u16] = ACTIONS(1264), - [anon_sym_i16] = ACTIONS(1264), - [anon_sym_u32] = ACTIONS(1264), - [anon_sym_i32] = ACTIONS(1264), - [anon_sym_u64] = ACTIONS(1264), - [anon_sym_i64] = ACTIONS(1264), - [anon_sym_u128] = ACTIONS(1264), - [anon_sym_i128] = ACTIONS(1264), - [anon_sym_isize] = ACTIONS(1264), - [anon_sym_usize] = ACTIONS(1264), - [anon_sym_f32] = ACTIONS(1264), - [anon_sym_f64] = ACTIONS(1264), - [anon_sym_bool] = ACTIONS(1264), - [anon_sym_str] = ACTIONS(1264), - [anon_sym_char] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_async] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_fn] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_impl] = ACTIONS(1264), - [anon_sym_let] = ACTIONS(1264), - [anon_sym_loop] = ACTIONS(1264), - [anon_sym_match] = ACTIONS(1264), - [anon_sym_mod] = ACTIONS(1264), - [anon_sym_pub] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_trait] = ACTIONS(1264), - [anon_sym_type] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_unsafe] = ACTIONS(1264), - [anon_sym_use] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1262), - [anon_sym_COLON_COLON] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_DOT_DOT] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1262), - [anon_sym_yield] = ACTIONS(1264), - [anon_sym_move] = ACTIONS(1264), - [sym_integer_literal] = ACTIONS(1262), - [aux_sym_string_literal_token1] = ACTIONS(1262), - [sym_char_literal] = ACTIONS(1262), - [anon_sym_true] = ACTIONS(1264), - [anon_sym_false] = ACTIONS(1264), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1264), - [sym_super] = ACTIONS(1264), - [sym_crate] = ACTIONS(1264), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1262), - [sym_float_literal] = ACTIONS(1262), + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_identifier] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym_macro_rules_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_STAR] = ACTIONS(1244), + [anon_sym_u8] = ACTIONS(1246), + [anon_sym_i8] = ACTIONS(1246), + [anon_sym_u16] = ACTIONS(1246), + [anon_sym_i16] = ACTIONS(1246), + [anon_sym_u32] = ACTIONS(1246), + [anon_sym_i32] = ACTIONS(1246), + [anon_sym_u64] = ACTIONS(1246), + [anon_sym_i64] = ACTIONS(1246), + [anon_sym_u128] = ACTIONS(1246), + [anon_sym_i128] = ACTIONS(1246), + [anon_sym_isize] = ACTIONS(1246), + [anon_sym_usize] = ACTIONS(1246), + [anon_sym_f32] = ACTIONS(1246), + [anon_sym_f64] = ACTIONS(1246), + [anon_sym_bool] = ACTIONS(1246), + [anon_sym_str] = ACTIONS(1246), + [anon_sym_char] = ACTIONS(1246), + [anon_sym_SQUOTE] = ACTIONS(1246), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_fn] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_impl] = ACTIONS(1246), + [anon_sym_let] = ACTIONS(1246), + [anon_sym_loop] = ACTIONS(1246), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_mod] = ACTIONS(1246), + [anon_sym_pub] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_trait] = ACTIONS(1246), + [anon_sym_type] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_unsafe] = ACTIONS(1246), + [anon_sym_use] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_POUND] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym_LT] = ACTIONS(1244), + [anon_sym_COLON_COLON] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym_DOT_DOT] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_yield] = ACTIONS(1246), + [anon_sym_move] = ACTIONS(1246), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1244), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1246), + [sym_super] = ACTIONS(1246), + [sym_crate] = ACTIONS(1246), + [sym_metavariable] = ACTIONS(1244), + [sym_raw_string_literal] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(1266), - [sym_identifier] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_macro_rules_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_RBRACE] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_u8] = ACTIONS(1268), - [anon_sym_i8] = ACTIONS(1268), - [anon_sym_u16] = ACTIONS(1268), - [anon_sym_i16] = ACTIONS(1268), - [anon_sym_u32] = ACTIONS(1268), - [anon_sym_i32] = ACTIONS(1268), - [anon_sym_u64] = ACTIONS(1268), - [anon_sym_i64] = ACTIONS(1268), - [anon_sym_u128] = ACTIONS(1268), - [anon_sym_i128] = ACTIONS(1268), - [anon_sym_isize] = ACTIONS(1268), - [anon_sym_usize] = ACTIONS(1268), - [anon_sym_f32] = ACTIONS(1268), - [anon_sym_f64] = ACTIONS(1268), - [anon_sym_bool] = ACTIONS(1268), - [anon_sym_str] = ACTIONS(1268), - [anon_sym_char] = ACTIONS(1268), - [anon_sym_SQUOTE] = ACTIONS(1268), - [anon_sym_async] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_fn] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_impl] = ACTIONS(1268), - [anon_sym_let] = ACTIONS(1268), - [anon_sym_loop] = ACTIONS(1268), - [anon_sym_match] = ACTIONS(1268), - [anon_sym_mod] = ACTIONS(1268), - [anon_sym_pub] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_trait] = ACTIONS(1268), - [anon_sym_type] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_unsafe] = ACTIONS(1268), - [anon_sym_use] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_POUND] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_DOT_DOT] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_yield] = ACTIONS(1268), - [anon_sym_move] = ACTIONS(1268), - [sym_integer_literal] = ACTIONS(1266), - [aux_sym_string_literal_token1] = ACTIONS(1266), - [sym_char_literal] = ACTIONS(1266), - [anon_sym_true] = ACTIONS(1268), - [anon_sym_false] = ACTIONS(1268), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1268), - [sym_super] = ACTIONS(1268), - [sym_crate] = ACTIONS(1268), - [sym_metavariable] = ACTIONS(1266), - [sym_raw_string_literal] = ACTIONS(1266), - [sym_float_literal] = ACTIONS(1266), + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_identifier] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym_macro_rules_BANG] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_u8] = ACTIONS(1250), + [anon_sym_i8] = ACTIONS(1250), + [anon_sym_u16] = ACTIONS(1250), + [anon_sym_i16] = ACTIONS(1250), + [anon_sym_u32] = ACTIONS(1250), + [anon_sym_i32] = ACTIONS(1250), + [anon_sym_u64] = ACTIONS(1250), + [anon_sym_i64] = ACTIONS(1250), + [anon_sym_u128] = ACTIONS(1250), + [anon_sym_i128] = ACTIONS(1250), + [anon_sym_isize] = ACTIONS(1250), + [anon_sym_usize] = ACTIONS(1250), + [anon_sym_f32] = ACTIONS(1250), + [anon_sym_f64] = ACTIONS(1250), + [anon_sym_bool] = ACTIONS(1250), + [anon_sym_str] = ACTIONS(1250), + [anon_sym_char] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_async] = ACTIONS(1250), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_const] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_fn] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_impl] = ACTIONS(1250), + [anon_sym_let] = ACTIONS(1250), + [anon_sym_loop] = ACTIONS(1250), + [anon_sym_match] = ACTIONS(1250), + [anon_sym_mod] = ACTIONS(1250), + [anon_sym_pub] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_struct] = ACTIONS(1250), + [anon_sym_trait] = ACTIONS(1250), + [anon_sym_type] = ACTIONS(1250), + [anon_sym_union] = ACTIONS(1250), + [anon_sym_unsafe] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [anon_sym_POUND] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym_LT] = ACTIONS(1248), + [anon_sym_COLON_COLON] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_DOT_DOT] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_PIPE] = ACTIONS(1248), + [anon_sym_yield] = ACTIONS(1250), + [anon_sym_move] = ACTIONS(1250), + [sym_integer_literal] = ACTIONS(1248), + [aux_sym_string_literal_token1] = ACTIONS(1248), + [sym_char_literal] = ACTIONS(1248), + [anon_sym_true] = ACTIONS(1250), + [anon_sym_false] = ACTIONS(1250), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1250), + [sym_super] = ACTIONS(1250), + [sym_crate] = ACTIONS(1250), + [sym_metavariable] = ACTIONS(1248), + [sym_raw_string_literal] = ACTIONS(1248), + [sym_float_literal] = ACTIONS(1248), [sym_block_comment] = ACTIONS(3), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_macro_rules_BANG] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_RBRACE] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_u8] = ACTIONS(1272), - [anon_sym_i8] = ACTIONS(1272), - [anon_sym_u16] = ACTIONS(1272), - [anon_sym_i16] = ACTIONS(1272), - [anon_sym_u32] = ACTIONS(1272), - [anon_sym_i32] = ACTIONS(1272), - [anon_sym_u64] = ACTIONS(1272), - [anon_sym_i64] = ACTIONS(1272), - [anon_sym_u128] = ACTIONS(1272), - [anon_sym_i128] = ACTIONS(1272), - [anon_sym_isize] = ACTIONS(1272), - [anon_sym_usize] = ACTIONS(1272), - [anon_sym_f32] = ACTIONS(1272), - [anon_sym_f64] = ACTIONS(1272), - [anon_sym_bool] = ACTIONS(1272), - [anon_sym_str] = ACTIONS(1272), - [anon_sym_char] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_fn] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_impl] = ACTIONS(1272), - [anon_sym_let] = ACTIONS(1272), - [anon_sym_loop] = ACTIONS(1272), - [anon_sym_match] = ACTIONS(1272), - [anon_sym_mod] = ACTIONS(1272), - [anon_sym_pub] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_trait] = ACTIONS(1272), - [anon_sym_type] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_unsafe] = ACTIONS(1272), - [anon_sym_use] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_POUND] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_COLON_COLON] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_yield] = ACTIONS(1272), - [anon_sym_move] = ACTIONS(1272), - [sym_integer_literal] = ACTIONS(1270), - [aux_sym_string_literal_token1] = ACTIONS(1270), - [sym_char_literal] = ACTIONS(1270), - [anon_sym_true] = ACTIONS(1272), - [anon_sym_false] = ACTIONS(1272), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1272), - [sym_super] = ACTIONS(1272), - [sym_crate] = ACTIONS(1272), - [sym_metavariable] = ACTIONS(1270), - [sym_raw_string_literal] = ACTIONS(1270), - [sym_float_literal] = ACTIONS(1270), + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_macro_rules_BANG] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u128] = ACTIONS(1254), + [anon_sym_i128] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_str] = ACTIONS(1254), + [anon_sym_char] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_async] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_fn] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_impl] = ACTIONS(1254), + [anon_sym_let] = ACTIONS(1254), + [anon_sym_loop] = ACTIONS(1254), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_mod] = ACTIONS(1254), + [anon_sym_pub] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_trait] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_unsafe] = ACTIONS(1254), + [anon_sym_use] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_POUND] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_move] = ACTIONS(1254), + [sym_integer_literal] = ACTIONS(1252), + [aux_sym_string_literal_token1] = ACTIONS(1252), + [sym_char_literal] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1254), + [sym_super] = ACTIONS(1254), + [sym_crate] = ACTIONS(1254), + [sym_metavariable] = ACTIONS(1252), + [sym_raw_string_literal] = ACTIONS(1252), + [sym_float_literal] = ACTIONS(1252), [sym_block_comment] = ACTIONS(3), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_macro_rules_BANG] = ACTIONS(1274), - [anon_sym_LPAREN] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_u8] = ACTIONS(1276), - [anon_sym_i8] = ACTIONS(1276), - [anon_sym_u16] = ACTIONS(1276), - [anon_sym_i16] = ACTIONS(1276), - [anon_sym_u32] = ACTIONS(1276), - [anon_sym_i32] = ACTIONS(1276), - [anon_sym_u64] = ACTIONS(1276), - [anon_sym_i64] = ACTIONS(1276), - [anon_sym_u128] = ACTIONS(1276), - [anon_sym_i128] = ACTIONS(1276), - [anon_sym_isize] = ACTIONS(1276), - [anon_sym_usize] = ACTIONS(1276), - [anon_sym_f32] = ACTIONS(1276), - [anon_sym_f64] = ACTIONS(1276), - [anon_sym_bool] = ACTIONS(1276), - [anon_sym_str] = ACTIONS(1276), - [anon_sym_char] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_async] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_fn] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_impl] = ACTIONS(1276), - [anon_sym_let] = ACTIONS(1276), - [anon_sym_loop] = ACTIONS(1276), - [anon_sym_match] = ACTIONS(1276), - [anon_sym_mod] = ACTIONS(1276), - [anon_sym_pub] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_trait] = ACTIONS(1276), - [anon_sym_type] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_unsafe] = ACTIONS(1276), - [anon_sym_use] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_POUND] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_DOT_DOT] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_yield] = ACTIONS(1276), - [anon_sym_move] = ACTIONS(1276), - [sym_integer_literal] = ACTIONS(1274), - [aux_sym_string_literal_token1] = ACTIONS(1274), - [sym_char_literal] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1276), - [sym_super] = ACTIONS(1276), - [sym_crate] = ACTIONS(1276), - [sym_metavariable] = ACTIONS(1274), - [sym_raw_string_literal] = ACTIONS(1274), - [sym_float_literal] = ACTIONS(1274), + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_macro_rules_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_RBRACE] = ACTIONS(1256), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_u8] = ACTIONS(1258), + [anon_sym_i8] = ACTIONS(1258), + [anon_sym_u16] = ACTIONS(1258), + [anon_sym_i16] = ACTIONS(1258), + [anon_sym_u32] = ACTIONS(1258), + [anon_sym_i32] = ACTIONS(1258), + [anon_sym_u64] = ACTIONS(1258), + [anon_sym_i64] = ACTIONS(1258), + [anon_sym_u128] = ACTIONS(1258), + [anon_sym_i128] = ACTIONS(1258), + [anon_sym_isize] = ACTIONS(1258), + [anon_sym_usize] = ACTIONS(1258), + [anon_sym_f32] = ACTIONS(1258), + [anon_sym_f64] = ACTIONS(1258), + [anon_sym_bool] = ACTIONS(1258), + [anon_sym_str] = ACTIONS(1258), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_async] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_fn] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_impl] = ACTIONS(1258), + [anon_sym_let] = ACTIONS(1258), + [anon_sym_loop] = ACTIONS(1258), + [anon_sym_match] = ACTIONS(1258), + [anon_sym_mod] = ACTIONS(1258), + [anon_sym_pub] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_trait] = ACTIONS(1258), + [anon_sym_type] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_unsafe] = ACTIONS(1258), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_POUND] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_move] = ACTIONS(1258), + [sym_integer_literal] = ACTIONS(1256), + [aux_sym_string_literal_token1] = ACTIONS(1256), + [sym_char_literal] = ACTIONS(1256), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1258), + [sym_super] = ACTIONS(1258), + [sym_crate] = ACTIONS(1258), + [sym_metavariable] = ACTIONS(1256), + [sym_raw_string_literal] = ACTIONS(1256), + [sym_float_literal] = ACTIONS(1256), [sym_block_comment] = ACTIONS(3), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_macro_rules_BANG] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_u8] = ACTIONS(1280), - [anon_sym_i8] = ACTIONS(1280), - [anon_sym_u16] = ACTIONS(1280), - [anon_sym_i16] = ACTIONS(1280), - [anon_sym_u32] = ACTIONS(1280), - [anon_sym_i32] = ACTIONS(1280), - [anon_sym_u64] = ACTIONS(1280), - [anon_sym_i64] = ACTIONS(1280), - [anon_sym_u128] = ACTIONS(1280), - [anon_sym_i128] = ACTIONS(1280), - [anon_sym_isize] = ACTIONS(1280), - [anon_sym_usize] = ACTIONS(1280), - [anon_sym_f32] = ACTIONS(1280), - [anon_sym_f64] = ACTIONS(1280), - [anon_sym_bool] = ACTIONS(1280), - [anon_sym_str] = ACTIONS(1280), - [anon_sym_char] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_fn] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_impl] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_pub] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_trait] = ACTIONS(1280), - [anon_sym_type] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_unsafe] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_DOT_DOT] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1280), - [anon_sym_move] = ACTIONS(1280), - [sym_integer_literal] = ACTIONS(1278), - [aux_sym_string_literal_token1] = ACTIONS(1278), - [sym_char_literal] = ACTIONS(1278), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1280), - [sym_super] = ACTIONS(1280), - [sym_crate] = ACTIONS(1280), - [sym_metavariable] = ACTIONS(1278), - [sym_raw_string_literal] = ACTIONS(1278), - [sym_float_literal] = ACTIONS(1278), + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_identifier] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym_macro_rules_BANG] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_RBRACE] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_u8] = ACTIONS(1262), + [anon_sym_i8] = ACTIONS(1262), + [anon_sym_u16] = ACTIONS(1262), + [anon_sym_i16] = ACTIONS(1262), + [anon_sym_u32] = ACTIONS(1262), + [anon_sym_i32] = ACTIONS(1262), + [anon_sym_u64] = ACTIONS(1262), + [anon_sym_i64] = ACTIONS(1262), + [anon_sym_u128] = ACTIONS(1262), + [anon_sym_i128] = ACTIONS(1262), + [anon_sym_isize] = ACTIONS(1262), + [anon_sym_usize] = ACTIONS(1262), + [anon_sym_f32] = ACTIONS(1262), + [anon_sym_f64] = ACTIONS(1262), + [anon_sym_bool] = ACTIONS(1262), + [anon_sym_str] = ACTIONS(1262), + [anon_sym_char] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_fn] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_impl] = ACTIONS(1262), + [anon_sym_let] = ACTIONS(1262), + [anon_sym_loop] = ACTIONS(1262), + [anon_sym_match] = ACTIONS(1262), + [anon_sym_mod] = ACTIONS(1262), + [anon_sym_pub] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_trait] = ACTIONS(1262), + [anon_sym_type] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_unsafe] = ACTIONS(1262), + [anon_sym_use] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_POUND] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym_LT] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_DOT_DOT] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PIPE] = ACTIONS(1260), + [anon_sym_yield] = ACTIONS(1262), + [anon_sym_move] = ACTIONS(1262), + [sym_integer_literal] = ACTIONS(1260), + [aux_sym_string_literal_token1] = ACTIONS(1260), + [sym_char_literal] = ACTIONS(1260), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1262), + [sym_super] = ACTIONS(1262), + [sym_crate] = ACTIONS(1262), + [sym_metavariable] = ACTIONS(1260), + [sym_raw_string_literal] = ACTIONS(1260), + [sym_float_literal] = ACTIONS(1260), [sym_block_comment] = ACTIONS(3), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_macro_rules_BANG] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_u8] = ACTIONS(1284), - [anon_sym_i8] = ACTIONS(1284), - [anon_sym_u16] = ACTIONS(1284), - [anon_sym_i16] = ACTIONS(1284), - [anon_sym_u32] = ACTIONS(1284), - [anon_sym_i32] = ACTIONS(1284), - [anon_sym_u64] = ACTIONS(1284), - [anon_sym_i64] = ACTIONS(1284), - [anon_sym_u128] = ACTIONS(1284), - [anon_sym_i128] = ACTIONS(1284), - [anon_sym_isize] = ACTIONS(1284), - [anon_sym_usize] = ACTIONS(1284), - [anon_sym_f32] = ACTIONS(1284), - [anon_sym_f64] = ACTIONS(1284), - [anon_sym_bool] = ACTIONS(1284), - [anon_sym_str] = ACTIONS(1284), - [anon_sym_char] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_fn] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_impl] = ACTIONS(1284), - [anon_sym_let] = ACTIONS(1284), - [anon_sym_loop] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1284), - [anon_sym_mod] = ACTIONS(1284), - [anon_sym_pub] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_trait] = ACTIONS(1284), - [anon_sym_type] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_use] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1282), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_DOT_DOT] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), - [anon_sym_move] = ACTIONS(1284), - [sym_integer_literal] = ACTIONS(1282), - [aux_sym_string_literal_token1] = ACTIONS(1282), - [sym_char_literal] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1284), - [anon_sym_false] = ACTIONS(1284), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1284), - [sym_super] = ACTIONS(1284), - [sym_crate] = ACTIONS(1284), - [sym_metavariable] = ACTIONS(1282), - [sym_raw_string_literal] = ACTIONS(1282), - [sym_float_literal] = ACTIONS(1282), + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym_macro_rules_BANG] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_u8] = ACTIONS(1266), + [anon_sym_i8] = ACTIONS(1266), + [anon_sym_u16] = ACTIONS(1266), + [anon_sym_i16] = ACTIONS(1266), + [anon_sym_u32] = ACTIONS(1266), + [anon_sym_i32] = ACTIONS(1266), + [anon_sym_u64] = ACTIONS(1266), + [anon_sym_i64] = ACTIONS(1266), + [anon_sym_u128] = ACTIONS(1266), + [anon_sym_i128] = ACTIONS(1266), + [anon_sym_isize] = ACTIONS(1266), + [anon_sym_usize] = ACTIONS(1266), + [anon_sym_f32] = ACTIONS(1266), + [anon_sym_f64] = ACTIONS(1266), + [anon_sym_bool] = ACTIONS(1266), + [anon_sym_str] = ACTIONS(1266), + [anon_sym_char] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_fn] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_impl] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_pub] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_trait] = ACTIONS(1266), + [anon_sym_type] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_unsafe] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_POUND] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1264), + [anon_sym_COLON_COLON] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_move] = ACTIONS(1266), + [sym_integer_literal] = ACTIONS(1264), + [aux_sym_string_literal_token1] = ACTIONS(1264), + [sym_char_literal] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1266), + [sym_super] = ACTIONS(1266), + [sym_crate] = ACTIONS(1266), + [sym_metavariable] = ACTIONS(1264), + [sym_raw_string_literal] = ACTIONS(1264), + [sym_float_literal] = ACTIONS(1264), [sym_block_comment] = ACTIONS(3), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_macro_rules_BANG] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_u8] = ACTIONS(1288), - [anon_sym_i8] = ACTIONS(1288), - [anon_sym_u16] = ACTIONS(1288), - [anon_sym_i16] = ACTIONS(1288), - [anon_sym_u32] = ACTIONS(1288), - [anon_sym_i32] = ACTIONS(1288), - [anon_sym_u64] = ACTIONS(1288), - [anon_sym_i64] = ACTIONS(1288), - [anon_sym_u128] = ACTIONS(1288), - [anon_sym_i128] = ACTIONS(1288), - [anon_sym_isize] = ACTIONS(1288), - [anon_sym_usize] = ACTIONS(1288), - [anon_sym_f32] = ACTIONS(1288), - [anon_sym_f64] = ACTIONS(1288), - [anon_sym_bool] = ACTIONS(1288), - [anon_sym_str] = ACTIONS(1288), - [anon_sym_char] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_impl] = ACTIONS(1288), - [anon_sym_let] = ACTIONS(1288), - [anon_sym_loop] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1288), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_pub] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_trait] = ACTIONS(1288), - [anon_sym_type] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_use] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_COLON_COLON] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_yield] = ACTIONS(1288), - [anon_sym_move] = ACTIONS(1288), - [sym_integer_literal] = ACTIONS(1286), - [aux_sym_string_literal_token1] = ACTIONS(1286), - [sym_char_literal] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1288), - [sym_super] = ACTIONS(1288), - [sym_crate] = ACTIONS(1288), - [sym_metavariable] = ACTIONS(1286), - [sym_raw_string_literal] = ACTIONS(1286), - [sym_float_literal] = ACTIONS(1286), + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_identifier] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_macro_rules_BANG] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_u8] = ACTIONS(1270), + [anon_sym_i8] = ACTIONS(1270), + [anon_sym_u16] = ACTIONS(1270), + [anon_sym_i16] = ACTIONS(1270), + [anon_sym_u32] = ACTIONS(1270), + [anon_sym_i32] = ACTIONS(1270), + [anon_sym_u64] = ACTIONS(1270), + [anon_sym_i64] = ACTIONS(1270), + [anon_sym_u128] = ACTIONS(1270), + [anon_sym_i128] = ACTIONS(1270), + [anon_sym_isize] = ACTIONS(1270), + [anon_sym_usize] = ACTIONS(1270), + [anon_sym_f32] = ACTIONS(1270), + [anon_sym_f64] = ACTIONS(1270), + [anon_sym_bool] = ACTIONS(1270), + [anon_sym_str] = ACTIONS(1270), + [anon_sym_char] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_fn] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_impl] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_pub] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_trait] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_POUND] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(1268), + [anon_sym_COLON_COLON] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_DOT_DOT] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_yield] = ACTIONS(1270), + [anon_sym_move] = ACTIONS(1270), + [sym_integer_literal] = ACTIONS(1268), + [aux_sym_string_literal_token1] = ACTIONS(1268), + [sym_char_literal] = ACTIONS(1268), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1270), + [sym_super] = ACTIONS(1270), + [sym_crate] = ACTIONS(1270), + [sym_metavariable] = ACTIONS(1268), + [sym_raw_string_literal] = ACTIONS(1268), + [sym_float_literal] = ACTIONS(1268), [sym_block_comment] = ACTIONS(3), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_macro_rules_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_u8] = ACTIONS(1292), - [anon_sym_i8] = ACTIONS(1292), - [anon_sym_u16] = ACTIONS(1292), - [anon_sym_i16] = ACTIONS(1292), - [anon_sym_u32] = ACTIONS(1292), - [anon_sym_i32] = ACTIONS(1292), - [anon_sym_u64] = ACTIONS(1292), - [anon_sym_i64] = ACTIONS(1292), - [anon_sym_u128] = ACTIONS(1292), - [anon_sym_i128] = ACTIONS(1292), - [anon_sym_isize] = ACTIONS(1292), - [anon_sym_usize] = ACTIONS(1292), - [anon_sym_f32] = ACTIONS(1292), - [anon_sym_f64] = ACTIONS(1292), - [anon_sym_bool] = ACTIONS(1292), - [anon_sym_str] = ACTIONS(1292), - [anon_sym_char] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_async] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1292), - [anon_sym_let] = ACTIONS(1292), - [anon_sym_loop] = ACTIONS(1292), - [anon_sym_match] = ACTIONS(1292), - [anon_sym_mod] = ACTIONS(1292), - [anon_sym_pub] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_trait] = ACTIONS(1292), - [anon_sym_type] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_unsafe] = ACTIONS(1292), - [anon_sym_use] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_COLON_COLON] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_yield] = ACTIONS(1292), - [anon_sym_move] = ACTIONS(1292), - [sym_integer_literal] = ACTIONS(1290), - [aux_sym_string_literal_token1] = ACTIONS(1290), - [sym_char_literal] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1292), - [anon_sym_false] = ACTIONS(1292), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1292), - [sym_super] = ACTIONS(1292), - [sym_crate] = ACTIONS(1292), - [sym_metavariable] = ACTIONS(1290), - [sym_raw_string_literal] = ACTIONS(1290), - [sym_float_literal] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_macro_rules_BANG] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_u8] = ACTIONS(1274), + [anon_sym_i8] = ACTIONS(1274), + [anon_sym_u16] = ACTIONS(1274), + [anon_sym_i16] = ACTIONS(1274), + [anon_sym_u32] = ACTIONS(1274), + [anon_sym_i32] = ACTIONS(1274), + [anon_sym_u64] = ACTIONS(1274), + [anon_sym_i64] = ACTIONS(1274), + [anon_sym_u128] = ACTIONS(1274), + [anon_sym_i128] = ACTIONS(1274), + [anon_sym_isize] = ACTIONS(1274), + [anon_sym_usize] = ACTIONS(1274), + [anon_sym_f32] = ACTIONS(1274), + [anon_sym_f64] = ACTIONS(1274), + [anon_sym_bool] = ACTIONS(1274), + [anon_sym_str] = ACTIONS(1274), + [anon_sym_char] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_async] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_fn] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_impl] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_loop] = ACTIONS(1274), + [anon_sym_match] = ACTIONS(1274), + [anon_sym_mod] = ACTIONS(1274), + [anon_sym_pub] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_trait] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_unsafe] = ACTIONS(1274), + [anon_sym_use] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_POUND] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym_LT] = ACTIONS(1272), + [anon_sym_COLON_COLON] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_yield] = ACTIONS(1274), + [anon_sym_move] = ACTIONS(1274), + [sym_integer_literal] = ACTIONS(1272), + [aux_sym_string_literal_token1] = ACTIONS(1272), + [sym_char_literal] = ACTIONS(1272), + [anon_sym_true] = ACTIONS(1274), + [anon_sym_false] = ACTIONS(1274), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1274), + [sym_super] = ACTIONS(1274), + [sym_crate] = ACTIONS(1274), + [sym_metavariable] = ACTIONS(1272), + [sym_raw_string_literal] = ACTIONS(1272), + [sym_float_literal] = ACTIONS(1272), [sym_block_comment] = ACTIONS(3), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_macro_rules_BANG] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_u8] = ACTIONS(1296), - [anon_sym_i8] = ACTIONS(1296), - [anon_sym_u16] = ACTIONS(1296), - [anon_sym_i16] = ACTIONS(1296), - [anon_sym_u32] = ACTIONS(1296), - [anon_sym_i32] = ACTIONS(1296), - [anon_sym_u64] = ACTIONS(1296), - [anon_sym_i64] = ACTIONS(1296), - [anon_sym_u128] = ACTIONS(1296), - [anon_sym_i128] = ACTIONS(1296), - [anon_sym_isize] = ACTIONS(1296), - [anon_sym_usize] = ACTIONS(1296), - [anon_sym_f32] = ACTIONS(1296), - [anon_sym_f64] = ACTIONS(1296), - [anon_sym_bool] = ACTIONS(1296), - [anon_sym_str] = ACTIONS(1296), - [anon_sym_char] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_async] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_fn] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1296), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_loop] = ACTIONS(1296), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_mod] = ACTIONS(1296), - [anon_sym_pub] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_trait] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1296), - [anon_sym_use] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_COLON_COLON] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_move] = ACTIONS(1296), - [sym_integer_literal] = ACTIONS(1294), - [aux_sym_string_literal_token1] = ACTIONS(1294), - [sym_char_literal] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1296), - [sym_super] = ACTIONS(1296), - [sym_crate] = ACTIONS(1296), - [sym_metavariable] = ACTIONS(1294), - [sym_raw_string_literal] = ACTIONS(1294), - [sym_float_literal] = ACTIONS(1294), + [ts_builtin_sym_end] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym_macro_rules_BANG] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), + [anon_sym_LBRACK] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_u8] = ACTIONS(1278), + [anon_sym_i8] = ACTIONS(1278), + [anon_sym_u16] = ACTIONS(1278), + [anon_sym_i16] = ACTIONS(1278), + [anon_sym_u32] = ACTIONS(1278), + [anon_sym_i32] = ACTIONS(1278), + [anon_sym_u64] = ACTIONS(1278), + [anon_sym_i64] = ACTIONS(1278), + [anon_sym_u128] = ACTIONS(1278), + [anon_sym_i128] = ACTIONS(1278), + [anon_sym_isize] = ACTIONS(1278), + [anon_sym_usize] = ACTIONS(1278), + [anon_sym_f32] = ACTIONS(1278), + [anon_sym_f64] = ACTIONS(1278), + [anon_sym_bool] = ACTIONS(1278), + [anon_sym_str] = ACTIONS(1278), + [anon_sym_char] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_async] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_fn] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_impl] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_loop] = ACTIONS(1278), + [anon_sym_match] = ACTIONS(1278), + [anon_sym_mod] = ACTIONS(1278), + [anon_sym_pub] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_trait] = ACTIONS(1278), + [anon_sym_type] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_unsafe] = ACTIONS(1278), + [anon_sym_use] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_POUND] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym_LT] = ACTIONS(1276), + [anon_sym_COLON_COLON] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PIPE] = ACTIONS(1276), + [anon_sym_yield] = ACTIONS(1278), + [anon_sym_move] = ACTIONS(1278), + [sym_integer_literal] = ACTIONS(1276), + [aux_sym_string_literal_token1] = ACTIONS(1276), + [sym_char_literal] = ACTIONS(1276), + [anon_sym_true] = ACTIONS(1278), + [anon_sym_false] = ACTIONS(1278), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1278), + [sym_super] = ACTIONS(1278), + [sym_crate] = ACTIONS(1278), + [sym_metavariable] = ACTIONS(1276), + [sym_raw_string_literal] = ACTIONS(1276), + [sym_float_literal] = ACTIONS(1276), [sym_block_comment] = ACTIONS(3), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_macro_rules_BANG] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_u8] = ACTIONS(1300), - [anon_sym_i8] = ACTIONS(1300), - [anon_sym_u16] = ACTIONS(1300), - [anon_sym_i16] = ACTIONS(1300), - [anon_sym_u32] = ACTIONS(1300), - [anon_sym_i32] = ACTIONS(1300), - [anon_sym_u64] = ACTIONS(1300), - [anon_sym_i64] = ACTIONS(1300), - [anon_sym_u128] = ACTIONS(1300), - [anon_sym_i128] = ACTIONS(1300), - [anon_sym_isize] = ACTIONS(1300), - [anon_sym_usize] = ACTIONS(1300), - [anon_sym_f32] = ACTIONS(1300), - [anon_sym_f64] = ACTIONS(1300), - [anon_sym_bool] = ACTIONS(1300), - [anon_sym_str] = ACTIONS(1300), - [anon_sym_char] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_async] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_fn] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_impl] = ACTIONS(1300), - [anon_sym_let] = ACTIONS(1300), - [anon_sym_loop] = ACTIONS(1300), - [anon_sym_match] = ACTIONS(1300), - [anon_sym_mod] = ACTIONS(1300), - [anon_sym_pub] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_trait] = ACTIONS(1300), - [anon_sym_type] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_POUND] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_COLON_COLON] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_yield] = ACTIONS(1300), - [anon_sym_move] = ACTIONS(1300), - [sym_integer_literal] = ACTIONS(1298), - [aux_sym_string_literal_token1] = ACTIONS(1298), - [sym_char_literal] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1300), - [sym_super] = ACTIONS(1300), - [sym_crate] = ACTIONS(1300), - [sym_metavariable] = ACTIONS(1298), - [sym_raw_string_literal] = ACTIONS(1298), - [sym_float_literal] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_identifier] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_macro_rules_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u128] = ACTIONS(1282), + [anon_sym_i128] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_str] = ACTIONS(1282), + [anon_sym_char] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_fn] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1282), + [anon_sym_loop] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_mod] = ACTIONS(1282), + [anon_sym_pub] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(1282), + [anon_sym_trait] = ACTIONS(1282), + [anon_sym_type] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_unsafe] = ACTIONS(1282), + [anon_sym_use] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_COLON_COLON] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_DOT_DOT] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_yield] = ACTIONS(1282), + [anon_sym_move] = ACTIONS(1282), + [sym_integer_literal] = ACTIONS(1280), + [aux_sym_string_literal_token1] = ACTIONS(1280), + [sym_char_literal] = ACTIONS(1280), + [anon_sym_true] = ACTIONS(1282), + [anon_sym_false] = ACTIONS(1282), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_crate] = ACTIONS(1282), + [sym_metavariable] = ACTIONS(1280), + [sym_raw_string_literal] = ACTIONS(1280), + [sym_float_literal] = ACTIONS(1280), [sym_block_comment] = ACTIONS(3), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_macro_rules_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_u8] = ACTIONS(1304), - [anon_sym_i8] = ACTIONS(1304), - [anon_sym_u16] = ACTIONS(1304), - [anon_sym_i16] = ACTIONS(1304), - [anon_sym_u32] = ACTIONS(1304), - [anon_sym_i32] = ACTIONS(1304), - [anon_sym_u64] = ACTIONS(1304), - [anon_sym_i64] = ACTIONS(1304), - [anon_sym_u128] = ACTIONS(1304), - [anon_sym_i128] = ACTIONS(1304), - [anon_sym_isize] = ACTIONS(1304), - [anon_sym_usize] = ACTIONS(1304), - [anon_sym_f32] = ACTIONS(1304), - [anon_sym_f64] = ACTIONS(1304), - [anon_sym_bool] = ACTIONS(1304), - [anon_sym_str] = ACTIONS(1304), - [anon_sym_char] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_fn] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_impl] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1304), - [anon_sym_loop] = ACTIONS(1304), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_mod] = ACTIONS(1304), - [anon_sym_pub] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_trait] = ACTIONS(1304), - [anon_sym_type] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_unsafe] = ACTIONS(1304), - [anon_sym_use] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_POUND] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_COLON_COLON] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_yield] = ACTIONS(1304), - [anon_sym_move] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1302), - [aux_sym_string_literal_token1] = ACTIONS(1302), - [sym_char_literal] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_crate] = ACTIONS(1304), - [sym_metavariable] = ACTIONS(1302), - [sym_raw_string_literal] = ACTIONS(1302), - [sym_float_literal] = ACTIONS(1302), + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_identifier] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym_macro_rules_BANG] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_u8] = ACTIONS(1286), + [anon_sym_i8] = ACTIONS(1286), + [anon_sym_u16] = ACTIONS(1286), + [anon_sym_i16] = ACTIONS(1286), + [anon_sym_u32] = ACTIONS(1286), + [anon_sym_i32] = ACTIONS(1286), + [anon_sym_u64] = ACTIONS(1286), + [anon_sym_i64] = ACTIONS(1286), + [anon_sym_u128] = ACTIONS(1286), + [anon_sym_i128] = ACTIONS(1286), + [anon_sym_isize] = ACTIONS(1286), + [anon_sym_usize] = ACTIONS(1286), + [anon_sym_f32] = ACTIONS(1286), + [anon_sym_f64] = ACTIONS(1286), + [anon_sym_bool] = ACTIONS(1286), + [anon_sym_str] = ACTIONS(1286), + [anon_sym_char] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_fn] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_impl] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_loop] = ACTIONS(1286), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_mod] = ACTIONS(1286), + [anon_sym_pub] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_trait] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_unsafe] = ACTIONS(1286), + [anon_sym_use] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_POUND] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1286), + [anon_sym_move] = ACTIONS(1286), + [sym_integer_literal] = ACTIONS(1284), + [aux_sym_string_literal_token1] = ACTIONS(1284), + [sym_char_literal] = ACTIONS(1284), + [anon_sym_true] = ACTIONS(1286), + [anon_sym_false] = ACTIONS(1286), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1286), + [sym_super] = ACTIONS(1286), + [sym_crate] = ACTIONS(1286), + [sym_metavariable] = ACTIONS(1284), + [sym_raw_string_literal] = ACTIONS(1284), + [sym_float_literal] = ACTIONS(1284), [sym_block_comment] = ACTIONS(3), }, [312] = { - [ts_builtin_sym_end] = ACTIONS(1306), - [sym_identifier] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_macro_rules_BANG] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_u8] = ACTIONS(1308), - [anon_sym_i8] = ACTIONS(1308), - [anon_sym_u16] = ACTIONS(1308), - [anon_sym_i16] = ACTIONS(1308), - [anon_sym_u32] = ACTIONS(1308), - [anon_sym_i32] = ACTIONS(1308), - [anon_sym_u64] = ACTIONS(1308), - [anon_sym_i64] = ACTIONS(1308), - [anon_sym_u128] = ACTIONS(1308), - [anon_sym_i128] = ACTIONS(1308), - [anon_sym_isize] = ACTIONS(1308), - [anon_sym_usize] = ACTIONS(1308), - [anon_sym_f32] = ACTIONS(1308), - [anon_sym_f64] = ACTIONS(1308), - [anon_sym_bool] = ACTIONS(1308), - [anon_sym_str] = ACTIONS(1308), - [anon_sym_char] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_impl] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1308), - [anon_sym_pub] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_trait] = ACTIONS(1308), - [anon_sym_type] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_unsafe] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_COLON_COLON] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_yield] = ACTIONS(1308), - [anon_sym_move] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1306), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1308), - [sym_super] = ACTIONS(1308), - [sym_crate] = ACTIONS(1308), - [sym_metavariable] = ACTIONS(1306), - [sym_raw_string_literal] = ACTIONS(1306), - [sym_float_literal] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_macro_rules_BANG] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_u8] = ACTIONS(1290), + [anon_sym_i8] = ACTIONS(1290), + [anon_sym_u16] = ACTIONS(1290), + [anon_sym_i16] = ACTIONS(1290), + [anon_sym_u32] = ACTIONS(1290), + [anon_sym_i32] = ACTIONS(1290), + [anon_sym_u64] = ACTIONS(1290), + [anon_sym_i64] = ACTIONS(1290), + [anon_sym_u128] = ACTIONS(1290), + [anon_sym_i128] = ACTIONS(1290), + [anon_sym_isize] = ACTIONS(1290), + [anon_sym_usize] = ACTIONS(1290), + [anon_sym_f32] = ACTIONS(1290), + [anon_sym_f64] = ACTIONS(1290), + [anon_sym_bool] = ACTIONS(1290), + [anon_sym_str] = ACTIONS(1290), + [anon_sym_char] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_impl] = ACTIONS(1290), + [anon_sym_let] = ACTIONS(1290), + [anon_sym_loop] = ACTIONS(1290), + [anon_sym_match] = ACTIONS(1290), + [anon_sym_mod] = ACTIONS(1290), + [anon_sym_pub] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_trait] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_unsafe] = ACTIONS(1290), + [anon_sym_use] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1288), + [anon_sym_COLON_COLON] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_DOT_DOT] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_yield] = ACTIONS(1290), + [anon_sym_move] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1288), + [aux_sym_string_literal_token1] = ACTIONS(1288), + [sym_char_literal] = ACTIONS(1288), + [anon_sym_true] = ACTIONS(1290), + [anon_sym_false] = ACTIONS(1290), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1290), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1288), + [sym_raw_string_literal] = ACTIONS(1288), + [sym_float_literal] = ACTIONS(1288), [sym_block_comment] = ACTIONS(3), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_macro_rules_BANG] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_u8] = ACTIONS(1312), - [anon_sym_i8] = ACTIONS(1312), - [anon_sym_u16] = ACTIONS(1312), - [anon_sym_i16] = ACTIONS(1312), - [anon_sym_u32] = ACTIONS(1312), - [anon_sym_i32] = ACTIONS(1312), - [anon_sym_u64] = ACTIONS(1312), - [anon_sym_i64] = ACTIONS(1312), - [anon_sym_u128] = ACTIONS(1312), - [anon_sym_i128] = ACTIONS(1312), - [anon_sym_isize] = ACTIONS(1312), - [anon_sym_usize] = ACTIONS(1312), - [anon_sym_f32] = ACTIONS(1312), - [anon_sym_f64] = ACTIONS(1312), - [anon_sym_bool] = ACTIONS(1312), - [anon_sym_str] = ACTIONS(1312), - [anon_sym_char] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_fn] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_impl] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_pub] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_trait] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_unsafe] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_COLON_COLON] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_yield] = ACTIONS(1312), - [anon_sym_move] = ACTIONS(1312), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1310), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_crate] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1310), - [sym_raw_string_literal] = ACTIONS(1310), - [sym_float_literal] = ACTIONS(1310), + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_identifier] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_macro_rules_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1294), + [anon_sym_i8] = ACTIONS(1294), + [anon_sym_u16] = ACTIONS(1294), + [anon_sym_i16] = ACTIONS(1294), + [anon_sym_u32] = ACTIONS(1294), + [anon_sym_i32] = ACTIONS(1294), + [anon_sym_u64] = ACTIONS(1294), + [anon_sym_i64] = ACTIONS(1294), + [anon_sym_u128] = ACTIONS(1294), + [anon_sym_i128] = ACTIONS(1294), + [anon_sym_isize] = ACTIONS(1294), + [anon_sym_usize] = ACTIONS(1294), + [anon_sym_f32] = ACTIONS(1294), + [anon_sym_f64] = ACTIONS(1294), + [anon_sym_bool] = ACTIONS(1294), + [anon_sym_str] = ACTIONS(1294), + [anon_sym_char] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1294), + [anon_sym_loop] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_mod] = ACTIONS(1294), + [anon_sym_pub] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_trait] = ACTIONS(1294), + [anon_sym_type] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_unsafe] = ACTIONS(1294), + [anon_sym_use] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_COLON_COLON] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1294), + [anon_sym_move] = ACTIONS(1294), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1292), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1294), + [sym_super] = ACTIONS(1294), + [sym_crate] = ACTIONS(1294), + [sym_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(1292), + [sym_float_literal] = ACTIONS(1292), [sym_block_comment] = ACTIONS(3), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_macro_rules_BANG] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_u8] = ACTIONS(1316), - [anon_sym_i8] = ACTIONS(1316), - [anon_sym_u16] = ACTIONS(1316), - [anon_sym_i16] = ACTIONS(1316), - [anon_sym_u32] = ACTIONS(1316), - [anon_sym_i32] = ACTIONS(1316), - [anon_sym_u64] = ACTIONS(1316), - [anon_sym_i64] = ACTIONS(1316), - [anon_sym_u128] = ACTIONS(1316), - [anon_sym_i128] = ACTIONS(1316), - [anon_sym_isize] = ACTIONS(1316), - [anon_sym_usize] = ACTIONS(1316), - [anon_sym_f32] = ACTIONS(1316), - [anon_sym_f64] = ACTIONS(1316), - [anon_sym_bool] = ACTIONS(1316), - [anon_sym_str] = ACTIONS(1316), - [anon_sym_char] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_async] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_fn] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_impl] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_loop] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_pub] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_trait] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_unsafe] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_COLON_COLON] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_yield] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1314), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1316), - [sym_super] = ACTIONS(1316), - [sym_crate] = ACTIONS(1316), - [sym_metavariable] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_identifier] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_macro_rules_BANG] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_u8] = ACTIONS(1298), + [anon_sym_i8] = ACTIONS(1298), + [anon_sym_u16] = ACTIONS(1298), + [anon_sym_i16] = ACTIONS(1298), + [anon_sym_u32] = ACTIONS(1298), + [anon_sym_i32] = ACTIONS(1298), + [anon_sym_u64] = ACTIONS(1298), + [anon_sym_i64] = ACTIONS(1298), + [anon_sym_u128] = ACTIONS(1298), + [anon_sym_i128] = ACTIONS(1298), + [anon_sym_isize] = ACTIONS(1298), + [anon_sym_usize] = ACTIONS(1298), + [anon_sym_f32] = ACTIONS(1298), + [anon_sym_f64] = ACTIONS(1298), + [anon_sym_bool] = ACTIONS(1298), + [anon_sym_str] = ACTIONS(1298), + [anon_sym_char] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_impl] = ACTIONS(1298), + [anon_sym_let] = ACTIONS(1298), + [anon_sym_loop] = ACTIONS(1298), + [anon_sym_match] = ACTIONS(1298), + [anon_sym_mod] = ACTIONS(1298), + [anon_sym_pub] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_trait] = ACTIONS(1298), + [anon_sym_type] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_unsafe] = ACTIONS(1298), + [anon_sym_use] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_POUND] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_COLON_COLON] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_DOT_DOT] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_yield] = ACTIONS(1298), + [anon_sym_move] = ACTIONS(1298), + [sym_integer_literal] = ACTIONS(1296), + [aux_sym_string_literal_token1] = ACTIONS(1296), + [sym_char_literal] = ACTIONS(1296), + [anon_sym_true] = ACTIONS(1298), + [anon_sym_false] = ACTIONS(1298), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1298), + [sym_super] = ACTIONS(1298), + [sym_crate] = ACTIONS(1298), + [sym_metavariable] = ACTIONS(1296), + [sym_raw_string_literal] = ACTIONS(1296), + [sym_float_literal] = ACTIONS(1296), [sym_block_comment] = ACTIONS(3), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_macro_rules_BANG] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_fn] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_impl] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_loop] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_pub] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_trait] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_unsafe] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_COLON_COLON] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_yield] = ACTIONS(1320), - [anon_sym_move] = ACTIONS(1320), - [sym_integer_literal] = ACTIONS(1318), - [aux_sym_string_literal_token1] = ACTIONS(1318), - [sym_char_literal] = ACTIONS(1318), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1320), - [sym_super] = ACTIONS(1320), - [sym_crate] = ACTIONS(1320), - [sym_metavariable] = ACTIONS(1318), - [sym_raw_string_literal] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1318), + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_macro_rules_BANG] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_u8] = ACTIONS(1302), + [anon_sym_i8] = ACTIONS(1302), + [anon_sym_u16] = ACTIONS(1302), + [anon_sym_i16] = ACTIONS(1302), + [anon_sym_u32] = ACTIONS(1302), + [anon_sym_i32] = ACTIONS(1302), + [anon_sym_u64] = ACTIONS(1302), + [anon_sym_i64] = ACTIONS(1302), + [anon_sym_u128] = ACTIONS(1302), + [anon_sym_i128] = ACTIONS(1302), + [anon_sym_isize] = ACTIONS(1302), + [anon_sym_usize] = ACTIONS(1302), + [anon_sym_f32] = ACTIONS(1302), + [anon_sym_f64] = ACTIONS(1302), + [anon_sym_bool] = ACTIONS(1302), + [anon_sym_str] = ACTIONS(1302), + [anon_sym_char] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_async] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_impl] = ACTIONS(1302), + [anon_sym_let] = ACTIONS(1302), + [anon_sym_loop] = ACTIONS(1302), + [anon_sym_match] = ACTIONS(1302), + [anon_sym_mod] = ACTIONS(1302), + [anon_sym_pub] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_trait] = ACTIONS(1302), + [anon_sym_type] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1302), + [anon_sym_use] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_POUND] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_COLON_COLON] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_DOT_DOT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_move] = ACTIONS(1302), + [sym_integer_literal] = ACTIONS(1300), + [aux_sym_string_literal_token1] = ACTIONS(1300), + [sym_char_literal] = ACTIONS(1300), + [anon_sym_true] = ACTIONS(1302), + [anon_sym_false] = ACTIONS(1302), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1302), + [sym_super] = ACTIONS(1302), + [sym_crate] = ACTIONS(1302), + [sym_metavariable] = ACTIONS(1300), + [sym_raw_string_literal] = ACTIONS(1300), + [sym_float_literal] = ACTIONS(1300), [sym_block_comment] = ACTIONS(3), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_macro_rules_BANG] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_u8] = ACTIONS(1324), - [anon_sym_i8] = ACTIONS(1324), - [anon_sym_u16] = ACTIONS(1324), - [anon_sym_i16] = ACTIONS(1324), - [anon_sym_u32] = ACTIONS(1324), - [anon_sym_i32] = ACTIONS(1324), - [anon_sym_u64] = ACTIONS(1324), - [anon_sym_i64] = ACTIONS(1324), - [anon_sym_u128] = ACTIONS(1324), - [anon_sym_i128] = ACTIONS(1324), - [anon_sym_isize] = ACTIONS(1324), - [anon_sym_usize] = ACTIONS(1324), - [anon_sym_f32] = ACTIONS(1324), - [anon_sym_f64] = ACTIONS(1324), - [anon_sym_bool] = ACTIONS(1324), - [anon_sym_str] = ACTIONS(1324), - [anon_sym_char] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_async] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_fn] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_impl] = ACTIONS(1324), - [anon_sym_let] = ACTIONS(1324), - [anon_sym_loop] = ACTIONS(1324), - [anon_sym_match] = ACTIONS(1324), - [anon_sym_mod] = ACTIONS(1324), - [anon_sym_pub] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_trait] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_unsafe] = ACTIONS(1324), - [anon_sym_use] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_COLON_COLON] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_yield] = ACTIONS(1324), - [anon_sym_move] = ACTIONS(1324), - [sym_integer_literal] = ACTIONS(1322), - [aux_sym_string_literal_token1] = ACTIONS(1322), - [sym_char_literal] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1324), - [anon_sym_false] = ACTIONS(1324), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1324), - [sym_super] = ACTIONS(1324), - [sym_crate] = ACTIONS(1324), - [sym_metavariable] = ACTIONS(1322), - [sym_raw_string_literal] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1322), + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_macro_rules_BANG] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_u8] = ACTIONS(1306), + [anon_sym_i8] = ACTIONS(1306), + [anon_sym_u16] = ACTIONS(1306), + [anon_sym_i16] = ACTIONS(1306), + [anon_sym_u32] = ACTIONS(1306), + [anon_sym_i32] = ACTIONS(1306), + [anon_sym_u64] = ACTIONS(1306), + [anon_sym_i64] = ACTIONS(1306), + [anon_sym_u128] = ACTIONS(1306), + [anon_sym_i128] = ACTIONS(1306), + [anon_sym_isize] = ACTIONS(1306), + [anon_sym_usize] = ACTIONS(1306), + [anon_sym_f32] = ACTIONS(1306), + [anon_sym_f64] = ACTIONS(1306), + [anon_sym_bool] = ACTIONS(1306), + [anon_sym_str] = ACTIONS(1306), + [anon_sym_char] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_loop] = ACTIONS(1306), + [anon_sym_match] = ACTIONS(1306), + [anon_sym_mod] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_trait] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_POUND] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_COLON_COLON] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_yield] = ACTIONS(1306), + [anon_sym_move] = ACTIONS(1306), + [sym_integer_literal] = ACTIONS(1304), + [aux_sym_string_literal_token1] = ACTIONS(1304), + [sym_char_literal] = ACTIONS(1304), + [anon_sym_true] = ACTIONS(1306), + [anon_sym_false] = ACTIONS(1306), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1306), + [sym_super] = ACTIONS(1306), + [sym_crate] = ACTIONS(1306), + [sym_metavariable] = ACTIONS(1304), + [sym_raw_string_literal] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1304), [sym_block_comment] = ACTIONS(3), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_macro_rules_BANG] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_u8] = ACTIONS(1328), - [anon_sym_i8] = ACTIONS(1328), - [anon_sym_u16] = ACTIONS(1328), - [anon_sym_i16] = ACTIONS(1328), - [anon_sym_u32] = ACTIONS(1328), - [anon_sym_i32] = ACTIONS(1328), - [anon_sym_u64] = ACTIONS(1328), - [anon_sym_i64] = ACTIONS(1328), - [anon_sym_u128] = ACTIONS(1328), - [anon_sym_i128] = ACTIONS(1328), - [anon_sym_isize] = ACTIONS(1328), - [anon_sym_usize] = ACTIONS(1328), - [anon_sym_f32] = ACTIONS(1328), - [anon_sym_f64] = ACTIONS(1328), - [anon_sym_bool] = ACTIONS(1328), - [anon_sym_str] = ACTIONS(1328), - [anon_sym_char] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_async] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_fn] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_impl] = ACTIONS(1328), - [anon_sym_let] = ACTIONS(1328), - [anon_sym_loop] = ACTIONS(1328), - [anon_sym_match] = ACTIONS(1328), - [anon_sym_mod] = ACTIONS(1328), - [anon_sym_pub] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_trait] = ACTIONS(1328), - [anon_sym_type] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_unsafe] = ACTIONS(1328), - [anon_sym_use] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_POUND] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_COLON_COLON] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_DOT_DOT] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_move] = ACTIONS(1328), - [sym_integer_literal] = ACTIONS(1326), - [aux_sym_string_literal_token1] = ACTIONS(1326), - [sym_char_literal] = ACTIONS(1326), - [anon_sym_true] = ACTIONS(1328), - [anon_sym_false] = ACTIONS(1328), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1328), - [sym_super] = ACTIONS(1328), - [sym_crate] = ACTIONS(1328), - [sym_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1326), - [sym_float_literal] = ACTIONS(1326), + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_macro_rules_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [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_SQUOTE] = ACTIONS(1310), + [anon_sym_async] = 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_while] = ACTIONS(1310), + [anon_sym_POUND] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_DOT_DOT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_move] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1308), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_metavariable] = ACTIONS(1308), + [sym_raw_string_literal] = ACTIONS(1308), + [sym_float_literal] = ACTIONS(1308), [sym_block_comment] = ACTIONS(3), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_macro_rules_BANG] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_u8] = ACTIONS(1332), - [anon_sym_i8] = ACTIONS(1332), - [anon_sym_u16] = ACTIONS(1332), - [anon_sym_i16] = ACTIONS(1332), - [anon_sym_u32] = ACTIONS(1332), - [anon_sym_i32] = ACTIONS(1332), - [anon_sym_u64] = ACTIONS(1332), - [anon_sym_i64] = ACTIONS(1332), - [anon_sym_u128] = ACTIONS(1332), - [anon_sym_i128] = ACTIONS(1332), - [anon_sym_isize] = ACTIONS(1332), - [anon_sym_usize] = ACTIONS(1332), - [anon_sym_f32] = ACTIONS(1332), - [anon_sym_f64] = ACTIONS(1332), - [anon_sym_bool] = ACTIONS(1332), - [anon_sym_str] = ACTIONS(1332), - [anon_sym_char] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_async] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_fn] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_impl] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_pub] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_trait] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_unsafe] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1330), - [anon_sym_COLON_COLON] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_DOT_DOT] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PIPE] = ACTIONS(1330), - [anon_sym_yield] = ACTIONS(1332), - [anon_sym_move] = ACTIONS(1332), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1330), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1332), - [sym_super] = ACTIONS(1332), - [sym_crate] = ACTIONS(1332), - [sym_metavariable] = ACTIONS(1330), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_macro_rules_BANG] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1314), + [anon_sym_i8] = ACTIONS(1314), + [anon_sym_u16] = ACTIONS(1314), + [anon_sym_i16] = ACTIONS(1314), + [anon_sym_u32] = ACTIONS(1314), + [anon_sym_i32] = ACTIONS(1314), + [anon_sym_u64] = ACTIONS(1314), + [anon_sym_i64] = ACTIONS(1314), + [anon_sym_u128] = ACTIONS(1314), + [anon_sym_i128] = ACTIONS(1314), + [anon_sym_isize] = ACTIONS(1314), + [anon_sym_usize] = ACTIONS(1314), + [anon_sym_f32] = ACTIONS(1314), + [anon_sym_f64] = ACTIONS(1314), + [anon_sym_bool] = ACTIONS(1314), + [anon_sym_str] = ACTIONS(1314), + [anon_sym_char] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_impl] = ACTIONS(1314), + [anon_sym_let] = ACTIONS(1314), + [anon_sym_loop] = ACTIONS(1314), + [anon_sym_match] = ACTIONS(1314), + [anon_sym_mod] = ACTIONS(1314), + [anon_sym_pub] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_trait] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_unsafe] = ACTIONS(1314), + [anon_sym_use] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_yield] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1312), + [sym_char_literal] = ACTIONS(1312), + [anon_sym_true] = ACTIONS(1314), + [anon_sym_false] = ACTIONS(1314), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1312), + [sym_raw_string_literal] = ACTIONS(1312), + [sym_float_literal] = ACTIONS(1312), [sym_block_comment] = ACTIONS(3), }, [319] = { - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_macro_rules_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_u8] = ACTIONS(1336), - [anon_sym_i8] = ACTIONS(1336), - [anon_sym_u16] = ACTIONS(1336), - [anon_sym_i16] = ACTIONS(1336), - [anon_sym_u32] = ACTIONS(1336), - [anon_sym_i32] = ACTIONS(1336), - [anon_sym_u64] = ACTIONS(1336), - [anon_sym_i64] = ACTIONS(1336), - [anon_sym_u128] = ACTIONS(1336), - [anon_sym_i128] = ACTIONS(1336), - [anon_sym_isize] = ACTIONS(1336), - [anon_sym_usize] = ACTIONS(1336), - [anon_sym_f32] = ACTIONS(1336), - [anon_sym_f64] = ACTIONS(1336), - [anon_sym_bool] = ACTIONS(1336), - [anon_sym_str] = ACTIONS(1336), - [anon_sym_char] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_impl] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_pub] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_trait] = ACTIONS(1336), - [anon_sym_type] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_unsafe] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_LT] = ACTIONS(1334), - [anon_sym_COLON_COLON] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_DOT_DOT] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PIPE] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1336), - [anon_sym_move] = ACTIONS(1336), - [sym_integer_literal] = ACTIONS(1334), - [aux_sym_string_literal_token1] = ACTIONS(1334), - [sym_char_literal] = ACTIONS(1334), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1336), - [sym_super] = ACTIONS(1336), - [sym_crate] = ACTIONS(1336), - [sym_metavariable] = ACTIONS(1334), - [sym_raw_string_literal] = ACTIONS(1334), - [sym_float_literal] = ACTIONS(1334), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym_macro_rules_BANG] = ACTIONS(1316), + [anon_sym_LPAREN] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_u8] = ACTIONS(1318), + [anon_sym_i8] = ACTIONS(1318), + [anon_sym_u16] = ACTIONS(1318), + [anon_sym_i16] = ACTIONS(1318), + [anon_sym_u32] = ACTIONS(1318), + [anon_sym_i32] = ACTIONS(1318), + [anon_sym_u64] = ACTIONS(1318), + [anon_sym_i64] = ACTIONS(1318), + [anon_sym_u128] = ACTIONS(1318), + [anon_sym_i128] = ACTIONS(1318), + [anon_sym_isize] = ACTIONS(1318), + [anon_sym_usize] = ACTIONS(1318), + [anon_sym_f32] = ACTIONS(1318), + [anon_sym_f64] = ACTIONS(1318), + [anon_sym_bool] = ACTIONS(1318), + [anon_sym_str] = ACTIONS(1318), + [anon_sym_char] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_async] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_fn] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_impl] = ACTIONS(1318), + [anon_sym_let] = ACTIONS(1318), + [anon_sym_loop] = ACTIONS(1318), + [anon_sym_match] = ACTIONS(1318), + [anon_sym_mod] = ACTIONS(1318), + [anon_sym_pub] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_trait] = ACTIONS(1318), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_unsafe] = ACTIONS(1318), + [anon_sym_use] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_POUND] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1316), + [anon_sym_COLON_COLON] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_DOT_DOT] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PIPE] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), + [anon_sym_move] = ACTIONS(1318), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1316), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1318), + [anon_sym_false] = ACTIONS(1318), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1318), + [sym_super] = ACTIONS(1318), + [sym_crate] = ACTIONS(1318), + [sym_metavariable] = ACTIONS(1316), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_macro_rules_BANG] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [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_SQUOTE] = ACTIONS(1340), - [anon_sym_async] = 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_while] = ACTIONS(1340), - [anon_sym_POUND] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_DOT_DOT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_move] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1338), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1340), - [anon_sym_false] = ACTIONS(1340), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1338), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_macro_rules_BANG] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_u8] = ACTIONS(1322), + [anon_sym_i8] = ACTIONS(1322), + [anon_sym_u16] = ACTIONS(1322), + [anon_sym_i16] = ACTIONS(1322), + [anon_sym_u32] = ACTIONS(1322), + [anon_sym_i32] = ACTIONS(1322), + [anon_sym_u64] = ACTIONS(1322), + [anon_sym_i64] = ACTIONS(1322), + [anon_sym_u128] = ACTIONS(1322), + [anon_sym_i128] = ACTIONS(1322), + [anon_sym_isize] = ACTIONS(1322), + [anon_sym_usize] = ACTIONS(1322), + [anon_sym_f32] = ACTIONS(1322), + [anon_sym_f64] = ACTIONS(1322), + [anon_sym_bool] = ACTIONS(1322), + [anon_sym_str] = ACTIONS(1322), + [anon_sym_char] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_impl] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1322), + [anon_sym_loop] = ACTIONS(1322), + [anon_sym_match] = ACTIONS(1322), + [anon_sym_mod] = ACTIONS(1322), + [anon_sym_pub] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_trait] = ACTIONS(1322), + [anon_sym_type] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_unsafe] = ACTIONS(1322), + [anon_sym_use] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_POUND] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_DOT_DOT] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_move] = ACTIONS(1322), + [sym_integer_literal] = ACTIONS(1320), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1322), + [sym_super] = ACTIONS(1322), + [sym_crate] = ACTIONS(1322), + [sym_metavariable] = ACTIONS(1320), + [sym_raw_string_literal] = ACTIONS(1320), + [sym_float_literal] = ACTIONS(1320), [sym_block_comment] = ACTIONS(3), }, [321] = { - [ts_builtin_sym_end] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_macro_rules_BANG] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [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_SQUOTE] = ACTIONS(1344), - [anon_sym_async] = 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_while] = ACTIONS(1344), - [anon_sym_POUND] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_COLON_COLON] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_move] = ACTIONS(1344), - [sym_integer_literal] = ACTIONS(1342), - [aux_sym_string_literal_token1] = ACTIONS(1342), - [sym_char_literal] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1344), - [anon_sym_false] = ACTIONS(1344), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1344), - [sym_crate] = ACTIONS(1344), - [sym_metavariable] = ACTIONS(1342), - [sym_raw_string_literal] = ACTIONS(1342), - [sym_float_literal] = ACTIONS(1342), + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym_macro_rules_BANG] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_u8] = ACTIONS(1326), + [anon_sym_i8] = ACTIONS(1326), + [anon_sym_u16] = ACTIONS(1326), + [anon_sym_i16] = ACTIONS(1326), + [anon_sym_u32] = ACTIONS(1326), + [anon_sym_i32] = ACTIONS(1326), + [anon_sym_u64] = ACTIONS(1326), + [anon_sym_i64] = ACTIONS(1326), + [anon_sym_u128] = ACTIONS(1326), + [anon_sym_i128] = ACTIONS(1326), + [anon_sym_isize] = ACTIONS(1326), + [anon_sym_usize] = ACTIONS(1326), + [anon_sym_f32] = ACTIONS(1326), + [anon_sym_f64] = ACTIONS(1326), + [anon_sym_bool] = ACTIONS(1326), + [anon_sym_str] = ACTIONS(1326), + [anon_sym_char] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_fn] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_impl] = ACTIONS(1326), + [anon_sym_let] = ACTIONS(1326), + [anon_sym_loop] = ACTIONS(1326), + [anon_sym_match] = ACTIONS(1326), + [anon_sym_mod] = ACTIONS(1326), + [anon_sym_pub] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_trait] = ACTIONS(1326), + [anon_sym_type] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_unsafe] = ACTIONS(1326), + [anon_sym_use] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_POUND] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1324), + [anon_sym_COLON_COLON] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_DOT_DOT] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PIPE] = ACTIONS(1324), + [anon_sym_yield] = ACTIONS(1326), + [anon_sym_move] = ACTIONS(1326), + [sym_integer_literal] = ACTIONS(1324), + [aux_sym_string_literal_token1] = ACTIONS(1324), + [sym_char_literal] = ACTIONS(1324), + [anon_sym_true] = ACTIONS(1326), + [anon_sym_false] = ACTIONS(1326), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1324), + [sym_raw_string_literal] = ACTIONS(1324), + [sym_float_literal] = ACTIONS(1324), [sym_block_comment] = ACTIONS(3), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_identifier] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_macro_rules_BANG] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_u8] = ACTIONS(1348), - [anon_sym_i8] = ACTIONS(1348), - [anon_sym_u16] = ACTIONS(1348), - [anon_sym_i16] = ACTIONS(1348), - [anon_sym_u32] = ACTIONS(1348), - [anon_sym_i32] = ACTIONS(1348), - [anon_sym_u64] = ACTIONS(1348), - [anon_sym_i64] = ACTIONS(1348), - [anon_sym_u128] = ACTIONS(1348), - [anon_sym_i128] = ACTIONS(1348), - [anon_sym_isize] = ACTIONS(1348), - [anon_sym_usize] = ACTIONS(1348), - [anon_sym_f32] = ACTIONS(1348), - [anon_sym_f64] = ACTIONS(1348), - [anon_sym_bool] = ACTIONS(1348), - [anon_sym_str] = ACTIONS(1348), - [anon_sym_char] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_impl] = ACTIONS(1348), - [anon_sym_let] = ACTIONS(1348), - [anon_sym_loop] = ACTIONS(1348), - [anon_sym_match] = ACTIONS(1348), - [anon_sym_mod] = ACTIONS(1348), - [anon_sym_pub] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_trait] = ACTIONS(1348), - [anon_sym_type] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_unsafe] = ACTIONS(1348), - [anon_sym_use] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_POUND] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_yield] = ACTIONS(1348), - [anon_sym_move] = ACTIONS(1348), - [sym_integer_literal] = ACTIONS(1346), - [aux_sym_string_literal_token1] = ACTIONS(1346), - [sym_char_literal] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1348), - [anon_sym_false] = ACTIONS(1348), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1348), - [sym_super] = ACTIONS(1348), - [sym_crate] = ACTIONS(1348), - [sym_metavariable] = ACTIONS(1346), - [sym_raw_string_literal] = ACTIONS(1346), - [sym_float_literal] = ACTIONS(1346), + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym_macro_rules_BANG] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_fn] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_impl] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1330), + [anon_sym_loop] = ACTIONS(1330), + [anon_sym_match] = ACTIONS(1330), + [anon_sym_mod] = ACTIONS(1330), + [anon_sym_pub] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_trait] = ACTIONS(1330), + [anon_sym_type] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_unsafe] = ACTIONS(1330), + [anon_sym_use] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_POUND] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym_LT] = ACTIONS(1328), + [anon_sym_COLON_COLON] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_DOT_DOT] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PIPE] = ACTIONS(1328), + [anon_sym_yield] = ACTIONS(1330), + [anon_sym_move] = ACTIONS(1330), + [sym_integer_literal] = ACTIONS(1328), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1328), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1330), + [sym_super] = ACTIONS(1330), + [sym_crate] = ACTIONS(1330), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1328), + [sym_float_literal] = ACTIONS(1328), [sym_block_comment] = ACTIONS(3), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_macro_rules_BANG] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_u8] = ACTIONS(1352), - [anon_sym_i8] = ACTIONS(1352), - [anon_sym_u16] = ACTIONS(1352), - [anon_sym_i16] = ACTIONS(1352), - [anon_sym_u32] = ACTIONS(1352), - [anon_sym_i32] = ACTIONS(1352), - [anon_sym_u64] = ACTIONS(1352), - [anon_sym_i64] = ACTIONS(1352), - [anon_sym_u128] = ACTIONS(1352), - [anon_sym_i128] = ACTIONS(1352), - [anon_sym_isize] = ACTIONS(1352), - [anon_sym_usize] = ACTIONS(1352), - [anon_sym_f32] = ACTIONS(1352), - [anon_sym_f64] = ACTIONS(1352), - [anon_sym_bool] = ACTIONS(1352), - [anon_sym_str] = ACTIONS(1352), - [anon_sym_char] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_async] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_fn] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_impl] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_loop] = ACTIONS(1352), - [anon_sym_match] = ACTIONS(1352), - [anon_sym_mod] = ACTIONS(1352), - [anon_sym_pub] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_trait] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_unsafe] = ACTIONS(1352), - [anon_sym_use] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_COLON_COLON] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_yield] = ACTIONS(1352), - [anon_sym_move] = ACTIONS(1352), - [sym_integer_literal] = ACTIONS(1350), - [aux_sym_string_literal_token1] = ACTIONS(1350), - [sym_char_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_crate] = ACTIONS(1352), - [sym_metavariable] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1350), + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym_macro_rules_BANG] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_POUND] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_COLON_COLON] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_DOT_DOT] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1332), + [anon_sym_yield] = ACTIONS(1334), + [anon_sym_move] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1332), + [aux_sym_string_literal_token1] = ACTIONS(1332), + [sym_char_literal] = ACTIONS(1332), + [anon_sym_true] = ACTIONS(1334), + [anon_sym_false] = ACTIONS(1334), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_metavariable] = ACTIONS(1332), + [sym_raw_string_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1332), [sym_block_comment] = ACTIONS(3), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_macro_rules_BANG] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_COLON_COLON] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_yield] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1354), - [aux_sym_string_literal_token1] = ACTIONS(1354), - [sym_char_literal] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1354), - [sym_raw_string_literal] = ACTIONS(1354), - [sym_float_literal] = ACTIONS(1354), + [ts_builtin_sym_end] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_macro_rules_BANG] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1338), + [anon_sym_i8] = ACTIONS(1338), + [anon_sym_u16] = ACTIONS(1338), + [anon_sym_i16] = ACTIONS(1338), + [anon_sym_u32] = ACTIONS(1338), + [anon_sym_i32] = ACTIONS(1338), + [anon_sym_u64] = ACTIONS(1338), + [anon_sym_i64] = ACTIONS(1338), + [anon_sym_u128] = ACTIONS(1338), + [anon_sym_i128] = ACTIONS(1338), + [anon_sym_isize] = ACTIONS(1338), + [anon_sym_usize] = ACTIONS(1338), + [anon_sym_f32] = ACTIONS(1338), + [anon_sym_f64] = ACTIONS(1338), + [anon_sym_bool] = ACTIONS(1338), + [anon_sym_str] = ACTIONS(1338), + [anon_sym_char] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_async] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_fn] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_impl] = ACTIONS(1338), + [anon_sym_let] = ACTIONS(1338), + [anon_sym_loop] = ACTIONS(1338), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_mod] = ACTIONS(1338), + [anon_sym_pub] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_trait] = ACTIONS(1338), + [anon_sym_type] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_unsafe] = ACTIONS(1338), + [anon_sym_use] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1338), + [anon_sym_move] = ACTIONS(1338), + [sym_integer_literal] = ACTIONS(1336), + [aux_sym_string_literal_token1] = ACTIONS(1336), + [sym_char_literal] = ACTIONS(1336), + [anon_sym_true] = ACTIONS(1338), + [anon_sym_false] = ACTIONS(1338), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1338), + [sym_super] = ACTIONS(1338), + [sym_crate] = ACTIONS(1338), + [sym_metavariable] = ACTIONS(1336), + [sym_raw_string_literal] = ACTIONS(1336), + [sym_float_literal] = ACTIONS(1336), [sym_block_comment] = ACTIONS(3), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_macro_rules_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1360), - [anon_sym_i8] = ACTIONS(1360), - [anon_sym_u16] = ACTIONS(1360), - [anon_sym_i16] = ACTIONS(1360), - [anon_sym_u32] = ACTIONS(1360), - [anon_sym_i32] = ACTIONS(1360), - [anon_sym_u64] = ACTIONS(1360), - [anon_sym_i64] = ACTIONS(1360), - [anon_sym_u128] = ACTIONS(1360), - [anon_sym_i128] = ACTIONS(1360), - [anon_sym_isize] = ACTIONS(1360), - [anon_sym_usize] = ACTIONS(1360), - [anon_sym_f32] = ACTIONS(1360), - [anon_sym_f64] = ACTIONS(1360), - [anon_sym_bool] = ACTIONS(1360), - [anon_sym_str] = ACTIONS(1360), - [anon_sym_char] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_async] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_impl] = ACTIONS(1360), - [anon_sym_let] = ACTIONS(1360), - [anon_sym_loop] = ACTIONS(1360), - [anon_sym_match] = ACTIONS(1360), - [anon_sym_mod] = ACTIONS(1360), - [anon_sym_pub] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_trait] = ACTIONS(1360), - [anon_sym_type] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_unsafe] = ACTIONS(1360), - [anon_sym_use] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_yield] = ACTIONS(1360), - [anon_sym_move] = ACTIONS(1360), - [sym_integer_literal] = ACTIONS(1358), - [aux_sym_string_literal_token1] = ACTIONS(1358), - [sym_char_literal] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1360), - [anon_sym_false] = ACTIONS(1360), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1360), - [sym_super] = ACTIONS(1360), - [sym_crate] = ACTIONS(1360), - [sym_metavariable] = ACTIONS(1358), - [sym_raw_string_literal] = ACTIONS(1358), - [sym_float_literal] = ACTIONS(1358), + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym_macro_rules_BANG] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_LBRACK] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_u8] = ACTIONS(1342), + [anon_sym_i8] = ACTIONS(1342), + [anon_sym_u16] = ACTIONS(1342), + [anon_sym_i16] = ACTIONS(1342), + [anon_sym_u32] = ACTIONS(1342), + [anon_sym_i32] = ACTIONS(1342), + [anon_sym_u64] = ACTIONS(1342), + [anon_sym_i64] = ACTIONS(1342), + [anon_sym_u128] = ACTIONS(1342), + [anon_sym_i128] = ACTIONS(1342), + [anon_sym_isize] = ACTIONS(1342), + [anon_sym_usize] = ACTIONS(1342), + [anon_sym_f32] = ACTIONS(1342), + [anon_sym_f64] = ACTIONS(1342), + [anon_sym_bool] = ACTIONS(1342), + [anon_sym_str] = ACTIONS(1342), + [anon_sym_char] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_fn] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_impl] = ACTIONS(1342), + [anon_sym_let] = ACTIONS(1342), + [anon_sym_loop] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1342), + [anon_sym_mod] = ACTIONS(1342), + [anon_sym_pub] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_trait] = ACTIONS(1342), + [anon_sym_type] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1342), + [anon_sym_use] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_POUND] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym_LT] = ACTIONS(1340), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_DOT_DOT] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_yield] = ACTIONS(1342), + [anon_sym_move] = ACTIONS(1342), + [sym_integer_literal] = ACTIONS(1340), + [aux_sym_string_literal_token1] = ACTIONS(1340), + [sym_char_literal] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1342), + [sym_super] = ACTIONS(1342), + [sym_crate] = ACTIONS(1342), + [sym_metavariable] = ACTIONS(1340), + [sym_raw_string_literal] = ACTIONS(1340), + [sym_float_literal] = ACTIONS(1340), [sym_block_comment] = ACTIONS(3), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_identifier] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_macro_rules_BANG] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_u8] = ACTIONS(1364), - [anon_sym_i8] = ACTIONS(1364), - [anon_sym_u16] = ACTIONS(1364), - [anon_sym_i16] = ACTIONS(1364), - [anon_sym_u32] = ACTIONS(1364), - [anon_sym_i32] = ACTIONS(1364), - [anon_sym_u64] = ACTIONS(1364), - [anon_sym_i64] = ACTIONS(1364), - [anon_sym_u128] = ACTIONS(1364), - [anon_sym_i128] = ACTIONS(1364), - [anon_sym_isize] = ACTIONS(1364), - [anon_sym_usize] = ACTIONS(1364), - [anon_sym_f32] = ACTIONS(1364), - [anon_sym_f64] = ACTIONS(1364), - [anon_sym_bool] = ACTIONS(1364), - [anon_sym_str] = ACTIONS(1364), - [anon_sym_char] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_fn] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_impl] = ACTIONS(1364), - [anon_sym_let] = ACTIONS(1364), - [anon_sym_loop] = ACTIONS(1364), - [anon_sym_match] = ACTIONS(1364), - [anon_sym_mod] = ACTIONS(1364), - [anon_sym_pub] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_trait] = ACTIONS(1364), - [anon_sym_type] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_unsafe] = ACTIONS(1364), - [anon_sym_use] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_COLON_COLON] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_yield] = ACTIONS(1364), - [anon_sym_move] = ACTIONS(1364), - [sym_integer_literal] = ACTIONS(1362), - [aux_sym_string_literal_token1] = ACTIONS(1362), - [sym_char_literal] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1364), - [sym_super] = ACTIONS(1364), - [sym_crate] = ACTIONS(1364), - [sym_metavariable] = ACTIONS(1362), - [sym_raw_string_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1362), + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym_macro_rules_BANG] = ACTIONS(1344), + [anon_sym_LPAREN] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_LBRACK] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_u8] = ACTIONS(1346), + [anon_sym_i8] = ACTIONS(1346), + [anon_sym_u16] = ACTIONS(1346), + [anon_sym_i16] = ACTIONS(1346), + [anon_sym_u32] = ACTIONS(1346), + [anon_sym_i32] = ACTIONS(1346), + [anon_sym_u64] = ACTIONS(1346), + [anon_sym_i64] = ACTIONS(1346), + [anon_sym_u128] = ACTIONS(1346), + [anon_sym_i128] = ACTIONS(1346), + [anon_sym_isize] = ACTIONS(1346), + [anon_sym_usize] = ACTIONS(1346), + [anon_sym_f32] = ACTIONS(1346), + [anon_sym_f64] = ACTIONS(1346), + [anon_sym_bool] = ACTIONS(1346), + [anon_sym_str] = ACTIONS(1346), + [anon_sym_char] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_async] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_fn] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_impl] = ACTIONS(1346), + [anon_sym_let] = ACTIONS(1346), + [anon_sym_loop] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1346), + [anon_sym_mod] = ACTIONS(1346), + [anon_sym_pub] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_trait] = ACTIONS(1346), + [anon_sym_type] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_unsafe] = ACTIONS(1346), + [anon_sym_use] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_POUND] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym_LT] = ACTIONS(1344), + [anon_sym_COLON_COLON] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_DOT_DOT] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PIPE] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_move] = ACTIONS(1346), + [sym_integer_literal] = ACTIONS(1344), + [aux_sym_string_literal_token1] = ACTIONS(1344), + [sym_char_literal] = ACTIONS(1344), + [anon_sym_true] = ACTIONS(1346), + [anon_sym_false] = ACTIONS(1346), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1346), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1344), + [sym_raw_string_literal] = ACTIONS(1344), + [sym_float_literal] = ACTIONS(1344), [sym_block_comment] = ACTIONS(3), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_macro_rules_BANG] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_u8] = ACTIONS(1368), - [anon_sym_i8] = ACTIONS(1368), - [anon_sym_u16] = ACTIONS(1368), - [anon_sym_i16] = ACTIONS(1368), - [anon_sym_u32] = ACTIONS(1368), - [anon_sym_i32] = ACTIONS(1368), - [anon_sym_u64] = ACTIONS(1368), - [anon_sym_i64] = ACTIONS(1368), - [anon_sym_u128] = ACTIONS(1368), - [anon_sym_i128] = ACTIONS(1368), - [anon_sym_isize] = ACTIONS(1368), - [anon_sym_usize] = ACTIONS(1368), - [anon_sym_f32] = ACTIONS(1368), - [anon_sym_f64] = ACTIONS(1368), - [anon_sym_bool] = ACTIONS(1368), - [anon_sym_str] = ACTIONS(1368), - [anon_sym_char] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_impl] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_pub] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_trait] = ACTIONS(1368), - [anon_sym_type] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_unsafe] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PIPE] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_move] = ACTIONS(1368), - [sym_integer_literal] = ACTIONS(1366), - [aux_sym_string_literal_token1] = ACTIONS(1366), - [sym_char_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1368), - [sym_super] = ACTIONS(1368), - [sym_crate] = ACTIONS(1368), - [sym_metavariable] = ACTIONS(1366), - [sym_raw_string_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1366), + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_macro_rules_BANG] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_u8] = ACTIONS(1350), + [anon_sym_i8] = ACTIONS(1350), + [anon_sym_u16] = ACTIONS(1350), + [anon_sym_i16] = ACTIONS(1350), + [anon_sym_u32] = ACTIONS(1350), + [anon_sym_i32] = ACTIONS(1350), + [anon_sym_u64] = ACTIONS(1350), + [anon_sym_i64] = ACTIONS(1350), + [anon_sym_u128] = ACTIONS(1350), + [anon_sym_i128] = ACTIONS(1350), + [anon_sym_isize] = ACTIONS(1350), + [anon_sym_usize] = ACTIONS(1350), + [anon_sym_f32] = ACTIONS(1350), + [anon_sym_f64] = ACTIONS(1350), + [anon_sym_bool] = ACTIONS(1350), + [anon_sym_str] = ACTIONS(1350), + [anon_sym_char] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_fn] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_impl] = ACTIONS(1350), + [anon_sym_let] = ACTIONS(1350), + [anon_sym_loop] = ACTIONS(1350), + [anon_sym_match] = ACTIONS(1350), + [anon_sym_mod] = ACTIONS(1350), + [anon_sym_pub] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_trait] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1350), + [anon_sym_use] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_COLON_COLON] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_DOT_DOT] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_yield] = ACTIONS(1350), + [anon_sym_move] = ACTIONS(1350), + [sym_integer_literal] = ACTIONS(1348), + [aux_sym_string_literal_token1] = ACTIONS(1348), + [sym_char_literal] = ACTIONS(1348), + [anon_sym_true] = ACTIONS(1350), + [anon_sym_false] = ACTIONS(1350), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1348), + [sym_raw_string_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1348), [sym_block_comment] = ACTIONS(3), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_macro_rules_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_u8] = ACTIONS(1372), - [anon_sym_i8] = ACTIONS(1372), - [anon_sym_u16] = ACTIONS(1372), - [anon_sym_i16] = ACTIONS(1372), - [anon_sym_u32] = ACTIONS(1372), - [anon_sym_i32] = ACTIONS(1372), - [anon_sym_u64] = ACTIONS(1372), - [anon_sym_i64] = ACTIONS(1372), - [anon_sym_u128] = ACTIONS(1372), - [anon_sym_i128] = ACTIONS(1372), - [anon_sym_isize] = ACTIONS(1372), - [anon_sym_usize] = ACTIONS(1372), - [anon_sym_f32] = ACTIONS(1372), - [anon_sym_f64] = ACTIONS(1372), - [anon_sym_bool] = ACTIONS(1372), - [anon_sym_str] = ACTIONS(1372), - [anon_sym_char] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_impl] = ACTIONS(1372), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_loop] = ACTIONS(1372), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_pub] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_trait] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1372), - [anon_sym_use] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_yield] = ACTIONS(1372), - [anon_sym_move] = ACTIONS(1372), - [sym_integer_literal] = ACTIONS(1370), - [aux_sym_string_literal_token1] = ACTIONS(1370), - [sym_char_literal] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_crate] = ACTIONS(1372), - [sym_metavariable] = ACTIONS(1370), - [sym_raw_string_literal] = ACTIONS(1370), - [sym_float_literal] = ACTIONS(1370), + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym_macro_rules_BANG] = ACTIONS(1352), + [anon_sym_LPAREN] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_LBRACK] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_u8] = ACTIONS(1354), + [anon_sym_i8] = ACTIONS(1354), + [anon_sym_u16] = ACTIONS(1354), + [anon_sym_i16] = ACTIONS(1354), + [anon_sym_u32] = ACTIONS(1354), + [anon_sym_i32] = ACTIONS(1354), + [anon_sym_u64] = ACTIONS(1354), + [anon_sym_i64] = ACTIONS(1354), + [anon_sym_u128] = ACTIONS(1354), + [anon_sym_i128] = ACTIONS(1354), + [anon_sym_isize] = ACTIONS(1354), + [anon_sym_usize] = ACTIONS(1354), + [anon_sym_f32] = ACTIONS(1354), + [anon_sym_f64] = ACTIONS(1354), + [anon_sym_bool] = ACTIONS(1354), + [anon_sym_str] = ACTIONS(1354), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_fn] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_impl] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(1354), + [anon_sym_loop] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_mod] = ACTIONS(1354), + [anon_sym_pub] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_trait] = ACTIONS(1354), + [anon_sym_type] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_unsafe] = ACTIONS(1354), + [anon_sym_use] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_POUND] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1352), + [anon_sym_COLON_COLON] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_DOT_DOT] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_yield] = ACTIONS(1354), + [anon_sym_move] = ACTIONS(1354), + [sym_integer_literal] = ACTIONS(1352), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1352), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1354), + [sym_super] = ACTIONS(1354), + [sym_crate] = ACTIONS(1354), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1352), + [sym_float_literal] = ACTIONS(1352), [sym_block_comment] = ACTIONS(3), }, [329] = { - [ts_builtin_sym_end] = ACTIONS(1374), - [sym_identifier] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_macro_rules_BANG] = ACTIONS(1374), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_u8] = ACTIONS(1376), - [anon_sym_i8] = ACTIONS(1376), - [anon_sym_u16] = ACTIONS(1376), - [anon_sym_i16] = ACTIONS(1376), - [anon_sym_u32] = ACTIONS(1376), - [anon_sym_i32] = ACTIONS(1376), - [anon_sym_u64] = ACTIONS(1376), - [anon_sym_i64] = ACTIONS(1376), - [anon_sym_u128] = ACTIONS(1376), - [anon_sym_i128] = ACTIONS(1376), - [anon_sym_isize] = ACTIONS(1376), - [anon_sym_usize] = ACTIONS(1376), - [anon_sym_f32] = ACTIONS(1376), - [anon_sym_f64] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_str] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_async] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_fn] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_impl] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_pub] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_trait] = ACTIONS(1376), - [anon_sym_type] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1374), - [anon_sym_COLON_COLON] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_DOT_DOT] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PIPE] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_move] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1374), - [aux_sym_string_literal_token1] = ACTIONS(1374), - [sym_char_literal] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1376), - [sym_super] = ACTIONS(1376), - [sym_crate] = ACTIONS(1376), - [sym_metavariable] = ACTIONS(1374), - [sym_raw_string_literal] = ACTIONS(1374), - [sym_float_literal] = ACTIONS(1374), + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_macro_rules_BANG] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u128] = ACTIONS(1358), + [anon_sym_i128] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_str] = ACTIONS(1358), + [anon_sym_char] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_async] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_fn] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_impl] = ACTIONS(1358), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_loop] = ACTIONS(1358), + [anon_sym_match] = ACTIONS(1358), + [anon_sym_mod] = ACTIONS(1358), + [anon_sym_pub] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_trait] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_unsafe] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_POUND] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_COLON_COLON] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_DOT_DOT] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_yield] = ACTIONS(1358), + [anon_sym_move] = ACTIONS(1358), + [sym_integer_literal] = ACTIONS(1356), + [aux_sym_string_literal_token1] = ACTIONS(1356), + [sym_char_literal] = ACTIONS(1356), + [anon_sym_true] = ACTIONS(1358), + [anon_sym_false] = ACTIONS(1358), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1358), + [sym_super] = ACTIONS(1358), + [sym_crate] = ACTIONS(1358), + [sym_metavariable] = ACTIONS(1356), + [sym_raw_string_literal] = ACTIONS(1356), + [sym_float_literal] = ACTIONS(1356), [sym_block_comment] = ACTIONS(3), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(1378), - [sym_identifier] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_macro_rules_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_u8] = ACTIONS(1380), - [anon_sym_i8] = ACTIONS(1380), - [anon_sym_u16] = ACTIONS(1380), - [anon_sym_i16] = ACTIONS(1380), - [anon_sym_u32] = ACTIONS(1380), - [anon_sym_i32] = ACTIONS(1380), - [anon_sym_u64] = ACTIONS(1380), - [anon_sym_i64] = ACTIONS(1380), - [anon_sym_u128] = ACTIONS(1380), - [anon_sym_i128] = ACTIONS(1380), - [anon_sym_isize] = ACTIONS(1380), - [anon_sym_usize] = ACTIONS(1380), - [anon_sym_f32] = ACTIONS(1380), - [anon_sym_f64] = ACTIONS(1380), - [anon_sym_bool] = ACTIONS(1380), - [anon_sym_str] = ACTIONS(1380), - [anon_sym_char] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_fn] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_impl] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_loop] = ACTIONS(1380), - [anon_sym_match] = ACTIONS(1380), - [anon_sym_mod] = ACTIONS(1380), - [anon_sym_pub] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_trait] = ACTIONS(1380), - [anon_sym_type] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_unsafe] = ACTIONS(1380), - [anon_sym_use] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_POUND] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1378), - [anon_sym_COLON_COLON] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_yield] = ACTIONS(1380), - [anon_sym_move] = ACTIONS(1380), - [sym_integer_literal] = ACTIONS(1378), - [aux_sym_string_literal_token1] = ACTIONS(1378), - [sym_char_literal] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1380), - [anon_sym_false] = ACTIONS(1380), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1380), - [sym_super] = ACTIONS(1380), - [sym_crate] = ACTIONS(1380), - [sym_metavariable] = ACTIONS(1378), - [sym_raw_string_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1378), + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_macro_rules_BANG] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_u8] = ACTIONS(1362), + [anon_sym_i8] = ACTIONS(1362), + [anon_sym_u16] = ACTIONS(1362), + [anon_sym_i16] = ACTIONS(1362), + [anon_sym_u32] = ACTIONS(1362), + [anon_sym_i32] = ACTIONS(1362), + [anon_sym_u64] = ACTIONS(1362), + [anon_sym_i64] = ACTIONS(1362), + [anon_sym_u128] = ACTIONS(1362), + [anon_sym_i128] = ACTIONS(1362), + [anon_sym_isize] = ACTIONS(1362), + [anon_sym_usize] = ACTIONS(1362), + [anon_sym_f32] = ACTIONS(1362), + [anon_sym_f64] = ACTIONS(1362), + [anon_sym_bool] = ACTIONS(1362), + [anon_sym_str] = ACTIONS(1362), + [anon_sym_char] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_impl] = ACTIONS(1362), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_loop] = ACTIONS(1362), + [anon_sym_match] = ACTIONS(1362), + [anon_sym_mod] = ACTIONS(1362), + [anon_sym_pub] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_trait] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_unsafe] = ACTIONS(1362), + [anon_sym_use] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_COLON_COLON] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_DOT_DOT] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_yield] = ACTIONS(1362), + [anon_sym_move] = ACTIONS(1362), + [sym_integer_literal] = ACTIONS(1360), + [aux_sym_string_literal_token1] = ACTIONS(1360), + [sym_char_literal] = ACTIONS(1360), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1362), + [sym_super] = ACTIONS(1362), + [sym_crate] = ACTIONS(1362), + [sym_metavariable] = ACTIONS(1360), + [sym_raw_string_literal] = ACTIONS(1360), + [sym_float_literal] = ACTIONS(1360), [sym_block_comment] = ACTIONS(3), }, [331] = { - [ts_builtin_sym_end] = ACTIONS(1382), - [sym_identifier] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_macro_rules_BANG] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_u8] = ACTIONS(1384), - [anon_sym_i8] = ACTIONS(1384), - [anon_sym_u16] = ACTIONS(1384), - [anon_sym_i16] = ACTIONS(1384), - [anon_sym_u32] = ACTIONS(1384), - [anon_sym_i32] = ACTIONS(1384), - [anon_sym_u64] = ACTIONS(1384), - [anon_sym_i64] = ACTIONS(1384), - [anon_sym_u128] = ACTIONS(1384), - [anon_sym_i128] = ACTIONS(1384), - [anon_sym_isize] = ACTIONS(1384), - [anon_sym_usize] = ACTIONS(1384), - [anon_sym_f32] = ACTIONS(1384), - [anon_sym_f64] = ACTIONS(1384), - [anon_sym_bool] = ACTIONS(1384), - [anon_sym_str] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_async] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_impl] = ACTIONS(1384), - [anon_sym_let] = ACTIONS(1384), - [anon_sym_loop] = ACTIONS(1384), - [anon_sym_match] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_pub] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_trait] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_unsafe] = ACTIONS(1384), - [anon_sym_use] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_COLON_COLON] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_DOT_DOT] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PIPE] = ACTIONS(1382), - [anon_sym_yield] = ACTIONS(1384), - [anon_sym_move] = ACTIONS(1384), - [sym_integer_literal] = ACTIONS(1382), - [aux_sym_string_literal_token1] = ACTIONS(1382), - [sym_char_literal] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1384), - [sym_super] = ACTIONS(1384), - [sym_crate] = ACTIONS(1384), - [sym_metavariable] = ACTIONS(1382), - [sym_raw_string_literal] = ACTIONS(1382), - [sym_float_literal] = ACTIONS(1382), + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_macro_rules_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_u8] = ACTIONS(1366), + [anon_sym_i8] = ACTIONS(1366), + [anon_sym_u16] = ACTIONS(1366), + [anon_sym_i16] = ACTIONS(1366), + [anon_sym_u32] = ACTIONS(1366), + [anon_sym_i32] = ACTIONS(1366), + [anon_sym_u64] = ACTIONS(1366), + [anon_sym_i64] = ACTIONS(1366), + [anon_sym_u128] = ACTIONS(1366), + [anon_sym_i128] = ACTIONS(1366), + [anon_sym_isize] = ACTIONS(1366), + [anon_sym_usize] = ACTIONS(1366), + [anon_sym_f32] = ACTIONS(1366), + [anon_sym_f64] = ACTIONS(1366), + [anon_sym_bool] = ACTIONS(1366), + [anon_sym_str] = ACTIONS(1366), + [anon_sym_char] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_async] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_impl] = ACTIONS(1366), + [anon_sym_let] = ACTIONS(1366), + [anon_sym_loop] = ACTIONS(1366), + [anon_sym_match] = ACTIONS(1366), + [anon_sym_mod] = ACTIONS(1366), + [anon_sym_pub] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_trait] = ACTIONS(1366), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_unsafe] = ACTIONS(1366), + [anon_sym_use] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_COLON_COLON] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_yield] = ACTIONS(1366), + [anon_sym_move] = ACTIONS(1366), + [sym_integer_literal] = ACTIONS(1364), + [aux_sym_string_literal_token1] = ACTIONS(1364), + [sym_char_literal] = ACTIONS(1364), + [anon_sym_true] = ACTIONS(1366), + [anon_sym_false] = ACTIONS(1366), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1366), + [sym_super] = ACTIONS(1366), + [sym_crate] = ACTIONS(1366), + [sym_metavariable] = ACTIONS(1364), + [sym_raw_string_literal] = ACTIONS(1364), + [sym_float_literal] = ACTIONS(1364), [sym_block_comment] = ACTIONS(3), }, [332] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_identifier] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_macro_rules_BANG] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_u8] = ACTIONS(1388), - [anon_sym_i8] = ACTIONS(1388), - [anon_sym_u16] = ACTIONS(1388), - [anon_sym_i16] = ACTIONS(1388), - [anon_sym_u32] = ACTIONS(1388), - [anon_sym_i32] = ACTIONS(1388), - [anon_sym_u64] = ACTIONS(1388), - [anon_sym_i64] = ACTIONS(1388), - [anon_sym_u128] = ACTIONS(1388), - [anon_sym_i128] = ACTIONS(1388), - [anon_sym_isize] = ACTIONS(1388), - [anon_sym_usize] = ACTIONS(1388), - [anon_sym_f32] = ACTIONS(1388), - [anon_sym_f64] = ACTIONS(1388), - [anon_sym_bool] = ACTIONS(1388), - [anon_sym_str] = ACTIONS(1388), - [anon_sym_char] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_async] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_impl] = ACTIONS(1388), - [anon_sym_let] = ACTIONS(1388), - [anon_sym_loop] = ACTIONS(1388), - [anon_sym_match] = ACTIONS(1388), - [anon_sym_mod] = ACTIONS(1388), - [anon_sym_pub] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_trait] = ACTIONS(1388), - [anon_sym_type] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_unsafe] = ACTIONS(1388), - [anon_sym_use] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_yield] = ACTIONS(1388), - [anon_sym_move] = ACTIONS(1388), - [sym_integer_literal] = ACTIONS(1386), - [aux_sym_string_literal_token1] = ACTIONS(1386), - [sym_char_literal] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1388), - [anon_sym_false] = ACTIONS(1388), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1388), - [sym_super] = ACTIONS(1388), - [sym_crate] = ACTIONS(1388), - [sym_metavariable] = ACTIONS(1386), - [sym_raw_string_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1386), + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_macro_rules_BANG] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_u8] = ACTIONS(1370), + [anon_sym_i8] = ACTIONS(1370), + [anon_sym_u16] = ACTIONS(1370), + [anon_sym_i16] = ACTIONS(1370), + [anon_sym_u32] = ACTIONS(1370), + [anon_sym_i32] = ACTIONS(1370), + [anon_sym_u64] = ACTIONS(1370), + [anon_sym_i64] = ACTIONS(1370), + [anon_sym_u128] = ACTIONS(1370), + [anon_sym_i128] = ACTIONS(1370), + [anon_sym_isize] = ACTIONS(1370), + [anon_sym_usize] = ACTIONS(1370), + [anon_sym_f32] = ACTIONS(1370), + [anon_sym_f64] = ACTIONS(1370), + [anon_sym_bool] = ACTIONS(1370), + [anon_sym_str] = ACTIONS(1370), + [anon_sym_char] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_fn] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_impl] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1370), + [anon_sym_loop] = ACTIONS(1370), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_mod] = ACTIONS(1370), + [anon_sym_pub] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_trait] = ACTIONS(1370), + [anon_sym_type] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_unsafe] = ACTIONS(1370), + [anon_sym_use] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_POUND] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_DOT_DOT] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_move] = ACTIONS(1370), + [sym_integer_literal] = ACTIONS(1368), + [aux_sym_string_literal_token1] = ACTIONS(1368), + [sym_char_literal] = ACTIONS(1368), + [anon_sym_true] = ACTIONS(1370), + [anon_sym_false] = ACTIONS(1370), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1370), + [sym_super] = ACTIONS(1370), + [sym_crate] = ACTIONS(1370), + [sym_metavariable] = ACTIONS(1368), + [sym_raw_string_literal] = ACTIONS(1368), + [sym_float_literal] = ACTIONS(1368), [sym_block_comment] = ACTIONS(3), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_macro_rules_BANG] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_u8] = ACTIONS(1392), - [anon_sym_i8] = ACTIONS(1392), - [anon_sym_u16] = ACTIONS(1392), - [anon_sym_i16] = ACTIONS(1392), - [anon_sym_u32] = ACTIONS(1392), - [anon_sym_i32] = ACTIONS(1392), - [anon_sym_u64] = ACTIONS(1392), - [anon_sym_i64] = ACTIONS(1392), - [anon_sym_u128] = ACTIONS(1392), - [anon_sym_i128] = ACTIONS(1392), - [anon_sym_isize] = ACTIONS(1392), - [anon_sym_usize] = ACTIONS(1392), - [anon_sym_f32] = ACTIONS(1392), - [anon_sym_f64] = ACTIONS(1392), - [anon_sym_bool] = ACTIONS(1392), - [anon_sym_str] = ACTIONS(1392), - [anon_sym_char] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_async] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_fn] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_impl] = ACTIONS(1392), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_loop] = ACTIONS(1392), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_mod] = ACTIONS(1392), - [anon_sym_pub] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_trait] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_unsafe] = ACTIONS(1392), - [anon_sym_use] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_COLON_COLON] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_DOT_DOT] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_yield] = ACTIONS(1392), - [anon_sym_move] = ACTIONS(1392), - [sym_integer_literal] = ACTIONS(1390), - [aux_sym_string_literal_token1] = ACTIONS(1390), - [sym_char_literal] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1392), - [anon_sym_false] = ACTIONS(1392), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1392), - [sym_super] = ACTIONS(1392), - [sym_crate] = ACTIONS(1392), - [sym_metavariable] = ACTIONS(1390), - [sym_raw_string_literal] = ACTIONS(1390), - [sym_float_literal] = ACTIONS(1390), + [ts_builtin_sym_end] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_macro_rules_BANG] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1372), + [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_SQUOTE] = ACTIONS(1374), + [anon_sym_async] = 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_while] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_COLON_COLON] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_DOT_DOT] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_move] = ACTIONS(1374), + [sym_integer_literal] = ACTIONS(1372), + [aux_sym_string_literal_token1] = ACTIONS(1372), + [sym_char_literal] = ACTIONS(1372), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1374), + [sym_super] = ACTIONS(1374), + [sym_crate] = ACTIONS(1374), + [sym_metavariable] = ACTIONS(1372), + [sym_raw_string_literal] = ACTIONS(1372), + [sym_float_literal] = ACTIONS(1372), [sym_block_comment] = ACTIONS(3), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(1394), - [sym_identifier] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_macro_rules_BANG] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1396), - [anon_sym_i8] = ACTIONS(1396), - [anon_sym_u16] = ACTIONS(1396), - [anon_sym_i16] = ACTIONS(1396), - [anon_sym_u32] = ACTIONS(1396), - [anon_sym_i32] = ACTIONS(1396), - [anon_sym_u64] = ACTIONS(1396), - [anon_sym_i64] = ACTIONS(1396), - [anon_sym_u128] = ACTIONS(1396), - [anon_sym_i128] = ACTIONS(1396), - [anon_sym_isize] = ACTIONS(1396), - [anon_sym_usize] = ACTIONS(1396), - [anon_sym_f32] = ACTIONS(1396), - [anon_sym_f64] = ACTIONS(1396), - [anon_sym_bool] = ACTIONS(1396), - [anon_sym_str] = ACTIONS(1396), - [anon_sym_char] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_async] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_fn] = ACTIONS(1396), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_impl] = ACTIONS(1396), - [anon_sym_let] = ACTIONS(1396), - [anon_sym_loop] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1396), - [anon_sym_mod] = ACTIONS(1396), - [anon_sym_pub] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_trait] = ACTIONS(1396), - [anon_sym_type] = ACTIONS(1396), - [anon_sym_union] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1396), - [anon_sym_use] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_move] = ACTIONS(1396), - [sym_integer_literal] = ACTIONS(1394), - [aux_sym_string_literal_token1] = ACTIONS(1394), - [sym_char_literal] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1396), - [anon_sym_false] = ACTIONS(1396), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1396), - [sym_super] = ACTIONS(1396), - [sym_crate] = ACTIONS(1396), - [sym_metavariable] = ACTIONS(1394), - [sym_raw_string_literal] = ACTIONS(1394), - [sym_float_literal] = ACTIONS(1394), + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_identifier] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym_macro_rules_BANG] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_u8] = ACTIONS(1378), + [anon_sym_i8] = ACTIONS(1378), + [anon_sym_u16] = ACTIONS(1378), + [anon_sym_i16] = ACTIONS(1378), + [anon_sym_u32] = ACTIONS(1378), + [anon_sym_i32] = ACTIONS(1378), + [anon_sym_u64] = ACTIONS(1378), + [anon_sym_i64] = ACTIONS(1378), + [anon_sym_u128] = ACTIONS(1378), + [anon_sym_i128] = ACTIONS(1378), + [anon_sym_isize] = ACTIONS(1378), + [anon_sym_usize] = ACTIONS(1378), + [anon_sym_f32] = ACTIONS(1378), + [anon_sym_f64] = ACTIONS(1378), + [anon_sym_bool] = ACTIONS(1378), + [anon_sym_str] = ACTIONS(1378), + [anon_sym_char] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_impl] = ACTIONS(1378), + [anon_sym_let] = ACTIONS(1378), + [anon_sym_loop] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1378), + [anon_sym_mod] = ACTIONS(1378), + [anon_sym_pub] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_trait] = ACTIONS(1378), + [anon_sym_type] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_unsafe] = ACTIONS(1378), + [anon_sym_use] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_POUND] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_COLON_COLON] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_DOT_DOT] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PIPE] = ACTIONS(1376), + [anon_sym_yield] = ACTIONS(1378), + [anon_sym_move] = ACTIONS(1378), + [sym_integer_literal] = ACTIONS(1376), + [aux_sym_string_literal_token1] = ACTIONS(1376), + [sym_char_literal] = ACTIONS(1376), + [anon_sym_true] = ACTIONS(1378), + [anon_sym_false] = ACTIONS(1378), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1378), + [sym_super] = ACTIONS(1378), + [sym_crate] = ACTIONS(1378), + [sym_metavariable] = ACTIONS(1376), + [sym_raw_string_literal] = ACTIONS(1376), + [sym_float_literal] = ACTIONS(1376), [sym_block_comment] = ACTIONS(3), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_identifier] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_macro_rules_BANG] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_u8] = ACTIONS(1400), - [anon_sym_i8] = ACTIONS(1400), - [anon_sym_u16] = ACTIONS(1400), - [anon_sym_i16] = ACTIONS(1400), - [anon_sym_u32] = ACTIONS(1400), - [anon_sym_i32] = ACTIONS(1400), - [anon_sym_u64] = ACTIONS(1400), - [anon_sym_i64] = ACTIONS(1400), - [anon_sym_u128] = ACTIONS(1400), - [anon_sym_i128] = ACTIONS(1400), - [anon_sym_isize] = ACTIONS(1400), - [anon_sym_usize] = ACTIONS(1400), - [anon_sym_f32] = ACTIONS(1400), - [anon_sym_f64] = ACTIONS(1400), - [anon_sym_bool] = ACTIONS(1400), - [anon_sym_str] = ACTIONS(1400), - [anon_sym_char] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_impl] = ACTIONS(1400), - [anon_sym_let] = ACTIONS(1400), - [anon_sym_loop] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1400), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_pub] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_trait] = ACTIONS(1400), - [anon_sym_type] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsafe] = ACTIONS(1400), - [anon_sym_use] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_COLON_COLON] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1400), - [anon_sym_move] = ACTIONS(1400), - [sym_integer_literal] = ACTIONS(1398), - [aux_sym_string_literal_token1] = ACTIONS(1398), - [sym_char_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1400), - [sym_super] = ACTIONS(1400), - [sym_crate] = ACTIONS(1400), - [sym_metavariable] = ACTIONS(1398), - [sym_raw_string_literal] = ACTIONS(1398), - [sym_float_literal] = ACTIONS(1398), + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym_macro_rules_BANG] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_u8] = ACTIONS(1382), + [anon_sym_i8] = ACTIONS(1382), + [anon_sym_u16] = ACTIONS(1382), + [anon_sym_i16] = ACTIONS(1382), + [anon_sym_u32] = ACTIONS(1382), + [anon_sym_i32] = ACTIONS(1382), + [anon_sym_u64] = ACTIONS(1382), + [anon_sym_i64] = ACTIONS(1382), + [anon_sym_u128] = ACTIONS(1382), + [anon_sym_i128] = ACTIONS(1382), + [anon_sym_isize] = ACTIONS(1382), + [anon_sym_usize] = ACTIONS(1382), + [anon_sym_f32] = ACTIONS(1382), + [anon_sym_f64] = ACTIONS(1382), + [anon_sym_bool] = ACTIONS(1382), + [anon_sym_str] = ACTIONS(1382), + [anon_sym_char] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_async] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_impl] = ACTIONS(1382), + [anon_sym_let] = ACTIONS(1382), + [anon_sym_loop] = ACTIONS(1382), + [anon_sym_match] = ACTIONS(1382), + [anon_sym_mod] = ACTIONS(1382), + [anon_sym_pub] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_trait] = ACTIONS(1382), + [anon_sym_type] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_unsafe] = ACTIONS(1382), + [anon_sym_use] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1380), + [anon_sym_COLON_COLON] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_DOT_DOT] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PIPE] = ACTIONS(1380), + [anon_sym_yield] = ACTIONS(1382), + [anon_sym_move] = ACTIONS(1382), + [sym_integer_literal] = ACTIONS(1380), + [aux_sym_string_literal_token1] = ACTIONS(1380), + [sym_char_literal] = ACTIONS(1380), + [anon_sym_true] = ACTIONS(1382), + [anon_sym_false] = ACTIONS(1382), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1382), + [sym_super] = ACTIONS(1382), + [sym_crate] = ACTIONS(1382), + [sym_metavariable] = ACTIONS(1380), + [sym_raw_string_literal] = ACTIONS(1380), + [sym_float_literal] = ACTIONS(1380), [sym_block_comment] = ACTIONS(3), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1402), - [anon_sym_macro_rules_BANG] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_u8] = ACTIONS(1404), - [anon_sym_i8] = ACTIONS(1404), - [anon_sym_u16] = ACTIONS(1404), - [anon_sym_i16] = ACTIONS(1404), - [anon_sym_u32] = ACTIONS(1404), - [anon_sym_i32] = ACTIONS(1404), - [anon_sym_u64] = ACTIONS(1404), - [anon_sym_i64] = ACTIONS(1404), - [anon_sym_u128] = ACTIONS(1404), - [anon_sym_i128] = ACTIONS(1404), - [anon_sym_isize] = ACTIONS(1404), - [anon_sym_usize] = ACTIONS(1404), - [anon_sym_f32] = ACTIONS(1404), - [anon_sym_f64] = ACTIONS(1404), - [anon_sym_bool] = ACTIONS(1404), - [anon_sym_str] = ACTIONS(1404), - [anon_sym_char] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_async] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1404), - [anon_sym_fn] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_impl] = ACTIONS(1404), - [anon_sym_let] = ACTIONS(1404), - [anon_sym_loop] = ACTIONS(1404), - [anon_sym_match] = ACTIONS(1404), - [anon_sym_mod] = ACTIONS(1404), - [anon_sym_pub] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_static] = ACTIONS(1404), - [anon_sym_struct] = ACTIONS(1404), - [anon_sym_trait] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [anon_sym_unsafe] = ACTIONS(1404), - [anon_sym_use] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_COLON_COLON] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_move] = ACTIONS(1404), - [sym_integer_literal] = ACTIONS(1402), - [aux_sym_string_literal_token1] = ACTIONS(1402), - [sym_char_literal] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1404), - [anon_sym_false] = ACTIONS(1404), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1404), - [sym_super] = ACTIONS(1404), - [sym_crate] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1402), - [sym_raw_string_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1402), + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_macro_rules_BANG] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_u8] = ACTIONS(1386), + [anon_sym_i8] = ACTIONS(1386), + [anon_sym_u16] = ACTIONS(1386), + [anon_sym_i16] = ACTIONS(1386), + [anon_sym_u32] = ACTIONS(1386), + [anon_sym_i32] = ACTIONS(1386), + [anon_sym_u64] = ACTIONS(1386), + [anon_sym_i64] = ACTIONS(1386), + [anon_sym_u128] = ACTIONS(1386), + [anon_sym_i128] = ACTIONS(1386), + [anon_sym_isize] = ACTIONS(1386), + [anon_sym_usize] = ACTIONS(1386), + [anon_sym_f32] = ACTIONS(1386), + [anon_sym_f64] = ACTIONS(1386), + [anon_sym_bool] = ACTIONS(1386), + [anon_sym_str] = ACTIONS(1386), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_fn] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_impl] = ACTIONS(1386), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_loop] = ACTIONS(1386), + [anon_sym_match] = ACTIONS(1386), + [anon_sym_mod] = ACTIONS(1386), + [anon_sym_pub] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_trait] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_unsafe] = ACTIONS(1386), + [anon_sym_use] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_POUND] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_COLON_COLON] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_DOT_DOT] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_move] = ACTIONS(1386), + [sym_integer_literal] = ACTIONS(1384), + [aux_sym_string_literal_token1] = ACTIONS(1384), + [sym_char_literal] = ACTIONS(1384), + [anon_sym_true] = ACTIONS(1386), + [anon_sym_false] = ACTIONS(1386), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1386), + [sym_super] = ACTIONS(1386), + [sym_crate] = ACTIONS(1386), + [sym_metavariable] = ACTIONS(1384), + [sym_raw_string_literal] = ACTIONS(1384), + [sym_float_literal] = ACTIONS(1384), [sym_block_comment] = ACTIONS(3), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(1406), - [sym_identifier] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_macro_rules_BANG] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_u8] = ACTIONS(1408), - [anon_sym_i8] = ACTIONS(1408), - [anon_sym_u16] = ACTIONS(1408), - [anon_sym_i16] = ACTIONS(1408), - [anon_sym_u32] = ACTIONS(1408), - [anon_sym_i32] = ACTIONS(1408), - [anon_sym_u64] = ACTIONS(1408), - [anon_sym_i64] = ACTIONS(1408), - [anon_sym_u128] = ACTIONS(1408), - [anon_sym_i128] = ACTIONS(1408), - [anon_sym_isize] = ACTIONS(1408), - [anon_sym_usize] = ACTIONS(1408), - [anon_sym_f32] = ACTIONS(1408), - [anon_sym_f64] = ACTIONS(1408), - [anon_sym_bool] = ACTIONS(1408), - [anon_sym_str] = ACTIONS(1408), - [anon_sym_char] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_break] = ACTIONS(1408), - [anon_sym_const] = ACTIONS(1408), - [anon_sym_continue] = ACTIONS(1408), - [anon_sym_default] = ACTIONS(1408), - [anon_sym_enum] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1408), - [anon_sym_for] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1408), - [anon_sym_impl] = ACTIONS(1408), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_loop] = ACTIONS(1408), - [anon_sym_match] = ACTIONS(1408), - [anon_sym_mod] = ACTIONS(1408), - [anon_sym_pub] = ACTIONS(1408), - [anon_sym_return] = ACTIONS(1408), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_struct] = ACTIONS(1408), - [anon_sym_trait] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_union] = ACTIONS(1408), - [anon_sym_unsafe] = ACTIONS(1408), - [anon_sym_use] = ACTIONS(1408), - [anon_sym_while] = ACTIONS(1408), - [anon_sym_POUND] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1408), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_COLON_COLON] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_yield] = ACTIONS(1408), - [anon_sym_move] = ACTIONS(1408), - [sym_integer_literal] = ACTIONS(1406), - [aux_sym_string_literal_token1] = ACTIONS(1406), - [sym_char_literal] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1408), - [anon_sym_false] = ACTIONS(1408), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1408), - [sym_super] = ACTIONS(1408), - [sym_crate] = ACTIONS(1408), - [sym_metavariable] = ACTIONS(1406), - [sym_raw_string_literal] = ACTIONS(1406), - [sym_float_literal] = ACTIONS(1406), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_macro_rules_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_u8] = ACTIONS(1390), + [anon_sym_i8] = ACTIONS(1390), + [anon_sym_u16] = ACTIONS(1390), + [anon_sym_i16] = ACTIONS(1390), + [anon_sym_u32] = ACTIONS(1390), + [anon_sym_i32] = ACTIONS(1390), + [anon_sym_u64] = ACTIONS(1390), + [anon_sym_i64] = ACTIONS(1390), + [anon_sym_u128] = ACTIONS(1390), + [anon_sym_i128] = ACTIONS(1390), + [anon_sym_isize] = ACTIONS(1390), + [anon_sym_usize] = ACTIONS(1390), + [anon_sym_f32] = ACTIONS(1390), + [anon_sym_f64] = ACTIONS(1390), + [anon_sym_bool] = ACTIONS(1390), + [anon_sym_str] = ACTIONS(1390), + [anon_sym_char] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_fn] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_impl] = ACTIONS(1390), + [anon_sym_let] = ACTIONS(1390), + [anon_sym_loop] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_mod] = ACTIONS(1390), + [anon_sym_pub] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_trait] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_unsafe] = ACTIONS(1390), + [anon_sym_use] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_POUND] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_COLON_COLON] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_DOT_DOT] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_yield] = ACTIONS(1390), + [anon_sym_move] = ACTIONS(1390), + [sym_integer_literal] = ACTIONS(1388), + [aux_sym_string_literal_token1] = ACTIONS(1388), + [sym_char_literal] = ACTIONS(1388), + [anon_sym_true] = ACTIONS(1390), + [anon_sym_false] = ACTIONS(1390), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1390), + [sym_super] = ACTIONS(1390), + [sym_crate] = ACTIONS(1390), + [sym_metavariable] = ACTIONS(1388), + [sym_raw_string_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1388), [sym_block_comment] = ACTIONS(3), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_macro_rules_BANG] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_u8] = ACTIONS(1412), - [anon_sym_i8] = ACTIONS(1412), - [anon_sym_u16] = ACTIONS(1412), - [anon_sym_i16] = ACTIONS(1412), - [anon_sym_u32] = ACTIONS(1412), - [anon_sym_i32] = ACTIONS(1412), - [anon_sym_u64] = ACTIONS(1412), - [anon_sym_i64] = ACTIONS(1412), - [anon_sym_u128] = ACTIONS(1412), - [anon_sym_i128] = ACTIONS(1412), - [anon_sym_isize] = ACTIONS(1412), - [anon_sym_usize] = ACTIONS(1412), - [anon_sym_f32] = ACTIONS(1412), - [anon_sym_f64] = ACTIONS(1412), - [anon_sym_bool] = ACTIONS(1412), - [anon_sym_str] = ACTIONS(1412), - [anon_sym_char] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_async] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_impl] = ACTIONS(1412), - [anon_sym_let] = ACTIONS(1412), - [anon_sym_loop] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1412), - [anon_sym_mod] = ACTIONS(1412), - [anon_sym_pub] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_trait] = ACTIONS(1412), - [anon_sym_type] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_unsafe] = ACTIONS(1412), - [anon_sym_use] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_yield] = ACTIONS(1412), - [anon_sym_move] = ACTIONS(1412), - [sym_integer_literal] = ACTIONS(1410), - [aux_sym_string_literal_token1] = ACTIONS(1410), - [sym_char_literal] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1412), - [anon_sym_false] = ACTIONS(1412), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1412), - [sym_super] = ACTIONS(1412), - [sym_crate] = ACTIONS(1412), - [sym_metavariable] = ACTIONS(1410), - [sym_raw_string_literal] = ACTIONS(1410), - [sym_float_literal] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_macro_rules_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [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_SQUOTE] = ACTIONS(1394), + [anon_sym_async] = 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_while] = ACTIONS(1394), + [anon_sym_POUND] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_COLON_COLON] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_yield] = ACTIONS(1394), + [anon_sym_move] = ACTIONS(1394), + [sym_integer_literal] = ACTIONS(1392), + [aux_sym_string_literal_token1] = ACTIONS(1392), + [sym_char_literal] = ACTIONS(1392), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1394), + [sym_super] = ACTIONS(1394), + [sym_crate] = ACTIONS(1394), + [sym_metavariable] = ACTIONS(1392), + [sym_raw_string_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1392), [sym_block_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1414), - [sym_identifier] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_macro_rules_BANG] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_u8] = ACTIONS(1416), - [anon_sym_i8] = ACTIONS(1416), - [anon_sym_u16] = ACTIONS(1416), - [anon_sym_i16] = ACTIONS(1416), - [anon_sym_u32] = ACTIONS(1416), - [anon_sym_i32] = ACTIONS(1416), - [anon_sym_u64] = ACTIONS(1416), - [anon_sym_i64] = ACTIONS(1416), - [anon_sym_u128] = ACTIONS(1416), - [anon_sym_i128] = ACTIONS(1416), - [anon_sym_isize] = ACTIONS(1416), - [anon_sym_usize] = ACTIONS(1416), - [anon_sym_f32] = ACTIONS(1416), - [anon_sym_f64] = ACTIONS(1416), - [anon_sym_bool] = ACTIONS(1416), - [anon_sym_str] = ACTIONS(1416), - [anon_sym_char] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1416), - [anon_sym_break] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1416), - [anon_sym_continue] = ACTIONS(1416), - [anon_sym_default] = ACTIONS(1416), - [anon_sym_enum] = ACTIONS(1416), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_for] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1416), - [anon_sym_impl] = ACTIONS(1416), - [anon_sym_let] = ACTIONS(1416), - [anon_sym_loop] = ACTIONS(1416), - [anon_sym_match] = ACTIONS(1416), - [anon_sym_mod] = ACTIONS(1416), - [anon_sym_pub] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1416), - [anon_sym_static] = ACTIONS(1416), - [anon_sym_struct] = ACTIONS(1416), - [anon_sym_trait] = ACTIONS(1416), - [anon_sym_type] = ACTIONS(1416), - [anon_sym_union] = ACTIONS(1416), - [anon_sym_unsafe] = ACTIONS(1416), - [anon_sym_use] = ACTIONS(1416), - [anon_sym_while] = ACTIONS(1416), - [anon_sym_POUND] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_COLON_COLON] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_yield] = ACTIONS(1416), - [anon_sym_move] = ACTIONS(1416), - [sym_integer_literal] = ACTIONS(1414), - [aux_sym_string_literal_token1] = ACTIONS(1414), - [sym_char_literal] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1416), - [anon_sym_false] = ACTIONS(1416), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1416), - [sym_super] = ACTIONS(1416), - [sym_crate] = ACTIONS(1416), - [sym_metavariable] = ACTIONS(1414), - [sym_raw_string_literal] = ACTIONS(1414), - [sym_float_literal] = ACTIONS(1414), + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_macro_rules_BANG] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1398), + [anon_sym_i8] = ACTIONS(1398), + [anon_sym_u16] = ACTIONS(1398), + [anon_sym_i16] = ACTIONS(1398), + [anon_sym_u32] = ACTIONS(1398), + [anon_sym_i32] = ACTIONS(1398), + [anon_sym_u64] = ACTIONS(1398), + [anon_sym_i64] = ACTIONS(1398), + [anon_sym_u128] = ACTIONS(1398), + [anon_sym_i128] = ACTIONS(1398), + [anon_sym_isize] = ACTIONS(1398), + [anon_sym_usize] = ACTIONS(1398), + [anon_sym_f32] = ACTIONS(1398), + [anon_sym_f64] = ACTIONS(1398), + [anon_sym_bool] = ACTIONS(1398), + [anon_sym_str] = ACTIONS(1398), + [anon_sym_char] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_fn] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_impl] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1398), + [anon_sym_loop] = ACTIONS(1398), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_mod] = ACTIONS(1398), + [anon_sym_pub] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_trait] = ACTIONS(1398), + [anon_sym_type] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(1398), + [anon_sym_use] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_COLON_COLON] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_DOT_DOT] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1398), + [anon_sym_move] = ACTIONS(1398), + [sym_integer_literal] = ACTIONS(1396), + [aux_sym_string_literal_token1] = ACTIONS(1396), + [sym_char_literal] = ACTIONS(1396), + [anon_sym_true] = ACTIONS(1398), + [anon_sym_false] = ACTIONS(1398), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1398), + [sym_super] = ACTIONS(1398), + [sym_crate] = ACTIONS(1398), + [sym_metavariable] = ACTIONS(1396), + [sym_raw_string_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1396), [sym_block_comment] = ACTIONS(3), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1418), - [sym_identifier] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_macro_rules_BANG] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [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_SQUOTE] = ACTIONS(1420), - [anon_sym_async] = 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_while] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_move] = ACTIONS(1420), - [sym_integer_literal] = ACTIONS(1418), - [aux_sym_string_literal_token1] = ACTIONS(1418), - [sym_char_literal] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1420), - [anon_sym_false] = ACTIONS(1420), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1418), - [sym_raw_string_literal] = ACTIONS(1418), - [sym_float_literal] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_macro_rules_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_u8] = ACTIONS(1402), + [anon_sym_i8] = ACTIONS(1402), + [anon_sym_u16] = ACTIONS(1402), + [anon_sym_i16] = ACTIONS(1402), + [anon_sym_u32] = ACTIONS(1402), + [anon_sym_i32] = ACTIONS(1402), + [anon_sym_u64] = ACTIONS(1402), + [anon_sym_i64] = ACTIONS(1402), + [anon_sym_u128] = ACTIONS(1402), + [anon_sym_i128] = ACTIONS(1402), + [anon_sym_isize] = ACTIONS(1402), + [anon_sym_usize] = ACTIONS(1402), + [anon_sym_f32] = ACTIONS(1402), + [anon_sym_f64] = ACTIONS(1402), + [anon_sym_bool] = ACTIONS(1402), + [anon_sym_str] = ACTIONS(1402), + [anon_sym_char] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_async] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_fn] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_impl] = ACTIONS(1402), + [anon_sym_let] = ACTIONS(1402), + [anon_sym_loop] = ACTIONS(1402), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_mod] = ACTIONS(1402), + [anon_sym_pub] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_trait] = ACTIONS(1402), + [anon_sym_type] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1402), + [anon_sym_use] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_POUND] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_COLON_COLON] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_DOT_DOT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_move] = ACTIONS(1402), + [sym_integer_literal] = ACTIONS(1400), + [aux_sym_string_literal_token1] = ACTIONS(1400), + [sym_char_literal] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1402), + [sym_super] = ACTIONS(1402), + [sym_crate] = ACTIONS(1402), + [sym_metavariable] = ACTIONS(1400), + [sym_raw_string_literal] = ACTIONS(1400), + [sym_float_literal] = ACTIONS(1400), [sym_block_comment] = ACTIONS(3), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_macro_rules_BANG] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [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_SQUOTE] = ACTIONS(1424), - [anon_sym_async] = 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_while] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_COLON_COLON] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_yield] = ACTIONS(1424), - [anon_sym_move] = ACTIONS(1424), - [sym_integer_literal] = ACTIONS(1422), - [aux_sym_string_literal_token1] = ACTIONS(1422), - [sym_char_literal] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1424), - [anon_sym_false] = ACTIONS(1424), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1424), - [sym_super] = ACTIONS(1424), - [sym_crate] = ACTIONS(1424), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(1422), - [sym_float_literal] = ACTIONS(1422), + [ts_builtin_sym_end] = ACTIONS(1404), + [sym_identifier] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_macro_rules_BANG] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1404), + [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_SQUOTE] = ACTIONS(1406), + [anon_sym_async] = 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_while] = ACTIONS(1406), + [anon_sym_POUND] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(1404), + [anon_sym_COLON_COLON] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_yield] = ACTIONS(1406), + [anon_sym_move] = ACTIONS(1406), + [sym_integer_literal] = ACTIONS(1404), + [aux_sym_string_literal_token1] = ACTIONS(1404), + [sym_char_literal] = ACTIONS(1404), + [anon_sym_true] = ACTIONS(1406), + [anon_sym_false] = ACTIONS(1406), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1406), + [sym_super] = ACTIONS(1406), + [sym_crate] = ACTIONS(1406), + [sym_metavariable] = ACTIONS(1404), + [sym_raw_string_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1404), [sym_block_comment] = ACTIONS(3), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(1426), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_macro_rules_BANG] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [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_SQUOTE] = ACTIONS(1428), - [anon_sym_async] = 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_while] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_COLON_COLON] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1428), - [anon_sym_move] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1426), - [aux_sym_string_literal_token1] = ACTIONS(1426), - [sym_char_literal] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1428), - [sym_super] = ACTIONS(1428), - [sym_crate] = ACTIONS(1428), - [sym_metavariable] = ACTIONS(1426), - [sym_raw_string_literal] = ACTIONS(1426), - [sym_float_literal] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_macro_rules_BANG] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1410), + [anon_sym_i8] = ACTIONS(1410), + [anon_sym_u16] = ACTIONS(1410), + [anon_sym_i16] = ACTIONS(1410), + [anon_sym_u32] = ACTIONS(1410), + [anon_sym_i32] = ACTIONS(1410), + [anon_sym_u64] = ACTIONS(1410), + [anon_sym_i64] = ACTIONS(1410), + [anon_sym_u128] = ACTIONS(1410), + [anon_sym_i128] = ACTIONS(1410), + [anon_sym_isize] = ACTIONS(1410), + [anon_sym_usize] = ACTIONS(1410), + [anon_sym_f32] = ACTIONS(1410), + [anon_sym_f64] = ACTIONS(1410), + [anon_sym_bool] = ACTIONS(1410), + [anon_sym_str] = ACTIONS(1410), + [anon_sym_char] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_impl] = ACTIONS(1410), + [anon_sym_let] = ACTIONS(1410), + [anon_sym_loop] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_mod] = ACTIONS(1410), + [anon_sym_pub] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_trait] = ACTIONS(1410), + [anon_sym_type] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_unsafe] = ACTIONS(1410), + [anon_sym_use] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1408), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_DOT_DOT] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_yield] = ACTIONS(1410), + [anon_sym_move] = ACTIONS(1410), + [sym_integer_literal] = ACTIONS(1408), + [aux_sym_string_literal_token1] = ACTIONS(1408), + [sym_char_literal] = ACTIONS(1408), + [anon_sym_true] = ACTIONS(1410), + [anon_sym_false] = ACTIONS(1410), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1410), + [sym_super] = ACTIONS(1410), + [sym_crate] = ACTIONS(1410), + [sym_metavariable] = ACTIONS(1408), + [sym_raw_string_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1408), [sym_block_comment] = ACTIONS(3), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [sym_identifier] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_macro_rules_BANG] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [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_SQUOTE] = ACTIONS(1432), - [anon_sym_async] = 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_while] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_COLON_COLON] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1430), - [aux_sym_string_literal_token1] = ACTIONS(1430), - [sym_char_literal] = ACTIONS(1430), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1432), - [sym_super] = ACTIONS(1432), - [sym_crate] = ACTIONS(1432), - [sym_metavariable] = ACTIONS(1430), - [sym_raw_string_literal] = ACTIONS(1430), - [sym_float_literal] = ACTIONS(1430), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_macro_rules_BANG] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_u8] = ACTIONS(1414), + [anon_sym_i8] = ACTIONS(1414), + [anon_sym_u16] = ACTIONS(1414), + [anon_sym_i16] = ACTIONS(1414), + [anon_sym_u32] = ACTIONS(1414), + [anon_sym_i32] = ACTIONS(1414), + [anon_sym_u64] = ACTIONS(1414), + [anon_sym_i64] = ACTIONS(1414), + [anon_sym_u128] = ACTIONS(1414), + [anon_sym_i128] = ACTIONS(1414), + [anon_sym_isize] = ACTIONS(1414), + [anon_sym_usize] = ACTIONS(1414), + [anon_sym_f32] = ACTIONS(1414), + [anon_sym_f64] = ACTIONS(1414), + [anon_sym_bool] = ACTIONS(1414), + [anon_sym_str] = ACTIONS(1414), + [anon_sym_char] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_async] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_fn] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_impl] = ACTIONS(1414), + [anon_sym_let] = ACTIONS(1414), + [anon_sym_loop] = ACTIONS(1414), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_mod] = ACTIONS(1414), + [anon_sym_pub] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_trait] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_unsafe] = ACTIONS(1414), + [anon_sym_use] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_COLON_COLON] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_DOT_DOT] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_yield] = ACTIONS(1414), + [anon_sym_move] = ACTIONS(1414), + [sym_integer_literal] = ACTIONS(1412), + [aux_sym_string_literal_token1] = ACTIONS(1412), + [sym_char_literal] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1414), + [anon_sym_false] = ACTIONS(1414), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1414), + [sym_super] = ACTIONS(1414), + [sym_crate] = ACTIONS(1414), + [sym_metavariable] = ACTIONS(1412), + [sym_raw_string_literal] = ACTIONS(1412), + [sym_float_literal] = ACTIONS(1412), [sym_block_comment] = ACTIONS(3), }, [344] = { - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_identifier] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_macro_rules_BANG] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_u8] = ACTIONS(1436), - [anon_sym_i8] = ACTIONS(1436), - [anon_sym_u16] = ACTIONS(1436), - [anon_sym_i16] = ACTIONS(1436), - [anon_sym_u32] = ACTIONS(1436), - [anon_sym_i32] = ACTIONS(1436), - [anon_sym_u64] = ACTIONS(1436), - [anon_sym_i64] = ACTIONS(1436), - [anon_sym_u128] = ACTIONS(1436), - [anon_sym_i128] = ACTIONS(1436), - [anon_sym_isize] = ACTIONS(1436), - [anon_sym_usize] = ACTIONS(1436), - [anon_sym_f32] = ACTIONS(1436), - [anon_sym_f64] = ACTIONS(1436), - [anon_sym_bool] = ACTIONS(1436), - [anon_sym_str] = ACTIONS(1436), - [anon_sym_char] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_async] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_impl] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_pub] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_trait] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_unsafe] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_POUND] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_COLON_COLON] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_DOT_DOT] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_move] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1434), - [aux_sym_string_literal_token1] = ACTIONS(1434), - [sym_char_literal] = ACTIONS(1434), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1436), - [sym_super] = ACTIONS(1436), - [sym_crate] = ACTIONS(1436), - [sym_metavariable] = ACTIONS(1434), - [sym_raw_string_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1434), + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_macro_rules_BANG] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_u8] = ACTIONS(1418), + [anon_sym_i8] = ACTIONS(1418), + [anon_sym_u16] = ACTIONS(1418), + [anon_sym_i16] = ACTIONS(1418), + [anon_sym_u32] = ACTIONS(1418), + [anon_sym_i32] = ACTIONS(1418), + [anon_sym_u64] = ACTIONS(1418), + [anon_sym_i64] = ACTIONS(1418), + [anon_sym_u128] = ACTIONS(1418), + [anon_sym_i128] = ACTIONS(1418), + [anon_sym_isize] = ACTIONS(1418), + [anon_sym_usize] = ACTIONS(1418), + [anon_sym_f32] = ACTIONS(1418), + [anon_sym_f64] = ACTIONS(1418), + [anon_sym_bool] = ACTIONS(1418), + [anon_sym_str] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_fn] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_impl] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1418), + [anon_sym_loop] = ACTIONS(1418), + [anon_sym_match] = ACTIONS(1418), + [anon_sym_mod] = ACTIONS(1418), + [anon_sym_pub] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_trait] = ACTIONS(1418), + [anon_sym_type] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1418), + [anon_sym_use] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_POUND] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_COLON_COLON] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_yield] = ACTIONS(1418), + [anon_sym_move] = ACTIONS(1418), + [sym_integer_literal] = ACTIONS(1416), + [aux_sym_string_literal_token1] = ACTIONS(1416), + [sym_char_literal] = ACTIONS(1416), + [anon_sym_true] = ACTIONS(1418), + [anon_sym_false] = ACTIONS(1418), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1418), + [sym_super] = ACTIONS(1418), + [sym_crate] = ACTIONS(1418), + [sym_metavariable] = ACTIONS(1416), + [sym_raw_string_literal] = ACTIONS(1416), + [sym_float_literal] = ACTIONS(1416), [sym_block_comment] = ACTIONS(3), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1438), - [sym_identifier] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_macro_rules_BANG] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_u8] = ACTIONS(1440), - [anon_sym_i8] = ACTIONS(1440), - [anon_sym_u16] = ACTIONS(1440), - [anon_sym_i16] = ACTIONS(1440), - [anon_sym_u32] = ACTIONS(1440), - [anon_sym_i32] = ACTIONS(1440), - [anon_sym_u64] = ACTIONS(1440), - [anon_sym_i64] = ACTIONS(1440), - [anon_sym_u128] = ACTIONS(1440), - [anon_sym_i128] = ACTIONS(1440), - [anon_sym_isize] = ACTIONS(1440), - [anon_sym_usize] = ACTIONS(1440), - [anon_sym_f32] = ACTIONS(1440), - [anon_sym_f64] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_str] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_fn] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_impl] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_pub] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_trait] = ACTIONS(1440), - [anon_sym_type] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_unsafe] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_COLON_COLON] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_yield] = ACTIONS(1440), - [anon_sym_move] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1438), - [aux_sym_string_literal_token1] = ACTIONS(1438), - [sym_char_literal] = ACTIONS(1438), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1440), - [sym_super] = ACTIONS(1440), - [sym_crate] = ACTIONS(1440), - [sym_metavariable] = ACTIONS(1438), - [sym_raw_string_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1438), + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_macro_rules_BANG] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_u8] = ACTIONS(1422), + [anon_sym_i8] = ACTIONS(1422), + [anon_sym_u16] = ACTIONS(1422), + [anon_sym_i16] = ACTIONS(1422), + [anon_sym_u32] = ACTIONS(1422), + [anon_sym_i32] = ACTIONS(1422), + [anon_sym_u64] = ACTIONS(1422), + [anon_sym_i64] = ACTIONS(1422), + [anon_sym_u128] = ACTIONS(1422), + [anon_sym_i128] = ACTIONS(1422), + [anon_sym_isize] = ACTIONS(1422), + [anon_sym_usize] = ACTIONS(1422), + [anon_sym_f32] = ACTIONS(1422), + [anon_sym_f64] = ACTIONS(1422), + [anon_sym_bool] = ACTIONS(1422), + [anon_sym_str] = ACTIONS(1422), + [anon_sym_char] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_async] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_fn] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_impl] = ACTIONS(1422), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_loop] = ACTIONS(1422), + [anon_sym_match] = ACTIONS(1422), + [anon_sym_mod] = ACTIONS(1422), + [anon_sym_pub] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_trait] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_unsafe] = ACTIONS(1422), + [anon_sym_use] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_POUND] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_COLON_COLON] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_DOT_DOT] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_yield] = ACTIONS(1422), + [anon_sym_move] = ACTIONS(1422), + [sym_integer_literal] = ACTIONS(1420), + [aux_sym_string_literal_token1] = ACTIONS(1420), + [sym_char_literal] = ACTIONS(1420), + [anon_sym_true] = ACTIONS(1422), + [anon_sym_false] = ACTIONS(1422), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1422), + [sym_super] = ACTIONS(1422), + [sym_crate] = ACTIONS(1422), + [sym_metavariable] = ACTIONS(1420), + [sym_raw_string_literal] = ACTIONS(1420), + [sym_float_literal] = ACTIONS(1420), [sym_block_comment] = ACTIONS(3), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_macro_rules_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_u8] = ACTIONS(1444), - [anon_sym_i8] = ACTIONS(1444), - [anon_sym_u16] = ACTIONS(1444), - [anon_sym_i16] = ACTIONS(1444), - [anon_sym_u32] = ACTIONS(1444), - [anon_sym_i32] = ACTIONS(1444), - [anon_sym_u64] = ACTIONS(1444), - [anon_sym_i64] = ACTIONS(1444), - [anon_sym_u128] = ACTIONS(1444), - [anon_sym_i128] = ACTIONS(1444), - [anon_sym_isize] = ACTIONS(1444), - [anon_sym_usize] = ACTIONS(1444), - [anon_sym_f32] = ACTIONS(1444), - [anon_sym_f64] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_str] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_async] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_fn] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_impl] = ACTIONS(1444), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_loop] = ACTIONS(1444), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_mod] = ACTIONS(1444), - [anon_sym_pub] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_trait] = ACTIONS(1444), - [anon_sym_type] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1444), - [anon_sym_use] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_POUND] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym_LT] = ACTIONS(1442), - [anon_sym_COLON_COLON] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_DOT_DOT] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_yield] = ACTIONS(1444), - [anon_sym_move] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1442), - [aux_sym_string_literal_token1] = ACTIONS(1442), - [sym_char_literal] = ACTIONS(1442), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1444), - [sym_super] = ACTIONS(1444), - [sym_crate] = ACTIONS(1444), - [sym_metavariable] = ACTIONS(1442), - [sym_raw_string_literal] = ACTIONS(1442), - [sym_float_literal] = ACTIONS(1442), + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_macro_rules_BANG] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_u8] = ACTIONS(1426), + [anon_sym_i8] = ACTIONS(1426), + [anon_sym_u16] = ACTIONS(1426), + [anon_sym_i16] = ACTIONS(1426), + [anon_sym_u32] = ACTIONS(1426), + [anon_sym_i32] = ACTIONS(1426), + [anon_sym_u64] = ACTIONS(1426), + [anon_sym_i64] = ACTIONS(1426), + [anon_sym_u128] = ACTIONS(1426), + [anon_sym_i128] = ACTIONS(1426), + [anon_sym_isize] = ACTIONS(1426), + [anon_sym_usize] = ACTIONS(1426), + [anon_sym_f32] = ACTIONS(1426), + [anon_sym_f64] = ACTIONS(1426), + [anon_sym_bool] = ACTIONS(1426), + [anon_sym_str] = ACTIONS(1426), + [anon_sym_char] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_async] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_fn] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_impl] = ACTIONS(1426), + [anon_sym_let] = ACTIONS(1426), + [anon_sym_loop] = ACTIONS(1426), + [anon_sym_match] = ACTIONS(1426), + [anon_sym_mod] = ACTIONS(1426), + [anon_sym_pub] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_trait] = ACTIONS(1426), + [anon_sym_type] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_unsafe] = ACTIONS(1426), + [anon_sym_use] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_DOT_DOT] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_move] = ACTIONS(1426), + [sym_integer_literal] = ACTIONS(1424), + [aux_sym_string_literal_token1] = ACTIONS(1424), + [sym_char_literal] = ACTIONS(1424), + [anon_sym_true] = ACTIONS(1426), + [anon_sym_false] = ACTIONS(1426), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1426), + [sym_super] = ACTIONS(1426), + [sym_crate] = ACTIONS(1426), + [sym_metavariable] = ACTIONS(1424), + [sym_raw_string_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1424), [sym_block_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_macro_rules_BANG] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_u8] = ACTIONS(1448), - [anon_sym_i8] = ACTIONS(1448), - [anon_sym_u16] = ACTIONS(1448), - [anon_sym_i16] = ACTIONS(1448), - [anon_sym_u32] = ACTIONS(1448), - [anon_sym_i32] = ACTIONS(1448), - [anon_sym_u64] = ACTIONS(1448), - [anon_sym_i64] = ACTIONS(1448), - [anon_sym_u128] = ACTIONS(1448), - [anon_sym_i128] = ACTIONS(1448), - [anon_sym_isize] = ACTIONS(1448), - [anon_sym_usize] = ACTIONS(1448), - [anon_sym_f32] = ACTIONS(1448), - [anon_sym_f64] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_str] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_fn] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_impl] = ACTIONS(1448), - [anon_sym_let] = ACTIONS(1448), - [anon_sym_loop] = ACTIONS(1448), - [anon_sym_match] = ACTIONS(1448), - [anon_sym_mod] = ACTIONS(1448), - [anon_sym_pub] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_trait] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1448), - [anon_sym_use] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1446), - [anon_sym_COLON_COLON] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_DOT_DOT] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1446), - [anon_sym_yield] = ACTIONS(1448), - [anon_sym_move] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1446), - [aux_sym_string_literal_token1] = ACTIONS(1446), - [sym_char_literal] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1448), - [sym_super] = ACTIONS(1448), - [sym_crate] = ACTIONS(1448), - [sym_metavariable] = ACTIONS(1446), - [sym_raw_string_literal] = ACTIONS(1446), - [sym_float_literal] = ACTIONS(1446), + [ts_builtin_sym_end] = ACTIONS(1428), + [sym_identifier] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_macro_rules_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_u8] = ACTIONS(1430), + [anon_sym_i8] = ACTIONS(1430), + [anon_sym_u16] = ACTIONS(1430), + [anon_sym_i16] = ACTIONS(1430), + [anon_sym_u32] = ACTIONS(1430), + [anon_sym_i32] = ACTIONS(1430), + [anon_sym_u64] = ACTIONS(1430), + [anon_sym_i64] = ACTIONS(1430), + [anon_sym_u128] = ACTIONS(1430), + [anon_sym_i128] = ACTIONS(1430), + [anon_sym_isize] = ACTIONS(1430), + [anon_sym_usize] = ACTIONS(1430), + [anon_sym_f32] = ACTIONS(1430), + [anon_sym_f64] = ACTIONS(1430), + [anon_sym_bool] = ACTIONS(1430), + [anon_sym_str] = ACTIONS(1430), + [anon_sym_char] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_async] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_impl] = ACTIONS(1430), + [anon_sym_let] = ACTIONS(1430), + [anon_sym_loop] = ACTIONS(1430), + [anon_sym_match] = ACTIONS(1430), + [anon_sym_mod] = ACTIONS(1430), + [anon_sym_pub] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_trait] = ACTIONS(1430), + [anon_sym_type] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_unsafe] = ACTIONS(1430), + [anon_sym_use] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_COLON_COLON] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_yield] = ACTIONS(1430), + [anon_sym_move] = ACTIONS(1430), + [sym_integer_literal] = ACTIONS(1428), + [aux_sym_string_literal_token1] = ACTIONS(1428), + [sym_char_literal] = ACTIONS(1428), + [anon_sym_true] = ACTIONS(1430), + [anon_sym_false] = ACTIONS(1430), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1430), + [sym_super] = ACTIONS(1430), + [sym_crate] = ACTIONS(1430), + [sym_metavariable] = ACTIONS(1428), + [sym_raw_string_literal] = ACTIONS(1428), + [sym_float_literal] = ACTIONS(1428), [sym_block_comment] = ACTIONS(3), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_macro_rules_BANG] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1452), - [anon_sym_i8] = ACTIONS(1452), - [anon_sym_u16] = ACTIONS(1452), - [anon_sym_i16] = ACTIONS(1452), - [anon_sym_u32] = ACTIONS(1452), - [anon_sym_i32] = ACTIONS(1452), - [anon_sym_u64] = ACTIONS(1452), - [anon_sym_i64] = ACTIONS(1452), - [anon_sym_u128] = ACTIONS(1452), - [anon_sym_i128] = ACTIONS(1452), - [anon_sym_isize] = ACTIONS(1452), - [anon_sym_usize] = ACTIONS(1452), - [anon_sym_f32] = ACTIONS(1452), - [anon_sym_f64] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_str] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_async] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_impl] = ACTIONS(1452), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_loop] = ACTIONS(1452), - [anon_sym_match] = ACTIONS(1452), - [anon_sym_mod] = ACTIONS(1452), - [anon_sym_pub] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_trait] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_unsafe] = ACTIONS(1452), - [anon_sym_use] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_DOT_DOT] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_yield] = ACTIONS(1452), - [anon_sym_move] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1450), - [aux_sym_string_literal_token1] = ACTIONS(1450), - [sym_char_literal] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1452), - [sym_super] = ACTIONS(1452), - [sym_crate] = ACTIONS(1452), - [sym_metavariable] = ACTIONS(1450), - [sym_raw_string_literal] = ACTIONS(1450), - [sym_float_literal] = ACTIONS(1450), + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_macro_rules_BANG] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1434), + [anon_sym_i8] = ACTIONS(1434), + [anon_sym_u16] = ACTIONS(1434), + [anon_sym_i16] = ACTIONS(1434), + [anon_sym_u32] = ACTIONS(1434), + [anon_sym_i32] = ACTIONS(1434), + [anon_sym_u64] = ACTIONS(1434), + [anon_sym_i64] = ACTIONS(1434), + [anon_sym_u128] = ACTIONS(1434), + [anon_sym_i128] = ACTIONS(1434), + [anon_sym_isize] = ACTIONS(1434), + [anon_sym_usize] = ACTIONS(1434), + [anon_sym_f32] = ACTIONS(1434), + [anon_sym_f64] = ACTIONS(1434), + [anon_sym_bool] = ACTIONS(1434), + [anon_sym_str] = ACTIONS(1434), + [anon_sym_char] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_impl] = ACTIONS(1434), + [anon_sym_let] = ACTIONS(1434), + [anon_sym_loop] = ACTIONS(1434), + [anon_sym_match] = ACTIONS(1434), + [anon_sym_mod] = ACTIONS(1434), + [anon_sym_pub] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_trait] = ACTIONS(1434), + [anon_sym_type] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_unsafe] = ACTIONS(1434), + [anon_sym_use] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_COLON_COLON] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1432), + [aux_sym_string_literal_token1] = ACTIONS(1432), + [sym_char_literal] = ACTIONS(1432), + [anon_sym_true] = ACTIONS(1434), + [anon_sym_false] = ACTIONS(1434), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1434), + [sym_super] = ACTIONS(1434), + [sym_crate] = ACTIONS(1434), + [sym_metavariable] = ACTIONS(1432), + [sym_raw_string_literal] = ACTIONS(1432), + [sym_float_literal] = ACTIONS(1432), [sym_block_comment] = ACTIONS(3), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_macro_rules_BANG] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_u8] = ACTIONS(1456), - [anon_sym_i8] = ACTIONS(1456), - [anon_sym_u16] = ACTIONS(1456), - [anon_sym_i16] = ACTIONS(1456), - [anon_sym_u32] = ACTIONS(1456), - [anon_sym_i32] = ACTIONS(1456), - [anon_sym_u64] = ACTIONS(1456), - [anon_sym_i64] = ACTIONS(1456), - [anon_sym_u128] = ACTIONS(1456), - [anon_sym_i128] = ACTIONS(1456), - [anon_sym_isize] = ACTIONS(1456), - [anon_sym_usize] = ACTIONS(1456), - [anon_sym_f32] = ACTIONS(1456), - [anon_sym_f64] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_str] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_async] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_fn] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_impl] = ACTIONS(1456), - [anon_sym_let] = ACTIONS(1456), - [anon_sym_loop] = ACTIONS(1456), - [anon_sym_match] = ACTIONS(1456), - [anon_sym_mod] = ACTIONS(1456), - [anon_sym_pub] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_trait] = ACTIONS(1456), - [anon_sym_type] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_unsafe] = ACTIONS(1456), - [anon_sym_use] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_POUND] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_COLON_COLON] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_yield] = ACTIONS(1456), - [anon_sym_move] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1454), - [aux_sym_string_literal_token1] = ACTIONS(1454), - [sym_char_literal] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1456), - [sym_super] = ACTIONS(1456), - [sym_crate] = ACTIONS(1456), - [sym_metavariable] = ACTIONS(1454), - [sym_raw_string_literal] = ACTIONS(1454), - [sym_float_literal] = ACTIONS(1454), + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_identifier] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_macro_rules_BANG] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [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_SQUOTE] = ACTIONS(1438), + [anon_sym_async] = 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_while] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_COLON_COLON] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_yield] = ACTIONS(1438), + [anon_sym_move] = ACTIONS(1438), + [sym_integer_literal] = ACTIONS(1436), + [aux_sym_string_literal_token1] = ACTIONS(1436), + [sym_char_literal] = ACTIONS(1436), + [anon_sym_true] = ACTIONS(1438), + [anon_sym_false] = ACTIONS(1438), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1438), + [sym_super] = ACTIONS(1438), + [sym_crate] = ACTIONS(1438), + [sym_metavariable] = ACTIONS(1436), + [sym_raw_string_literal] = ACTIONS(1436), + [sym_float_literal] = ACTIONS(1436), [sym_block_comment] = ACTIONS(3), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(1458), - [sym_identifier] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_macro_rules_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_u8] = ACTIONS(1460), - [anon_sym_i8] = ACTIONS(1460), - [anon_sym_u16] = ACTIONS(1460), - [anon_sym_i16] = ACTIONS(1460), - [anon_sym_u32] = ACTIONS(1460), - [anon_sym_i32] = ACTIONS(1460), - [anon_sym_u64] = ACTIONS(1460), - [anon_sym_i64] = ACTIONS(1460), - [anon_sym_u128] = ACTIONS(1460), - [anon_sym_i128] = ACTIONS(1460), - [anon_sym_isize] = ACTIONS(1460), - [anon_sym_usize] = ACTIONS(1460), - [anon_sym_f32] = ACTIONS(1460), - [anon_sym_f64] = ACTIONS(1460), - [anon_sym_bool] = ACTIONS(1460), - [anon_sym_str] = ACTIONS(1460), - [anon_sym_char] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_async] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_fn] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_impl] = ACTIONS(1460), - [anon_sym_let] = ACTIONS(1460), - [anon_sym_loop] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1460), - [anon_sym_mod] = ACTIONS(1460), - [anon_sym_pub] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_trait] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_unsafe] = ACTIONS(1460), - [anon_sym_use] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_COLON_COLON] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_yield] = ACTIONS(1460), - [anon_sym_move] = ACTIONS(1460), - [sym_integer_literal] = ACTIONS(1458), - [aux_sym_string_literal_token1] = ACTIONS(1458), - [sym_char_literal] = ACTIONS(1458), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1460), - [sym_super] = ACTIONS(1460), - [sym_crate] = ACTIONS(1460), - [sym_metavariable] = ACTIONS(1458), - [sym_raw_string_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1458), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym_macro_rules_BANG] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_u8] = ACTIONS(1442), + [anon_sym_i8] = ACTIONS(1442), + [anon_sym_u16] = ACTIONS(1442), + [anon_sym_i16] = ACTIONS(1442), + [anon_sym_u32] = ACTIONS(1442), + [anon_sym_i32] = ACTIONS(1442), + [anon_sym_u64] = ACTIONS(1442), + [anon_sym_i64] = ACTIONS(1442), + [anon_sym_u128] = ACTIONS(1442), + [anon_sym_i128] = ACTIONS(1442), + [anon_sym_isize] = ACTIONS(1442), + [anon_sym_usize] = ACTIONS(1442), + [anon_sym_f32] = ACTIONS(1442), + [anon_sym_f64] = ACTIONS(1442), + [anon_sym_bool] = ACTIONS(1442), + [anon_sym_str] = ACTIONS(1442), + [anon_sym_char] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_async] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_impl] = ACTIONS(1442), + [anon_sym_let] = ACTIONS(1442), + [anon_sym_loop] = ACTIONS(1442), + [anon_sym_match] = ACTIONS(1442), + [anon_sym_mod] = ACTIONS(1442), + [anon_sym_pub] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_trait] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_unsafe] = ACTIONS(1442), + [anon_sym_use] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1440), + [anon_sym_COLON_COLON] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PIPE] = ACTIONS(1440), + [anon_sym_yield] = ACTIONS(1442), + [anon_sym_move] = ACTIONS(1442), + [sym_integer_literal] = ACTIONS(1440), + [aux_sym_string_literal_token1] = ACTIONS(1440), + [sym_char_literal] = ACTIONS(1440), + [anon_sym_true] = ACTIONS(1442), + [anon_sym_false] = ACTIONS(1442), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1442), + [sym_super] = ACTIONS(1442), + [sym_crate] = ACTIONS(1442), + [sym_metavariable] = ACTIONS(1440), + [sym_raw_string_literal] = ACTIONS(1440), + [sym_float_literal] = ACTIONS(1440), [sym_block_comment] = ACTIONS(3), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(1462), - [sym_identifier] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_macro_rules_BANG] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_u8] = ACTIONS(1464), - [anon_sym_i8] = ACTIONS(1464), - [anon_sym_u16] = ACTIONS(1464), - [anon_sym_i16] = ACTIONS(1464), - [anon_sym_u32] = ACTIONS(1464), - [anon_sym_i32] = ACTIONS(1464), - [anon_sym_u64] = ACTIONS(1464), - [anon_sym_i64] = ACTIONS(1464), - [anon_sym_u128] = ACTIONS(1464), - [anon_sym_i128] = ACTIONS(1464), - [anon_sym_isize] = ACTIONS(1464), - [anon_sym_usize] = ACTIONS(1464), - [anon_sym_f32] = ACTIONS(1464), - [anon_sym_f64] = ACTIONS(1464), - [anon_sym_bool] = ACTIONS(1464), - [anon_sym_str] = ACTIONS(1464), - [anon_sym_char] = ACTIONS(1464), - [anon_sym_SQUOTE] = ACTIONS(1464), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_fn] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_impl] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_loop] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_mod] = ACTIONS(1464), - [anon_sym_pub] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_trait] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_unsafe] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(1462), - [anon_sym_COLON_COLON] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_DOT_DOT] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1462), - [anon_sym_yield] = ACTIONS(1464), - [anon_sym_move] = ACTIONS(1464), - [sym_integer_literal] = ACTIONS(1462), - [aux_sym_string_literal_token1] = ACTIONS(1462), - [sym_char_literal] = ACTIONS(1462), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1464), - [sym_super] = ACTIONS(1464), - [sym_crate] = ACTIONS(1464), - [sym_metavariable] = ACTIONS(1462), - [sym_raw_string_literal] = ACTIONS(1462), - [sym_float_literal] = ACTIONS(1462), + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_macro_rules_BANG] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1446), + [anon_sym_i8] = ACTIONS(1446), + [anon_sym_u16] = ACTIONS(1446), + [anon_sym_i16] = ACTIONS(1446), + [anon_sym_u32] = ACTIONS(1446), + [anon_sym_i32] = ACTIONS(1446), + [anon_sym_u64] = ACTIONS(1446), + [anon_sym_i64] = ACTIONS(1446), + [anon_sym_u128] = ACTIONS(1446), + [anon_sym_i128] = ACTIONS(1446), + [anon_sym_isize] = ACTIONS(1446), + [anon_sym_usize] = ACTIONS(1446), + [anon_sym_f32] = ACTIONS(1446), + [anon_sym_f64] = ACTIONS(1446), + [anon_sym_bool] = ACTIONS(1446), + [anon_sym_str] = ACTIONS(1446), + [anon_sym_char] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_async] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_impl] = ACTIONS(1446), + [anon_sym_let] = ACTIONS(1446), + [anon_sym_loop] = ACTIONS(1446), + [anon_sym_match] = ACTIONS(1446), + [anon_sym_mod] = ACTIONS(1446), + [anon_sym_pub] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_trait] = ACTIONS(1446), + [anon_sym_type] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_unsafe] = ACTIONS(1446), + [anon_sym_use] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_move] = ACTIONS(1446), + [sym_integer_literal] = ACTIONS(1444), + [aux_sym_string_literal_token1] = ACTIONS(1444), + [sym_char_literal] = ACTIONS(1444), + [anon_sym_true] = ACTIONS(1446), + [anon_sym_false] = ACTIONS(1446), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1446), + [sym_super] = ACTIONS(1446), + [sym_crate] = ACTIONS(1446), + [sym_metavariable] = ACTIONS(1444), + [sym_raw_string_literal] = ACTIONS(1444), + [sym_float_literal] = ACTIONS(1444), [sym_block_comment] = ACTIONS(3), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_macro_rules_BANG] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_u8] = ACTIONS(1468), - [anon_sym_i8] = ACTIONS(1468), - [anon_sym_u16] = ACTIONS(1468), - [anon_sym_i16] = ACTIONS(1468), - [anon_sym_u32] = ACTIONS(1468), - [anon_sym_i32] = ACTIONS(1468), - [anon_sym_u64] = ACTIONS(1468), - [anon_sym_i64] = ACTIONS(1468), - [anon_sym_u128] = ACTIONS(1468), - [anon_sym_i128] = ACTIONS(1468), - [anon_sym_isize] = ACTIONS(1468), - [anon_sym_usize] = ACTIONS(1468), - [anon_sym_f32] = ACTIONS(1468), - [anon_sym_f64] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_str] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_async] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_fn] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_impl] = ACTIONS(1468), - [anon_sym_let] = ACTIONS(1468), - [anon_sym_loop] = ACTIONS(1468), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_mod] = ACTIONS(1468), - [anon_sym_pub] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_trait] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1468), - [anon_sym_use] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_COLON_COLON] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_DOT_DOT] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_yield] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1466), - [aux_sym_string_literal_token1] = ACTIONS(1466), - [sym_char_literal] = ACTIONS(1466), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1468), - [sym_super] = ACTIONS(1468), - [sym_crate] = ACTIONS(1468), - [sym_metavariable] = ACTIONS(1466), - [sym_raw_string_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1466), + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_macro_rules_BANG] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_u8] = ACTIONS(1450), + [anon_sym_i8] = ACTIONS(1450), + [anon_sym_u16] = ACTIONS(1450), + [anon_sym_i16] = ACTIONS(1450), + [anon_sym_u32] = ACTIONS(1450), + [anon_sym_i32] = ACTIONS(1450), + [anon_sym_u64] = ACTIONS(1450), + [anon_sym_i64] = ACTIONS(1450), + [anon_sym_u128] = ACTIONS(1450), + [anon_sym_i128] = ACTIONS(1450), + [anon_sym_isize] = ACTIONS(1450), + [anon_sym_usize] = ACTIONS(1450), + [anon_sym_f32] = ACTIONS(1450), + [anon_sym_f64] = ACTIONS(1450), + [anon_sym_bool] = ACTIONS(1450), + [anon_sym_str] = ACTIONS(1450), + [anon_sym_char] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_async] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_impl] = ACTIONS(1450), + [anon_sym_let] = ACTIONS(1450), + [anon_sym_loop] = ACTIONS(1450), + [anon_sym_match] = ACTIONS(1450), + [anon_sym_mod] = ACTIONS(1450), + [anon_sym_pub] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_trait] = ACTIONS(1450), + [anon_sym_type] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_unsafe] = ACTIONS(1450), + [anon_sym_use] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_COLON_COLON] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_yield] = ACTIONS(1450), + [anon_sym_move] = ACTIONS(1450), + [sym_integer_literal] = ACTIONS(1448), + [aux_sym_string_literal_token1] = ACTIONS(1448), + [sym_char_literal] = ACTIONS(1448), + [anon_sym_true] = ACTIONS(1450), + [anon_sym_false] = ACTIONS(1450), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1450), + [sym_super] = ACTIONS(1450), + [sym_crate] = ACTIONS(1450), + [sym_metavariable] = ACTIONS(1448), + [sym_raw_string_literal] = ACTIONS(1448), + [sym_float_literal] = ACTIONS(1448), [sym_block_comment] = ACTIONS(3), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_macro_rules_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_u8] = ACTIONS(1472), - [anon_sym_i8] = ACTIONS(1472), - [anon_sym_u16] = ACTIONS(1472), - [anon_sym_i16] = ACTIONS(1472), - [anon_sym_u32] = ACTIONS(1472), - [anon_sym_i32] = ACTIONS(1472), - [anon_sym_u64] = ACTIONS(1472), - [anon_sym_i64] = ACTIONS(1472), - [anon_sym_u128] = ACTIONS(1472), - [anon_sym_i128] = ACTIONS(1472), - [anon_sym_isize] = ACTIONS(1472), - [anon_sym_usize] = ACTIONS(1472), - [anon_sym_f32] = ACTIONS(1472), - [anon_sym_f64] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_str] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_SQUOTE] = ACTIONS(1472), - [anon_sym_async] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_fn] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_impl] = ACTIONS(1472), - [anon_sym_let] = ACTIONS(1472), - [anon_sym_loop] = ACTIONS(1472), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_mod] = ACTIONS(1472), - [anon_sym_pub] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_trait] = ACTIONS(1472), - [anon_sym_type] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_COLON_COLON] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_move] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1470), - [aux_sym_string_literal_token1] = ACTIONS(1470), - [sym_char_literal] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1472), - [sym_super] = ACTIONS(1472), - [sym_crate] = ACTIONS(1472), - [sym_metavariable] = ACTIONS(1470), - [sym_raw_string_literal] = ACTIONS(1470), - [sym_float_literal] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_macro_rules_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_u8] = ACTIONS(1454), + [anon_sym_i8] = ACTIONS(1454), + [anon_sym_u16] = ACTIONS(1454), + [anon_sym_i16] = ACTIONS(1454), + [anon_sym_u32] = ACTIONS(1454), + [anon_sym_i32] = ACTIONS(1454), + [anon_sym_u64] = ACTIONS(1454), + [anon_sym_i64] = ACTIONS(1454), + [anon_sym_u128] = ACTIONS(1454), + [anon_sym_i128] = ACTIONS(1454), + [anon_sym_isize] = ACTIONS(1454), + [anon_sym_usize] = ACTIONS(1454), + [anon_sym_f32] = ACTIONS(1454), + [anon_sym_f64] = ACTIONS(1454), + [anon_sym_bool] = ACTIONS(1454), + [anon_sym_str] = ACTIONS(1454), + [anon_sym_char] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_async] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_fn] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_impl] = ACTIONS(1454), + [anon_sym_let] = ACTIONS(1454), + [anon_sym_loop] = ACTIONS(1454), + [anon_sym_match] = ACTIONS(1454), + [anon_sym_mod] = ACTIONS(1454), + [anon_sym_pub] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_trait] = ACTIONS(1454), + [anon_sym_type] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_unsafe] = ACTIONS(1454), + [anon_sym_use] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1452), + [anon_sym_COLON_COLON] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_DOT_DOT] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_yield] = ACTIONS(1454), + [anon_sym_move] = ACTIONS(1454), + [sym_integer_literal] = ACTIONS(1452), + [aux_sym_string_literal_token1] = ACTIONS(1452), + [sym_char_literal] = ACTIONS(1452), + [anon_sym_true] = ACTIONS(1454), + [anon_sym_false] = ACTIONS(1454), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1454), + [sym_super] = ACTIONS(1454), + [sym_crate] = ACTIONS(1454), + [sym_metavariable] = ACTIONS(1452), + [sym_raw_string_literal] = ACTIONS(1452), + [sym_float_literal] = ACTIONS(1452), [sym_block_comment] = ACTIONS(3), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_macro_rules_BANG] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_u8] = ACTIONS(1476), - [anon_sym_i8] = ACTIONS(1476), - [anon_sym_u16] = ACTIONS(1476), - [anon_sym_i16] = ACTIONS(1476), - [anon_sym_u32] = ACTIONS(1476), - [anon_sym_i32] = ACTIONS(1476), - [anon_sym_u64] = ACTIONS(1476), - [anon_sym_i64] = ACTIONS(1476), - [anon_sym_u128] = ACTIONS(1476), - [anon_sym_i128] = ACTIONS(1476), - [anon_sym_isize] = ACTIONS(1476), - [anon_sym_usize] = ACTIONS(1476), - [anon_sym_f32] = ACTIONS(1476), - [anon_sym_f64] = ACTIONS(1476), - [anon_sym_bool] = ACTIONS(1476), - [anon_sym_str] = ACTIONS(1476), - [anon_sym_char] = ACTIONS(1476), - [anon_sym_SQUOTE] = ACTIONS(1476), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_fn] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_impl] = ACTIONS(1476), - [anon_sym_let] = ACTIONS(1476), - [anon_sym_loop] = ACTIONS(1476), - [anon_sym_match] = ACTIONS(1476), - [anon_sym_mod] = ACTIONS(1476), - [anon_sym_pub] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_trait] = ACTIONS(1476), - [anon_sym_type] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1476), - [anon_sym_use] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1474), - [anon_sym_COLON_COLON] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_yield] = ACTIONS(1476), - [anon_sym_move] = ACTIONS(1476), - [sym_integer_literal] = ACTIONS(1474), - [aux_sym_string_literal_token1] = ACTIONS(1474), - [sym_char_literal] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1476), - [sym_super] = ACTIONS(1476), - [sym_crate] = ACTIONS(1476), - [sym_metavariable] = ACTIONS(1474), - [sym_raw_string_literal] = ACTIONS(1474), - [sym_float_literal] = ACTIONS(1474), + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_macro_rules_BANG] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_u8] = ACTIONS(1458), + [anon_sym_i8] = ACTIONS(1458), + [anon_sym_u16] = ACTIONS(1458), + [anon_sym_i16] = ACTIONS(1458), + [anon_sym_u32] = ACTIONS(1458), + [anon_sym_i32] = ACTIONS(1458), + [anon_sym_u64] = ACTIONS(1458), + [anon_sym_i64] = ACTIONS(1458), + [anon_sym_u128] = ACTIONS(1458), + [anon_sym_i128] = ACTIONS(1458), + [anon_sym_isize] = ACTIONS(1458), + [anon_sym_usize] = ACTIONS(1458), + [anon_sym_f32] = ACTIONS(1458), + [anon_sym_f64] = ACTIONS(1458), + [anon_sym_bool] = ACTIONS(1458), + [anon_sym_str] = ACTIONS(1458), + [anon_sym_char] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_async] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_fn] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_impl] = ACTIONS(1458), + [anon_sym_let] = ACTIONS(1458), + [anon_sym_loop] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1458), + [anon_sym_mod] = ACTIONS(1458), + [anon_sym_pub] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_trait] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_unsafe] = ACTIONS(1458), + [anon_sym_use] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_COLON_COLON] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_DOT_DOT] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_yield] = ACTIONS(1458), + [anon_sym_move] = ACTIONS(1458), + [sym_integer_literal] = ACTIONS(1456), + [aux_sym_string_literal_token1] = ACTIONS(1456), + [sym_char_literal] = ACTIONS(1456), + [anon_sym_true] = ACTIONS(1458), + [anon_sym_false] = ACTIONS(1458), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1458), + [sym_super] = ACTIONS(1458), + [sym_crate] = ACTIONS(1458), + [sym_metavariable] = ACTIONS(1456), + [sym_raw_string_literal] = ACTIONS(1456), + [sym_float_literal] = ACTIONS(1456), [sym_block_comment] = ACTIONS(3), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_macro_rules_BANG] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [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_SQUOTE] = ACTIONS(1480), - [anon_sym_async] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_fn] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_impl] = ACTIONS(1480), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_loop] = ACTIONS(1480), - [anon_sym_match] = ACTIONS(1480), - [anon_sym_mod] = ACTIONS(1480), - [anon_sym_pub] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_trait] = ACTIONS(1480), - [anon_sym_type] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_unsafe] = ACTIONS(1480), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_COLON_COLON] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_yield] = ACTIONS(1480), - [anon_sym_move] = ACTIONS(1480), - [sym_integer_literal] = ACTIONS(1478), - [aux_sym_string_literal_token1] = ACTIONS(1478), - [sym_char_literal] = ACTIONS(1478), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1480), - [sym_super] = ACTIONS(1480), - [sym_crate] = ACTIONS(1480), - [sym_metavariable] = ACTIONS(1478), - [sym_raw_string_literal] = ACTIONS(1478), - [sym_float_literal] = ACTIONS(1478), + [ts_builtin_sym_end] = ACTIONS(1460), + [sym_identifier] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym_macro_rules_BANG] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1460), + [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_SQUOTE] = ACTIONS(1462), + [anon_sym_async] = 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_while] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_DOT_DOT] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(1462), + [anon_sym_move] = ACTIONS(1462), + [sym_integer_literal] = ACTIONS(1460), + [aux_sym_string_literal_token1] = ACTIONS(1460), + [sym_char_literal] = ACTIONS(1460), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1462), + [sym_super] = ACTIONS(1462), + [sym_crate] = ACTIONS(1462), + [sym_metavariable] = ACTIONS(1460), + [sym_raw_string_literal] = ACTIONS(1460), + [sym_float_literal] = ACTIONS(1460), [sym_block_comment] = ACTIONS(3), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(1482), - [sym_identifier] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_macro_rules_BANG] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_u8] = ACTIONS(1484), - [anon_sym_i8] = ACTIONS(1484), - [anon_sym_u16] = ACTIONS(1484), - [anon_sym_i16] = ACTIONS(1484), - [anon_sym_u32] = ACTIONS(1484), - [anon_sym_i32] = ACTIONS(1484), - [anon_sym_u64] = ACTIONS(1484), - [anon_sym_i64] = ACTIONS(1484), - [anon_sym_u128] = ACTIONS(1484), - [anon_sym_i128] = ACTIONS(1484), - [anon_sym_isize] = ACTIONS(1484), - [anon_sym_usize] = ACTIONS(1484), - [anon_sym_f32] = ACTIONS(1484), - [anon_sym_f64] = ACTIONS(1484), - [anon_sym_bool] = ACTIONS(1484), - [anon_sym_str] = ACTIONS(1484), - [anon_sym_char] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1484), - [anon_sym_async] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_fn] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_impl] = ACTIONS(1484), - [anon_sym_let] = ACTIONS(1484), - [anon_sym_loop] = ACTIONS(1484), - [anon_sym_match] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1484), - [anon_sym_pub] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_trait] = ACTIONS(1484), - [anon_sym_type] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_unsafe] = ACTIONS(1484), - [anon_sym_use] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_yield] = ACTIONS(1484), - [anon_sym_move] = ACTIONS(1484), - [sym_integer_literal] = ACTIONS(1482), - [aux_sym_string_literal_token1] = ACTIONS(1482), - [sym_char_literal] = ACTIONS(1482), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1484), - [sym_super] = ACTIONS(1484), - [sym_crate] = ACTIONS(1484), - [sym_metavariable] = ACTIONS(1482), - [sym_raw_string_literal] = ACTIONS(1482), - [sym_float_literal] = ACTIONS(1482), + [ts_builtin_sym_end] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_macro_rules_BANG] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_u8] = ACTIONS(1466), + [anon_sym_i8] = ACTIONS(1466), + [anon_sym_u16] = ACTIONS(1466), + [anon_sym_i16] = ACTIONS(1466), + [anon_sym_u32] = ACTIONS(1466), + [anon_sym_i32] = ACTIONS(1466), + [anon_sym_u64] = ACTIONS(1466), + [anon_sym_i64] = ACTIONS(1466), + [anon_sym_u128] = ACTIONS(1466), + [anon_sym_i128] = ACTIONS(1466), + [anon_sym_isize] = ACTIONS(1466), + [anon_sym_usize] = ACTIONS(1466), + [anon_sym_f32] = ACTIONS(1466), + [anon_sym_f64] = ACTIONS(1466), + [anon_sym_bool] = ACTIONS(1466), + [anon_sym_str] = ACTIONS(1466), + [anon_sym_char] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_async] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_fn] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_impl] = ACTIONS(1466), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_loop] = ACTIONS(1466), + [anon_sym_match] = ACTIONS(1466), + [anon_sym_mod] = ACTIONS(1466), + [anon_sym_pub] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_trait] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_unsafe] = ACTIONS(1466), + [anon_sym_use] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1464), + [anon_sym_COLON_COLON] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_DOT_DOT] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(1464), + [anon_sym_yield] = ACTIONS(1466), + [anon_sym_move] = ACTIONS(1466), + [sym_integer_literal] = ACTIONS(1464), + [aux_sym_string_literal_token1] = ACTIONS(1464), + [sym_char_literal] = ACTIONS(1464), + [anon_sym_true] = ACTIONS(1466), + [anon_sym_false] = ACTIONS(1466), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1466), + [sym_super] = ACTIONS(1466), + [sym_crate] = ACTIONS(1466), + [sym_metavariable] = ACTIONS(1464), + [sym_raw_string_literal] = ACTIONS(1464), + [sym_float_literal] = ACTIONS(1464), [sym_block_comment] = ACTIONS(3), }, [357] = { - [ts_builtin_sym_end] = ACTIONS(1486), - [sym_identifier] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_macro_rules_BANG] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_u8] = ACTIONS(1488), - [anon_sym_i8] = ACTIONS(1488), - [anon_sym_u16] = ACTIONS(1488), - [anon_sym_i16] = ACTIONS(1488), - [anon_sym_u32] = ACTIONS(1488), - [anon_sym_i32] = ACTIONS(1488), - [anon_sym_u64] = ACTIONS(1488), - [anon_sym_i64] = ACTIONS(1488), - [anon_sym_u128] = ACTIONS(1488), - [anon_sym_i128] = ACTIONS(1488), - [anon_sym_isize] = ACTIONS(1488), - [anon_sym_usize] = ACTIONS(1488), - [anon_sym_f32] = ACTIONS(1488), - [anon_sym_f64] = ACTIONS(1488), - [anon_sym_bool] = ACTIONS(1488), - [anon_sym_str] = ACTIONS(1488), - [anon_sym_char] = ACTIONS(1488), - [anon_sym_SQUOTE] = ACTIONS(1488), - [anon_sym_async] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_fn] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_impl] = ACTIONS(1488), - [anon_sym_let] = ACTIONS(1488), - [anon_sym_loop] = ACTIONS(1488), - [anon_sym_match] = ACTIONS(1488), - [anon_sym_mod] = ACTIONS(1488), - [anon_sym_pub] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_trait] = ACTIONS(1488), - [anon_sym_type] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_unsafe] = ACTIONS(1488), - [anon_sym_use] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_COLON_COLON] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1486), - [aux_sym_string_literal_token1] = ACTIONS(1486), - [sym_char_literal] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1488), - [sym_super] = ACTIONS(1488), - [sym_crate] = ACTIONS(1488), - [sym_metavariable] = ACTIONS(1486), - [sym_raw_string_literal] = ACTIONS(1486), - [sym_float_literal] = ACTIONS(1486), + [ts_builtin_sym_end] = ACTIONS(1468), + [sym_identifier] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_macro_rules_BANG] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_u8] = ACTIONS(1470), + [anon_sym_i8] = ACTIONS(1470), + [anon_sym_u16] = ACTIONS(1470), + [anon_sym_i16] = ACTIONS(1470), + [anon_sym_u32] = ACTIONS(1470), + [anon_sym_i32] = ACTIONS(1470), + [anon_sym_u64] = ACTIONS(1470), + [anon_sym_i64] = ACTIONS(1470), + [anon_sym_u128] = ACTIONS(1470), + [anon_sym_i128] = ACTIONS(1470), + [anon_sym_isize] = ACTIONS(1470), + [anon_sym_usize] = ACTIONS(1470), + [anon_sym_f32] = ACTIONS(1470), + [anon_sym_f64] = ACTIONS(1470), + [anon_sym_bool] = ACTIONS(1470), + [anon_sym_str] = ACTIONS(1470), + [anon_sym_char] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_fn] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_impl] = ACTIONS(1470), + [anon_sym_let] = ACTIONS(1470), + [anon_sym_loop] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_mod] = ACTIONS(1470), + [anon_sym_pub] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_trait] = ACTIONS(1470), + [anon_sym_type] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_unsafe] = ACTIONS(1470), + [anon_sym_use] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_COLON_COLON] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_DOT_DOT] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_yield] = ACTIONS(1470), + [anon_sym_move] = ACTIONS(1470), + [sym_integer_literal] = ACTIONS(1468), + [aux_sym_string_literal_token1] = ACTIONS(1468), + [sym_char_literal] = ACTIONS(1468), + [anon_sym_true] = ACTIONS(1470), + [anon_sym_false] = ACTIONS(1470), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1470), + [sym_super] = ACTIONS(1470), + [sym_crate] = ACTIONS(1470), + [sym_metavariable] = ACTIONS(1468), + [sym_raw_string_literal] = ACTIONS(1468), + [sym_float_literal] = ACTIONS(1468), [sym_block_comment] = ACTIONS(3), }, [358] = { - [ts_builtin_sym_end] = ACTIONS(1490), - [sym_identifier] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_macro_rules_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_RBRACE] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_identifier] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_macro_rules_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_u8] = ACTIONS(1474), + [anon_sym_i8] = ACTIONS(1474), + [anon_sym_u16] = ACTIONS(1474), + [anon_sym_i16] = ACTIONS(1474), + [anon_sym_u32] = ACTIONS(1474), + [anon_sym_i32] = ACTIONS(1474), + [anon_sym_u64] = ACTIONS(1474), + [anon_sym_i64] = ACTIONS(1474), + [anon_sym_u128] = ACTIONS(1474), + [anon_sym_i128] = ACTIONS(1474), + [anon_sym_isize] = ACTIONS(1474), + [anon_sym_usize] = ACTIONS(1474), + [anon_sym_f32] = ACTIONS(1474), + [anon_sym_f64] = ACTIONS(1474), + [anon_sym_bool] = ACTIONS(1474), + [anon_sym_str] = ACTIONS(1474), + [anon_sym_char] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_fn] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_impl] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_mod] = ACTIONS(1474), + [anon_sym_pub] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_trait] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_unsafe] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_COLON_COLON] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_DOT_DOT] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_move] = ACTIONS(1474), + [sym_integer_literal] = ACTIONS(1472), + [aux_sym_string_literal_token1] = ACTIONS(1472), + [sym_char_literal] = ACTIONS(1472), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1474), + [sym_super] = ACTIONS(1474), + [sym_crate] = ACTIONS(1474), + [sym_metavariable] = ACTIONS(1472), + [sym_raw_string_literal] = ACTIONS(1472), + [sym_float_literal] = ACTIONS(1472), + [sym_block_comment] = ACTIONS(3), + }, + [359] = { + [ts_builtin_sym_end] = ACTIONS(1476), + [sym_identifier] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_macro_rules_BANG] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_u8] = ACTIONS(1478), + [anon_sym_i8] = ACTIONS(1478), + [anon_sym_u16] = ACTIONS(1478), + [anon_sym_i16] = ACTIONS(1478), + [anon_sym_u32] = ACTIONS(1478), + [anon_sym_i32] = ACTIONS(1478), + [anon_sym_u64] = ACTIONS(1478), + [anon_sym_i64] = ACTIONS(1478), + [anon_sym_u128] = ACTIONS(1478), + [anon_sym_i128] = ACTIONS(1478), + [anon_sym_isize] = ACTIONS(1478), + [anon_sym_usize] = ACTIONS(1478), + [anon_sym_f32] = ACTIONS(1478), + [anon_sym_f64] = ACTIONS(1478), + [anon_sym_bool] = ACTIONS(1478), + [anon_sym_str] = ACTIONS(1478), + [anon_sym_char] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_fn] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_impl] = ACTIONS(1478), + [anon_sym_let] = ACTIONS(1478), + [anon_sym_loop] = ACTIONS(1478), + [anon_sym_match] = ACTIONS(1478), + [anon_sym_mod] = ACTIONS(1478), + [anon_sym_pub] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_trait] = ACTIONS(1478), + [anon_sym_type] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_use] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_COLON_COLON] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_yield] = ACTIONS(1478), + [anon_sym_move] = ACTIONS(1478), + [sym_integer_literal] = ACTIONS(1476), + [aux_sym_string_literal_token1] = ACTIONS(1476), + [sym_char_literal] = ACTIONS(1476), + [anon_sym_true] = ACTIONS(1478), + [anon_sym_false] = ACTIONS(1478), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1478), + [sym_super] = ACTIONS(1478), + [sym_crate] = ACTIONS(1478), + [sym_metavariable] = ACTIONS(1476), + [sym_raw_string_literal] = ACTIONS(1476), + [sym_float_literal] = ACTIONS(1476), + [sym_block_comment] = ACTIONS(3), + }, + [360] = { + [ts_builtin_sym_end] = ACTIONS(1480), + [sym_identifier] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_macro_rules_BANG] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_u8] = ACTIONS(1482), + [anon_sym_i8] = ACTIONS(1482), + [anon_sym_u16] = ACTIONS(1482), + [anon_sym_i16] = ACTIONS(1482), + [anon_sym_u32] = ACTIONS(1482), + [anon_sym_i32] = ACTIONS(1482), + [anon_sym_u64] = ACTIONS(1482), + [anon_sym_i64] = ACTIONS(1482), + [anon_sym_u128] = ACTIONS(1482), + [anon_sym_i128] = ACTIONS(1482), + [anon_sym_isize] = ACTIONS(1482), + [anon_sym_usize] = ACTIONS(1482), + [anon_sym_f32] = ACTIONS(1482), + [anon_sym_f64] = ACTIONS(1482), + [anon_sym_bool] = ACTIONS(1482), + [anon_sym_str] = ACTIONS(1482), + [anon_sym_char] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_async] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_fn] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_impl] = ACTIONS(1482), + [anon_sym_let] = ACTIONS(1482), + [anon_sym_loop] = ACTIONS(1482), + [anon_sym_match] = ACTIONS(1482), + [anon_sym_mod] = ACTIONS(1482), + [anon_sym_pub] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_trait] = ACTIONS(1482), + [anon_sym_type] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_use] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_COLON_COLON] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_yield] = ACTIONS(1482), + [anon_sym_move] = ACTIONS(1482), + [sym_integer_literal] = ACTIONS(1480), + [aux_sym_string_literal_token1] = ACTIONS(1480), + [sym_char_literal] = ACTIONS(1480), + [anon_sym_true] = ACTIONS(1482), + [anon_sym_false] = ACTIONS(1482), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1482), + [sym_super] = ACTIONS(1482), + [sym_crate] = ACTIONS(1482), + [sym_metavariable] = ACTIONS(1480), + [sym_raw_string_literal] = ACTIONS(1480), + [sym_float_literal] = ACTIONS(1480), + [sym_block_comment] = ACTIONS(3), + }, + [361] = { + [sym_attribute_item] = STATE(560), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_macro_invocation] = STATE(2498), + [sym_scoped_identifier] = STATE(1586), + [sym_scoped_type_identifier] = STATE(2024), + [sym_match_arm] = STATE(495), + [sym_last_match_arm] = STATE(2492), + [sym_match_pattern] = STATE(2486), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1929), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_enum_variant_list_repeat1] = STATE(560), + [aux_sym_match_block_repeat1] = STATE(495), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1488), [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1490), [anon_sym_u8] = ACTIONS(1492), [anon_sym_i8] = ACTIONS(1492), [anon_sym_u16] = ACTIONS(1492), @@ -51221,272 +51465,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1492), [anon_sym_str] = ACTIONS(1492), [anon_sym_char] = ACTIONS(1492), - [anon_sym_SQUOTE] = ACTIONS(1492), - [anon_sym_async] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_fn] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_impl] = ACTIONS(1492), - [anon_sym_let] = ACTIONS(1492), - [anon_sym_loop] = ACTIONS(1492), - [anon_sym_match] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1492), - [anon_sym_pub] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_trait] = ACTIONS(1492), - [anon_sym_type] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_unsafe] = ACTIONS(1492), - [anon_sym_use] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_COLON_COLON] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_yield] = ACTIONS(1492), - [anon_sym_move] = ACTIONS(1492), - [sym_integer_literal] = ACTIONS(1490), - [aux_sym_string_literal_token1] = ACTIONS(1490), - [sym_char_literal] = ACTIONS(1490), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1492), - [sym_super] = ACTIONS(1492), - [sym_crate] = ACTIONS(1492), - [sym_metavariable] = ACTIONS(1490), - [sym_raw_string_literal] = ACTIONS(1490), - [sym_float_literal] = ACTIONS(1490), - [sym_block_comment] = ACTIONS(3), - }, - [359] = { - [ts_builtin_sym_end] = ACTIONS(1494), - [sym_identifier] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_macro_rules_BANG] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_u8] = ACTIONS(1496), - [anon_sym_i8] = ACTIONS(1496), - [anon_sym_u16] = ACTIONS(1496), - [anon_sym_i16] = ACTIONS(1496), - [anon_sym_u32] = ACTIONS(1496), - [anon_sym_i32] = ACTIONS(1496), - [anon_sym_u64] = ACTIONS(1496), - [anon_sym_i64] = ACTIONS(1496), - [anon_sym_u128] = ACTIONS(1496), - [anon_sym_i128] = ACTIONS(1496), - [anon_sym_isize] = ACTIONS(1496), - [anon_sym_usize] = ACTIONS(1496), - [anon_sym_f32] = ACTIONS(1496), - [anon_sym_f64] = ACTIONS(1496), - [anon_sym_bool] = ACTIONS(1496), - [anon_sym_str] = ACTIONS(1496), - [anon_sym_char] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(1496), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1494), [anon_sym_default] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_fn] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_impl] = ACTIONS(1496), - [anon_sym_let] = ACTIONS(1496), - [anon_sym_loop] = ACTIONS(1496), - [anon_sym_match] = ACTIONS(1496), - [anon_sym_mod] = ACTIONS(1496), - [anon_sym_pub] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_trait] = ACTIONS(1496), - [anon_sym_type] = ACTIONS(1496), [anon_sym_union] = ACTIONS(1496), - [anon_sym_unsafe] = ACTIONS(1496), - [anon_sym_use] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym_LT] = ACTIONS(1494), - [anon_sym_COLON_COLON] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_yield] = ACTIONS(1496), - [anon_sym_move] = ACTIONS(1496), - [sym_integer_literal] = ACTIONS(1494), - [aux_sym_string_literal_token1] = ACTIONS(1494), - [sym_char_literal] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1496), - [anon_sym_false] = ACTIONS(1496), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1496), - [sym_super] = ACTIONS(1496), - [sym_crate] = ACTIONS(1496), - [sym_metavariable] = ACTIONS(1494), - [sym_raw_string_literal] = ACTIONS(1494), - [sym_float_literal] = ACTIONS(1494), - [sym_block_comment] = ACTIONS(3), - }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(1498), - [sym_identifier] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_macro_rules_BANG] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_LBRACK] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_u8] = ACTIONS(1500), - [anon_sym_i8] = ACTIONS(1500), - [anon_sym_u16] = ACTIONS(1500), - [anon_sym_i16] = ACTIONS(1500), - [anon_sym_u32] = ACTIONS(1500), - [anon_sym_i32] = ACTIONS(1500), - [anon_sym_u64] = ACTIONS(1500), - [anon_sym_i64] = ACTIONS(1500), - [anon_sym_u128] = ACTIONS(1500), - [anon_sym_i128] = ACTIONS(1500), - [anon_sym_isize] = ACTIONS(1500), - [anon_sym_usize] = ACTIONS(1500), - [anon_sym_f32] = ACTIONS(1500), - [anon_sym_f64] = ACTIONS(1500), - [anon_sym_bool] = ACTIONS(1500), - [anon_sym_str] = ACTIONS(1500), - [anon_sym_char] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1500), - [anon_sym_async] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_fn] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_impl] = ACTIONS(1500), - [anon_sym_let] = ACTIONS(1500), - [anon_sym_loop] = ACTIONS(1500), - [anon_sym_match] = ACTIONS(1500), - [anon_sym_mod] = ACTIONS(1500), - [anon_sym_pub] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_trait] = ACTIONS(1500), - [anon_sym_type] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_unsafe] = ACTIONS(1500), - [anon_sym_use] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_COLON_COLON] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1498), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), - [anon_sym_move] = ACTIONS(1500), - [sym_integer_literal] = ACTIONS(1498), - [aux_sym_string_literal_token1] = ACTIONS(1498), - [sym_char_literal] = ACTIONS(1498), - [anon_sym_true] = ACTIONS(1500), - [anon_sym_false] = ACTIONS(1500), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1500), - [sym_super] = ACTIONS(1500), - [sym_crate] = ACTIONS(1500), - [sym_metavariable] = ACTIONS(1498), - [sym_raw_string_literal] = ACTIONS(1498), - [sym_float_literal] = ACTIONS(1498), - [sym_block_comment] = ACTIONS(3), - }, - [361] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2581), - [sym_scoped_identifier] = STATE(1567), - [sym_scoped_type_identifier] = STATE(1919), - [sym_match_arm] = STATE(499), - [sym_last_match_arm] = STATE(2570), - [sym_match_pattern] = STATE(2569), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2123), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(499), - [sym_identifier] = ACTIONS(1132), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_union] = ACTIONS(1144), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -51494,1555 +51483,1478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [362] = { - [ts_builtin_sym_end] = ACTIONS(1504), - [sym_identifier] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_macro_rules_BANG] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1504), - [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_SQUOTE] = ACTIONS(1506), - [anon_sym_async] = 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_while] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_DOT_DOT] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_yield] = ACTIONS(1506), - [anon_sym_move] = ACTIONS(1506), - [sym_integer_literal] = ACTIONS(1504), - [aux_sym_string_literal_token1] = ACTIONS(1504), - [sym_char_literal] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1506), - [sym_super] = ACTIONS(1506), - [sym_crate] = ACTIONS(1506), - [sym_metavariable] = ACTIONS(1504), - [sym_raw_string_literal] = ACTIONS(1504), - [sym_float_literal] = ACTIONS(1504), + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_identifier] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_macro_rules_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_u8] = ACTIONS(1508), + [anon_sym_i8] = ACTIONS(1508), + [anon_sym_u16] = ACTIONS(1508), + [anon_sym_i16] = ACTIONS(1508), + [anon_sym_u32] = ACTIONS(1508), + [anon_sym_i32] = ACTIONS(1508), + [anon_sym_u64] = ACTIONS(1508), + [anon_sym_i64] = ACTIONS(1508), + [anon_sym_u128] = ACTIONS(1508), + [anon_sym_i128] = ACTIONS(1508), + [anon_sym_isize] = ACTIONS(1508), + [anon_sym_usize] = ACTIONS(1508), + [anon_sym_f32] = ACTIONS(1508), + [anon_sym_f64] = ACTIONS(1508), + [anon_sym_bool] = ACTIONS(1508), + [anon_sym_str] = ACTIONS(1508), + [anon_sym_char] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_fn] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_impl] = ACTIONS(1508), + [anon_sym_let] = ACTIONS(1508), + [anon_sym_loop] = ACTIONS(1508), + [anon_sym_match] = ACTIONS(1508), + [anon_sym_mod] = ACTIONS(1508), + [anon_sym_pub] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_trait] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_unsafe] = ACTIONS(1508), + [anon_sym_use] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1506), + [anon_sym_COLON_COLON] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_DOT_DOT] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_yield] = ACTIONS(1508), + [anon_sym_move] = ACTIONS(1508), + [sym_integer_literal] = ACTIONS(1506), + [aux_sym_string_literal_token1] = ACTIONS(1506), + [sym_char_literal] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1508), + [anon_sym_false] = ACTIONS(1508), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1508), + [sym_super] = ACTIONS(1508), + [sym_crate] = ACTIONS(1508), + [sym_metavariable] = ACTIONS(1506), + [sym_raw_string_literal] = ACTIONS(1506), + [sym_float_literal] = ACTIONS(1506), [sym_block_comment] = ACTIONS(3), }, [363] = { - [ts_builtin_sym_end] = ACTIONS(1508), - [sym_identifier] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_macro_rules_BANG] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_impl] = ACTIONS(1510), - [anon_sym_let] = ACTIONS(1510), - [anon_sym_loop] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_mod] = ACTIONS(1510), - [anon_sym_pub] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_trait] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_unsafe] = ACTIONS(1510), - [anon_sym_use] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_COLON_COLON] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_DOT_DOT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_move] = ACTIONS(1510), - [sym_integer_literal] = ACTIONS(1508), - [aux_sym_string_literal_token1] = ACTIONS(1508), - [sym_char_literal] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1510), - [sym_super] = ACTIONS(1510), - [sym_crate] = ACTIONS(1510), - [sym_metavariable] = ACTIONS(1508), - [sym_raw_string_literal] = ACTIONS(1508), - [sym_float_literal] = ACTIONS(1508), + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_identifier] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_macro_rules_BANG] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_u8] = ACTIONS(1512), + [anon_sym_i8] = ACTIONS(1512), + [anon_sym_u16] = ACTIONS(1512), + [anon_sym_i16] = ACTIONS(1512), + [anon_sym_u32] = ACTIONS(1512), + [anon_sym_i32] = ACTIONS(1512), + [anon_sym_u64] = ACTIONS(1512), + [anon_sym_i64] = ACTIONS(1512), + [anon_sym_u128] = ACTIONS(1512), + [anon_sym_i128] = ACTIONS(1512), + [anon_sym_isize] = ACTIONS(1512), + [anon_sym_usize] = ACTIONS(1512), + [anon_sym_f32] = ACTIONS(1512), + [anon_sym_f64] = ACTIONS(1512), + [anon_sym_bool] = ACTIONS(1512), + [anon_sym_str] = ACTIONS(1512), + [anon_sym_char] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_fn] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_impl] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1512), + [anon_sym_loop] = ACTIONS(1512), + [anon_sym_match] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1512), + [anon_sym_pub] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_trait] = ACTIONS(1512), + [anon_sym_type] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_unsafe] = ACTIONS(1512), + [anon_sym_use] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1510), + [anon_sym_COLON_COLON] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_move] = ACTIONS(1512), + [sym_integer_literal] = ACTIONS(1510), + [aux_sym_string_literal_token1] = ACTIONS(1510), + [sym_char_literal] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1512), + [anon_sym_false] = ACTIONS(1512), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1512), + [sym_super] = ACTIONS(1512), + [sym_crate] = ACTIONS(1512), + [sym_metavariable] = ACTIONS(1510), + [sym_raw_string_literal] = ACTIONS(1510), + [sym_float_literal] = ACTIONS(1510), [sym_block_comment] = ACTIONS(3), }, [364] = { - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_identifier] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_macro_rules_BANG] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_u8] = ACTIONS(1514), - [anon_sym_i8] = ACTIONS(1514), - [anon_sym_u16] = ACTIONS(1514), - [anon_sym_i16] = ACTIONS(1514), - [anon_sym_u32] = ACTIONS(1514), - [anon_sym_i32] = ACTIONS(1514), - [anon_sym_u64] = ACTIONS(1514), - [anon_sym_i64] = ACTIONS(1514), - [anon_sym_u128] = ACTIONS(1514), - [anon_sym_i128] = ACTIONS(1514), - [anon_sym_isize] = ACTIONS(1514), - [anon_sym_usize] = ACTIONS(1514), - [anon_sym_f32] = ACTIONS(1514), - [anon_sym_f64] = ACTIONS(1514), - [anon_sym_bool] = ACTIONS(1514), - [anon_sym_str] = ACTIONS(1514), - [anon_sym_char] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_impl] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_pub] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_trait] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_unsafe] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_COLON_COLON] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_DOT_DOT] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_move] = ACTIONS(1514), - [sym_integer_literal] = ACTIONS(1512), - [aux_sym_string_literal_token1] = ACTIONS(1512), - [sym_char_literal] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1514), - [sym_super] = ACTIONS(1514), - [sym_crate] = ACTIONS(1514), - [sym_metavariable] = ACTIONS(1512), - [sym_raw_string_literal] = ACTIONS(1512), - [sym_float_literal] = ACTIONS(1512), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_identifier] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_macro_rules_BANG] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_u8] = ACTIONS(1516), + [anon_sym_i8] = ACTIONS(1516), + [anon_sym_u16] = ACTIONS(1516), + [anon_sym_i16] = ACTIONS(1516), + [anon_sym_u32] = ACTIONS(1516), + [anon_sym_i32] = ACTIONS(1516), + [anon_sym_u64] = ACTIONS(1516), + [anon_sym_i64] = ACTIONS(1516), + [anon_sym_u128] = ACTIONS(1516), + [anon_sym_i128] = ACTIONS(1516), + [anon_sym_isize] = ACTIONS(1516), + [anon_sym_usize] = ACTIONS(1516), + [anon_sym_f32] = ACTIONS(1516), + [anon_sym_f64] = ACTIONS(1516), + [anon_sym_bool] = ACTIONS(1516), + [anon_sym_str] = ACTIONS(1516), + [anon_sym_char] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_fn] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_impl] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_mod] = ACTIONS(1516), + [anon_sym_pub] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_trait] = ACTIONS(1516), + [anon_sym_type] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_unsafe] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1514), + [anon_sym_COLON_COLON] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_yield] = ACTIONS(1516), + [anon_sym_move] = ACTIONS(1516), + [sym_integer_literal] = ACTIONS(1514), + [aux_sym_string_literal_token1] = ACTIONS(1514), + [sym_char_literal] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1516), + [sym_super] = ACTIONS(1516), + [sym_crate] = ACTIONS(1516), + [sym_metavariable] = ACTIONS(1514), + [sym_raw_string_literal] = ACTIONS(1514), + [sym_float_literal] = ACTIONS(1514), [sym_block_comment] = ACTIONS(3), }, [365] = { - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_macro_rules_BANG] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_impl] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_mod] = ACTIONS(1518), - [anon_sym_pub] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_trait] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_unsafe] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_DOT_DOT] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_yield] = ACTIONS(1518), - [anon_sym_move] = ACTIONS(1518), - [sym_integer_literal] = ACTIONS(1516), - [aux_sym_string_literal_token1] = ACTIONS(1516), - [sym_char_literal] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1518), - [sym_super] = ACTIONS(1518), - [sym_crate] = ACTIONS(1518), - [sym_metavariable] = ACTIONS(1516), - [sym_raw_string_literal] = ACTIONS(1516), - [sym_float_literal] = ACTIONS(1516), + [ts_builtin_sym_end] = ACTIONS(1518), + [sym_identifier] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_macro_rules_BANG] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_u8] = ACTIONS(1520), + [anon_sym_i8] = ACTIONS(1520), + [anon_sym_u16] = ACTIONS(1520), + [anon_sym_i16] = ACTIONS(1520), + [anon_sym_u32] = ACTIONS(1520), + [anon_sym_i32] = ACTIONS(1520), + [anon_sym_u64] = ACTIONS(1520), + [anon_sym_i64] = ACTIONS(1520), + [anon_sym_u128] = ACTIONS(1520), + [anon_sym_i128] = ACTIONS(1520), + [anon_sym_isize] = ACTIONS(1520), + [anon_sym_usize] = ACTIONS(1520), + [anon_sym_f32] = ACTIONS(1520), + [anon_sym_f64] = ACTIONS(1520), + [anon_sym_bool] = ACTIONS(1520), + [anon_sym_str] = ACTIONS(1520), + [anon_sym_char] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_async] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_fn] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_impl] = ACTIONS(1520), + [anon_sym_let] = ACTIONS(1520), + [anon_sym_loop] = ACTIONS(1520), + [anon_sym_match] = ACTIONS(1520), + [anon_sym_mod] = ACTIONS(1520), + [anon_sym_pub] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_trait] = ACTIONS(1520), + [anon_sym_type] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_unsafe] = ACTIONS(1520), + [anon_sym_use] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_COLON_COLON] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_yield] = ACTIONS(1520), + [anon_sym_move] = ACTIONS(1520), + [sym_integer_literal] = ACTIONS(1518), + [aux_sym_string_literal_token1] = ACTIONS(1518), + [sym_char_literal] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1520), + [sym_super] = ACTIONS(1520), + [sym_crate] = ACTIONS(1520), + [sym_metavariable] = ACTIONS(1518), + [sym_raw_string_literal] = ACTIONS(1518), + [sym_float_literal] = ACTIONS(1518), [sym_block_comment] = ACTIONS(3), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_macro_rules_BANG] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_u8] = ACTIONS(1522), - [anon_sym_i8] = ACTIONS(1522), - [anon_sym_u16] = ACTIONS(1522), - [anon_sym_i16] = ACTIONS(1522), - [anon_sym_u32] = ACTIONS(1522), - [anon_sym_i32] = ACTIONS(1522), - [anon_sym_u64] = ACTIONS(1522), - [anon_sym_i64] = ACTIONS(1522), - [anon_sym_u128] = ACTIONS(1522), - [anon_sym_i128] = ACTIONS(1522), - [anon_sym_isize] = ACTIONS(1522), - [anon_sym_usize] = ACTIONS(1522), - [anon_sym_f32] = ACTIONS(1522), - [anon_sym_f64] = ACTIONS(1522), - [anon_sym_bool] = ACTIONS(1522), - [anon_sym_str] = ACTIONS(1522), - [anon_sym_char] = ACTIONS(1522), - [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_impl] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_loop] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_mod] = ACTIONS(1522), - [anon_sym_pub] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_trait] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_unsafe] = ACTIONS(1522), - [anon_sym_use] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_yield] = ACTIONS(1522), - [anon_sym_move] = ACTIONS(1522), - [sym_integer_literal] = ACTIONS(1520), - [aux_sym_string_literal_token1] = ACTIONS(1520), - [sym_char_literal] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1522), - [anon_sym_false] = ACTIONS(1522), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1520), - [sym_raw_string_literal] = ACTIONS(1520), - [sym_float_literal] = ACTIONS(1520), + [ts_builtin_sym_end] = ACTIONS(1522), + [sym_identifier] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_macro_rules_BANG] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u128] = ACTIONS(1524), + [anon_sym_i128] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_str] = ACTIONS(1524), + [anon_sym_char] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_async] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_fn] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_impl] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1524), + [anon_sym_loop] = ACTIONS(1524), + [anon_sym_match] = ACTIONS(1524), + [anon_sym_mod] = ACTIONS(1524), + [anon_sym_pub] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_trait] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_unsafe] = ACTIONS(1524), + [anon_sym_use] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_COLON_COLON] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_DOT_DOT] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_yield] = ACTIONS(1524), + [anon_sym_move] = ACTIONS(1524), + [sym_integer_literal] = ACTIONS(1522), + [aux_sym_string_literal_token1] = ACTIONS(1522), + [sym_char_literal] = ACTIONS(1522), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1524), + [sym_super] = ACTIONS(1524), + [sym_crate] = ACTIONS(1524), + [sym_metavariable] = ACTIONS(1522), + [sym_raw_string_literal] = ACTIONS(1522), + [sym_float_literal] = ACTIONS(1522), [sym_block_comment] = ACTIONS(3), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_identifier] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_macro_rules_BANG] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_SQUOTE] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_impl] = ACTIONS(1526), - [anon_sym_let] = ACTIONS(1526), - [anon_sym_loop] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_mod] = ACTIONS(1526), - [anon_sym_pub] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_static] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_trait] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_unsafe] = ACTIONS(1526), - [anon_sym_use] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_extern] = ACTIONS(1526), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_DOT_DOT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_yield] = ACTIONS(1526), - [anon_sym_move] = ACTIONS(1526), - [sym_integer_literal] = ACTIONS(1524), - [aux_sym_string_literal_token1] = ACTIONS(1524), - [sym_char_literal] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1526), - [anon_sym_false] = ACTIONS(1526), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1526), - [sym_super] = ACTIONS(1526), - [sym_crate] = ACTIONS(1526), - [sym_metavariable] = ACTIONS(1524), - [sym_raw_string_literal] = ACTIONS(1524), - [sym_float_literal] = ACTIONS(1524), + [ts_builtin_sym_end] = ACTIONS(1526), + [sym_identifier] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym_macro_rules_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_u8] = ACTIONS(1528), + [anon_sym_i8] = ACTIONS(1528), + [anon_sym_u16] = ACTIONS(1528), + [anon_sym_i16] = ACTIONS(1528), + [anon_sym_u32] = ACTIONS(1528), + [anon_sym_i32] = ACTIONS(1528), + [anon_sym_u64] = ACTIONS(1528), + [anon_sym_i64] = ACTIONS(1528), + [anon_sym_u128] = ACTIONS(1528), + [anon_sym_i128] = ACTIONS(1528), + [anon_sym_isize] = ACTIONS(1528), + [anon_sym_usize] = ACTIONS(1528), + [anon_sym_f32] = ACTIONS(1528), + [anon_sym_f64] = ACTIONS(1528), + [anon_sym_bool] = ACTIONS(1528), + [anon_sym_str] = ACTIONS(1528), + [anon_sym_char] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_async] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_enum] = ACTIONS(1528), + [anon_sym_fn] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_impl] = ACTIONS(1528), + [anon_sym_let] = ACTIONS(1528), + [anon_sym_loop] = ACTIONS(1528), + [anon_sym_match] = ACTIONS(1528), + [anon_sym_mod] = ACTIONS(1528), + [anon_sym_pub] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_trait] = ACTIONS(1528), + [anon_sym_type] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_unsafe] = ACTIONS(1528), + [anon_sym_use] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_COLON_COLON] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_DOT_DOT] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_PIPE] = ACTIONS(1526), + [anon_sym_yield] = ACTIONS(1528), + [anon_sym_move] = ACTIONS(1528), + [sym_integer_literal] = ACTIONS(1526), + [aux_sym_string_literal_token1] = ACTIONS(1526), + [sym_char_literal] = ACTIONS(1526), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1526), + [sym_raw_string_literal] = ACTIONS(1526), + [sym_float_literal] = ACTIONS(1526), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_macro_rules_BANG] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_u8] = ACTIONS(1530), - [anon_sym_i8] = ACTIONS(1530), - [anon_sym_u16] = ACTIONS(1530), - [anon_sym_i16] = ACTIONS(1530), - [anon_sym_u32] = ACTIONS(1530), - [anon_sym_i32] = ACTIONS(1530), - [anon_sym_u64] = ACTIONS(1530), - [anon_sym_i64] = ACTIONS(1530), - [anon_sym_u128] = ACTIONS(1530), - [anon_sym_i128] = ACTIONS(1530), - [anon_sym_isize] = ACTIONS(1530), - [anon_sym_usize] = ACTIONS(1530), - [anon_sym_f32] = ACTIONS(1530), - [anon_sym_f64] = ACTIONS(1530), - [anon_sym_bool] = ACTIONS(1530), - [anon_sym_str] = ACTIONS(1530), - [anon_sym_char] = ACTIONS(1530), - [anon_sym_SQUOTE] = ACTIONS(1530), - [anon_sym_async] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_enum] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_impl] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1530), - [anon_sym_loop] = ACTIONS(1530), - [anon_sym_match] = ACTIONS(1530), - [anon_sym_mod] = ACTIONS(1530), - [anon_sym_pub] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_struct] = ACTIONS(1530), - [anon_sym_trait] = ACTIONS(1530), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_unsafe] = ACTIONS(1530), - [anon_sym_use] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_DOT_DOT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_move] = ACTIONS(1530), - [sym_integer_literal] = ACTIONS(1528), - [aux_sym_string_literal_token1] = ACTIONS(1528), - [sym_char_literal] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1530), - [sym_super] = ACTIONS(1530), - [sym_crate] = ACTIONS(1530), - [sym_metavariable] = ACTIONS(1528), - [sym_raw_string_literal] = ACTIONS(1528), - [sym_float_literal] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1530), + [sym_identifier] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_macro_rules_BANG] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_async] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_default] = ACTIONS(1532), + [anon_sym_enum] = ACTIONS(1532), + [anon_sym_fn] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_impl] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_mod] = ACTIONS(1532), + [anon_sym_pub] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_struct] = ACTIONS(1532), + [anon_sym_trait] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_union] = ACTIONS(1532), + [anon_sym_unsafe] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_LT] = ACTIONS(1530), + [anon_sym_COLON_COLON] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_DOT_DOT] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_yield] = ACTIONS(1532), + [anon_sym_move] = ACTIONS(1532), + [sym_integer_literal] = ACTIONS(1530), + [aux_sym_string_literal_token1] = ACTIONS(1530), + [sym_char_literal] = ACTIONS(1530), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(1530), + [sym_float_literal] = ACTIONS(1530), [sym_block_comment] = ACTIONS(3), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1532), - [sym_identifier] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym_macro_rules_BANG] = ACTIONS(1532), - [anon_sym_LPAREN] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1532), - [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_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_enum] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1534), - [anon_sym_for] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1534), - [anon_sym_impl] = ACTIONS(1534), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_loop] = ACTIONS(1534), - [anon_sym_match] = ACTIONS(1534), - [anon_sym_mod] = ACTIONS(1534), - [anon_sym_pub] = ACTIONS(1534), - [anon_sym_return] = ACTIONS(1534), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_struct] = ACTIONS(1534), - [anon_sym_trait] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_union] = ACTIONS(1534), - [anon_sym_unsafe] = ACTIONS(1534), - [anon_sym_use] = ACTIONS(1534), - [anon_sym_while] = ACTIONS(1534), - [anon_sym_POUND] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_extern] = ACTIONS(1534), - [anon_sym_LT] = ACTIONS(1532), - [anon_sym_COLON_COLON] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_DOT_DOT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1532), - [anon_sym_yield] = ACTIONS(1534), - [anon_sym_move] = ACTIONS(1534), - [sym_integer_literal] = ACTIONS(1532), - [aux_sym_string_literal_token1] = ACTIONS(1532), - [sym_char_literal] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1534), - [anon_sym_false] = ACTIONS(1534), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1534), - [sym_super] = ACTIONS(1534), - [sym_crate] = ACTIONS(1534), - [sym_metavariable] = ACTIONS(1532), - [sym_raw_string_literal] = ACTIONS(1532), - [sym_float_literal] = ACTIONS(1532), + [ts_builtin_sym_end] = ACTIONS(1534), + [sym_identifier] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_macro_rules_BANG] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_u8] = ACTIONS(1536), + [anon_sym_i8] = ACTIONS(1536), + [anon_sym_u16] = ACTIONS(1536), + [anon_sym_i16] = ACTIONS(1536), + [anon_sym_u32] = ACTIONS(1536), + [anon_sym_i32] = ACTIONS(1536), + [anon_sym_u64] = ACTIONS(1536), + [anon_sym_i64] = ACTIONS(1536), + [anon_sym_u128] = ACTIONS(1536), + [anon_sym_i128] = ACTIONS(1536), + [anon_sym_isize] = ACTIONS(1536), + [anon_sym_usize] = ACTIONS(1536), + [anon_sym_f32] = ACTIONS(1536), + [anon_sym_f64] = ACTIONS(1536), + [anon_sym_bool] = ACTIONS(1536), + [anon_sym_str] = ACTIONS(1536), + [anon_sym_char] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_async] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_enum] = ACTIONS(1536), + [anon_sym_fn] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_impl] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_pub] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1536), + [anon_sym_struct] = ACTIONS(1536), + [anon_sym_trait] = ACTIONS(1536), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_unsafe] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_DOT_DOT] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_yield] = ACTIONS(1536), + [anon_sym_move] = ACTIONS(1536), + [sym_integer_literal] = ACTIONS(1534), + [aux_sym_string_literal_token1] = ACTIONS(1534), + [sym_char_literal] = ACTIONS(1534), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1534), + [sym_raw_string_literal] = ACTIONS(1534), + [sym_float_literal] = ACTIONS(1534), [sym_block_comment] = ACTIONS(3), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(1536), - [sym_identifier] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1536), - [anon_sym_macro_rules_BANG] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(1536), - [anon_sym_u8] = ACTIONS(1538), - [anon_sym_i8] = ACTIONS(1538), - [anon_sym_u16] = ACTIONS(1538), - [anon_sym_i16] = ACTIONS(1538), - [anon_sym_u32] = ACTIONS(1538), - [anon_sym_i32] = ACTIONS(1538), - [anon_sym_u64] = ACTIONS(1538), - [anon_sym_i64] = ACTIONS(1538), - [anon_sym_u128] = ACTIONS(1538), - [anon_sym_i128] = ACTIONS(1538), - [anon_sym_isize] = ACTIONS(1538), - [anon_sym_usize] = ACTIONS(1538), - [anon_sym_f32] = ACTIONS(1538), - [anon_sym_f64] = ACTIONS(1538), - [anon_sym_bool] = ACTIONS(1538), - [anon_sym_str] = ACTIONS(1538), - [anon_sym_char] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1538), - [anon_sym_async] = ACTIONS(1538), - [anon_sym_break] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1538), - [anon_sym_enum] = ACTIONS(1538), - [anon_sym_fn] = ACTIONS(1538), - [anon_sym_for] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1538), - [anon_sym_impl] = ACTIONS(1538), - [anon_sym_let] = ACTIONS(1538), - [anon_sym_loop] = ACTIONS(1538), - [anon_sym_match] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_pub] = ACTIONS(1538), - [anon_sym_return] = ACTIONS(1538), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_struct] = ACTIONS(1538), - [anon_sym_trait] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_union] = ACTIONS(1538), - [anon_sym_unsafe] = ACTIONS(1538), - [anon_sym_use] = ACTIONS(1538), - [anon_sym_while] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(1536), - [anon_sym_COLON_COLON] = ACTIONS(1536), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_PIPE] = ACTIONS(1536), - [anon_sym_yield] = ACTIONS(1538), - [anon_sym_move] = ACTIONS(1538), - [sym_integer_literal] = ACTIONS(1536), - [aux_sym_string_literal_token1] = ACTIONS(1536), - [sym_char_literal] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1538), - [sym_super] = ACTIONS(1538), - [sym_crate] = ACTIONS(1538), - [sym_metavariable] = ACTIONS(1536), - [sym_raw_string_literal] = ACTIONS(1536), - [sym_float_literal] = ACTIONS(1536), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_macro_rules_BANG] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_u8] = ACTIONS(1540), + [anon_sym_i8] = ACTIONS(1540), + [anon_sym_u16] = ACTIONS(1540), + [anon_sym_i16] = ACTIONS(1540), + [anon_sym_u32] = ACTIONS(1540), + [anon_sym_i32] = ACTIONS(1540), + [anon_sym_u64] = ACTIONS(1540), + [anon_sym_i64] = ACTIONS(1540), + [anon_sym_u128] = ACTIONS(1540), + [anon_sym_i128] = ACTIONS(1540), + [anon_sym_isize] = ACTIONS(1540), + [anon_sym_usize] = ACTIONS(1540), + [anon_sym_f32] = ACTIONS(1540), + [anon_sym_f64] = ACTIONS(1540), + [anon_sym_bool] = ACTIONS(1540), + [anon_sym_str] = ACTIONS(1540), + [anon_sym_char] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_async] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_enum] = ACTIONS(1540), + [anon_sym_fn] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_impl] = ACTIONS(1540), + [anon_sym_let] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_pub] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1540), + [anon_sym_struct] = ACTIONS(1540), + [anon_sym_trait] = ACTIONS(1540), + [anon_sym_type] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_unsafe] = ACTIONS(1540), + [anon_sym_use] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_yield] = ACTIONS(1540), + [anon_sym_move] = ACTIONS(1540), + [sym_integer_literal] = ACTIONS(1538), + [aux_sym_string_literal_token1] = ACTIONS(1538), + [sym_char_literal] = ACTIONS(1538), + [anon_sym_true] = ACTIONS(1540), + [anon_sym_false] = ACTIONS(1540), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1540), + [sym_super] = ACTIONS(1540), + [sym_crate] = ACTIONS(1540), + [sym_metavariable] = ACTIONS(1538), + [sym_raw_string_literal] = ACTIONS(1538), + [sym_float_literal] = ACTIONS(1538), [sym_block_comment] = ACTIONS(3), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_macro_rules_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_u8] = ACTIONS(1542), - [anon_sym_i8] = ACTIONS(1542), - [anon_sym_u16] = ACTIONS(1542), - [anon_sym_i16] = ACTIONS(1542), - [anon_sym_u32] = ACTIONS(1542), - [anon_sym_i32] = ACTIONS(1542), - [anon_sym_u64] = ACTIONS(1542), - [anon_sym_i64] = ACTIONS(1542), - [anon_sym_u128] = ACTIONS(1542), - [anon_sym_i128] = ACTIONS(1542), - [anon_sym_isize] = ACTIONS(1542), - [anon_sym_usize] = ACTIONS(1542), - [anon_sym_f32] = ACTIONS(1542), - [anon_sym_f64] = ACTIONS(1542), - [anon_sym_bool] = ACTIONS(1542), - [anon_sym_str] = ACTIONS(1542), - [anon_sym_char] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1542), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_break] = ACTIONS(1542), - [anon_sym_const] = ACTIONS(1542), - [anon_sym_continue] = ACTIONS(1542), - [anon_sym_default] = ACTIONS(1542), - [anon_sym_enum] = ACTIONS(1542), - [anon_sym_fn] = ACTIONS(1542), - [anon_sym_for] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_impl] = ACTIONS(1542), - [anon_sym_let] = ACTIONS(1542), - [anon_sym_loop] = ACTIONS(1542), - [anon_sym_match] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1542), - [anon_sym_pub] = ACTIONS(1542), - [anon_sym_return] = ACTIONS(1542), - [anon_sym_static] = ACTIONS(1542), - [anon_sym_struct] = ACTIONS(1542), - [anon_sym_trait] = ACTIONS(1542), - [anon_sym_type] = ACTIONS(1542), - [anon_sym_union] = ACTIONS(1542), - [anon_sym_unsafe] = ACTIONS(1542), - [anon_sym_use] = ACTIONS(1542), - [anon_sym_while] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_extern] = ACTIONS(1542), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_yield] = ACTIONS(1542), - [anon_sym_move] = ACTIONS(1542), - [sym_integer_literal] = ACTIONS(1540), - [aux_sym_string_literal_token1] = ACTIONS(1540), - [sym_char_literal] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1540), - [sym_raw_string_literal] = ACTIONS(1540), - [sym_float_literal] = ACTIONS(1540), + [ts_builtin_sym_end] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_macro_rules_BANG] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_u8] = ACTIONS(1544), + [anon_sym_i8] = ACTIONS(1544), + [anon_sym_u16] = ACTIONS(1544), + [anon_sym_i16] = ACTIONS(1544), + [anon_sym_u32] = ACTIONS(1544), + [anon_sym_i32] = ACTIONS(1544), + [anon_sym_u64] = ACTIONS(1544), + [anon_sym_i64] = ACTIONS(1544), + [anon_sym_u128] = ACTIONS(1544), + [anon_sym_i128] = ACTIONS(1544), + [anon_sym_isize] = ACTIONS(1544), + [anon_sym_usize] = ACTIONS(1544), + [anon_sym_f32] = ACTIONS(1544), + [anon_sym_f64] = ACTIONS(1544), + [anon_sym_bool] = ACTIONS(1544), + [anon_sym_str] = ACTIONS(1544), + [anon_sym_char] = ACTIONS(1544), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_async] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_enum] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1544), + [anon_sym_for] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1544), + [anon_sym_impl] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1544), + [anon_sym_match] = ACTIONS(1544), + [anon_sym_mod] = ACTIONS(1544), + [anon_sym_pub] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_struct] = ACTIONS(1544), + [anon_sym_trait] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_union] = ACTIONS(1544), + [anon_sym_unsafe] = ACTIONS(1544), + [anon_sym_use] = ACTIONS(1544), + [anon_sym_while] = ACTIONS(1544), + [anon_sym_POUND] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_extern] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_COLON_COLON] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_DOT_DOT] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_move] = ACTIONS(1544), + [sym_integer_literal] = ACTIONS(1542), + [aux_sym_string_literal_token1] = ACTIONS(1542), + [sym_char_literal] = ACTIONS(1542), + [anon_sym_true] = ACTIONS(1544), + [anon_sym_false] = ACTIONS(1544), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1544), + [sym_super] = ACTIONS(1544), + [sym_crate] = ACTIONS(1544), + [sym_metavariable] = ACTIONS(1542), + [sym_raw_string_literal] = ACTIONS(1542), + [sym_float_literal] = ACTIONS(1542), [sym_block_comment] = ACTIONS(3), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(1544), - [sym_identifier] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_macro_rules_BANG] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_u8] = ACTIONS(1546), - [anon_sym_i8] = ACTIONS(1546), - [anon_sym_u16] = ACTIONS(1546), - [anon_sym_i16] = ACTIONS(1546), - [anon_sym_u32] = ACTIONS(1546), - [anon_sym_i32] = ACTIONS(1546), - [anon_sym_u64] = ACTIONS(1546), - [anon_sym_i64] = ACTIONS(1546), - [anon_sym_u128] = ACTIONS(1546), - [anon_sym_i128] = ACTIONS(1546), - [anon_sym_isize] = ACTIONS(1546), - [anon_sym_usize] = ACTIONS(1546), - [anon_sym_f32] = ACTIONS(1546), - [anon_sym_f64] = ACTIONS(1546), - [anon_sym_bool] = ACTIONS(1546), - [anon_sym_str] = ACTIONS(1546), - [anon_sym_char] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [anon_sym_const] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1546), - [anon_sym_enum] = ACTIONS(1546), - [anon_sym_fn] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_impl] = ACTIONS(1546), - [anon_sym_let] = ACTIONS(1546), - [anon_sym_loop] = ACTIONS(1546), - [anon_sym_match] = ACTIONS(1546), - [anon_sym_mod] = ACTIONS(1546), - [anon_sym_pub] = ACTIONS(1546), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_struct] = ACTIONS(1546), - [anon_sym_trait] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_unsafe] = ACTIONS(1546), - [anon_sym_use] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1544), - [anon_sym_extern] = ACTIONS(1546), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_COLON_COLON] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_yield] = ACTIONS(1546), - [anon_sym_move] = ACTIONS(1546), - [sym_integer_literal] = ACTIONS(1544), - [aux_sym_string_literal_token1] = ACTIONS(1544), - [sym_char_literal] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1546), - [anon_sym_false] = ACTIONS(1546), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1546), - [sym_super] = ACTIONS(1546), - [sym_crate] = ACTIONS(1546), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(1544), - [sym_float_literal] = ACTIONS(1544), + [ts_builtin_sym_end] = ACTIONS(1546), + [sym_identifier] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_macro_rules_BANG] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_STAR] = 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_SQUOTE] = ACTIONS(1548), + [anon_sym_async] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + [anon_sym_fn] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_impl] = ACTIONS(1548), + [anon_sym_let] = ACTIONS(1548), + [anon_sym_loop] = ACTIONS(1548), + [anon_sym_match] = ACTIONS(1548), + [anon_sym_mod] = ACTIONS(1548), + [anon_sym_pub] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_struct] = ACTIONS(1548), + [anon_sym_trait] = ACTIONS(1548), + [anon_sym_type] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1548), + [anon_sym_unsafe] = ACTIONS(1548), + [anon_sym_use] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_COLON_COLON] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_DOT_DOT] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_yield] = ACTIONS(1548), + [anon_sym_move] = ACTIONS(1548), + [sym_integer_literal] = ACTIONS(1546), + [aux_sym_string_literal_token1] = ACTIONS(1546), + [sym_char_literal] = ACTIONS(1546), + [anon_sym_true] = ACTIONS(1548), + [anon_sym_false] = ACTIONS(1548), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1548), + [sym_super] = ACTIONS(1548), + [sym_crate] = ACTIONS(1548), + [sym_metavariable] = ACTIONS(1546), + [sym_raw_string_literal] = ACTIONS(1546), + [sym_float_literal] = ACTIONS(1546), [sym_block_comment] = ACTIONS(3), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(1548), - [sym_identifier] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1548), - [anon_sym_macro_rules_BANG] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1550), - [anon_sym_i8] = ACTIONS(1550), - [anon_sym_u16] = ACTIONS(1550), - [anon_sym_i16] = ACTIONS(1550), - [anon_sym_u32] = ACTIONS(1550), - [anon_sym_i32] = ACTIONS(1550), - [anon_sym_u64] = ACTIONS(1550), - [anon_sym_i64] = ACTIONS(1550), - [anon_sym_u128] = ACTIONS(1550), - [anon_sym_i128] = ACTIONS(1550), - [anon_sym_isize] = ACTIONS(1550), - [anon_sym_usize] = ACTIONS(1550), - [anon_sym_f32] = ACTIONS(1550), - [anon_sym_f64] = ACTIONS(1550), - [anon_sym_bool] = ACTIONS(1550), - [anon_sym_str] = ACTIONS(1550), - [anon_sym_char] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1550), - [anon_sym_async] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_default] = ACTIONS(1550), - [anon_sym_enum] = ACTIONS(1550), - [anon_sym_fn] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_impl] = ACTIONS(1550), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_loop] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1550), - [anon_sym_pub] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_static] = ACTIONS(1550), - [anon_sym_struct] = ACTIONS(1550), - [anon_sym_trait] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(1550), - [anon_sym_union] = ACTIONS(1550), - [anon_sym_unsafe] = ACTIONS(1550), - [anon_sym_use] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(1548), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_extern] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1548), - [anon_sym_COLON_COLON] = ACTIONS(1548), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_DOT_DOT] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_move] = ACTIONS(1550), - [sym_integer_literal] = ACTIONS(1548), - [aux_sym_string_literal_token1] = ACTIONS(1548), - [sym_char_literal] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1550), - [anon_sym_false] = ACTIONS(1550), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1550), - [sym_super] = ACTIONS(1550), - [sym_crate] = ACTIONS(1550), - [sym_metavariable] = ACTIONS(1548), - [sym_raw_string_literal] = ACTIONS(1548), - [sym_float_literal] = ACTIONS(1548), + [ts_builtin_sym_end] = ACTIONS(1550), + [sym_identifier] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_macro_rules_BANG] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_u8] = ACTIONS(1552), + [anon_sym_i8] = ACTIONS(1552), + [anon_sym_u16] = ACTIONS(1552), + [anon_sym_i16] = ACTIONS(1552), + [anon_sym_u32] = ACTIONS(1552), + [anon_sym_i32] = ACTIONS(1552), + [anon_sym_u64] = ACTIONS(1552), + [anon_sym_i64] = ACTIONS(1552), + [anon_sym_u128] = ACTIONS(1552), + [anon_sym_i128] = ACTIONS(1552), + [anon_sym_isize] = ACTIONS(1552), + [anon_sym_usize] = ACTIONS(1552), + [anon_sym_f32] = ACTIONS(1552), + [anon_sym_f64] = ACTIONS(1552), + [anon_sym_bool] = ACTIONS(1552), + [anon_sym_str] = ACTIONS(1552), + [anon_sym_char] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_async] = ACTIONS(1552), + [anon_sym_break] = ACTIONS(1552), + [anon_sym_const] = ACTIONS(1552), + [anon_sym_continue] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1552), + [anon_sym_enum] = ACTIONS(1552), + [anon_sym_fn] = ACTIONS(1552), + [anon_sym_for] = ACTIONS(1552), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_impl] = ACTIONS(1552), + [anon_sym_let] = ACTIONS(1552), + [anon_sym_loop] = ACTIONS(1552), + [anon_sym_match] = ACTIONS(1552), + [anon_sym_mod] = ACTIONS(1552), + [anon_sym_pub] = ACTIONS(1552), + [anon_sym_return] = ACTIONS(1552), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_struct] = ACTIONS(1552), + [anon_sym_trait] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_union] = ACTIONS(1552), + [anon_sym_unsafe] = ACTIONS(1552), + [anon_sym_use] = ACTIONS(1552), + [anon_sym_while] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_extern] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1550), + [anon_sym_COLON_COLON] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_DOT_DOT] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_PIPE] = ACTIONS(1550), + [anon_sym_yield] = ACTIONS(1552), + [anon_sym_move] = ACTIONS(1552), + [sym_integer_literal] = ACTIONS(1550), + [aux_sym_string_literal_token1] = ACTIONS(1550), + [sym_char_literal] = ACTIONS(1550), + [anon_sym_true] = ACTIONS(1552), + [anon_sym_false] = ACTIONS(1552), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1552), + [sym_super] = ACTIONS(1552), + [sym_crate] = ACTIONS(1552), + [sym_metavariable] = ACTIONS(1550), + [sym_raw_string_literal] = ACTIONS(1550), + [sym_float_literal] = ACTIONS(1550), [sym_block_comment] = ACTIONS(3), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1552), - [sym_identifier] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_macro_rules_BANG] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_u8] = ACTIONS(1554), - [anon_sym_i8] = ACTIONS(1554), - [anon_sym_u16] = ACTIONS(1554), - [anon_sym_i16] = ACTIONS(1554), - [anon_sym_u32] = ACTIONS(1554), - [anon_sym_i32] = ACTIONS(1554), - [anon_sym_u64] = ACTIONS(1554), - [anon_sym_i64] = ACTIONS(1554), - [anon_sym_u128] = ACTIONS(1554), - [anon_sym_i128] = ACTIONS(1554), - [anon_sym_isize] = ACTIONS(1554), - [anon_sym_usize] = ACTIONS(1554), - [anon_sym_f32] = ACTIONS(1554), - [anon_sym_f64] = ACTIONS(1554), - [anon_sym_bool] = ACTIONS(1554), - [anon_sym_str] = ACTIONS(1554), - [anon_sym_char] = ACTIONS(1554), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_async] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_enum] = ACTIONS(1554), - [anon_sym_fn] = ACTIONS(1554), - [anon_sym_for] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_impl] = ACTIONS(1554), - [anon_sym_let] = ACTIONS(1554), - [anon_sym_loop] = ACTIONS(1554), - [anon_sym_match] = ACTIONS(1554), - [anon_sym_mod] = ACTIONS(1554), - [anon_sym_pub] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_static] = ACTIONS(1554), - [anon_sym_struct] = ACTIONS(1554), - [anon_sym_trait] = ACTIONS(1554), - [anon_sym_type] = ACTIONS(1554), - [anon_sym_union] = ACTIONS(1554), - [anon_sym_unsafe] = ACTIONS(1554), - [anon_sym_use] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1552), - [anon_sym_extern] = ACTIONS(1554), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_COLON_COLON] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_yield] = ACTIONS(1554), - [anon_sym_move] = ACTIONS(1554), - [sym_integer_literal] = ACTIONS(1552), - [aux_sym_string_literal_token1] = ACTIONS(1552), - [sym_char_literal] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1554), - [anon_sym_false] = ACTIONS(1554), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1554), - [sym_super] = ACTIONS(1554), - [sym_crate] = ACTIONS(1554), - [sym_metavariable] = ACTIONS(1552), - [sym_raw_string_literal] = ACTIONS(1552), - [sym_float_literal] = ACTIONS(1552), + [ts_builtin_sym_end] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_macro_rules_BANG] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_u8] = ACTIONS(1556), + [anon_sym_i8] = ACTIONS(1556), + [anon_sym_u16] = ACTIONS(1556), + [anon_sym_i16] = ACTIONS(1556), + [anon_sym_u32] = ACTIONS(1556), + [anon_sym_i32] = ACTIONS(1556), + [anon_sym_u64] = ACTIONS(1556), + [anon_sym_i64] = ACTIONS(1556), + [anon_sym_u128] = ACTIONS(1556), + [anon_sym_i128] = ACTIONS(1556), + [anon_sym_isize] = ACTIONS(1556), + [anon_sym_usize] = ACTIONS(1556), + [anon_sym_f32] = ACTIONS(1556), + [anon_sym_f64] = ACTIONS(1556), + [anon_sym_bool] = ACTIONS(1556), + [anon_sym_str] = ACTIONS(1556), + [anon_sym_char] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1556), + [anon_sym_enum] = ACTIONS(1556), + [anon_sym_fn] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_impl] = ACTIONS(1556), + [anon_sym_let] = ACTIONS(1556), + [anon_sym_loop] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_mod] = ACTIONS(1556), + [anon_sym_pub] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_static] = ACTIONS(1556), + [anon_sym_struct] = ACTIONS(1556), + [anon_sym_trait] = ACTIONS(1556), + [anon_sym_type] = ACTIONS(1556), + [anon_sym_union] = ACTIONS(1556), + [anon_sym_unsafe] = ACTIONS(1556), + [anon_sym_use] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_DOT_DOT] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_yield] = ACTIONS(1556), + [anon_sym_move] = ACTIONS(1556), + [sym_integer_literal] = ACTIONS(1554), + [aux_sym_string_literal_token1] = ACTIONS(1554), + [sym_char_literal] = ACTIONS(1554), + [anon_sym_true] = ACTIONS(1556), + [anon_sym_false] = ACTIONS(1556), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1556), + [sym_super] = ACTIONS(1556), + [sym_crate] = ACTIONS(1556), + [sym_metavariable] = ACTIONS(1554), + [sym_raw_string_literal] = ACTIONS(1554), + [sym_float_literal] = ACTIONS(1554), [sym_block_comment] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1556), - [sym_identifier] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_macro_rules_BANG] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_u8] = ACTIONS(1558), - [anon_sym_i8] = ACTIONS(1558), - [anon_sym_u16] = ACTIONS(1558), - [anon_sym_i16] = ACTIONS(1558), - [anon_sym_u32] = ACTIONS(1558), - [anon_sym_i32] = ACTIONS(1558), - [anon_sym_u64] = ACTIONS(1558), - [anon_sym_i64] = ACTIONS(1558), - [anon_sym_u128] = ACTIONS(1558), - [anon_sym_i128] = ACTIONS(1558), - [anon_sym_isize] = ACTIONS(1558), - [anon_sym_usize] = ACTIONS(1558), - [anon_sym_f32] = ACTIONS(1558), - [anon_sym_f64] = ACTIONS(1558), - [anon_sym_bool] = ACTIONS(1558), - [anon_sym_str] = ACTIONS(1558), - [anon_sym_char] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1558), - [anon_sym_async] = ACTIONS(1558), - [anon_sym_break] = ACTIONS(1558), - [anon_sym_const] = ACTIONS(1558), - [anon_sym_continue] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1558), - [anon_sym_enum] = ACTIONS(1558), - [anon_sym_fn] = ACTIONS(1558), - [anon_sym_for] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1558), - [anon_sym_impl] = ACTIONS(1558), - [anon_sym_let] = ACTIONS(1558), - [anon_sym_loop] = ACTIONS(1558), - [anon_sym_match] = ACTIONS(1558), - [anon_sym_mod] = ACTIONS(1558), - [anon_sym_pub] = ACTIONS(1558), - [anon_sym_return] = ACTIONS(1558), - [anon_sym_static] = ACTIONS(1558), - [anon_sym_struct] = ACTIONS(1558), - [anon_sym_trait] = ACTIONS(1558), - [anon_sym_type] = ACTIONS(1558), - [anon_sym_union] = ACTIONS(1558), - [anon_sym_unsafe] = ACTIONS(1558), - [anon_sym_use] = ACTIONS(1558), - [anon_sym_while] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_move] = ACTIONS(1558), - [sym_integer_literal] = ACTIONS(1556), - [aux_sym_string_literal_token1] = ACTIONS(1556), - [sym_char_literal] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1558), - [anon_sym_false] = ACTIONS(1558), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1558), - [sym_super] = ACTIONS(1558), - [sym_crate] = ACTIONS(1558), - [sym_metavariable] = ACTIONS(1556), - [sym_raw_string_literal] = ACTIONS(1556), - [sym_float_literal] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1558), + [sym_identifier] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_macro_rules_BANG] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_u8] = ACTIONS(1560), + [anon_sym_i8] = ACTIONS(1560), + [anon_sym_u16] = ACTIONS(1560), + [anon_sym_i16] = ACTIONS(1560), + [anon_sym_u32] = ACTIONS(1560), + [anon_sym_i32] = ACTIONS(1560), + [anon_sym_u64] = ACTIONS(1560), + [anon_sym_i64] = ACTIONS(1560), + [anon_sym_u128] = ACTIONS(1560), + [anon_sym_i128] = ACTIONS(1560), + [anon_sym_isize] = ACTIONS(1560), + [anon_sym_usize] = ACTIONS(1560), + [anon_sym_f32] = ACTIONS(1560), + [anon_sym_f64] = ACTIONS(1560), + [anon_sym_bool] = ACTIONS(1560), + [anon_sym_str] = ACTIONS(1560), + [anon_sym_char] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_enum] = ACTIONS(1560), + [anon_sym_fn] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_impl] = ACTIONS(1560), + [anon_sym_let] = ACTIONS(1560), + [anon_sym_loop] = ACTIONS(1560), + [anon_sym_match] = ACTIONS(1560), + [anon_sym_mod] = ACTIONS(1560), + [anon_sym_pub] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1560), + [anon_sym_struct] = ACTIONS(1560), + [anon_sym_trait] = ACTIONS(1560), + [anon_sym_type] = ACTIONS(1560), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_unsafe] = ACTIONS(1560), + [anon_sym_use] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1558), + [anon_sym_COLON_COLON] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_DOT_DOT] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_yield] = ACTIONS(1560), + [anon_sym_move] = ACTIONS(1560), + [sym_integer_literal] = ACTIONS(1558), + [aux_sym_string_literal_token1] = ACTIONS(1558), + [sym_char_literal] = ACTIONS(1558), + [anon_sym_true] = ACTIONS(1560), + [anon_sym_false] = ACTIONS(1560), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1560), + [sym_super] = ACTIONS(1560), + [sym_crate] = ACTIONS(1560), + [sym_metavariable] = ACTIONS(1558), + [sym_raw_string_literal] = ACTIONS(1558), + [sym_float_literal] = ACTIONS(1558), [sym_block_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1560), - [sym_identifier] = ACTIONS(1562), - [anon_sym_SEMI] = ACTIONS(1560), - [anon_sym_macro_rules_BANG] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [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_SQUOTE] = ACTIONS(1562), - [anon_sym_async] = 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_while] = ACTIONS(1562), - [anon_sym_POUND] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_extern] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_COLON_COLON] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_PIPE] = ACTIONS(1560), - [anon_sym_yield] = ACTIONS(1562), - [anon_sym_move] = ACTIONS(1562), - [sym_integer_literal] = ACTIONS(1560), - [aux_sym_string_literal_token1] = ACTIONS(1560), - [sym_char_literal] = ACTIONS(1560), - [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(1560), - [sym_raw_string_literal] = ACTIONS(1560), - [sym_float_literal] = ACTIONS(1560), + [ts_builtin_sym_end] = ACTIONS(1562), + [sym_identifier] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym_macro_rules_BANG] = ACTIONS(1562), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_RBRACE] = ACTIONS(1562), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_u8] = ACTIONS(1564), + [anon_sym_i8] = ACTIONS(1564), + [anon_sym_u16] = ACTIONS(1564), + [anon_sym_i16] = ACTIONS(1564), + [anon_sym_u32] = ACTIONS(1564), + [anon_sym_i32] = ACTIONS(1564), + [anon_sym_u64] = ACTIONS(1564), + [anon_sym_i64] = ACTIONS(1564), + [anon_sym_u128] = ACTIONS(1564), + [anon_sym_i128] = ACTIONS(1564), + [anon_sym_isize] = ACTIONS(1564), + [anon_sym_usize] = ACTIONS(1564), + [anon_sym_f32] = ACTIONS(1564), + [anon_sym_f64] = ACTIONS(1564), + [anon_sym_bool] = ACTIONS(1564), + [anon_sym_str] = ACTIONS(1564), + [anon_sym_char] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_async] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_const] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_default] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [anon_sym_fn] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_impl] = ACTIONS(1564), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_loop] = ACTIONS(1564), + [anon_sym_match] = ACTIONS(1564), + [anon_sym_mod] = ACTIONS(1564), + [anon_sym_pub] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_struct] = ACTIONS(1564), + [anon_sym_trait] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_union] = ACTIONS(1564), + [anon_sym_unsafe] = ACTIONS(1564), + [anon_sym_use] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_extern] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1562), + [anon_sym_COLON_COLON] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_DOT_DOT] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_move] = ACTIONS(1564), + [sym_integer_literal] = ACTIONS(1562), + [aux_sym_string_literal_token1] = ACTIONS(1562), + [sym_char_literal] = ACTIONS(1562), + [anon_sym_true] = ACTIONS(1564), + [anon_sym_false] = ACTIONS(1564), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1564), + [sym_super] = ACTIONS(1564), + [sym_crate] = ACTIONS(1564), + [sym_metavariable] = ACTIONS(1562), + [sym_raw_string_literal] = ACTIONS(1562), + [sym_float_literal] = ACTIONS(1562), [sym_block_comment] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1564), - [sym_identifier] = ACTIONS(1566), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_macro_rules_BANG] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [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_SQUOTE] = ACTIONS(1566), - [anon_sym_async] = 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_while] = ACTIONS(1566), - [anon_sym_POUND] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1564), - [anon_sym_extern] = ACTIONS(1566), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_COLON_COLON] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_DOT_DOT] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_yield] = ACTIONS(1566), - [anon_sym_move] = ACTIONS(1566), - [sym_integer_literal] = ACTIONS(1564), - [aux_sym_string_literal_token1] = ACTIONS(1564), - [sym_char_literal] = ACTIONS(1564), - [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(1564), - [sym_raw_string_literal] = ACTIONS(1564), - [sym_float_literal] = ACTIONS(1564), + [ts_builtin_sym_end] = ACTIONS(1566), + [sym_identifier] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_macro_rules_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_u8] = ACTIONS(1568), + [anon_sym_i8] = ACTIONS(1568), + [anon_sym_u16] = ACTIONS(1568), + [anon_sym_i16] = ACTIONS(1568), + [anon_sym_u32] = ACTIONS(1568), + [anon_sym_i32] = ACTIONS(1568), + [anon_sym_u64] = ACTIONS(1568), + [anon_sym_i64] = ACTIONS(1568), + [anon_sym_u128] = ACTIONS(1568), + [anon_sym_i128] = ACTIONS(1568), + [anon_sym_isize] = ACTIONS(1568), + [anon_sym_usize] = ACTIONS(1568), + [anon_sym_f32] = ACTIONS(1568), + [anon_sym_f64] = ACTIONS(1568), + [anon_sym_bool] = ACTIONS(1568), + [anon_sym_str] = ACTIONS(1568), + [anon_sym_char] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_break] = ACTIONS(1568), + [anon_sym_const] = ACTIONS(1568), + [anon_sym_continue] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1568), + [anon_sym_enum] = ACTIONS(1568), + [anon_sym_fn] = ACTIONS(1568), + [anon_sym_for] = ACTIONS(1568), + [anon_sym_if] = ACTIONS(1568), + [anon_sym_impl] = ACTIONS(1568), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_loop] = ACTIONS(1568), + [anon_sym_match] = ACTIONS(1568), + [anon_sym_mod] = ACTIONS(1568), + [anon_sym_pub] = ACTIONS(1568), + [anon_sym_return] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_struct] = ACTIONS(1568), + [anon_sym_trait] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_union] = ACTIONS(1568), + [anon_sym_unsafe] = ACTIONS(1568), + [anon_sym_use] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_POUND] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_extern] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(1566), + [anon_sym_COLON_COLON] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1568), + [sym_integer_literal] = ACTIONS(1566), + [aux_sym_string_literal_token1] = ACTIONS(1566), + [sym_char_literal] = ACTIONS(1566), + [anon_sym_true] = ACTIONS(1568), + [anon_sym_false] = ACTIONS(1568), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1568), + [sym_super] = ACTIONS(1568), + [sym_crate] = ACTIONS(1568), + [sym_metavariable] = ACTIONS(1566), + [sym_raw_string_literal] = ACTIONS(1566), + [sym_float_literal] = ACTIONS(1566), [sym_block_comment] = ACTIONS(3), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_macro_rules_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [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_SQUOTE] = ACTIONS(1570), - [anon_sym_async] = 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_while] = ACTIONS(1570), - [anon_sym_POUND] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_extern] = ACTIONS(1570), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_DOT_DOT] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_yield] = ACTIONS(1570), - [anon_sym_move] = ACTIONS(1570), - [sym_integer_literal] = ACTIONS(1568), - [aux_sym_string_literal_token1] = ACTIONS(1568), - [sym_char_literal] = ACTIONS(1568), - [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(1568), - [sym_raw_string_literal] = ACTIONS(1568), - [sym_float_literal] = ACTIONS(1568), + [ts_builtin_sym_end] = ACTIONS(1570), + [sym_identifier] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1570), + [anon_sym_macro_rules_BANG] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1570), + [anon_sym_RBRACE] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1570), + [anon_sym_STAR] = ACTIONS(1570), + [anon_sym_u8] = ACTIONS(1572), + [anon_sym_i8] = ACTIONS(1572), + [anon_sym_u16] = ACTIONS(1572), + [anon_sym_i16] = ACTIONS(1572), + [anon_sym_u32] = ACTIONS(1572), + [anon_sym_i32] = ACTIONS(1572), + [anon_sym_u64] = ACTIONS(1572), + [anon_sym_i64] = ACTIONS(1572), + [anon_sym_u128] = ACTIONS(1572), + [anon_sym_i128] = ACTIONS(1572), + [anon_sym_isize] = ACTIONS(1572), + [anon_sym_usize] = ACTIONS(1572), + [anon_sym_f32] = ACTIONS(1572), + [anon_sym_f64] = ACTIONS(1572), + [anon_sym_bool] = ACTIONS(1572), + [anon_sym_str] = ACTIONS(1572), + [anon_sym_char] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(1572), + [anon_sym_async] = ACTIONS(1572), + [anon_sym_break] = ACTIONS(1572), + [anon_sym_const] = ACTIONS(1572), + [anon_sym_continue] = ACTIONS(1572), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_enum] = ACTIONS(1572), + [anon_sym_fn] = ACTIONS(1572), + [anon_sym_for] = ACTIONS(1572), + [anon_sym_if] = ACTIONS(1572), + [anon_sym_impl] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1572), + [anon_sym_loop] = ACTIONS(1572), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_mod] = ACTIONS(1572), + [anon_sym_pub] = ACTIONS(1572), + [anon_sym_return] = ACTIONS(1572), + [anon_sym_static] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1572), + [anon_sym_trait] = ACTIONS(1572), + [anon_sym_type] = ACTIONS(1572), + [anon_sym_union] = ACTIONS(1572), + [anon_sym_unsafe] = ACTIONS(1572), + [anon_sym_use] = ACTIONS(1572), + [anon_sym_while] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(1570), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_extern] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1570), + [anon_sym_COLON_COLON] = ACTIONS(1570), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_DOT_DOT] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_PIPE] = ACTIONS(1570), + [anon_sym_yield] = ACTIONS(1572), + [anon_sym_move] = ACTIONS(1572), + [sym_integer_literal] = ACTIONS(1570), + [aux_sym_string_literal_token1] = ACTIONS(1570), + [sym_char_literal] = ACTIONS(1570), + [anon_sym_true] = ACTIONS(1572), + [anon_sym_false] = ACTIONS(1572), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1572), + [sym_super] = ACTIONS(1572), + [sym_crate] = ACTIONS(1572), + [sym_metavariable] = ACTIONS(1570), + [sym_raw_string_literal] = ACTIONS(1570), + [sym_float_literal] = ACTIONS(1570), [sym_block_comment] = ACTIONS(3), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1572), - [sym_identifier] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_macro_rules_BANG] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1572), - [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_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = 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_while] = ACTIONS(1574), - [anon_sym_POUND] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1572), - [anon_sym_extern] = ACTIONS(1574), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_move] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1572), - [aux_sym_string_literal_token1] = ACTIONS(1572), - [sym_char_literal] = ACTIONS(1572), - [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_metavariable] = ACTIONS(1572), - [sym_raw_string_literal] = ACTIONS(1572), - [sym_float_literal] = ACTIONS(1572), + [ts_builtin_sym_end] = ACTIONS(1574), + [sym_identifier] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_macro_rules_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1574), + [anon_sym_LBRACE] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(1574), + [anon_sym_u8] = ACTIONS(1576), + [anon_sym_i8] = ACTIONS(1576), + [anon_sym_u16] = ACTIONS(1576), + [anon_sym_i16] = ACTIONS(1576), + [anon_sym_u32] = ACTIONS(1576), + [anon_sym_i32] = ACTIONS(1576), + [anon_sym_u64] = ACTIONS(1576), + [anon_sym_i64] = ACTIONS(1576), + [anon_sym_u128] = ACTIONS(1576), + [anon_sym_i128] = ACTIONS(1576), + [anon_sym_isize] = ACTIONS(1576), + [anon_sym_usize] = ACTIONS(1576), + [anon_sym_f32] = ACTIONS(1576), + [anon_sym_f64] = ACTIONS(1576), + [anon_sym_bool] = ACTIONS(1576), + [anon_sym_str] = ACTIONS(1576), + [anon_sym_char] = ACTIONS(1576), + [anon_sym_SQUOTE] = ACTIONS(1576), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_break] = ACTIONS(1576), + [anon_sym_const] = ACTIONS(1576), + [anon_sym_continue] = ACTIONS(1576), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_enum] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1576), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_if] = ACTIONS(1576), + [anon_sym_impl] = ACTIONS(1576), + [anon_sym_let] = ACTIONS(1576), + [anon_sym_loop] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1576), + [anon_sym_mod] = ACTIONS(1576), + [anon_sym_pub] = ACTIONS(1576), + [anon_sym_return] = ACTIONS(1576), + [anon_sym_static] = ACTIONS(1576), + [anon_sym_struct] = ACTIONS(1576), + [anon_sym_trait] = ACTIONS(1576), + [anon_sym_type] = ACTIONS(1576), + [anon_sym_union] = ACTIONS(1576), + [anon_sym_unsafe] = ACTIONS(1576), + [anon_sym_use] = ACTIONS(1576), + [anon_sym_while] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_extern] = ACTIONS(1576), + [anon_sym_LT] = ACTIONS(1574), + [anon_sym_COLON_COLON] = ACTIONS(1574), + [anon_sym_AMP] = ACTIONS(1574), + [anon_sym_DOT_DOT] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_yield] = ACTIONS(1576), + [anon_sym_move] = ACTIONS(1576), + [sym_integer_literal] = ACTIONS(1574), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1574), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1576), + [sym_super] = ACTIONS(1576), + [sym_crate] = ACTIONS(1576), + [sym_metavariable] = ACTIONS(1574), + [sym_raw_string_literal] = ACTIONS(1574), + [sym_float_literal] = ACTIONS(1574), [sym_block_comment] = ACTIONS(3), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1576), - [sym_identifier] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_macro_rules_BANG] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_RBRACE] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1576), - [anon_sym_u8] = ACTIONS(1578), - [anon_sym_i8] = ACTIONS(1578), - [anon_sym_u16] = ACTIONS(1578), - [anon_sym_i16] = ACTIONS(1578), - [anon_sym_u32] = ACTIONS(1578), - [anon_sym_i32] = ACTIONS(1578), - [anon_sym_u64] = ACTIONS(1578), - [anon_sym_i64] = ACTIONS(1578), - [anon_sym_u128] = ACTIONS(1578), - [anon_sym_i128] = ACTIONS(1578), - [anon_sym_isize] = ACTIONS(1578), - [anon_sym_usize] = ACTIONS(1578), - [anon_sym_f32] = ACTIONS(1578), - [anon_sym_f64] = ACTIONS(1578), - [anon_sym_bool] = ACTIONS(1578), - [anon_sym_str] = ACTIONS(1578), - [anon_sym_char] = ACTIONS(1578), - [anon_sym_SQUOTE] = ACTIONS(1578), - [anon_sym_async] = ACTIONS(1578), - [anon_sym_break] = ACTIONS(1578), - [anon_sym_const] = ACTIONS(1578), - [anon_sym_continue] = ACTIONS(1578), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_enum] = ACTIONS(1578), - [anon_sym_fn] = ACTIONS(1578), - [anon_sym_for] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1578), - [anon_sym_impl] = ACTIONS(1578), - [anon_sym_let] = ACTIONS(1578), - [anon_sym_loop] = ACTIONS(1578), - [anon_sym_match] = ACTIONS(1578), - [anon_sym_mod] = ACTIONS(1578), - [anon_sym_pub] = ACTIONS(1578), - [anon_sym_return] = ACTIONS(1578), - [anon_sym_static] = ACTIONS(1578), - [anon_sym_struct] = ACTIONS(1578), - [anon_sym_trait] = ACTIONS(1578), - [anon_sym_type] = ACTIONS(1578), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1578), - [anon_sym_use] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1578), - [anon_sym_POUND] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1576), - [anon_sym_extern] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_COLON_COLON] = ACTIONS(1576), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_DOT_DOT] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_move] = ACTIONS(1578), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1576), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1578), - [anon_sym_false] = ACTIONS(1578), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1578), - [sym_super] = ACTIONS(1578), - [sym_crate] = ACTIONS(1578), - [sym_metavariable] = ACTIONS(1576), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [ts_builtin_sym_end] = ACTIONS(1578), + [sym_identifier] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_macro_rules_BANG] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_STAR] = ACTIONS(1578), + [anon_sym_u8] = ACTIONS(1580), + [anon_sym_i8] = ACTIONS(1580), + [anon_sym_u16] = ACTIONS(1580), + [anon_sym_i16] = ACTIONS(1580), + [anon_sym_u32] = ACTIONS(1580), + [anon_sym_i32] = ACTIONS(1580), + [anon_sym_u64] = ACTIONS(1580), + [anon_sym_i64] = ACTIONS(1580), + [anon_sym_u128] = ACTIONS(1580), + [anon_sym_i128] = ACTIONS(1580), + [anon_sym_isize] = ACTIONS(1580), + [anon_sym_usize] = ACTIONS(1580), + [anon_sym_f32] = ACTIONS(1580), + [anon_sym_f64] = ACTIONS(1580), + [anon_sym_bool] = ACTIONS(1580), + [anon_sym_str] = ACTIONS(1580), + [anon_sym_char] = ACTIONS(1580), + [anon_sym_SQUOTE] = ACTIONS(1580), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_break] = ACTIONS(1580), + [anon_sym_const] = ACTIONS(1580), + [anon_sym_continue] = ACTIONS(1580), + [anon_sym_default] = ACTIONS(1580), + [anon_sym_enum] = ACTIONS(1580), + [anon_sym_fn] = ACTIONS(1580), + [anon_sym_for] = ACTIONS(1580), + [anon_sym_if] = ACTIONS(1580), + [anon_sym_impl] = ACTIONS(1580), + [anon_sym_let] = ACTIONS(1580), + [anon_sym_loop] = ACTIONS(1580), + [anon_sym_match] = ACTIONS(1580), + [anon_sym_mod] = ACTIONS(1580), + [anon_sym_pub] = ACTIONS(1580), + [anon_sym_return] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1580), + [anon_sym_struct] = ACTIONS(1580), + [anon_sym_trait] = ACTIONS(1580), + [anon_sym_type] = ACTIONS(1580), + [anon_sym_union] = ACTIONS(1580), + [anon_sym_unsafe] = ACTIONS(1580), + [anon_sym_use] = ACTIONS(1580), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(1578), + [anon_sym_BANG] = ACTIONS(1578), + [anon_sym_extern] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1578), + [anon_sym_COLON_COLON] = ACTIONS(1578), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_DASH] = ACTIONS(1578), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_yield] = ACTIONS(1580), + [anon_sym_move] = ACTIONS(1580), + [sym_integer_literal] = ACTIONS(1578), + [aux_sym_string_literal_token1] = ACTIONS(1578), + [sym_char_literal] = ACTIONS(1578), + [anon_sym_true] = ACTIONS(1580), + [anon_sym_false] = ACTIONS(1580), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1580), + [sym_super] = ACTIONS(1580), + [sym_crate] = ACTIONS(1580), + [sym_metavariable] = ACTIONS(1578), + [sym_raw_string_literal] = ACTIONS(1578), + [sym_float_literal] = ACTIONS(1578), [sym_block_comment] = ACTIONS(3), }, [381] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2581), - [sym_scoped_identifier] = STATE(1567), - [sym_scoped_type_identifier] = STATE(1919), - [sym_match_arm] = STATE(495), - [sym_last_match_arm] = STATE(2532), - [sym_match_pattern] = STATE(2569), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2123), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(1132), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_union] = ACTIONS(1144), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [382] = { [ts_builtin_sym_end] = ACTIONS(1582), [sym_identifier] = ACTIONS(1584), [anon_sym_SEMI] = ACTIONS(1582), @@ -53119,7 +53031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1582), [sym_block_comment] = ACTIONS(3), }, - [383] = { + [382] = { [ts_builtin_sym_end] = ACTIONS(1586), [sym_identifier] = ACTIONS(1588), [anon_sym_SEMI] = ACTIONS(1586), @@ -53196,7 +53108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1586), [sym_block_comment] = ACTIONS(3), }, - [384] = { + [383] = { [ts_builtin_sym_end] = ACTIONS(1590), [sym_identifier] = ACTIONS(1592), [anon_sym_SEMI] = ACTIONS(1590), @@ -53273,7 +53185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1590), [sym_block_comment] = ACTIONS(3), }, - [385] = { + [384] = { [ts_builtin_sym_end] = ACTIONS(1594), [sym_identifier] = ACTIONS(1596), [anon_sym_SEMI] = ACTIONS(1594), @@ -53350,7 +53262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1594), [sym_block_comment] = ACTIONS(3), }, - [386] = { + [385] = { [ts_builtin_sym_end] = ACTIONS(1598), [sym_identifier] = ACTIONS(1600), [anon_sym_SEMI] = ACTIONS(1598), @@ -53427,7 +53339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1598), [sym_block_comment] = ACTIONS(3), }, - [387] = { + [386] = { [ts_builtin_sym_end] = ACTIONS(1602), [sym_identifier] = ACTIONS(1604), [anon_sym_SEMI] = ACTIONS(1602), @@ -53504,7 +53416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1602), [sym_block_comment] = ACTIONS(3), }, - [388] = { + [387] = { [ts_builtin_sym_end] = ACTIONS(1606), [sym_identifier] = ACTIONS(1608), [anon_sym_SEMI] = ACTIONS(1606), @@ -53581,7 +53493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1606), [sym_block_comment] = ACTIONS(3), }, - [389] = { + [388] = { [ts_builtin_sym_end] = ACTIONS(1610), [sym_identifier] = ACTIONS(1612), [anon_sym_SEMI] = ACTIONS(1610), @@ -53658,6 +53570,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1610), [sym_block_comment] = ACTIONS(3), }, + [389] = { + [ts_builtin_sym_end] = ACTIONS(518), + [sym_identifier] = ACTIONS(520), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_macro_rules_BANG] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_STAR] = ACTIONS(518), + [anon_sym_u8] = ACTIONS(520), + [anon_sym_i8] = ACTIONS(520), + [anon_sym_u16] = ACTIONS(520), + [anon_sym_i16] = ACTIONS(520), + [anon_sym_u32] = ACTIONS(520), + [anon_sym_i32] = ACTIONS(520), + [anon_sym_u64] = ACTIONS(520), + [anon_sym_i64] = ACTIONS(520), + [anon_sym_u128] = ACTIONS(520), + [anon_sym_i128] = ACTIONS(520), + [anon_sym_isize] = ACTIONS(520), + [anon_sym_usize] = ACTIONS(520), + [anon_sym_f32] = ACTIONS(520), + [anon_sym_f64] = ACTIONS(520), + [anon_sym_bool] = ACTIONS(520), + [anon_sym_str] = ACTIONS(520), + [anon_sym_char] = ACTIONS(520), + [anon_sym_SQUOTE] = ACTIONS(520), + [anon_sym_async] = ACTIONS(520), + [anon_sym_break] = ACTIONS(520), + [anon_sym_const] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_default] = ACTIONS(520), + [anon_sym_enum] = ACTIONS(520), + [anon_sym_fn] = ACTIONS(520), + [anon_sym_for] = ACTIONS(520), + [anon_sym_if] = ACTIONS(520), + [anon_sym_impl] = ACTIONS(520), + [anon_sym_let] = ACTIONS(520), + [anon_sym_loop] = ACTIONS(520), + [anon_sym_match] = ACTIONS(520), + [anon_sym_mod] = ACTIONS(520), + [anon_sym_pub] = ACTIONS(520), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(520), + [anon_sym_struct] = ACTIONS(520), + [anon_sym_trait] = ACTIONS(520), + [anon_sym_type] = ACTIONS(520), + [anon_sym_union] = ACTIONS(520), + [anon_sym_unsafe] = ACTIONS(520), + [anon_sym_use] = ACTIONS(520), + [anon_sym_while] = ACTIONS(520), + [anon_sym_POUND] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_extern] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(518), + [anon_sym_DOT_DOT] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_PIPE] = ACTIONS(518), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_move] = ACTIONS(520), + [sym_integer_literal] = ACTIONS(518), + [aux_sym_string_literal_token1] = ACTIONS(518), + [sym_char_literal] = ACTIONS(518), + [anon_sym_true] = ACTIONS(520), + [anon_sym_false] = ACTIONS(520), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(520), + [sym_super] = ACTIONS(520), + [sym_crate] = ACTIONS(520), + [sym_metavariable] = ACTIONS(518), + [sym_raw_string_literal] = ACTIONS(518), + [sym_float_literal] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + }, [390] = { [ts_builtin_sym_end] = ACTIONS(1614), [sym_identifier] = ACTIONS(1616), @@ -54583,6 +54572,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [402] = { + [ts_builtin_sym_end] = ACTIONS(548), + [sym_identifier] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_macro_rules_BANG] = ACTIONS(548), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_u8] = ACTIONS(550), + [anon_sym_i8] = ACTIONS(550), + [anon_sym_u16] = ACTIONS(550), + [anon_sym_i16] = ACTIONS(550), + [anon_sym_u32] = ACTIONS(550), + [anon_sym_i32] = ACTIONS(550), + [anon_sym_u64] = ACTIONS(550), + [anon_sym_i64] = ACTIONS(550), + [anon_sym_u128] = ACTIONS(550), + [anon_sym_i128] = ACTIONS(550), + [anon_sym_isize] = ACTIONS(550), + [anon_sym_usize] = ACTIONS(550), + [anon_sym_f32] = ACTIONS(550), + [anon_sym_f64] = ACTIONS(550), + [anon_sym_bool] = ACTIONS(550), + [anon_sym_str] = ACTIONS(550), + [anon_sym_char] = ACTIONS(550), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_async] = ACTIONS(550), + [anon_sym_break] = ACTIONS(550), + [anon_sym_const] = ACTIONS(550), + [anon_sym_continue] = ACTIONS(550), + [anon_sym_default] = ACTIONS(550), + [anon_sym_enum] = ACTIONS(550), + [anon_sym_fn] = ACTIONS(550), + [anon_sym_for] = ACTIONS(550), + [anon_sym_if] = ACTIONS(550), + [anon_sym_impl] = ACTIONS(550), + [anon_sym_let] = ACTIONS(550), + [anon_sym_loop] = ACTIONS(550), + [anon_sym_match] = ACTIONS(550), + [anon_sym_mod] = ACTIONS(550), + [anon_sym_pub] = ACTIONS(550), + [anon_sym_return] = ACTIONS(550), + [anon_sym_static] = ACTIONS(550), + [anon_sym_struct] = ACTIONS(550), + [anon_sym_trait] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_union] = ACTIONS(550), + [anon_sym_unsafe] = ACTIONS(550), + [anon_sym_use] = ACTIONS(550), + [anon_sym_while] = ACTIONS(550), + [anon_sym_POUND] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_extern] = ACTIONS(550), + [anon_sym_LT] = ACTIONS(548), + [anon_sym_COLON_COLON] = ACTIONS(548), + [anon_sym_AMP] = ACTIONS(548), + [anon_sym_DOT_DOT] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_yield] = ACTIONS(550), + [anon_sym_move] = ACTIONS(550), + [sym_integer_literal] = ACTIONS(548), + [aux_sym_string_literal_token1] = ACTIONS(548), + [sym_char_literal] = ACTIONS(548), + [anon_sym_true] = ACTIONS(550), + [anon_sym_false] = ACTIONS(550), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(550), + [sym_super] = ACTIONS(550), + [sym_crate] = ACTIONS(550), + [sym_metavariable] = ACTIONS(548), + [sym_raw_string_literal] = ACTIONS(548), + [sym_float_literal] = ACTIONS(548), + [sym_block_comment] = ACTIONS(3), + }, + [403] = { [ts_builtin_sym_end] = ACTIONS(1662), [sym_identifier] = ACTIONS(1664), [anon_sym_SEMI] = ACTIONS(1662), @@ -54659,7 +54725,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1662), [sym_block_comment] = ACTIONS(3), }, - [403] = { + [404] = { + [ts_builtin_sym_end] = ACTIONS(538), + [sym_identifier] = ACTIONS(540), + [anon_sym_SEMI] = ACTIONS(538), + [anon_sym_macro_rules_BANG] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LBRACE] = ACTIONS(538), + [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_u8] = ACTIONS(540), + [anon_sym_i8] = ACTIONS(540), + [anon_sym_u16] = ACTIONS(540), + [anon_sym_i16] = ACTIONS(540), + [anon_sym_u32] = ACTIONS(540), + [anon_sym_i32] = ACTIONS(540), + [anon_sym_u64] = ACTIONS(540), + [anon_sym_i64] = ACTIONS(540), + [anon_sym_u128] = ACTIONS(540), + [anon_sym_i128] = ACTIONS(540), + [anon_sym_isize] = ACTIONS(540), + [anon_sym_usize] = ACTIONS(540), + [anon_sym_f32] = ACTIONS(540), + [anon_sym_f64] = ACTIONS(540), + [anon_sym_bool] = ACTIONS(540), + [anon_sym_str] = ACTIONS(540), + [anon_sym_char] = ACTIONS(540), + [anon_sym_SQUOTE] = ACTIONS(540), + [anon_sym_async] = ACTIONS(540), + [anon_sym_break] = ACTIONS(540), + [anon_sym_const] = ACTIONS(540), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_default] = ACTIONS(540), + [anon_sym_enum] = ACTIONS(540), + [anon_sym_fn] = ACTIONS(540), + [anon_sym_for] = ACTIONS(540), + [anon_sym_if] = ACTIONS(540), + [anon_sym_impl] = ACTIONS(540), + [anon_sym_let] = ACTIONS(540), + [anon_sym_loop] = ACTIONS(540), + [anon_sym_match] = ACTIONS(540), + [anon_sym_mod] = ACTIONS(540), + [anon_sym_pub] = ACTIONS(540), + [anon_sym_return] = ACTIONS(540), + [anon_sym_static] = ACTIONS(540), + [anon_sym_struct] = ACTIONS(540), + [anon_sym_trait] = ACTIONS(540), + [anon_sym_type] = ACTIONS(540), + [anon_sym_union] = ACTIONS(540), + [anon_sym_unsafe] = ACTIONS(540), + [anon_sym_use] = ACTIONS(540), + [anon_sym_while] = ACTIONS(540), + [anon_sym_POUND] = ACTIONS(538), + [anon_sym_BANG] = ACTIONS(538), + [anon_sym_extern] = ACTIONS(540), + [anon_sym_LT] = ACTIONS(538), + [anon_sym_COLON_COLON] = ACTIONS(538), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(538), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_yield] = ACTIONS(540), + [anon_sym_move] = ACTIONS(540), + [sym_integer_literal] = ACTIONS(538), + [aux_sym_string_literal_token1] = ACTIONS(538), + [sym_char_literal] = ACTIONS(538), + [anon_sym_true] = ACTIONS(540), + [anon_sym_false] = ACTIONS(540), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(540), + [sym_super] = ACTIONS(540), + [sym_crate] = ACTIONS(540), + [sym_metavariable] = ACTIONS(538), + [sym_raw_string_literal] = ACTIONS(538), + [sym_float_literal] = ACTIONS(538), + [sym_block_comment] = ACTIONS(3), + }, + [405] = { [ts_builtin_sym_end] = ACTIONS(1666), [sym_identifier] = ACTIONS(1668), [anon_sym_SEMI] = ACTIONS(1666), @@ -54736,7 +54879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1666), [sym_block_comment] = ACTIONS(3), }, - [404] = { + [406] = { [ts_builtin_sym_end] = ACTIONS(1670), [sym_identifier] = ACTIONS(1672), [anon_sym_SEMI] = ACTIONS(1670), @@ -54813,7 +54956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1670), [sym_block_comment] = ACTIONS(3), }, - [405] = { + [407] = { [ts_builtin_sym_end] = ACTIONS(1674), [sym_identifier] = ACTIONS(1676), [anon_sym_SEMI] = ACTIONS(1674), @@ -54890,7 +55033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1674), [sym_block_comment] = ACTIONS(3), }, - [406] = { + [408] = { [ts_builtin_sym_end] = ACTIONS(1678), [sym_identifier] = ACTIONS(1680), [anon_sym_SEMI] = ACTIONS(1678), @@ -54967,7 +55110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1678), [sym_block_comment] = ACTIONS(3), }, - [407] = { + [409] = { [ts_builtin_sym_end] = ACTIONS(1682), [sym_identifier] = ACTIONS(1684), [anon_sym_SEMI] = ACTIONS(1682), @@ -55044,7 +55187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1682), [sym_block_comment] = ACTIONS(3), }, - [408] = { + [410] = { [ts_builtin_sym_end] = ACTIONS(1686), [sym_identifier] = ACTIONS(1688), [anon_sym_SEMI] = ACTIONS(1686), @@ -55121,7 +55264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1686), [sym_block_comment] = ACTIONS(3), }, - [409] = { + [411] = { [ts_builtin_sym_end] = ACTIONS(1690), [sym_identifier] = ACTIONS(1692), [anon_sym_SEMI] = ACTIONS(1690), @@ -55198,7 +55341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1690), [sym_block_comment] = ACTIONS(3), }, - [410] = { + [412] = { [ts_builtin_sym_end] = ACTIONS(1694), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1694), @@ -55275,7 +55418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1694), [sym_block_comment] = ACTIONS(3), }, - [411] = { + [413] = { [ts_builtin_sym_end] = ACTIONS(1698), [sym_identifier] = ACTIONS(1700), [anon_sym_SEMI] = ACTIONS(1698), @@ -55352,7 +55495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1698), [sym_block_comment] = ACTIONS(3), }, - [412] = { + [414] = { [ts_builtin_sym_end] = ACTIONS(1702), [sym_identifier] = ACTIONS(1704), [anon_sym_SEMI] = ACTIONS(1702), @@ -55429,7 +55572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1702), [sym_block_comment] = ACTIONS(3), }, - [413] = { + [415] = { [ts_builtin_sym_end] = ACTIONS(1706), [sym_identifier] = ACTIONS(1708), [anon_sym_SEMI] = ACTIONS(1706), @@ -55506,7 +55649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1706), [sym_block_comment] = ACTIONS(3), }, - [414] = { + [416] = { [ts_builtin_sym_end] = ACTIONS(1710), [sym_identifier] = ACTIONS(1712), [anon_sym_SEMI] = ACTIONS(1710), @@ -55583,7 +55726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1710), [sym_block_comment] = ACTIONS(3), }, - [415] = { + [417] = { [ts_builtin_sym_end] = ACTIONS(1714), [sym_identifier] = ACTIONS(1716), [anon_sym_SEMI] = ACTIONS(1714), @@ -55660,7 +55803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1714), [sym_block_comment] = ACTIONS(3), }, - [416] = { + [418] = { [ts_builtin_sym_end] = ACTIONS(1718), [sym_identifier] = ACTIONS(1720), [anon_sym_SEMI] = ACTIONS(1718), @@ -55737,7 +55880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1718), [sym_block_comment] = ACTIONS(3), }, - [417] = { + [419] = { [ts_builtin_sym_end] = ACTIONS(1722), [sym_identifier] = ACTIONS(1724), [anon_sym_SEMI] = ACTIONS(1722), @@ -55814,7 +55957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1722), [sym_block_comment] = ACTIONS(3), }, - [418] = { + [420] = { [ts_builtin_sym_end] = ACTIONS(1726), [sym_identifier] = ACTIONS(1728), [anon_sym_SEMI] = ACTIONS(1726), @@ -55891,7 +56034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1726), [sym_block_comment] = ACTIONS(3), }, - [419] = { + [421] = { [ts_builtin_sym_end] = ACTIONS(1730), [sym_identifier] = ACTIONS(1732), [anon_sym_SEMI] = ACTIONS(1730), @@ -55968,7 +56111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1730), [sym_block_comment] = ACTIONS(3), }, - [420] = { + [422] = { [ts_builtin_sym_end] = ACTIONS(1734), [sym_identifier] = ACTIONS(1736), [anon_sym_SEMI] = ACTIONS(1734), @@ -56045,7 +56188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1734), [sym_block_comment] = ACTIONS(3), }, - [421] = { + [423] = { [ts_builtin_sym_end] = ACTIONS(1738), [sym_identifier] = ACTIONS(1740), [anon_sym_SEMI] = ACTIONS(1738), @@ -56122,7 +56265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1738), [sym_block_comment] = ACTIONS(3), }, - [422] = { + [424] = { [ts_builtin_sym_end] = ACTIONS(1742), [sym_identifier] = ACTIONS(1744), [anon_sym_SEMI] = ACTIONS(1742), @@ -56199,7 +56342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1742), [sym_block_comment] = ACTIONS(3), }, - [423] = { + [425] = { [ts_builtin_sym_end] = ACTIONS(1746), [sym_identifier] = ACTIONS(1748), [anon_sym_SEMI] = ACTIONS(1746), @@ -56276,7 +56419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1746), [sym_block_comment] = ACTIONS(3), }, - [424] = { + [426] = { [ts_builtin_sym_end] = ACTIONS(1750), [sym_identifier] = ACTIONS(1752), [anon_sym_SEMI] = ACTIONS(1750), @@ -56353,7 +56496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1750), [sym_block_comment] = ACTIONS(3), }, - [425] = { + [427] = { [ts_builtin_sym_end] = ACTIONS(1754), [sym_identifier] = ACTIONS(1756), [anon_sym_SEMI] = ACTIONS(1754), @@ -56430,7 +56573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1754), [sym_block_comment] = ACTIONS(3), }, - [426] = { + [428] = { [ts_builtin_sym_end] = ACTIONS(1758), [sym_identifier] = ACTIONS(1760), [anon_sym_SEMI] = ACTIONS(1758), @@ -56507,7 +56650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1758), [sym_block_comment] = ACTIONS(3), }, - [427] = { + [429] = { [ts_builtin_sym_end] = ACTIONS(1762), [sym_identifier] = ACTIONS(1764), [anon_sym_SEMI] = ACTIONS(1762), @@ -56584,7 +56727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1762), [sym_block_comment] = ACTIONS(3), }, - [428] = { + [430] = { [ts_builtin_sym_end] = ACTIONS(1766), [sym_identifier] = ACTIONS(1768), [anon_sym_SEMI] = ACTIONS(1766), @@ -56661,7 +56804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1766), [sym_block_comment] = ACTIONS(3), }, - [429] = { + [431] = { [ts_builtin_sym_end] = ACTIONS(1770), [sym_identifier] = ACTIONS(1772), [anon_sym_SEMI] = ACTIONS(1770), @@ -56738,7 +56881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1770), [sym_block_comment] = ACTIONS(3), }, - [430] = { + [432] = { [ts_builtin_sym_end] = ACTIONS(1774), [sym_identifier] = ACTIONS(1776), [anon_sym_SEMI] = ACTIONS(1774), @@ -56815,7 +56958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1774), [sym_block_comment] = ACTIONS(3), }, - [431] = { + [433] = { [ts_builtin_sym_end] = ACTIONS(1778), [sym_identifier] = ACTIONS(1780), [anon_sym_SEMI] = ACTIONS(1778), @@ -56892,7 +57035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1778), [sym_block_comment] = ACTIONS(3), }, - [432] = { + [434] = { [ts_builtin_sym_end] = ACTIONS(1782), [sym_identifier] = ACTIONS(1784), [anon_sym_SEMI] = ACTIONS(1782), @@ -56969,7 +57112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1782), [sym_block_comment] = ACTIONS(3), }, - [433] = { + [435] = { [ts_builtin_sym_end] = ACTIONS(1786), [sym_identifier] = ACTIONS(1788), [anon_sym_SEMI] = ACTIONS(1786), @@ -57046,7 +57189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1786), [sym_block_comment] = ACTIONS(3), }, - [434] = { + [436] = { [ts_builtin_sym_end] = ACTIONS(1790), [sym_identifier] = ACTIONS(1792), [anon_sym_SEMI] = ACTIONS(1790), @@ -57123,7 +57266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1790), [sym_block_comment] = ACTIONS(3), }, - [435] = { + [437] = { [ts_builtin_sym_end] = ACTIONS(1794), [sym_identifier] = ACTIONS(1796), [anon_sym_SEMI] = ACTIONS(1794), @@ -57200,2853 +57343,2699 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1794), [sym_block_comment] = ACTIONS(3), }, - [436] = { - [ts_builtin_sym_end] = ACTIONS(1798), - [sym_identifier] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_macro_rules_BANG] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_u8] = ACTIONS(1800), - [anon_sym_i8] = ACTIONS(1800), - [anon_sym_u16] = ACTIONS(1800), - [anon_sym_i16] = ACTIONS(1800), - [anon_sym_u32] = ACTIONS(1800), - [anon_sym_i32] = ACTIONS(1800), - [anon_sym_u64] = ACTIONS(1800), - [anon_sym_i64] = ACTIONS(1800), - [anon_sym_u128] = ACTIONS(1800), - [anon_sym_i128] = ACTIONS(1800), - [anon_sym_isize] = ACTIONS(1800), - [anon_sym_usize] = ACTIONS(1800), - [anon_sym_f32] = ACTIONS(1800), - [anon_sym_f64] = ACTIONS(1800), - [anon_sym_bool] = ACTIONS(1800), - [anon_sym_str] = ACTIONS(1800), - [anon_sym_char] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_async] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_default] = ACTIONS(1800), - [anon_sym_enum] = ACTIONS(1800), - [anon_sym_fn] = ACTIONS(1800), - [anon_sym_for] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_impl] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1800), - [anon_sym_loop] = ACTIONS(1800), - [anon_sym_match] = ACTIONS(1800), - [anon_sym_mod] = ACTIONS(1800), - [anon_sym_pub] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1800), - [anon_sym_struct] = ACTIONS(1800), - [anon_sym_trait] = ACTIONS(1800), - [anon_sym_type] = ACTIONS(1800), - [anon_sym_union] = ACTIONS(1800), - [anon_sym_unsafe] = ACTIONS(1800), - [anon_sym_use] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1800), - [anon_sym_LT] = ACTIONS(1798), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_yield] = ACTIONS(1800), - [anon_sym_move] = ACTIONS(1800), - [sym_integer_literal] = ACTIONS(1798), - [aux_sym_string_literal_token1] = ACTIONS(1798), - [sym_char_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1800), - [sym_super] = ACTIONS(1800), - [sym_crate] = ACTIONS(1800), - [sym_metavariable] = ACTIONS(1798), - [sym_raw_string_literal] = ACTIONS(1798), - [sym_float_literal] = ACTIONS(1798), - [sym_block_comment] = ACTIONS(3), - }, - [437] = { - [ts_builtin_sym_end] = ACTIONS(526), - [sym_identifier] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(526), - [anon_sym_macro_rules_BANG] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(526), - [anon_sym_RBRACE] = ACTIONS(526), - [anon_sym_LBRACK] = ACTIONS(526), - [anon_sym_STAR] = ACTIONS(526), - [anon_sym_u8] = ACTIONS(528), - [anon_sym_i8] = ACTIONS(528), - [anon_sym_u16] = ACTIONS(528), - [anon_sym_i16] = ACTIONS(528), - [anon_sym_u32] = ACTIONS(528), - [anon_sym_i32] = ACTIONS(528), - [anon_sym_u64] = ACTIONS(528), - [anon_sym_i64] = ACTIONS(528), - [anon_sym_u128] = ACTIONS(528), - [anon_sym_i128] = ACTIONS(528), - [anon_sym_isize] = ACTIONS(528), - [anon_sym_usize] = ACTIONS(528), - [anon_sym_f32] = ACTIONS(528), - [anon_sym_f64] = ACTIONS(528), - [anon_sym_bool] = ACTIONS(528), - [anon_sym_str] = ACTIONS(528), - [anon_sym_char] = ACTIONS(528), - [anon_sym_SQUOTE] = ACTIONS(528), - [anon_sym_async] = ACTIONS(528), - [anon_sym_break] = ACTIONS(528), - [anon_sym_const] = ACTIONS(528), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_default] = ACTIONS(528), - [anon_sym_enum] = ACTIONS(528), - [anon_sym_fn] = ACTIONS(528), - [anon_sym_for] = ACTIONS(528), - [anon_sym_if] = ACTIONS(528), - [anon_sym_impl] = ACTIONS(528), - [anon_sym_let] = ACTIONS(528), - [anon_sym_loop] = ACTIONS(528), - [anon_sym_match] = ACTIONS(528), - [anon_sym_mod] = ACTIONS(528), - [anon_sym_pub] = ACTIONS(528), - [anon_sym_return] = ACTIONS(528), - [anon_sym_static] = ACTIONS(528), - [anon_sym_struct] = ACTIONS(528), - [anon_sym_trait] = ACTIONS(528), - [anon_sym_type] = ACTIONS(528), - [anon_sym_union] = ACTIONS(528), - [anon_sym_unsafe] = ACTIONS(528), - [anon_sym_use] = ACTIONS(528), - [anon_sym_while] = ACTIONS(528), - [anon_sym_POUND] = ACTIONS(526), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_extern] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_COLON_COLON] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(526), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(526), - [anon_sym_yield] = ACTIONS(528), - [anon_sym_move] = ACTIONS(528), - [sym_integer_literal] = ACTIONS(526), - [aux_sym_string_literal_token1] = ACTIONS(526), - [sym_char_literal] = ACTIONS(526), - [anon_sym_true] = ACTIONS(528), - [anon_sym_false] = ACTIONS(528), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(528), - [sym_super] = ACTIONS(528), - [sym_crate] = ACTIONS(528), - [sym_metavariable] = ACTIONS(526), - [sym_raw_string_literal] = ACTIONS(526), - [sym_float_literal] = ACTIONS(526), - [sym_block_comment] = ACTIONS(3), - }, [438] = { - [ts_builtin_sym_end] = ACTIONS(1802), - [sym_identifier] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_macro_rules_BANG] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_u8] = ACTIONS(1804), - [anon_sym_i8] = ACTIONS(1804), - [anon_sym_u16] = ACTIONS(1804), - [anon_sym_i16] = ACTIONS(1804), - [anon_sym_u32] = ACTIONS(1804), - [anon_sym_i32] = ACTIONS(1804), - [anon_sym_u64] = ACTIONS(1804), - [anon_sym_i64] = ACTIONS(1804), - [anon_sym_u128] = ACTIONS(1804), - [anon_sym_i128] = ACTIONS(1804), - [anon_sym_isize] = ACTIONS(1804), - [anon_sym_usize] = ACTIONS(1804), - [anon_sym_f32] = ACTIONS(1804), - [anon_sym_f64] = ACTIONS(1804), - [anon_sym_bool] = ACTIONS(1804), - [anon_sym_str] = ACTIONS(1804), - [anon_sym_char] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_async] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_enum] = ACTIONS(1804), - [anon_sym_fn] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_impl] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_mod] = ACTIONS(1804), - [anon_sym_pub] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1804), - [anon_sym_struct] = ACTIONS(1804), - [anon_sym_trait] = ACTIONS(1804), - [anon_sym_type] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_unsafe] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_yield] = ACTIONS(1804), - [anon_sym_move] = ACTIONS(1804), - [sym_integer_literal] = ACTIONS(1802), - [aux_sym_string_literal_token1] = ACTIONS(1802), - [sym_char_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1804), - [sym_super] = ACTIONS(1804), - [sym_crate] = ACTIONS(1804), - [sym_metavariable] = ACTIONS(1802), - [sym_raw_string_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1802), + [sym_attribute_item] = STATE(560), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_macro_invocation] = STATE(2498), + [sym_scoped_identifier] = STATE(1586), + [sym_scoped_type_identifier] = STATE(2024), + [sym_match_arm] = STATE(505), + [sym_last_match_arm] = STATE(2528), + [sym_match_pattern] = STATE(2486), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1929), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_enum_variant_list_repeat1] = STATE(560), + [aux_sym_match_block_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [439] = { - [ts_builtin_sym_end] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_macro_rules_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_u8] = ACTIONS(1808), - [anon_sym_i8] = ACTIONS(1808), - [anon_sym_u16] = ACTIONS(1808), - [anon_sym_i16] = ACTIONS(1808), - [anon_sym_u32] = ACTIONS(1808), - [anon_sym_i32] = ACTIONS(1808), - [anon_sym_u64] = ACTIONS(1808), - [anon_sym_i64] = ACTIONS(1808), - [anon_sym_u128] = ACTIONS(1808), - [anon_sym_i128] = ACTIONS(1808), - [anon_sym_isize] = ACTIONS(1808), - [anon_sym_usize] = ACTIONS(1808), - [anon_sym_f32] = ACTIONS(1808), - [anon_sym_f64] = ACTIONS(1808), - [anon_sym_bool] = ACTIONS(1808), - [anon_sym_str] = ACTIONS(1808), - [anon_sym_char] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1808), - [anon_sym_enum] = ACTIONS(1808), - [anon_sym_fn] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_impl] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_mod] = ACTIONS(1808), - [anon_sym_pub] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1808), - [anon_sym_struct] = ACTIONS(1808), - [anon_sym_trait] = ACTIONS(1808), - [anon_sym_type] = ACTIONS(1808), - [anon_sym_union] = ACTIONS(1808), - [anon_sym_unsafe] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_yield] = ACTIONS(1808), - [anon_sym_move] = ACTIONS(1808), - [sym_integer_literal] = ACTIONS(1806), - [aux_sym_string_literal_token1] = ACTIONS(1806), - [sym_char_literal] = ACTIONS(1806), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1806), - [sym_raw_string_literal] = ACTIONS(1806), - [sym_float_literal] = ACTIONS(1806), + [ts_builtin_sym_end] = ACTIONS(1800), + [sym_identifier] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_macro_rules_BANG] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1800), + [anon_sym_u8] = ACTIONS(1802), + [anon_sym_i8] = ACTIONS(1802), + [anon_sym_u16] = ACTIONS(1802), + [anon_sym_i16] = ACTIONS(1802), + [anon_sym_u32] = ACTIONS(1802), + [anon_sym_i32] = ACTIONS(1802), + [anon_sym_u64] = ACTIONS(1802), + [anon_sym_i64] = ACTIONS(1802), + [anon_sym_u128] = ACTIONS(1802), + [anon_sym_i128] = ACTIONS(1802), + [anon_sym_isize] = ACTIONS(1802), + [anon_sym_usize] = ACTIONS(1802), + [anon_sym_f32] = ACTIONS(1802), + [anon_sym_f64] = ACTIONS(1802), + [anon_sym_bool] = ACTIONS(1802), + [anon_sym_str] = ACTIONS(1802), + [anon_sym_char] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_async] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1802), + [anon_sym_enum] = ACTIONS(1802), + [anon_sym_fn] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_impl] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_loop] = ACTIONS(1802), + [anon_sym_match] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_pub] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_struct] = ACTIONS(1802), + [anon_sym_trait] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1802), + [anon_sym_union] = ACTIONS(1802), + [anon_sym_unsafe] = ACTIONS(1802), + [anon_sym_use] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_AMP] = ACTIONS(1800), + [anon_sym_DOT_DOT] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_yield] = ACTIONS(1802), + [anon_sym_move] = ACTIONS(1802), + [sym_integer_literal] = ACTIONS(1800), + [aux_sym_string_literal_token1] = ACTIONS(1800), + [sym_char_literal] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1802), + [sym_super] = ACTIONS(1802), + [sym_crate] = ACTIONS(1802), + [sym_metavariable] = ACTIONS(1800), + [sym_raw_string_literal] = ACTIONS(1800), + [sym_float_literal] = ACTIONS(1800), [sym_block_comment] = ACTIONS(3), }, [440] = { - [ts_builtin_sym_end] = ACTIONS(1810), - [sym_identifier] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_macro_rules_BANG] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(1812), - [anon_sym_i8] = ACTIONS(1812), - [anon_sym_u16] = ACTIONS(1812), - [anon_sym_i16] = ACTIONS(1812), - [anon_sym_u32] = ACTIONS(1812), - [anon_sym_i32] = ACTIONS(1812), - [anon_sym_u64] = ACTIONS(1812), - [anon_sym_i64] = ACTIONS(1812), - [anon_sym_u128] = ACTIONS(1812), - [anon_sym_i128] = ACTIONS(1812), - [anon_sym_isize] = ACTIONS(1812), - [anon_sym_usize] = ACTIONS(1812), - [anon_sym_f32] = ACTIONS(1812), - [anon_sym_f64] = ACTIONS(1812), - [anon_sym_bool] = ACTIONS(1812), - [anon_sym_str] = ACTIONS(1812), - [anon_sym_char] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_default] = ACTIONS(1812), - [anon_sym_enum] = ACTIONS(1812), - [anon_sym_fn] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_impl] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_loop] = ACTIONS(1812), - [anon_sym_match] = ACTIONS(1812), - [anon_sym_mod] = ACTIONS(1812), - [anon_sym_pub] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_struct] = ACTIONS(1812), - [anon_sym_trait] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_union] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(1812), - [anon_sym_use] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_yield] = ACTIONS(1812), - [anon_sym_move] = ACTIONS(1812), - [sym_integer_literal] = ACTIONS(1810), - [aux_sym_string_literal_token1] = ACTIONS(1810), - [sym_char_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1812), - [anon_sym_false] = ACTIONS(1812), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_crate] = ACTIONS(1812), - [sym_metavariable] = ACTIONS(1810), - [sym_raw_string_literal] = ACTIONS(1810), - [sym_float_literal] = ACTIONS(1810), + [ts_builtin_sym_end] = ACTIONS(1804), + [sym_identifier] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_macro_rules_BANG] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_u8] = ACTIONS(1806), + [anon_sym_i8] = ACTIONS(1806), + [anon_sym_u16] = ACTIONS(1806), + [anon_sym_i16] = ACTIONS(1806), + [anon_sym_u32] = ACTIONS(1806), + [anon_sym_i32] = ACTIONS(1806), + [anon_sym_u64] = ACTIONS(1806), + [anon_sym_i64] = ACTIONS(1806), + [anon_sym_u128] = ACTIONS(1806), + [anon_sym_i128] = ACTIONS(1806), + [anon_sym_isize] = ACTIONS(1806), + [anon_sym_usize] = ACTIONS(1806), + [anon_sym_f32] = ACTIONS(1806), + [anon_sym_f64] = ACTIONS(1806), + [anon_sym_bool] = ACTIONS(1806), + [anon_sym_str] = ACTIONS(1806), + [anon_sym_char] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_break] = ACTIONS(1806), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_continue] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_fn] = ACTIONS(1806), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_impl] = ACTIONS(1806), + [anon_sym_let] = ACTIONS(1806), + [anon_sym_loop] = ACTIONS(1806), + [anon_sym_match] = ACTIONS(1806), + [anon_sym_mod] = ACTIONS(1806), + [anon_sym_pub] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1806), + [anon_sym_trait] = ACTIONS(1806), + [anon_sym_type] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_unsafe] = ACTIONS(1806), + [anon_sym_use] = ACTIONS(1806), + [anon_sym_while] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1804), + [anon_sym_extern] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(1804), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1804), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_yield] = ACTIONS(1806), + [anon_sym_move] = ACTIONS(1806), + [sym_integer_literal] = ACTIONS(1804), + [aux_sym_string_literal_token1] = ACTIONS(1804), + [sym_char_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1806), + [anon_sym_false] = ACTIONS(1806), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1804), + [sym_raw_string_literal] = ACTIONS(1804), + [sym_float_literal] = ACTIONS(1804), [sym_block_comment] = ACTIONS(3), }, [441] = { - [ts_builtin_sym_end] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_macro_rules_BANG] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_u8] = ACTIONS(1816), - [anon_sym_i8] = ACTIONS(1816), - [anon_sym_u16] = ACTIONS(1816), - [anon_sym_i16] = ACTIONS(1816), - [anon_sym_u32] = ACTIONS(1816), - [anon_sym_i32] = ACTIONS(1816), - [anon_sym_u64] = ACTIONS(1816), - [anon_sym_i64] = ACTIONS(1816), - [anon_sym_u128] = ACTIONS(1816), - [anon_sym_i128] = ACTIONS(1816), - [anon_sym_isize] = ACTIONS(1816), - [anon_sym_usize] = ACTIONS(1816), - [anon_sym_f32] = ACTIONS(1816), - [anon_sym_f64] = ACTIONS(1816), - [anon_sym_bool] = ACTIONS(1816), - [anon_sym_str] = ACTIONS(1816), - [anon_sym_char] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1816), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_fn] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_impl] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1816), - [anon_sym_pub] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1816), - [anon_sym_trait] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1816), - [anon_sym_unsafe] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_yield] = ACTIONS(1816), - [anon_sym_move] = ACTIONS(1816), - [sym_integer_literal] = ACTIONS(1814), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym_raw_string_literal] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), + [ts_builtin_sym_end] = ACTIONS(1808), + [sym_identifier] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_macro_rules_BANG] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1808), + [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_u8] = ACTIONS(1810), + [anon_sym_i8] = ACTIONS(1810), + [anon_sym_u16] = ACTIONS(1810), + [anon_sym_i16] = ACTIONS(1810), + [anon_sym_u32] = ACTIONS(1810), + [anon_sym_i32] = ACTIONS(1810), + [anon_sym_u64] = ACTIONS(1810), + [anon_sym_i64] = ACTIONS(1810), + [anon_sym_u128] = ACTIONS(1810), + [anon_sym_i128] = ACTIONS(1810), + [anon_sym_isize] = ACTIONS(1810), + [anon_sym_usize] = ACTIONS(1810), + [anon_sym_f32] = ACTIONS(1810), + [anon_sym_f64] = ACTIONS(1810), + [anon_sym_bool] = ACTIONS(1810), + [anon_sym_str] = ACTIONS(1810), + [anon_sym_char] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_async] = ACTIONS(1810), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1810), + [anon_sym_default] = ACTIONS(1810), + [anon_sym_enum] = ACTIONS(1810), + [anon_sym_fn] = ACTIONS(1810), + [anon_sym_for] = ACTIONS(1810), + [anon_sym_if] = ACTIONS(1810), + [anon_sym_impl] = ACTIONS(1810), + [anon_sym_let] = ACTIONS(1810), + [anon_sym_loop] = ACTIONS(1810), + [anon_sym_match] = ACTIONS(1810), + [anon_sym_mod] = ACTIONS(1810), + [anon_sym_pub] = ACTIONS(1810), + [anon_sym_return] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1810), + [anon_sym_struct] = ACTIONS(1810), + [anon_sym_trait] = ACTIONS(1810), + [anon_sym_type] = ACTIONS(1810), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_unsafe] = ACTIONS(1810), + [anon_sym_use] = ACTIONS(1810), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_extern] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1808), + [anon_sym_AMP] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_yield] = ACTIONS(1810), + [anon_sym_move] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [aux_sym_string_literal_token1] = ACTIONS(1808), + [sym_char_literal] = ACTIONS(1808), + [anon_sym_true] = ACTIONS(1810), + [anon_sym_false] = ACTIONS(1810), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1808), + [sym_raw_string_literal] = ACTIONS(1808), + [sym_float_literal] = ACTIONS(1808), [sym_block_comment] = ACTIONS(3), }, [442] = { - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_identifier] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_macro_rules_BANG] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_u8] = ACTIONS(1820), - [anon_sym_i8] = ACTIONS(1820), - [anon_sym_u16] = ACTIONS(1820), - [anon_sym_i16] = ACTIONS(1820), - [anon_sym_u32] = ACTIONS(1820), - [anon_sym_i32] = ACTIONS(1820), - [anon_sym_u64] = ACTIONS(1820), - [anon_sym_i64] = ACTIONS(1820), - [anon_sym_u128] = ACTIONS(1820), - [anon_sym_i128] = ACTIONS(1820), - [anon_sym_isize] = ACTIONS(1820), - [anon_sym_usize] = ACTIONS(1820), - [anon_sym_f32] = ACTIONS(1820), - [anon_sym_f64] = ACTIONS(1820), - [anon_sym_bool] = ACTIONS(1820), - [anon_sym_str] = ACTIONS(1820), - [anon_sym_char] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_enum] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_impl] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1820), - [anon_sym_pub] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_trait] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1820), - [anon_sym_unsafe] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_yield] = ACTIONS(1820), - [anon_sym_move] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [aux_sym_string_literal_token1] = ACTIONS(1818), - [sym_char_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1818), - [sym_raw_string_literal] = ACTIONS(1818), - [sym_float_literal] = ACTIONS(1818), + [ts_builtin_sym_end] = ACTIONS(1812), + [sym_identifier] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_macro_rules_BANG] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_STAR] = ACTIONS(1812), + [anon_sym_u8] = ACTIONS(1814), + [anon_sym_i8] = ACTIONS(1814), + [anon_sym_u16] = ACTIONS(1814), + [anon_sym_i16] = ACTIONS(1814), + [anon_sym_u32] = ACTIONS(1814), + [anon_sym_i32] = ACTIONS(1814), + [anon_sym_u64] = ACTIONS(1814), + [anon_sym_i64] = ACTIONS(1814), + [anon_sym_u128] = ACTIONS(1814), + [anon_sym_i128] = ACTIONS(1814), + [anon_sym_isize] = ACTIONS(1814), + [anon_sym_usize] = ACTIONS(1814), + [anon_sym_f32] = ACTIONS(1814), + [anon_sym_f64] = ACTIONS(1814), + [anon_sym_bool] = ACTIONS(1814), + [anon_sym_str] = ACTIONS(1814), + [anon_sym_char] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1814), + [anon_sym_async] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_const] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_default] = ACTIONS(1814), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_fn] = ACTIONS(1814), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_impl] = ACTIONS(1814), + [anon_sym_let] = ACTIONS(1814), + [anon_sym_loop] = ACTIONS(1814), + [anon_sym_match] = ACTIONS(1814), + [anon_sym_mod] = ACTIONS(1814), + [anon_sym_pub] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_static] = ACTIONS(1814), + [anon_sym_struct] = ACTIONS(1814), + [anon_sym_trait] = ACTIONS(1814), + [anon_sym_type] = ACTIONS(1814), + [anon_sym_union] = ACTIONS(1814), + [anon_sym_unsafe] = ACTIONS(1814), + [anon_sym_use] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_POUND] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1812), + [anon_sym_extern] = ACTIONS(1814), + [anon_sym_LT] = ACTIONS(1812), + [anon_sym_COLON_COLON] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1812), + [anon_sym_DOT_DOT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_yield] = ACTIONS(1814), + [anon_sym_move] = ACTIONS(1814), + [sym_integer_literal] = ACTIONS(1812), + [aux_sym_string_literal_token1] = ACTIONS(1812), + [sym_char_literal] = ACTIONS(1812), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1814), + [sym_super] = ACTIONS(1814), + [sym_crate] = ACTIONS(1814), + [sym_metavariable] = ACTIONS(1812), + [sym_raw_string_literal] = ACTIONS(1812), + [sym_float_literal] = ACTIONS(1812), [sym_block_comment] = ACTIONS(3), }, [443] = { - [ts_builtin_sym_end] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_macro_rules_BANG] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_u8] = ACTIONS(1824), - [anon_sym_i8] = ACTIONS(1824), - [anon_sym_u16] = ACTIONS(1824), - [anon_sym_i16] = ACTIONS(1824), - [anon_sym_u32] = ACTIONS(1824), - [anon_sym_i32] = ACTIONS(1824), - [anon_sym_u64] = ACTIONS(1824), - [anon_sym_i64] = ACTIONS(1824), - [anon_sym_u128] = ACTIONS(1824), - [anon_sym_i128] = ACTIONS(1824), - [anon_sym_isize] = ACTIONS(1824), - [anon_sym_usize] = ACTIONS(1824), - [anon_sym_f32] = ACTIONS(1824), - [anon_sym_f64] = ACTIONS(1824), - [anon_sym_bool] = ACTIONS(1824), - [anon_sym_str] = ACTIONS(1824), - [anon_sym_char] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1824), - [anon_sym_enum] = ACTIONS(1824), - [anon_sym_fn] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_mod] = ACTIONS(1824), - [anon_sym_pub] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1824), - [anon_sym_trait] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1824), - [anon_sym_unsafe] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_yield] = ACTIONS(1824), - [anon_sym_move] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [aux_sym_string_literal_token1] = ACTIONS(1822), - [sym_char_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym_raw_string_literal] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), + [ts_builtin_sym_end] = ACTIONS(1816), + [sym_identifier] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_macro_rules_BANG] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_STAR] = ACTIONS(1816), + [anon_sym_u8] = ACTIONS(1818), + [anon_sym_i8] = ACTIONS(1818), + [anon_sym_u16] = ACTIONS(1818), + [anon_sym_i16] = ACTIONS(1818), + [anon_sym_u32] = ACTIONS(1818), + [anon_sym_i32] = ACTIONS(1818), + [anon_sym_u64] = ACTIONS(1818), + [anon_sym_i64] = ACTIONS(1818), + [anon_sym_u128] = ACTIONS(1818), + [anon_sym_i128] = ACTIONS(1818), + [anon_sym_isize] = ACTIONS(1818), + [anon_sym_usize] = ACTIONS(1818), + [anon_sym_f32] = ACTIONS(1818), + [anon_sym_f64] = ACTIONS(1818), + [anon_sym_bool] = ACTIONS(1818), + [anon_sym_str] = ACTIONS(1818), + [anon_sym_char] = ACTIONS(1818), + [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_async] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_default] = ACTIONS(1818), + [anon_sym_enum] = ACTIONS(1818), + [anon_sym_fn] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_impl] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_loop] = ACTIONS(1818), + [anon_sym_match] = ACTIONS(1818), + [anon_sym_mod] = ACTIONS(1818), + [anon_sym_pub] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_static] = ACTIONS(1818), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_trait] = ACTIONS(1818), + [anon_sym_type] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1818), + [anon_sym_unsafe] = ACTIONS(1818), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_extern] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1816), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1816), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_yield] = ACTIONS(1818), + [anon_sym_move] = ACTIONS(1818), + [sym_integer_literal] = ACTIONS(1816), + [aux_sym_string_literal_token1] = ACTIONS(1816), + [sym_char_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1818), + [anon_sym_false] = ACTIONS(1818), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1818), + [sym_super] = ACTIONS(1818), + [sym_crate] = ACTIONS(1818), + [sym_metavariable] = ACTIONS(1816), + [sym_raw_string_literal] = ACTIONS(1816), + [sym_float_literal] = ACTIONS(1816), [sym_block_comment] = ACTIONS(3), }, [444] = { - [ts_builtin_sym_end] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_macro_rules_BANG] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_u8] = ACTIONS(1828), - [anon_sym_i8] = ACTIONS(1828), - [anon_sym_u16] = ACTIONS(1828), - [anon_sym_i16] = ACTIONS(1828), - [anon_sym_u32] = ACTIONS(1828), - [anon_sym_i32] = ACTIONS(1828), - [anon_sym_u64] = ACTIONS(1828), - [anon_sym_i64] = ACTIONS(1828), - [anon_sym_u128] = ACTIONS(1828), - [anon_sym_i128] = ACTIONS(1828), - [anon_sym_isize] = ACTIONS(1828), - [anon_sym_usize] = ACTIONS(1828), - [anon_sym_f32] = ACTIONS(1828), - [anon_sym_f64] = ACTIONS(1828), - [anon_sym_bool] = ACTIONS(1828), - [anon_sym_str] = ACTIONS(1828), - [anon_sym_char] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1828), - [anon_sym_fn] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_impl] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_mod] = ACTIONS(1828), - [anon_sym_pub] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_struct] = ACTIONS(1828), - [anon_sym_trait] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_union] = ACTIONS(1828), - [anon_sym_unsafe] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_yield] = ACTIONS(1828), - [anon_sym_move] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [aux_sym_string_literal_token1] = ACTIONS(1826), - [sym_char_literal] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym_raw_string_literal] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), + [ts_builtin_sym_end] = ACTIONS(1820), + [sym_identifier] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_macro_rules_BANG] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_u8] = ACTIONS(1822), + [anon_sym_i8] = ACTIONS(1822), + [anon_sym_u16] = ACTIONS(1822), + [anon_sym_i16] = ACTIONS(1822), + [anon_sym_u32] = ACTIONS(1822), + [anon_sym_i32] = ACTIONS(1822), + [anon_sym_u64] = ACTIONS(1822), + [anon_sym_i64] = ACTIONS(1822), + [anon_sym_u128] = ACTIONS(1822), + [anon_sym_i128] = ACTIONS(1822), + [anon_sym_isize] = ACTIONS(1822), + [anon_sym_usize] = ACTIONS(1822), + [anon_sym_f32] = ACTIONS(1822), + [anon_sym_f64] = ACTIONS(1822), + [anon_sym_bool] = ACTIONS(1822), + [anon_sym_str] = ACTIONS(1822), + [anon_sym_char] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_async] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_default] = ACTIONS(1822), + [anon_sym_enum] = ACTIONS(1822), + [anon_sym_fn] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_impl] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_loop] = ACTIONS(1822), + [anon_sym_match] = ACTIONS(1822), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_pub] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_static] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1822), + [anon_sym_trait] = ACTIONS(1822), + [anon_sym_type] = ACTIONS(1822), + [anon_sym_union] = ACTIONS(1822), + [anon_sym_unsafe] = ACTIONS(1822), + [anon_sym_use] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1820), + [anon_sym_BANG] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_COLON_COLON] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1820), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_yield] = ACTIONS(1822), + [anon_sym_move] = ACTIONS(1822), + [sym_integer_literal] = ACTIONS(1820), + [aux_sym_string_literal_token1] = ACTIONS(1820), + [sym_char_literal] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1822), + [sym_super] = ACTIONS(1822), + [sym_crate] = ACTIONS(1822), + [sym_metavariable] = ACTIONS(1820), + [sym_raw_string_literal] = ACTIONS(1820), + [sym_float_literal] = ACTIONS(1820), [sym_block_comment] = ACTIONS(3), }, [445] = { - [ts_builtin_sym_end] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_macro_rules_BANG] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(550), - [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_SQUOTE] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_POUND] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(550), - [anon_sym_extern] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_COLON_COLON] = ACTIONS(550), - [anon_sym_AMP] = ACTIONS(550), - [anon_sym_DOT_DOT] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_yield] = ACTIONS(552), - [anon_sym_move] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(550), - [aux_sym_string_literal_token1] = ACTIONS(550), - [sym_char_literal] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(550), - [sym_raw_string_literal] = ACTIONS(550), - [sym_float_literal] = ACTIONS(550), + [ts_builtin_sym_end] = ACTIONS(1824), + [sym_identifier] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_macro_rules_BANG] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_STAR] = ACTIONS(1824), + [anon_sym_u8] = ACTIONS(1826), + [anon_sym_i8] = ACTIONS(1826), + [anon_sym_u16] = ACTIONS(1826), + [anon_sym_i16] = ACTIONS(1826), + [anon_sym_u32] = ACTIONS(1826), + [anon_sym_i32] = ACTIONS(1826), + [anon_sym_u64] = ACTIONS(1826), + [anon_sym_i64] = ACTIONS(1826), + [anon_sym_u128] = ACTIONS(1826), + [anon_sym_i128] = ACTIONS(1826), + [anon_sym_isize] = ACTIONS(1826), + [anon_sym_usize] = ACTIONS(1826), + [anon_sym_f32] = ACTIONS(1826), + [anon_sym_f64] = ACTIONS(1826), + [anon_sym_bool] = ACTIONS(1826), + [anon_sym_str] = ACTIONS(1826), + [anon_sym_char] = ACTIONS(1826), + [anon_sym_SQUOTE] = ACTIONS(1826), + [anon_sym_async] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_enum] = ACTIONS(1826), + [anon_sym_fn] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_impl] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_mod] = ACTIONS(1826), + [anon_sym_pub] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_static] = ACTIONS(1826), + [anon_sym_struct] = ACTIONS(1826), + [anon_sym_trait] = ACTIONS(1826), + [anon_sym_type] = ACTIONS(1826), + [anon_sym_union] = ACTIONS(1826), + [anon_sym_unsafe] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1824), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_yield] = ACTIONS(1826), + [anon_sym_move] = ACTIONS(1826), + [sym_integer_literal] = ACTIONS(1824), + [aux_sym_string_literal_token1] = ACTIONS(1824), + [sym_char_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1826), + [sym_super] = ACTIONS(1826), + [sym_crate] = ACTIONS(1826), + [sym_metavariable] = ACTIONS(1824), + [sym_raw_string_literal] = ACTIONS(1824), + [sym_float_literal] = ACTIONS(1824), [sym_block_comment] = ACTIONS(3), }, [446] = { - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_macro_rules_BANG] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_u8] = ACTIONS(1832), - [anon_sym_i8] = ACTIONS(1832), - [anon_sym_u16] = ACTIONS(1832), - [anon_sym_i16] = ACTIONS(1832), - [anon_sym_u32] = ACTIONS(1832), - [anon_sym_i32] = ACTIONS(1832), - [anon_sym_u64] = ACTIONS(1832), - [anon_sym_i64] = ACTIONS(1832), - [anon_sym_u128] = ACTIONS(1832), - [anon_sym_i128] = ACTIONS(1832), - [anon_sym_isize] = ACTIONS(1832), - [anon_sym_usize] = ACTIONS(1832), - [anon_sym_f32] = ACTIONS(1832), - [anon_sym_f64] = ACTIONS(1832), - [anon_sym_bool] = ACTIONS(1832), - [anon_sym_str] = ACTIONS(1832), - [anon_sym_char] = ACTIONS(1832), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [anon_sym_fn] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_impl] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_mod] = ACTIONS(1832), - [anon_sym_pub] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_struct] = ACTIONS(1832), - [anon_sym_trait] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_unsafe] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_COLON_COLON] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_yield] = ACTIONS(1832), - [anon_sym_move] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1830), - [aux_sym_string_literal_token1] = ACTIONS(1830), - [sym_char_literal] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_crate] = ACTIONS(1832), - [sym_metavariable] = ACTIONS(1830), - [sym_raw_string_literal] = ACTIONS(1830), - [sym_float_literal] = ACTIONS(1830), + [ts_builtin_sym_end] = ACTIONS(1828), + [sym_identifier] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_macro_rules_BANG] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_STAR] = ACTIONS(1828), + [anon_sym_u8] = ACTIONS(1830), + [anon_sym_i8] = ACTIONS(1830), + [anon_sym_u16] = ACTIONS(1830), + [anon_sym_i16] = ACTIONS(1830), + [anon_sym_u32] = ACTIONS(1830), + [anon_sym_i32] = ACTIONS(1830), + [anon_sym_u64] = ACTIONS(1830), + [anon_sym_i64] = ACTIONS(1830), + [anon_sym_u128] = ACTIONS(1830), + [anon_sym_i128] = ACTIONS(1830), + [anon_sym_isize] = ACTIONS(1830), + [anon_sym_usize] = ACTIONS(1830), + [anon_sym_f32] = ACTIONS(1830), + [anon_sym_f64] = ACTIONS(1830), + [anon_sym_bool] = ACTIONS(1830), + [anon_sym_str] = ACTIONS(1830), + [anon_sym_char] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [anon_sym_async] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_const] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_enum] = ACTIONS(1830), + [anon_sym_fn] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_impl] = ACTIONS(1830), + [anon_sym_let] = ACTIONS(1830), + [anon_sym_loop] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_mod] = ACTIONS(1830), + [anon_sym_pub] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1830), + [anon_sym_struct] = ACTIONS(1830), + [anon_sym_trait] = ACTIONS(1830), + [anon_sym_type] = ACTIONS(1830), + [anon_sym_union] = ACTIONS(1830), + [anon_sym_unsafe] = ACTIONS(1830), + [anon_sym_use] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1828), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_extern] = ACTIONS(1830), + [anon_sym_LT] = ACTIONS(1828), + [anon_sym_COLON_COLON] = ACTIONS(1828), + [anon_sym_AMP] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_yield] = ACTIONS(1830), + [anon_sym_move] = ACTIONS(1830), + [sym_integer_literal] = ACTIONS(1828), + [aux_sym_string_literal_token1] = ACTIONS(1828), + [sym_char_literal] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1830), + [anon_sym_false] = ACTIONS(1830), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1830), + [sym_super] = ACTIONS(1830), + [sym_crate] = ACTIONS(1830), + [sym_metavariable] = ACTIONS(1828), + [sym_raw_string_literal] = ACTIONS(1828), + [sym_float_literal] = ACTIONS(1828), [sym_block_comment] = ACTIONS(3), }, [447] = { - [ts_builtin_sym_end] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_macro_rules_BANG] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_u8] = ACTIONS(1836), - [anon_sym_i8] = ACTIONS(1836), - [anon_sym_u16] = ACTIONS(1836), - [anon_sym_i16] = ACTIONS(1836), - [anon_sym_u32] = ACTIONS(1836), - [anon_sym_i32] = ACTIONS(1836), - [anon_sym_u64] = ACTIONS(1836), - [anon_sym_i64] = ACTIONS(1836), - [anon_sym_u128] = ACTIONS(1836), - [anon_sym_i128] = ACTIONS(1836), - [anon_sym_isize] = ACTIONS(1836), - [anon_sym_usize] = ACTIONS(1836), - [anon_sym_f32] = ACTIONS(1836), - [anon_sym_f64] = ACTIONS(1836), - [anon_sym_bool] = ACTIONS(1836), - [anon_sym_str] = ACTIONS(1836), - [anon_sym_char] = ACTIONS(1836), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_fn] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_impl] = ACTIONS(1836), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_loop] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_mod] = ACTIONS(1836), - [anon_sym_pub] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_trait] = ACTIONS(1836), - [anon_sym_type] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1836), - [anon_sym_unsafe] = ACTIONS(1836), - [anon_sym_use] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_COLON_COLON] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_move] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(1834), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1836), - [sym_super] = ACTIONS(1836), - [sym_crate] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1834), - [sym_raw_string_literal] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(1832), + [sym_identifier] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_macro_rules_BANG] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1832), + [anon_sym_STAR] = ACTIONS(1832), + [anon_sym_u8] = ACTIONS(1834), + [anon_sym_i8] = ACTIONS(1834), + [anon_sym_u16] = ACTIONS(1834), + [anon_sym_i16] = ACTIONS(1834), + [anon_sym_u32] = ACTIONS(1834), + [anon_sym_i32] = ACTIONS(1834), + [anon_sym_u64] = ACTIONS(1834), + [anon_sym_i64] = ACTIONS(1834), + [anon_sym_u128] = ACTIONS(1834), + [anon_sym_i128] = ACTIONS(1834), + [anon_sym_isize] = ACTIONS(1834), + [anon_sym_usize] = ACTIONS(1834), + [anon_sym_f32] = ACTIONS(1834), + [anon_sym_f64] = ACTIONS(1834), + [anon_sym_bool] = ACTIONS(1834), + [anon_sym_str] = ACTIONS(1834), + [anon_sym_char] = ACTIONS(1834), + [anon_sym_SQUOTE] = ACTIONS(1834), + [anon_sym_async] = ACTIONS(1834), + [anon_sym_break] = ACTIONS(1834), + [anon_sym_const] = ACTIONS(1834), + [anon_sym_continue] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1834), + [anon_sym_enum] = ACTIONS(1834), + [anon_sym_fn] = ACTIONS(1834), + [anon_sym_for] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_impl] = ACTIONS(1834), + [anon_sym_let] = ACTIONS(1834), + [anon_sym_loop] = ACTIONS(1834), + [anon_sym_match] = ACTIONS(1834), + [anon_sym_mod] = ACTIONS(1834), + [anon_sym_pub] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_static] = ACTIONS(1834), + [anon_sym_struct] = ACTIONS(1834), + [anon_sym_trait] = ACTIONS(1834), + [anon_sym_type] = ACTIONS(1834), + [anon_sym_union] = ACTIONS(1834), + [anon_sym_unsafe] = ACTIONS(1834), + [anon_sym_use] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [anon_sym_POUND] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1832), + [anon_sym_extern] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_COLON_COLON] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1832), + [anon_sym_DOT_DOT] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_yield] = ACTIONS(1834), + [anon_sym_move] = ACTIONS(1834), + [sym_integer_literal] = ACTIONS(1832), + [aux_sym_string_literal_token1] = ACTIONS(1832), + [sym_char_literal] = ACTIONS(1832), + [anon_sym_true] = ACTIONS(1834), + [anon_sym_false] = ACTIONS(1834), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1834), + [sym_super] = ACTIONS(1834), + [sym_crate] = ACTIONS(1834), + [sym_metavariable] = ACTIONS(1832), + [sym_raw_string_literal] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1832), [sym_block_comment] = ACTIONS(3), }, [448] = { - [ts_builtin_sym_end] = ACTIONS(1838), - [sym_identifier] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_macro_rules_BANG] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_u8] = ACTIONS(1840), - [anon_sym_i8] = ACTIONS(1840), - [anon_sym_u16] = ACTIONS(1840), - [anon_sym_i16] = ACTIONS(1840), - [anon_sym_u32] = ACTIONS(1840), - [anon_sym_i32] = ACTIONS(1840), - [anon_sym_u64] = ACTIONS(1840), - [anon_sym_i64] = ACTIONS(1840), - [anon_sym_u128] = ACTIONS(1840), - [anon_sym_i128] = ACTIONS(1840), - [anon_sym_isize] = ACTIONS(1840), - [anon_sym_usize] = ACTIONS(1840), - [anon_sym_f32] = ACTIONS(1840), - [anon_sym_f64] = ACTIONS(1840), - [anon_sym_bool] = ACTIONS(1840), - [anon_sym_str] = ACTIONS(1840), - [anon_sym_char] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_fn] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_impl] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_mod] = ACTIONS(1840), - [anon_sym_pub] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [anon_sym_trait] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_unsafe] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_COLON_COLON] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_yield] = ACTIONS(1840), - [anon_sym_move] = ACTIONS(1840), - [sym_integer_literal] = ACTIONS(1838), - [aux_sym_string_literal_token1] = ACTIONS(1838), - [sym_char_literal] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1840), - [anon_sym_false] = ACTIONS(1840), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1840), - [sym_super] = ACTIONS(1840), - [sym_crate] = ACTIONS(1840), - [sym_metavariable] = ACTIONS(1838), - [sym_raw_string_literal] = ACTIONS(1838), - [sym_float_literal] = ACTIONS(1838), + [ts_builtin_sym_end] = ACTIONS(1836), + [sym_identifier] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_macro_rules_BANG] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1836), + [anon_sym_LBRACK] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_u8] = ACTIONS(1838), + [anon_sym_i8] = ACTIONS(1838), + [anon_sym_u16] = ACTIONS(1838), + [anon_sym_i16] = ACTIONS(1838), + [anon_sym_u32] = ACTIONS(1838), + [anon_sym_i32] = ACTIONS(1838), + [anon_sym_u64] = ACTIONS(1838), + [anon_sym_i64] = ACTIONS(1838), + [anon_sym_u128] = ACTIONS(1838), + [anon_sym_i128] = ACTIONS(1838), + [anon_sym_isize] = ACTIONS(1838), + [anon_sym_usize] = ACTIONS(1838), + [anon_sym_f32] = ACTIONS(1838), + [anon_sym_f64] = ACTIONS(1838), + [anon_sym_bool] = ACTIONS(1838), + [anon_sym_str] = ACTIONS(1838), + [anon_sym_char] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [anon_sym_async] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_enum] = ACTIONS(1838), + [anon_sym_fn] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_impl] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_mod] = ACTIONS(1838), + [anon_sym_pub] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1838), + [anon_sym_struct] = ACTIONS(1838), + [anon_sym_trait] = ACTIONS(1838), + [anon_sym_type] = ACTIONS(1838), + [anon_sym_union] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1836), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_COLON_COLON] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1836), + [anon_sym_DOT_DOT] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_yield] = ACTIONS(1838), + [anon_sym_move] = ACTIONS(1838), + [sym_integer_literal] = ACTIONS(1836), + [aux_sym_string_literal_token1] = ACTIONS(1836), + [sym_char_literal] = ACTIONS(1836), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1838), + [sym_super] = ACTIONS(1838), + [sym_crate] = ACTIONS(1838), + [sym_metavariable] = ACTIONS(1836), + [sym_raw_string_literal] = ACTIONS(1836), + [sym_float_literal] = ACTIONS(1836), [sym_block_comment] = ACTIONS(3), }, [449] = { - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_macro_rules_BANG] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_u8] = ACTIONS(1844), - [anon_sym_i8] = ACTIONS(1844), - [anon_sym_u16] = ACTIONS(1844), - [anon_sym_i16] = ACTIONS(1844), - [anon_sym_u32] = ACTIONS(1844), - [anon_sym_i32] = ACTIONS(1844), - [anon_sym_u64] = ACTIONS(1844), - [anon_sym_i64] = ACTIONS(1844), - [anon_sym_u128] = ACTIONS(1844), - [anon_sym_i128] = ACTIONS(1844), - [anon_sym_isize] = ACTIONS(1844), - [anon_sym_usize] = ACTIONS(1844), - [anon_sym_f32] = ACTIONS(1844), - [anon_sym_f64] = ACTIONS(1844), - [anon_sym_bool] = ACTIONS(1844), - [anon_sym_str] = ACTIONS(1844), - [anon_sym_char] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_fn] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_impl] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_mod] = ACTIONS(1844), - [anon_sym_pub] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [anon_sym_trait] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsafe] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_COLON_COLON] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_yield] = ACTIONS(1844), - [anon_sym_move] = ACTIONS(1844), - [sym_integer_literal] = ACTIONS(1842), - [aux_sym_string_literal_token1] = ACTIONS(1842), - [sym_char_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1844), - [sym_super] = ACTIONS(1844), - [sym_crate] = ACTIONS(1844), - [sym_metavariable] = ACTIONS(1842), - [sym_raw_string_literal] = ACTIONS(1842), - [sym_float_literal] = ACTIONS(1842), + [ts_builtin_sym_end] = ACTIONS(1840), + [sym_identifier] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_macro_rules_BANG] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_LBRACK] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1840), + [anon_sym_u8] = ACTIONS(1842), + [anon_sym_i8] = ACTIONS(1842), + [anon_sym_u16] = ACTIONS(1842), + [anon_sym_i16] = ACTIONS(1842), + [anon_sym_u32] = ACTIONS(1842), + [anon_sym_i32] = ACTIONS(1842), + [anon_sym_u64] = ACTIONS(1842), + [anon_sym_i64] = ACTIONS(1842), + [anon_sym_u128] = ACTIONS(1842), + [anon_sym_i128] = ACTIONS(1842), + [anon_sym_isize] = ACTIONS(1842), + [anon_sym_usize] = ACTIONS(1842), + [anon_sym_f32] = ACTIONS(1842), + [anon_sym_f64] = ACTIONS(1842), + [anon_sym_bool] = ACTIONS(1842), + [anon_sym_str] = ACTIONS(1842), + [anon_sym_char] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [anon_sym_async] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1842), + [anon_sym_const] = ACTIONS(1842), + [anon_sym_continue] = ACTIONS(1842), + [anon_sym_default] = ACTIONS(1842), + [anon_sym_enum] = ACTIONS(1842), + [anon_sym_fn] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_impl] = ACTIONS(1842), + [anon_sym_let] = ACTIONS(1842), + [anon_sym_loop] = ACTIONS(1842), + [anon_sym_match] = ACTIONS(1842), + [anon_sym_mod] = ACTIONS(1842), + [anon_sym_pub] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1842), + [anon_sym_struct] = ACTIONS(1842), + [anon_sym_trait] = ACTIONS(1842), + [anon_sym_type] = ACTIONS(1842), + [anon_sym_union] = ACTIONS(1842), + [anon_sym_unsafe] = ACTIONS(1842), + [anon_sym_use] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(1840), + [anon_sym_BANG] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_COLON_COLON] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_DOT_DOT] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1840), + [anon_sym_yield] = ACTIONS(1842), + [anon_sym_move] = ACTIONS(1842), + [sym_integer_literal] = ACTIONS(1840), + [aux_sym_string_literal_token1] = ACTIONS(1840), + [sym_char_literal] = ACTIONS(1840), + [anon_sym_true] = ACTIONS(1842), + [anon_sym_false] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1842), + [sym_super] = ACTIONS(1842), + [sym_crate] = ACTIONS(1842), + [sym_metavariable] = ACTIONS(1840), + [sym_raw_string_literal] = ACTIONS(1840), + [sym_float_literal] = ACTIONS(1840), [sym_block_comment] = ACTIONS(3), }, [450] = { - [ts_builtin_sym_end] = ACTIONS(1846), - [sym_identifier] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_macro_rules_BANG] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_u8] = ACTIONS(1848), - [anon_sym_i8] = ACTIONS(1848), - [anon_sym_u16] = ACTIONS(1848), - [anon_sym_i16] = ACTIONS(1848), - [anon_sym_u32] = ACTIONS(1848), - [anon_sym_i32] = ACTIONS(1848), - [anon_sym_u64] = ACTIONS(1848), - [anon_sym_i64] = ACTIONS(1848), - [anon_sym_u128] = ACTIONS(1848), - [anon_sym_i128] = ACTIONS(1848), - [anon_sym_isize] = ACTIONS(1848), - [anon_sym_usize] = ACTIONS(1848), - [anon_sym_f32] = ACTIONS(1848), - [anon_sym_f64] = ACTIONS(1848), - [anon_sym_bool] = ACTIONS(1848), - [anon_sym_str] = ACTIONS(1848), - [anon_sym_char] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_async] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_default] = ACTIONS(1848), - [anon_sym_enum] = ACTIONS(1848), - [anon_sym_fn] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_impl] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_mod] = ACTIONS(1848), - [anon_sym_pub] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1848), - [anon_sym_struct] = ACTIONS(1848), - [anon_sym_trait] = ACTIONS(1848), - [anon_sym_type] = ACTIONS(1848), - [anon_sym_union] = ACTIONS(1848), - [anon_sym_unsafe] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_COLON_COLON] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_yield] = ACTIONS(1848), - [anon_sym_move] = ACTIONS(1848), - [sym_integer_literal] = ACTIONS(1846), - [aux_sym_string_literal_token1] = ACTIONS(1846), - [sym_char_literal] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1848), - [sym_super] = ACTIONS(1848), - [sym_crate] = ACTIONS(1848), - [sym_metavariable] = ACTIONS(1846), - [sym_raw_string_literal] = ACTIONS(1846), - [sym_float_literal] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(1844), + [sym_identifier] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_macro_rules_BANG] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1844), + [anon_sym_u8] = ACTIONS(1846), + [anon_sym_i8] = ACTIONS(1846), + [anon_sym_u16] = ACTIONS(1846), + [anon_sym_i16] = ACTIONS(1846), + [anon_sym_u32] = ACTIONS(1846), + [anon_sym_i32] = ACTIONS(1846), + [anon_sym_u64] = ACTIONS(1846), + [anon_sym_i64] = ACTIONS(1846), + [anon_sym_u128] = ACTIONS(1846), + [anon_sym_i128] = ACTIONS(1846), + [anon_sym_isize] = ACTIONS(1846), + [anon_sym_usize] = ACTIONS(1846), + [anon_sym_f32] = ACTIONS(1846), + [anon_sym_f64] = ACTIONS(1846), + [anon_sym_bool] = ACTIONS(1846), + [anon_sym_str] = ACTIONS(1846), + [anon_sym_char] = ACTIONS(1846), + [anon_sym_SQUOTE] = ACTIONS(1846), + [anon_sym_async] = ACTIONS(1846), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_const] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_enum] = ACTIONS(1846), + [anon_sym_fn] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_impl] = ACTIONS(1846), + [anon_sym_let] = ACTIONS(1846), + [anon_sym_loop] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_mod] = ACTIONS(1846), + [anon_sym_pub] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_static] = ACTIONS(1846), + [anon_sym_struct] = ACTIONS(1846), + [anon_sym_trait] = ACTIONS(1846), + [anon_sym_type] = ACTIONS(1846), + [anon_sym_union] = ACTIONS(1846), + [anon_sym_unsafe] = ACTIONS(1846), + [anon_sym_use] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_extern] = ACTIONS(1846), + [anon_sym_LT] = ACTIONS(1844), + [anon_sym_COLON_COLON] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_DOT_DOT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_yield] = ACTIONS(1846), + [anon_sym_move] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(1844), + [aux_sym_string_literal_token1] = ACTIONS(1844), + [sym_char_literal] = ACTIONS(1844), + [anon_sym_true] = ACTIONS(1846), + [anon_sym_false] = ACTIONS(1846), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1846), + [sym_super] = ACTIONS(1846), + [sym_crate] = ACTIONS(1846), + [sym_metavariable] = ACTIONS(1844), + [sym_raw_string_literal] = ACTIONS(1844), + [sym_float_literal] = ACTIONS(1844), [sym_block_comment] = ACTIONS(3), }, [451] = { - [ts_builtin_sym_end] = ACTIONS(536), - [sym_identifier] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_macro_rules_BANG] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_STAR] = ACTIONS(536), - [anon_sym_u8] = ACTIONS(538), - [anon_sym_i8] = ACTIONS(538), - [anon_sym_u16] = ACTIONS(538), - [anon_sym_i16] = ACTIONS(538), - [anon_sym_u32] = ACTIONS(538), - [anon_sym_i32] = ACTIONS(538), - [anon_sym_u64] = ACTIONS(538), - [anon_sym_i64] = ACTIONS(538), - [anon_sym_u128] = ACTIONS(538), - [anon_sym_i128] = ACTIONS(538), - [anon_sym_isize] = ACTIONS(538), - [anon_sym_usize] = ACTIONS(538), - [anon_sym_f32] = ACTIONS(538), - [anon_sym_f64] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(538), - [anon_sym_str] = ACTIONS(538), - [anon_sym_char] = ACTIONS(538), - [anon_sym_SQUOTE] = ACTIONS(538), - [anon_sym_async] = ACTIONS(538), - [anon_sym_break] = ACTIONS(538), - [anon_sym_const] = ACTIONS(538), - [anon_sym_continue] = ACTIONS(538), - [anon_sym_default] = ACTIONS(538), - [anon_sym_enum] = ACTIONS(538), - [anon_sym_fn] = ACTIONS(538), - [anon_sym_for] = ACTIONS(538), - [anon_sym_if] = ACTIONS(538), - [anon_sym_impl] = ACTIONS(538), - [anon_sym_let] = ACTIONS(538), - [anon_sym_loop] = ACTIONS(538), - [anon_sym_match] = ACTIONS(538), - [anon_sym_mod] = ACTIONS(538), - [anon_sym_pub] = ACTIONS(538), - [anon_sym_return] = ACTIONS(538), - [anon_sym_static] = ACTIONS(538), - [anon_sym_struct] = ACTIONS(538), - [anon_sym_trait] = ACTIONS(538), - [anon_sym_type] = ACTIONS(538), - [anon_sym_union] = ACTIONS(538), - [anon_sym_unsafe] = ACTIONS(538), - [anon_sym_use] = ACTIONS(538), - [anon_sym_while] = ACTIONS(538), - [anon_sym_POUND] = ACTIONS(536), - [anon_sym_BANG] = ACTIONS(536), - [anon_sym_extern] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(536), - [anon_sym_COLON_COLON] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(536), - [anon_sym_DASH] = ACTIONS(536), - [anon_sym_PIPE] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(538), - [anon_sym_move] = ACTIONS(538), - [sym_integer_literal] = ACTIONS(536), - [aux_sym_string_literal_token1] = ACTIONS(536), - [sym_char_literal] = ACTIONS(536), - [anon_sym_true] = ACTIONS(538), - [anon_sym_false] = ACTIONS(538), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(538), - [sym_super] = ACTIONS(538), - [sym_crate] = ACTIONS(538), - [sym_metavariable] = ACTIONS(536), - [sym_raw_string_literal] = ACTIONS(536), - [sym_float_literal] = ACTIONS(536), + [ts_builtin_sym_end] = ACTIONS(1848), + [sym_identifier] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_macro_rules_BANG] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_u8] = ACTIONS(1850), + [anon_sym_i8] = ACTIONS(1850), + [anon_sym_u16] = ACTIONS(1850), + [anon_sym_i16] = ACTIONS(1850), + [anon_sym_u32] = ACTIONS(1850), + [anon_sym_i32] = ACTIONS(1850), + [anon_sym_u64] = ACTIONS(1850), + [anon_sym_i64] = ACTIONS(1850), + [anon_sym_u128] = ACTIONS(1850), + [anon_sym_i128] = ACTIONS(1850), + [anon_sym_isize] = ACTIONS(1850), + [anon_sym_usize] = ACTIONS(1850), + [anon_sym_f32] = ACTIONS(1850), + [anon_sym_f64] = ACTIONS(1850), + [anon_sym_bool] = ACTIONS(1850), + [anon_sym_str] = ACTIONS(1850), + [anon_sym_char] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_async] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_const] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_default] = ACTIONS(1850), + [anon_sym_enum] = ACTIONS(1850), + [anon_sym_fn] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_impl] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1850), + [anon_sym_loop] = ACTIONS(1850), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_mod] = ACTIONS(1850), + [anon_sym_pub] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1850), + [anon_sym_struct] = ACTIONS(1850), + [anon_sym_trait] = ACTIONS(1850), + [anon_sym_type] = ACTIONS(1850), + [anon_sym_union] = ACTIONS(1850), + [anon_sym_unsafe] = ACTIONS(1850), + [anon_sym_use] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(1848), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1850), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_COLON_COLON] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_DOT_DOT] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_yield] = ACTIONS(1850), + [anon_sym_move] = ACTIONS(1850), + [sym_integer_literal] = ACTIONS(1848), + [aux_sym_string_literal_token1] = ACTIONS(1848), + [sym_char_literal] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1850), + [sym_super] = ACTIONS(1850), + [sym_crate] = ACTIONS(1850), + [sym_metavariable] = ACTIONS(1848), + [sym_raw_string_literal] = ACTIONS(1848), + [sym_float_literal] = ACTIONS(1848), [sym_block_comment] = ACTIONS(3), }, [452] = { - [ts_builtin_sym_end] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_macro_rules_BANG] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_u8] = ACTIONS(1852), - [anon_sym_i8] = ACTIONS(1852), - [anon_sym_u16] = ACTIONS(1852), - [anon_sym_i16] = ACTIONS(1852), - [anon_sym_u32] = ACTIONS(1852), - [anon_sym_i32] = ACTIONS(1852), - [anon_sym_u64] = ACTIONS(1852), - [anon_sym_i64] = ACTIONS(1852), - [anon_sym_u128] = ACTIONS(1852), - [anon_sym_i128] = ACTIONS(1852), - [anon_sym_isize] = ACTIONS(1852), - [anon_sym_usize] = ACTIONS(1852), - [anon_sym_f32] = ACTIONS(1852), - [anon_sym_f64] = ACTIONS(1852), - [anon_sym_bool] = ACTIONS(1852), - [anon_sym_str] = ACTIONS(1852), - [anon_sym_char] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_default] = ACTIONS(1852), - [anon_sym_enum] = ACTIONS(1852), - [anon_sym_fn] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_impl] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_mod] = ACTIONS(1852), - [anon_sym_pub] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_struct] = ACTIONS(1852), - [anon_sym_trait] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_union] = ACTIONS(1852), - [anon_sym_unsafe] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_COLON_COLON] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_yield] = ACTIONS(1852), - [anon_sym_move] = ACTIONS(1852), - [sym_integer_literal] = ACTIONS(1850), - [aux_sym_string_literal_token1] = ACTIONS(1850), - [sym_char_literal] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1852), - [sym_super] = ACTIONS(1852), - [sym_crate] = ACTIONS(1852), - [sym_metavariable] = ACTIONS(1850), - [sym_raw_string_literal] = ACTIONS(1850), - [sym_float_literal] = ACTIONS(1850), + [ts_builtin_sym_end] = ACTIONS(1852), + [sym_identifier] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_macro_rules_BANG] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_u8] = ACTIONS(1854), + [anon_sym_i8] = ACTIONS(1854), + [anon_sym_u16] = ACTIONS(1854), + [anon_sym_i16] = ACTIONS(1854), + [anon_sym_u32] = ACTIONS(1854), + [anon_sym_i32] = ACTIONS(1854), + [anon_sym_u64] = ACTIONS(1854), + [anon_sym_i64] = ACTIONS(1854), + [anon_sym_u128] = ACTIONS(1854), + [anon_sym_i128] = ACTIONS(1854), + [anon_sym_isize] = ACTIONS(1854), + [anon_sym_usize] = ACTIONS(1854), + [anon_sym_f32] = ACTIONS(1854), + [anon_sym_f64] = ACTIONS(1854), + [anon_sym_bool] = ACTIONS(1854), + [anon_sym_str] = ACTIONS(1854), + [anon_sym_char] = ACTIONS(1854), + [anon_sym_SQUOTE] = ACTIONS(1854), + [anon_sym_async] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [anon_sym_fn] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_impl] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_loop] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_mod] = ACTIONS(1854), + [anon_sym_pub] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_struct] = ACTIONS(1854), + [anon_sym_trait] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1854), + [anon_sym_union] = ACTIONS(1854), + [anon_sym_unsafe] = ACTIONS(1854), + [anon_sym_use] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(1852), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_LT] = ACTIONS(1852), + [anon_sym_COLON_COLON] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_DOT_DOT] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_yield] = ACTIONS(1854), + [anon_sym_move] = ACTIONS(1854), + [sym_integer_literal] = ACTIONS(1852), + [aux_sym_string_literal_token1] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1854), + [sym_super] = ACTIONS(1854), + [sym_crate] = ACTIONS(1854), + [sym_metavariable] = ACTIONS(1852), + [sym_raw_string_literal] = ACTIONS(1852), + [sym_float_literal] = ACTIONS(1852), [sym_block_comment] = ACTIONS(3), }, [453] = { - [ts_builtin_sym_end] = ACTIONS(1854), - [sym_identifier] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_macro_rules_BANG] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_u8] = ACTIONS(1856), - [anon_sym_i8] = ACTIONS(1856), - [anon_sym_u16] = ACTIONS(1856), - [anon_sym_i16] = ACTIONS(1856), - [anon_sym_u32] = ACTIONS(1856), - [anon_sym_i32] = ACTIONS(1856), - [anon_sym_u64] = ACTIONS(1856), - [anon_sym_i64] = ACTIONS(1856), - [anon_sym_u128] = ACTIONS(1856), - [anon_sym_i128] = ACTIONS(1856), - [anon_sym_isize] = ACTIONS(1856), - [anon_sym_usize] = ACTIONS(1856), - [anon_sym_f32] = ACTIONS(1856), - [anon_sym_f64] = ACTIONS(1856), - [anon_sym_bool] = ACTIONS(1856), - [anon_sym_str] = ACTIONS(1856), - [anon_sym_char] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_fn] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_impl] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_mod] = ACTIONS(1856), - [anon_sym_pub] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_trait] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1856), - [anon_sym_union] = ACTIONS(1856), - [anon_sym_unsafe] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_COLON_COLON] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_DOT_DOT] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_yield] = ACTIONS(1856), - [anon_sym_move] = ACTIONS(1856), - [sym_integer_literal] = ACTIONS(1854), - [aux_sym_string_literal_token1] = ACTIONS(1854), - [sym_char_literal] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1856), - [sym_super] = ACTIONS(1856), - [sym_crate] = ACTIONS(1856), - [sym_metavariable] = ACTIONS(1854), - [sym_raw_string_literal] = ACTIONS(1854), - [sym_float_literal] = ACTIONS(1854), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_macro_rules_BANG] = ACTIONS(1856), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_u8] = ACTIONS(1858), + [anon_sym_i8] = ACTIONS(1858), + [anon_sym_u16] = ACTIONS(1858), + [anon_sym_i16] = ACTIONS(1858), + [anon_sym_u32] = ACTIONS(1858), + [anon_sym_i32] = ACTIONS(1858), + [anon_sym_u64] = ACTIONS(1858), + [anon_sym_i64] = ACTIONS(1858), + [anon_sym_u128] = ACTIONS(1858), + [anon_sym_i128] = ACTIONS(1858), + [anon_sym_isize] = ACTIONS(1858), + [anon_sym_usize] = ACTIONS(1858), + [anon_sym_f32] = ACTIONS(1858), + [anon_sym_f64] = ACTIONS(1858), + [anon_sym_bool] = ACTIONS(1858), + [anon_sym_str] = ACTIONS(1858), + [anon_sym_char] = ACTIONS(1858), + [anon_sym_SQUOTE] = ACTIONS(1858), + [anon_sym_async] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [anon_sym_fn] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_impl] = ACTIONS(1858), + [anon_sym_let] = ACTIONS(1858), + [anon_sym_loop] = ACTIONS(1858), + [anon_sym_match] = ACTIONS(1858), + [anon_sym_mod] = ACTIONS(1858), + [anon_sym_pub] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1858), + [anon_sym_struct] = ACTIONS(1858), + [anon_sym_trait] = ACTIONS(1858), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_union] = ACTIONS(1858), + [anon_sym_unsafe] = ACTIONS(1858), + [anon_sym_use] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(1856), + [anon_sym_AMP] = ACTIONS(1856), + [anon_sym_DOT_DOT] = ACTIONS(1856), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_yield] = ACTIONS(1858), + [anon_sym_move] = ACTIONS(1858), + [sym_integer_literal] = ACTIONS(1856), + [aux_sym_string_literal_token1] = ACTIONS(1856), + [sym_char_literal] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1858), + [anon_sym_false] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1858), + [sym_super] = ACTIONS(1858), + [sym_crate] = ACTIONS(1858), + [sym_metavariable] = ACTIONS(1856), + [sym_raw_string_literal] = ACTIONS(1856), + [sym_float_literal] = ACTIONS(1856), [sym_block_comment] = ACTIONS(3), }, [454] = { - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_identifier] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_macro_rules_BANG] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_u8] = ACTIONS(1860), - [anon_sym_i8] = ACTIONS(1860), - [anon_sym_u16] = ACTIONS(1860), - [anon_sym_i16] = ACTIONS(1860), - [anon_sym_u32] = ACTIONS(1860), - [anon_sym_i32] = ACTIONS(1860), - [anon_sym_u64] = ACTIONS(1860), - [anon_sym_i64] = ACTIONS(1860), - [anon_sym_u128] = ACTIONS(1860), - [anon_sym_i128] = ACTIONS(1860), - [anon_sym_isize] = ACTIONS(1860), - [anon_sym_usize] = ACTIONS(1860), - [anon_sym_f32] = ACTIONS(1860), - [anon_sym_f64] = ACTIONS(1860), - [anon_sym_bool] = ACTIONS(1860), - [anon_sym_str] = ACTIONS(1860), - [anon_sym_char] = ACTIONS(1860), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_async] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1860), - [anon_sym_enum] = ACTIONS(1860), - [anon_sym_fn] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_impl] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_loop] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_mod] = ACTIONS(1860), - [anon_sym_pub] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_struct] = ACTIONS(1860), - [anon_sym_trait] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_union] = ACTIONS(1860), - [anon_sym_unsafe] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_COLON_COLON] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_yield] = ACTIONS(1860), - [anon_sym_move] = ACTIONS(1860), - [sym_integer_literal] = ACTIONS(1858), - [aux_sym_string_literal_token1] = ACTIONS(1858), - [sym_char_literal] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1860), - [sym_super] = ACTIONS(1860), - [sym_crate] = ACTIONS(1860), - [sym_metavariable] = ACTIONS(1858), - [sym_raw_string_literal] = ACTIONS(1858), - [sym_float_literal] = ACTIONS(1858), + [ts_builtin_sym_end] = ACTIONS(1860), + [sym_identifier] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_macro_rules_BANG] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1860), + [anon_sym_u8] = ACTIONS(1862), + [anon_sym_i8] = ACTIONS(1862), + [anon_sym_u16] = ACTIONS(1862), + [anon_sym_i16] = ACTIONS(1862), + [anon_sym_u32] = ACTIONS(1862), + [anon_sym_i32] = ACTIONS(1862), + [anon_sym_u64] = ACTIONS(1862), + [anon_sym_i64] = ACTIONS(1862), + [anon_sym_u128] = ACTIONS(1862), + [anon_sym_i128] = ACTIONS(1862), + [anon_sym_isize] = ACTIONS(1862), + [anon_sym_usize] = ACTIONS(1862), + [anon_sym_f32] = ACTIONS(1862), + [anon_sym_f64] = ACTIONS(1862), + [anon_sym_bool] = ACTIONS(1862), + [anon_sym_str] = ACTIONS(1862), + [anon_sym_char] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_async] = ACTIONS(1862), + [anon_sym_break] = ACTIONS(1862), + [anon_sym_const] = ACTIONS(1862), + [anon_sym_continue] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_enum] = ACTIONS(1862), + [anon_sym_fn] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_impl] = ACTIONS(1862), + [anon_sym_let] = ACTIONS(1862), + [anon_sym_loop] = ACTIONS(1862), + [anon_sym_match] = ACTIONS(1862), + [anon_sym_mod] = ACTIONS(1862), + [anon_sym_pub] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1862), + [anon_sym_struct] = ACTIONS(1862), + [anon_sym_trait] = ACTIONS(1862), + [anon_sym_type] = ACTIONS(1862), + [anon_sym_union] = ACTIONS(1862), + [anon_sym_unsafe] = ACTIONS(1862), + [anon_sym_use] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1860), + [anon_sym_BANG] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1862), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_COLON_COLON] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_yield] = ACTIONS(1862), + [anon_sym_move] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(1860), + [aux_sym_string_literal_token1] = ACTIONS(1860), + [sym_char_literal] = ACTIONS(1860), + [anon_sym_true] = ACTIONS(1862), + [anon_sym_false] = ACTIONS(1862), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1862), + [sym_super] = ACTIONS(1862), + [sym_crate] = ACTIONS(1862), + [sym_metavariable] = ACTIONS(1860), + [sym_raw_string_literal] = ACTIONS(1860), + [sym_float_literal] = ACTIONS(1860), [sym_block_comment] = ACTIONS(3), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(1862), - [sym_identifier] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_macro_rules_BANG] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_u8] = ACTIONS(1864), - [anon_sym_i8] = ACTIONS(1864), - [anon_sym_u16] = ACTIONS(1864), - [anon_sym_i16] = ACTIONS(1864), - [anon_sym_u32] = ACTIONS(1864), - [anon_sym_i32] = ACTIONS(1864), - [anon_sym_u64] = ACTIONS(1864), - [anon_sym_i64] = ACTIONS(1864), - [anon_sym_u128] = ACTIONS(1864), - [anon_sym_i128] = ACTIONS(1864), - [anon_sym_isize] = ACTIONS(1864), - [anon_sym_usize] = ACTIONS(1864), - [anon_sym_f32] = ACTIONS(1864), - [anon_sym_f64] = ACTIONS(1864), - [anon_sym_bool] = ACTIONS(1864), - [anon_sym_str] = ACTIONS(1864), - [anon_sym_char] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_default] = ACTIONS(1864), - [anon_sym_enum] = ACTIONS(1864), - [anon_sym_fn] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_impl] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_mod] = ACTIONS(1864), - [anon_sym_pub] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1864), - [anon_sym_struct] = ACTIONS(1864), - [anon_sym_trait] = ACTIONS(1864), - [anon_sym_type] = ACTIONS(1864), - [anon_sym_union] = ACTIONS(1864), - [anon_sym_unsafe] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_COLON_COLON] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_yield] = ACTIONS(1864), - [anon_sym_move] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(1862), - [aux_sym_string_literal_token1] = ACTIONS(1862), - [sym_char_literal] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1864), - [sym_super] = ACTIONS(1864), - [sym_crate] = ACTIONS(1864), - [sym_metavariable] = ACTIONS(1862), - [sym_raw_string_literal] = ACTIONS(1862), - [sym_float_literal] = ACTIONS(1862), + [ts_builtin_sym_end] = ACTIONS(1864), + [sym_identifier] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_macro_rules_BANG] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_STAR] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_async] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_default] = ACTIONS(1866), + [anon_sym_enum] = ACTIONS(1866), + [anon_sym_fn] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_impl] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_loop] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1866), + [anon_sym_pub] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1866), + [anon_sym_struct] = ACTIONS(1866), + [anon_sym_trait] = ACTIONS(1866), + [anon_sym_type] = ACTIONS(1866), + [anon_sym_union] = ACTIONS(1866), + [anon_sym_unsafe] = ACTIONS(1866), + [anon_sym_use] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1864), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_COLON_COLON] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1864), + [anon_sym_DOT_DOT] = ACTIONS(1864), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_yield] = ACTIONS(1866), + [anon_sym_move] = ACTIONS(1866), + [sym_integer_literal] = ACTIONS(1864), + [aux_sym_string_literal_token1] = ACTIONS(1864), + [sym_char_literal] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1866), + [sym_super] = ACTIONS(1866), + [sym_crate] = ACTIONS(1866), + [sym_metavariable] = ACTIONS(1864), + [sym_raw_string_literal] = ACTIONS(1864), + [sym_float_literal] = ACTIONS(1864), [sym_block_comment] = ACTIONS(3), }, [456] = { - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_macro_rules_BANG] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_u8] = ACTIONS(1868), - [anon_sym_i8] = ACTIONS(1868), - [anon_sym_u16] = ACTIONS(1868), - [anon_sym_i16] = ACTIONS(1868), - [anon_sym_u32] = ACTIONS(1868), - [anon_sym_i32] = ACTIONS(1868), - [anon_sym_u64] = ACTIONS(1868), - [anon_sym_i64] = ACTIONS(1868), - [anon_sym_u128] = ACTIONS(1868), - [anon_sym_i128] = ACTIONS(1868), - [anon_sym_isize] = ACTIONS(1868), - [anon_sym_usize] = ACTIONS(1868), - [anon_sym_f32] = ACTIONS(1868), - [anon_sym_f64] = ACTIONS(1868), - [anon_sym_bool] = ACTIONS(1868), - [anon_sym_str] = ACTIONS(1868), - [anon_sym_char] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_impl] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_loop] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_mod] = ACTIONS(1868), - [anon_sym_pub] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_trait] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_unsafe] = ACTIONS(1868), - [anon_sym_use] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_COLON_COLON] = ACTIONS(1866), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_yield] = ACTIONS(1868), - [anon_sym_move] = ACTIONS(1868), - [sym_integer_literal] = ACTIONS(1866), - [aux_sym_string_literal_token1] = ACTIONS(1866), - [sym_char_literal] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1868), - [sym_super] = ACTIONS(1868), - [sym_crate] = ACTIONS(1868), - [sym_metavariable] = ACTIONS(1866), - [sym_raw_string_literal] = ACTIONS(1866), - [sym_float_literal] = ACTIONS(1866), + [ts_builtin_sym_end] = ACTIONS(1868), + [sym_identifier] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_macro_rules_BANG] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_u8] = ACTIONS(1870), + [anon_sym_i8] = ACTIONS(1870), + [anon_sym_u16] = ACTIONS(1870), + [anon_sym_i16] = ACTIONS(1870), + [anon_sym_u32] = ACTIONS(1870), + [anon_sym_i32] = ACTIONS(1870), + [anon_sym_u64] = ACTIONS(1870), + [anon_sym_i64] = ACTIONS(1870), + [anon_sym_u128] = ACTIONS(1870), + [anon_sym_i128] = ACTIONS(1870), + [anon_sym_isize] = ACTIONS(1870), + [anon_sym_usize] = ACTIONS(1870), + [anon_sym_f32] = ACTIONS(1870), + [anon_sym_f64] = ACTIONS(1870), + [anon_sym_bool] = ACTIONS(1870), + [anon_sym_str] = ACTIONS(1870), + [anon_sym_char] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_break] = ACTIONS(1870), + [anon_sym_const] = ACTIONS(1870), + [anon_sym_continue] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1870), + [anon_sym_enum] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(1870), + [anon_sym_for] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(1870), + [anon_sym_impl] = ACTIONS(1870), + [anon_sym_let] = ACTIONS(1870), + [anon_sym_loop] = ACTIONS(1870), + [anon_sym_match] = ACTIONS(1870), + [anon_sym_mod] = ACTIONS(1870), + [anon_sym_pub] = ACTIONS(1870), + [anon_sym_return] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1870), + [anon_sym_struct] = ACTIONS(1870), + [anon_sym_trait] = ACTIONS(1870), + [anon_sym_type] = ACTIONS(1870), + [anon_sym_union] = ACTIONS(1870), + [anon_sym_unsafe] = ACTIONS(1870), + [anon_sym_use] = ACTIONS(1870), + [anon_sym_while] = ACTIONS(1870), + [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1870), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_COLON_COLON] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_DOT_DOT] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_yield] = ACTIONS(1870), + [anon_sym_move] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(1868), + [aux_sym_string_literal_token1] = ACTIONS(1868), + [sym_char_literal] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1870), + [anon_sym_false] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1870), + [sym_super] = ACTIONS(1870), + [sym_crate] = ACTIONS(1870), + [sym_metavariable] = ACTIONS(1868), + [sym_raw_string_literal] = ACTIONS(1868), + [sym_float_literal] = ACTIONS(1868), [sym_block_comment] = ACTIONS(3), }, [457] = { - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_identifier] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_macro_rules_BANG] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_u8] = ACTIONS(1872), - [anon_sym_i8] = ACTIONS(1872), - [anon_sym_u16] = ACTIONS(1872), - [anon_sym_i16] = ACTIONS(1872), - [anon_sym_u32] = ACTIONS(1872), - [anon_sym_i32] = ACTIONS(1872), - [anon_sym_u64] = ACTIONS(1872), - [anon_sym_i64] = ACTIONS(1872), - [anon_sym_u128] = ACTIONS(1872), - [anon_sym_i128] = ACTIONS(1872), - [anon_sym_isize] = ACTIONS(1872), - [anon_sym_usize] = ACTIONS(1872), - [anon_sym_f32] = ACTIONS(1872), - [anon_sym_f64] = ACTIONS(1872), - [anon_sym_bool] = ACTIONS(1872), - [anon_sym_str] = ACTIONS(1872), - [anon_sym_char] = ACTIONS(1872), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_async] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_default] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_fn] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_impl] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_mod] = ACTIONS(1872), - [anon_sym_pub] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [anon_sym_trait] = ACTIONS(1872), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsafe] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_COLON_COLON] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_DOT_DOT] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_yield] = ACTIONS(1872), - [anon_sym_move] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(1870), - [aux_sym_string_literal_token1] = ACTIONS(1870), - [sym_char_literal] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1872), - [sym_super] = ACTIONS(1872), - [sym_crate] = ACTIONS(1872), - [sym_metavariable] = ACTIONS(1870), - [sym_raw_string_literal] = ACTIONS(1870), - [sym_float_literal] = ACTIONS(1870), + [ts_builtin_sym_end] = ACTIONS(1872), + [sym_identifier] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_macro_rules_BANG] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_u8] = ACTIONS(1874), + [anon_sym_i8] = ACTIONS(1874), + [anon_sym_u16] = ACTIONS(1874), + [anon_sym_i16] = ACTIONS(1874), + [anon_sym_u32] = ACTIONS(1874), + [anon_sym_i32] = ACTIONS(1874), + [anon_sym_u64] = ACTIONS(1874), + [anon_sym_i64] = ACTIONS(1874), + [anon_sym_u128] = ACTIONS(1874), + [anon_sym_i128] = ACTIONS(1874), + [anon_sym_isize] = ACTIONS(1874), + [anon_sym_usize] = ACTIONS(1874), + [anon_sym_f32] = ACTIONS(1874), + [anon_sym_f64] = ACTIONS(1874), + [anon_sym_bool] = ACTIONS(1874), + [anon_sym_str] = ACTIONS(1874), + [anon_sym_char] = ACTIONS(1874), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_default] = ACTIONS(1874), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_fn] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_impl] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_loop] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_mod] = ACTIONS(1874), + [anon_sym_pub] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_struct] = ACTIONS(1874), + [anon_sym_trait] = ACTIONS(1874), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_union] = ACTIONS(1874), + [anon_sym_unsafe] = ACTIONS(1874), + [anon_sym_use] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(1872), + [anon_sym_BANG] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1872), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1874), + [anon_sym_move] = ACTIONS(1874), + [sym_integer_literal] = ACTIONS(1872), + [aux_sym_string_literal_token1] = ACTIONS(1872), + [sym_char_literal] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1874), + [sym_super] = ACTIONS(1874), + [sym_crate] = ACTIONS(1874), + [sym_metavariable] = ACTIONS(1872), + [sym_raw_string_literal] = ACTIONS(1872), + [sym_float_literal] = ACTIONS(1872), [sym_block_comment] = ACTIONS(3), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(1874), - [sym_identifier] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_u8] = ACTIONS(1876), - [anon_sym_i8] = ACTIONS(1876), - [anon_sym_u16] = ACTIONS(1876), - [anon_sym_i16] = ACTIONS(1876), - [anon_sym_u32] = ACTIONS(1876), - [anon_sym_i32] = ACTIONS(1876), - [anon_sym_u64] = ACTIONS(1876), - [anon_sym_i64] = ACTIONS(1876), - [anon_sym_u128] = ACTIONS(1876), - [anon_sym_i128] = ACTIONS(1876), - [anon_sym_isize] = ACTIONS(1876), - [anon_sym_usize] = ACTIONS(1876), - [anon_sym_f32] = ACTIONS(1876), - [anon_sym_f64] = ACTIONS(1876), - [anon_sym_bool] = ACTIONS(1876), - [anon_sym_str] = ACTIONS(1876), - [anon_sym_char] = ACTIONS(1876), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_async] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_default] = ACTIONS(1876), - [anon_sym_enum] = ACTIONS(1876), - [anon_sym_fn] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_impl] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_mod] = ACTIONS(1876), - [anon_sym_pub] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1876), - [anon_sym_trait] = ACTIONS(1876), - [anon_sym_type] = ACTIONS(1876), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_unsafe] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1874), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_COLON_COLON] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_yield] = ACTIONS(1876), - [anon_sym_move] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [aux_sym_string_literal_token1] = ACTIONS(1874), - [sym_char_literal] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1876), - [sym_super] = ACTIONS(1876), - [sym_crate] = ACTIONS(1876), - [sym_metavariable] = ACTIONS(1874), - [sym_raw_string_literal] = ACTIONS(1874), - [sym_float_literal] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(1876), + [sym_identifier] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_macro_rules_BANG] = ACTIONS(1876), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1876), + [anon_sym_u8] = ACTIONS(1878), + [anon_sym_i8] = ACTIONS(1878), + [anon_sym_u16] = ACTIONS(1878), + [anon_sym_i16] = ACTIONS(1878), + [anon_sym_u32] = ACTIONS(1878), + [anon_sym_i32] = ACTIONS(1878), + [anon_sym_u64] = ACTIONS(1878), + [anon_sym_i64] = ACTIONS(1878), + [anon_sym_u128] = ACTIONS(1878), + [anon_sym_i128] = ACTIONS(1878), + [anon_sym_isize] = ACTIONS(1878), + [anon_sym_usize] = ACTIONS(1878), + [anon_sym_f32] = ACTIONS(1878), + [anon_sym_f64] = ACTIONS(1878), + [anon_sym_bool] = ACTIONS(1878), + [anon_sym_str] = ACTIONS(1878), + [anon_sym_char] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_async] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_enum] = ACTIONS(1878), + [anon_sym_fn] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_impl] = ACTIONS(1878), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_loop] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_mod] = ACTIONS(1878), + [anon_sym_pub] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1878), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_trait] = ACTIONS(1878), + [anon_sym_type] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_unsafe] = ACTIONS(1878), + [anon_sym_use] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_POUND] = ACTIONS(1876), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1876), + [anon_sym_AMP] = ACTIONS(1876), + [anon_sym_DOT_DOT] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_yield] = ACTIONS(1878), + [anon_sym_move] = ACTIONS(1878), + [sym_integer_literal] = ACTIONS(1876), + [aux_sym_string_literal_token1] = ACTIONS(1876), + [sym_char_literal] = ACTIONS(1876), + [anon_sym_true] = ACTIONS(1878), + [anon_sym_false] = ACTIONS(1878), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1878), + [sym_super] = ACTIONS(1878), + [sym_crate] = ACTIONS(1878), + [sym_metavariable] = ACTIONS(1876), + [sym_raw_string_literal] = ACTIONS(1876), + [sym_float_literal] = ACTIONS(1876), [sym_block_comment] = ACTIONS(3), }, [459] = { - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_macro_rules_BANG] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_u8] = ACTIONS(1880), - [anon_sym_i8] = ACTIONS(1880), - [anon_sym_u16] = ACTIONS(1880), - [anon_sym_i16] = ACTIONS(1880), - [anon_sym_u32] = ACTIONS(1880), - [anon_sym_i32] = ACTIONS(1880), - [anon_sym_u64] = ACTIONS(1880), - [anon_sym_i64] = ACTIONS(1880), - [anon_sym_u128] = ACTIONS(1880), - [anon_sym_i128] = ACTIONS(1880), - [anon_sym_isize] = ACTIONS(1880), - [anon_sym_usize] = ACTIONS(1880), - [anon_sym_f32] = ACTIONS(1880), - [anon_sym_f64] = ACTIONS(1880), - [anon_sym_bool] = ACTIONS(1880), - [anon_sym_str] = ACTIONS(1880), - [anon_sym_char] = ACTIONS(1880), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [anon_sym_fn] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_impl] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_loop] = ACTIONS(1880), - [anon_sym_match] = ACTIONS(1880), - [anon_sym_mod] = ACTIONS(1880), - [anon_sym_pub] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_struct] = ACTIONS(1880), - [anon_sym_trait] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_unsafe] = ACTIONS(1880), - [anon_sym_use] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_move] = ACTIONS(1880), - [sym_integer_literal] = ACTIONS(1878), - [aux_sym_string_literal_token1] = ACTIONS(1878), - [sym_char_literal] = ACTIONS(1878), - [anon_sym_true] = ACTIONS(1880), - [anon_sym_false] = ACTIONS(1880), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_crate] = ACTIONS(1880), - [sym_metavariable] = ACTIONS(1878), - [sym_raw_string_literal] = ACTIONS(1878), - [sym_float_literal] = ACTIONS(1878), + [ts_builtin_sym_end] = ACTIONS(1880), + [sym_identifier] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_macro_rules_BANG] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(1880), + [anon_sym_u8] = ACTIONS(1882), + [anon_sym_i8] = ACTIONS(1882), + [anon_sym_u16] = ACTIONS(1882), + [anon_sym_i16] = ACTIONS(1882), + [anon_sym_u32] = ACTIONS(1882), + [anon_sym_i32] = ACTIONS(1882), + [anon_sym_u64] = ACTIONS(1882), + [anon_sym_i64] = ACTIONS(1882), + [anon_sym_u128] = ACTIONS(1882), + [anon_sym_i128] = ACTIONS(1882), + [anon_sym_isize] = ACTIONS(1882), + [anon_sym_usize] = ACTIONS(1882), + [anon_sym_f32] = ACTIONS(1882), + [anon_sym_f64] = ACTIONS(1882), + [anon_sym_bool] = ACTIONS(1882), + [anon_sym_str] = ACTIONS(1882), + [anon_sym_char] = ACTIONS(1882), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_async] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_const] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_enum] = ACTIONS(1882), + [anon_sym_fn] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_impl] = ACTIONS(1882), + [anon_sym_let] = ACTIONS(1882), + [anon_sym_loop] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_mod] = ACTIONS(1882), + [anon_sym_pub] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1882), + [anon_sym_struct] = ACTIONS(1882), + [anon_sym_trait] = ACTIONS(1882), + [anon_sym_type] = ACTIONS(1882), + [anon_sym_union] = ACTIONS(1882), + [anon_sym_unsafe] = ACTIONS(1882), + [anon_sym_use] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1880), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_DOT_DOT] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1882), + [anon_sym_move] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(1880), + [aux_sym_string_literal_token1] = ACTIONS(1880), + [sym_char_literal] = ACTIONS(1880), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1882), + [sym_super] = ACTIONS(1882), + [sym_crate] = ACTIONS(1882), + [sym_metavariable] = ACTIONS(1880), + [sym_raw_string_literal] = ACTIONS(1880), + [sym_float_literal] = ACTIONS(1880), [sym_block_comment] = ACTIONS(3), }, [460] = { - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_identifier] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_macro_rules_BANG] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_u8] = ACTIONS(1884), - [anon_sym_i8] = ACTIONS(1884), - [anon_sym_u16] = ACTIONS(1884), - [anon_sym_i16] = ACTIONS(1884), - [anon_sym_u32] = ACTIONS(1884), - [anon_sym_i32] = ACTIONS(1884), - [anon_sym_u64] = ACTIONS(1884), - [anon_sym_i64] = ACTIONS(1884), - [anon_sym_u128] = ACTIONS(1884), - [anon_sym_i128] = ACTIONS(1884), - [anon_sym_isize] = ACTIONS(1884), - [anon_sym_usize] = ACTIONS(1884), - [anon_sym_f32] = ACTIONS(1884), - [anon_sym_f64] = ACTIONS(1884), - [anon_sym_bool] = ACTIONS(1884), - [anon_sym_str] = ACTIONS(1884), - [anon_sym_char] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_async] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_fn] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_impl] = ACTIONS(1884), - [anon_sym_let] = ACTIONS(1884), - [anon_sym_loop] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_mod] = ACTIONS(1884), - [anon_sym_pub] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1884), - [anon_sym_struct] = ACTIONS(1884), - [anon_sym_trait] = ACTIONS(1884), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_union] = ACTIONS(1884), - [anon_sym_unsafe] = ACTIONS(1884), - [anon_sym_use] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_BANG] = ACTIONS(1882), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_COLON_COLON] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_DOT_DOT] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_yield] = ACTIONS(1884), - [anon_sym_move] = ACTIONS(1884), - [sym_integer_literal] = ACTIONS(1882), - [aux_sym_string_literal_token1] = ACTIONS(1882), - [sym_char_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1884), - [sym_super] = ACTIONS(1884), - [sym_crate] = ACTIONS(1884), - [sym_metavariable] = ACTIONS(1882), - [sym_raw_string_literal] = ACTIONS(1882), - [sym_float_literal] = ACTIONS(1882), + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_macro_rules_BANG] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_u8] = ACTIONS(1886), + [anon_sym_i8] = ACTIONS(1886), + [anon_sym_u16] = ACTIONS(1886), + [anon_sym_i16] = ACTIONS(1886), + [anon_sym_u32] = ACTIONS(1886), + [anon_sym_i32] = ACTIONS(1886), + [anon_sym_u64] = ACTIONS(1886), + [anon_sym_i64] = ACTIONS(1886), + [anon_sym_u128] = ACTIONS(1886), + [anon_sym_i128] = ACTIONS(1886), + [anon_sym_isize] = ACTIONS(1886), + [anon_sym_usize] = ACTIONS(1886), + [anon_sym_f32] = ACTIONS(1886), + [anon_sym_f64] = ACTIONS(1886), + [anon_sym_bool] = ACTIONS(1886), + [anon_sym_str] = ACTIONS(1886), + [anon_sym_char] = ACTIONS(1886), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_impl] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_loop] = ACTIONS(1886), + [anon_sym_match] = ACTIONS(1886), + [anon_sym_mod] = ACTIONS(1886), + [anon_sym_pub] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1886), + [anon_sym_trait] = ACTIONS(1886), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_union] = ACTIONS(1886), + [anon_sym_unsafe] = ACTIONS(1886), + [anon_sym_use] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_move] = ACTIONS(1886), + [sym_integer_literal] = ACTIONS(1884), + [aux_sym_string_literal_token1] = ACTIONS(1884), + [sym_char_literal] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_crate] = ACTIONS(1886), + [sym_metavariable] = ACTIONS(1884), + [sym_raw_string_literal] = ACTIONS(1884), + [sym_float_literal] = ACTIONS(1884), [sym_block_comment] = ACTIONS(3), }, [461] = { - [ts_builtin_sym_end] = ACTIONS(1886), - [sym_identifier] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_macro_rules_BANG] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_u8] = ACTIONS(1888), - [anon_sym_i8] = ACTIONS(1888), - [anon_sym_u16] = ACTIONS(1888), - [anon_sym_i16] = ACTIONS(1888), - [anon_sym_u32] = ACTIONS(1888), - [anon_sym_i32] = ACTIONS(1888), - [anon_sym_u64] = ACTIONS(1888), - [anon_sym_i64] = ACTIONS(1888), - [anon_sym_u128] = ACTIONS(1888), - [anon_sym_i128] = ACTIONS(1888), - [anon_sym_isize] = ACTIONS(1888), - [anon_sym_usize] = ACTIONS(1888), - [anon_sym_f32] = ACTIONS(1888), - [anon_sym_f64] = ACTIONS(1888), - [anon_sym_bool] = ACTIONS(1888), - [anon_sym_str] = ACTIONS(1888), - [anon_sym_char] = ACTIONS(1888), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_async] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_default] = ACTIONS(1888), - [anon_sym_enum] = ACTIONS(1888), - [anon_sym_fn] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_impl] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1888), - [anon_sym_loop] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_mod] = ACTIONS(1888), - [anon_sym_pub] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_trait] = ACTIONS(1888), - [anon_sym_type] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1888), - [anon_sym_unsafe] = ACTIONS(1888), - [anon_sym_use] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_COLON_COLON] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_yield] = ACTIONS(1888), - [anon_sym_move] = ACTIONS(1888), - [sym_integer_literal] = ACTIONS(1886), - [aux_sym_string_literal_token1] = ACTIONS(1886), - [sym_char_literal] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1888), - [sym_super] = ACTIONS(1888), - [sym_crate] = ACTIONS(1888), - [sym_metavariable] = ACTIONS(1886), - [sym_raw_string_literal] = ACTIONS(1886), - [sym_float_literal] = ACTIONS(1886), + [ts_builtin_sym_end] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_macro_rules_BANG] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1888), + [anon_sym_u8] = ACTIONS(1890), + [anon_sym_i8] = ACTIONS(1890), + [anon_sym_u16] = ACTIONS(1890), + [anon_sym_i16] = ACTIONS(1890), + [anon_sym_u32] = ACTIONS(1890), + [anon_sym_i32] = ACTIONS(1890), + [anon_sym_u64] = ACTIONS(1890), + [anon_sym_i64] = ACTIONS(1890), + [anon_sym_u128] = ACTIONS(1890), + [anon_sym_i128] = ACTIONS(1890), + [anon_sym_isize] = ACTIONS(1890), + [anon_sym_usize] = ACTIONS(1890), + [anon_sym_f32] = ACTIONS(1890), + [anon_sym_f64] = ACTIONS(1890), + [anon_sym_bool] = ACTIONS(1890), + [anon_sym_str] = ACTIONS(1890), + [anon_sym_char] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1890), + [anon_sym_fn] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_impl] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_mod] = ACTIONS(1890), + [anon_sym_pub] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_trait] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1890), + [anon_sym_unsafe] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_yield] = ACTIONS(1890), + [anon_sym_move] = ACTIONS(1890), + [sym_integer_literal] = ACTIONS(1888), + [aux_sym_string_literal_token1] = ACTIONS(1888), + [sym_char_literal] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1890), + [anon_sym_false] = ACTIONS(1890), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1890), + [sym_super] = ACTIONS(1890), + [sym_crate] = ACTIONS(1890), + [sym_metavariable] = ACTIONS(1888), + [sym_raw_string_literal] = ACTIONS(1888), + [sym_float_literal] = ACTIONS(1888), [sym_block_comment] = ACTIONS(3), }, [462] = { - [ts_builtin_sym_end] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_macro_rules_BANG] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_u8] = ACTIONS(1892), - [anon_sym_i8] = ACTIONS(1892), - [anon_sym_u16] = ACTIONS(1892), - [anon_sym_i16] = ACTIONS(1892), - [anon_sym_u32] = ACTIONS(1892), - [anon_sym_i32] = ACTIONS(1892), - [anon_sym_u64] = ACTIONS(1892), - [anon_sym_i64] = ACTIONS(1892), - [anon_sym_u128] = ACTIONS(1892), - [anon_sym_i128] = ACTIONS(1892), - [anon_sym_isize] = ACTIONS(1892), - [anon_sym_usize] = ACTIONS(1892), - [anon_sym_f32] = ACTIONS(1892), - [anon_sym_f64] = ACTIONS(1892), - [anon_sym_bool] = ACTIONS(1892), - [anon_sym_str] = ACTIONS(1892), - [anon_sym_char] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_async] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_default] = ACTIONS(1892), - [anon_sym_enum] = ACTIONS(1892), - [anon_sym_fn] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_impl] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1892), - [anon_sym_loop] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_mod] = ACTIONS(1892), - [anon_sym_pub] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1892), - [anon_sym_trait] = ACTIONS(1892), - [anon_sym_type] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_unsafe] = ACTIONS(1892), - [anon_sym_use] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_COLON_COLON] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_yield] = ACTIONS(1892), - [anon_sym_move] = ACTIONS(1892), - [sym_integer_literal] = ACTIONS(1890), - [aux_sym_string_literal_token1] = ACTIONS(1890), - [sym_char_literal] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1892), - [sym_super] = ACTIONS(1892), - [sym_crate] = ACTIONS(1892), - [sym_metavariable] = ACTIONS(1890), - [sym_raw_string_literal] = ACTIONS(1890), - [sym_float_literal] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_macro_rules_BANG] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_enum] = ACTIONS(1894), + [anon_sym_fn] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_impl] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_loop] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_mod] = ACTIONS(1894), + [anon_sym_pub] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_static] = ACTIONS(1894), + [anon_sym_struct] = ACTIONS(1894), + [anon_sym_trait] = ACTIONS(1894), + [anon_sym_type] = ACTIONS(1894), + [anon_sym_union] = ACTIONS(1894), + [anon_sym_unsafe] = ACTIONS(1894), + [anon_sym_use] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(1892), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_extern] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_COLON_COLON] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_yield] = ACTIONS(1894), + [anon_sym_move] = ACTIONS(1894), + [sym_integer_literal] = ACTIONS(1892), + [aux_sym_string_literal_token1] = ACTIONS(1892), + [sym_char_literal] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1894), + [sym_super] = ACTIONS(1894), + [sym_crate] = ACTIONS(1894), + [sym_metavariable] = ACTIONS(1892), + [sym_raw_string_literal] = ACTIONS(1892), + [sym_float_literal] = ACTIONS(1892), [sym_block_comment] = ACTIONS(3), }, [463] = { - [ts_builtin_sym_end] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_macro_rules_BANG] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_u8] = ACTIONS(1896), - [anon_sym_i8] = ACTIONS(1896), - [anon_sym_u16] = ACTIONS(1896), - [anon_sym_i16] = ACTIONS(1896), - [anon_sym_u32] = ACTIONS(1896), - [anon_sym_i32] = ACTIONS(1896), - [anon_sym_u64] = ACTIONS(1896), - [anon_sym_i64] = ACTIONS(1896), - [anon_sym_u128] = ACTIONS(1896), - [anon_sym_i128] = ACTIONS(1896), - [anon_sym_isize] = ACTIONS(1896), - [anon_sym_usize] = ACTIONS(1896), - [anon_sym_f32] = ACTIONS(1896), - [anon_sym_f64] = ACTIONS(1896), - [anon_sym_bool] = ACTIONS(1896), - [anon_sym_str] = ACTIONS(1896), - [anon_sym_char] = ACTIONS(1896), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(1896), - [anon_sym_enum] = ACTIONS(1896), - [anon_sym_fn] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1896), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_impl] = ACTIONS(1896), - [anon_sym_let] = ACTIONS(1896), - [anon_sym_loop] = ACTIONS(1896), - [anon_sym_match] = ACTIONS(1896), - [anon_sym_mod] = ACTIONS(1896), - [anon_sym_pub] = ACTIONS(1896), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_static] = ACTIONS(1896), - [anon_sym_struct] = ACTIONS(1896), - [anon_sym_trait] = ACTIONS(1896), - [anon_sym_type] = ACTIONS(1896), - [anon_sym_union] = ACTIONS(1896), - [anon_sym_unsafe] = ACTIONS(1896), - [anon_sym_use] = ACTIONS(1896), - [anon_sym_while] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1896), - [anon_sym_LT] = ACTIONS(1894), - [anon_sym_COLON_COLON] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1894), - [anon_sym_DOT_DOT] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1896), - [anon_sym_move] = ACTIONS(1896), - [sym_integer_literal] = ACTIONS(1894), - [aux_sym_string_literal_token1] = ACTIONS(1894), - [sym_char_literal] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1896), - [sym_super] = ACTIONS(1896), - [sym_crate] = ACTIONS(1896), - [sym_metavariable] = ACTIONS(1894), - [sym_raw_string_literal] = ACTIONS(1894), - [sym_float_literal] = ACTIONS(1894), + [ts_builtin_sym_end] = ACTIONS(1896), + [sym_identifier] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_macro_rules_BANG] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1896), + [anon_sym_u8] = ACTIONS(1898), + [anon_sym_i8] = ACTIONS(1898), + [anon_sym_u16] = ACTIONS(1898), + [anon_sym_i16] = ACTIONS(1898), + [anon_sym_u32] = ACTIONS(1898), + [anon_sym_i32] = ACTIONS(1898), + [anon_sym_u64] = ACTIONS(1898), + [anon_sym_i64] = ACTIONS(1898), + [anon_sym_u128] = ACTIONS(1898), + [anon_sym_i128] = ACTIONS(1898), + [anon_sym_isize] = ACTIONS(1898), + [anon_sym_usize] = ACTIONS(1898), + [anon_sym_f32] = ACTIONS(1898), + [anon_sym_f64] = ACTIONS(1898), + [anon_sym_bool] = ACTIONS(1898), + [anon_sym_str] = ACTIONS(1898), + [anon_sym_char] = ACTIONS(1898), + [anon_sym_SQUOTE] = ACTIONS(1898), + [anon_sym_async] = ACTIONS(1898), + [anon_sym_break] = ACTIONS(1898), + [anon_sym_const] = ACTIONS(1898), + [anon_sym_continue] = ACTIONS(1898), + [anon_sym_default] = ACTIONS(1898), + [anon_sym_enum] = ACTIONS(1898), + [anon_sym_fn] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_impl] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1898), + [anon_sym_loop] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [anon_sym_mod] = ACTIONS(1898), + [anon_sym_pub] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_static] = ACTIONS(1898), + [anon_sym_struct] = ACTIONS(1898), + [anon_sym_trait] = ACTIONS(1898), + [anon_sym_type] = ACTIONS(1898), + [anon_sym_union] = ACTIONS(1898), + [anon_sym_unsafe] = ACTIONS(1898), + [anon_sym_use] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_POUND] = ACTIONS(1896), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_extern] = ACTIONS(1898), + [anon_sym_LT] = ACTIONS(1896), + [anon_sym_COLON_COLON] = ACTIONS(1896), + [anon_sym_AMP] = ACTIONS(1896), + [anon_sym_DOT_DOT] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_yield] = ACTIONS(1898), + [anon_sym_move] = ACTIONS(1898), + [sym_integer_literal] = ACTIONS(1896), + [aux_sym_string_literal_token1] = ACTIONS(1896), + [sym_char_literal] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(1898), + [anon_sym_false] = ACTIONS(1898), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1898), + [sym_super] = ACTIONS(1898), + [sym_crate] = ACTIONS(1898), + [sym_metavariable] = ACTIONS(1896), + [sym_raw_string_literal] = ACTIONS(1896), + [sym_float_literal] = ACTIONS(1896), [sym_block_comment] = ACTIONS(3), }, [464] = { - [ts_builtin_sym_end] = ACTIONS(1898), - [sym_identifier] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_macro_rules_BANG] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_RBRACE] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_u8] = ACTIONS(1900), - [anon_sym_i8] = ACTIONS(1900), - [anon_sym_u16] = ACTIONS(1900), - [anon_sym_i16] = ACTIONS(1900), - [anon_sym_u32] = ACTIONS(1900), - [anon_sym_i32] = ACTIONS(1900), - [anon_sym_u64] = ACTIONS(1900), - [anon_sym_i64] = ACTIONS(1900), - [anon_sym_u128] = ACTIONS(1900), - [anon_sym_i128] = ACTIONS(1900), - [anon_sym_isize] = ACTIONS(1900), - [anon_sym_usize] = ACTIONS(1900), - [anon_sym_f32] = ACTIONS(1900), - [anon_sym_f64] = ACTIONS(1900), - [anon_sym_bool] = ACTIONS(1900), - [anon_sym_str] = ACTIONS(1900), - [anon_sym_char] = ACTIONS(1900), - [anon_sym_SQUOTE] = ACTIONS(1900), - [anon_sym_async] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_default] = ACTIONS(1900), - [anon_sym_enum] = ACTIONS(1900), - [anon_sym_fn] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_impl] = ACTIONS(1900), - [anon_sym_let] = ACTIONS(1900), - [anon_sym_loop] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [anon_sym_mod] = ACTIONS(1900), - [anon_sym_pub] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1900), - [anon_sym_type] = ACTIONS(1900), - [anon_sym_union] = ACTIONS(1900), - [anon_sym_unsafe] = ACTIONS(1900), - [anon_sym_use] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_DOT_DOT] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_yield] = ACTIONS(1900), - [anon_sym_move] = ACTIONS(1900), - [sym_integer_literal] = ACTIONS(1898), - [aux_sym_string_literal_token1] = ACTIONS(1898), - [sym_char_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1900), - [sym_super] = ACTIONS(1900), - [sym_crate] = ACTIONS(1900), - [sym_metavariable] = ACTIONS(1898), - [sym_raw_string_literal] = ACTIONS(1898), - [sym_float_literal] = ACTIONS(1898), + [ts_builtin_sym_end] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_macro_rules_BANG] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1900), + [anon_sym_u8] = ACTIONS(1902), + [anon_sym_i8] = ACTIONS(1902), + [anon_sym_u16] = ACTIONS(1902), + [anon_sym_i16] = ACTIONS(1902), + [anon_sym_u32] = ACTIONS(1902), + [anon_sym_i32] = ACTIONS(1902), + [anon_sym_u64] = ACTIONS(1902), + [anon_sym_i64] = ACTIONS(1902), + [anon_sym_u128] = ACTIONS(1902), + [anon_sym_i128] = ACTIONS(1902), + [anon_sym_isize] = ACTIONS(1902), + [anon_sym_usize] = ACTIONS(1902), + [anon_sym_f32] = ACTIONS(1902), + [anon_sym_f64] = ACTIONS(1902), + [anon_sym_bool] = ACTIONS(1902), + [anon_sym_str] = ACTIONS(1902), + [anon_sym_char] = ACTIONS(1902), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_async] = ACTIONS(1902), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_const] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1902), + [anon_sym_enum] = ACTIONS(1902), + [anon_sym_fn] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1902), + [anon_sym_impl] = ACTIONS(1902), + [anon_sym_let] = ACTIONS(1902), + [anon_sym_loop] = ACTIONS(1902), + [anon_sym_match] = ACTIONS(1902), + [anon_sym_mod] = ACTIONS(1902), + [anon_sym_pub] = ACTIONS(1902), + [anon_sym_return] = ACTIONS(1902), + [anon_sym_static] = ACTIONS(1902), + [anon_sym_struct] = ACTIONS(1902), + [anon_sym_trait] = ACTIONS(1902), + [anon_sym_type] = ACTIONS(1902), + [anon_sym_union] = ACTIONS(1902), + [anon_sym_unsafe] = ACTIONS(1902), + [anon_sym_use] = ACTIONS(1902), + [anon_sym_while] = ACTIONS(1902), + [anon_sym_POUND] = ACTIONS(1900), + [anon_sym_BANG] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1902), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_COLON_COLON] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_yield] = ACTIONS(1902), + [anon_sym_move] = ACTIONS(1902), + [sym_integer_literal] = ACTIONS(1900), + [aux_sym_string_literal_token1] = ACTIONS(1900), + [sym_char_literal] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1902), + [anon_sym_false] = ACTIONS(1902), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1902), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1900), + [sym_raw_string_literal] = ACTIONS(1900), + [sym_float_literal] = ACTIONS(1900), [sym_block_comment] = ACTIONS(3), }, [465] = { - [ts_builtin_sym_end] = ACTIONS(1902), - [sym_identifier] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_macro_rules_BANG] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_u8] = ACTIONS(1904), - [anon_sym_i8] = ACTIONS(1904), - [anon_sym_u16] = ACTIONS(1904), - [anon_sym_i16] = ACTIONS(1904), - [anon_sym_u32] = ACTIONS(1904), - [anon_sym_i32] = ACTIONS(1904), - [anon_sym_u64] = ACTIONS(1904), - [anon_sym_i64] = ACTIONS(1904), - [anon_sym_u128] = ACTIONS(1904), - [anon_sym_i128] = ACTIONS(1904), - [anon_sym_isize] = ACTIONS(1904), - [anon_sym_usize] = ACTIONS(1904), - [anon_sym_f32] = ACTIONS(1904), - [anon_sym_f64] = ACTIONS(1904), - [anon_sym_bool] = ACTIONS(1904), - [anon_sym_str] = ACTIONS(1904), - [anon_sym_char] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_async] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_default] = ACTIONS(1904), - [anon_sym_enum] = ACTIONS(1904), - [anon_sym_fn] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_impl] = ACTIONS(1904), - [anon_sym_let] = ACTIONS(1904), - [anon_sym_loop] = ACTIONS(1904), - [anon_sym_match] = ACTIONS(1904), - [anon_sym_mod] = ACTIONS(1904), - [anon_sym_pub] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1904), - [anon_sym_struct] = ACTIONS(1904), - [anon_sym_trait] = ACTIONS(1904), - [anon_sym_type] = ACTIONS(1904), - [anon_sym_union] = ACTIONS(1904), - [anon_sym_unsafe] = ACTIONS(1904), - [anon_sym_use] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_COLON_COLON] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1902), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_yield] = ACTIONS(1904), - [anon_sym_move] = ACTIONS(1904), - [sym_integer_literal] = ACTIONS(1902), - [aux_sym_string_literal_token1] = ACTIONS(1902), - [sym_char_literal] = ACTIONS(1902), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1904), - [sym_super] = ACTIONS(1904), - [sym_crate] = ACTIONS(1904), - [sym_metavariable] = ACTIONS(1902), - [sym_raw_string_literal] = ACTIONS(1902), - [sym_float_literal] = ACTIONS(1902), + [ts_builtin_sym_end] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_macro_rules_BANG] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1904), + [anon_sym_u8] = ACTIONS(1906), + [anon_sym_i8] = ACTIONS(1906), + [anon_sym_u16] = ACTIONS(1906), + [anon_sym_i16] = ACTIONS(1906), + [anon_sym_u32] = ACTIONS(1906), + [anon_sym_i32] = ACTIONS(1906), + [anon_sym_u64] = ACTIONS(1906), + [anon_sym_i64] = ACTIONS(1906), + [anon_sym_u128] = ACTIONS(1906), + [anon_sym_i128] = ACTIONS(1906), + [anon_sym_isize] = ACTIONS(1906), + [anon_sym_usize] = ACTIONS(1906), + [anon_sym_f32] = ACTIONS(1906), + [anon_sym_f64] = ACTIONS(1906), + [anon_sym_bool] = ACTIONS(1906), + [anon_sym_str] = ACTIONS(1906), + [anon_sym_char] = ACTIONS(1906), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_async] = ACTIONS(1906), + [anon_sym_break] = ACTIONS(1906), + [anon_sym_const] = ACTIONS(1906), + [anon_sym_continue] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1906), + [anon_sym_enum] = ACTIONS(1906), + [anon_sym_fn] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1906), + [anon_sym_impl] = ACTIONS(1906), + [anon_sym_let] = ACTIONS(1906), + [anon_sym_loop] = ACTIONS(1906), + [anon_sym_match] = ACTIONS(1906), + [anon_sym_mod] = ACTIONS(1906), + [anon_sym_pub] = ACTIONS(1906), + [anon_sym_return] = ACTIONS(1906), + [anon_sym_static] = ACTIONS(1906), + [anon_sym_struct] = ACTIONS(1906), + [anon_sym_trait] = ACTIONS(1906), + [anon_sym_type] = ACTIONS(1906), + [anon_sym_union] = ACTIONS(1906), + [anon_sym_unsafe] = ACTIONS(1906), + [anon_sym_use] = ACTIONS(1906), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_POUND] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1904), + [anon_sym_extern] = ACTIONS(1906), + [anon_sym_LT] = ACTIONS(1904), + [anon_sym_COLON_COLON] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_DOT_DOT] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_yield] = ACTIONS(1906), + [anon_sym_move] = ACTIONS(1906), + [sym_integer_literal] = ACTIONS(1904), + [aux_sym_string_literal_token1] = ACTIONS(1904), + [sym_char_literal] = ACTIONS(1904), + [anon_sym_true] = ACTIONS(1906), + [anon_sym_false] = ACTIONS(1906), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1906), + [sym_super] = ACTIONS(1906), + [sym_crate] = ACTIONS(1906), + [sym_metavariable] = ACTIONS(1904), + [sym_raw_string_literal] = ACTIONS(1904), + [sym_float_literal] = ACTIONS(1904), [sym_block_comment] = ACTIONS(3), }, [466] = { - [ts_builtin_sym_end] = ACTIONS(1906), - [sym_identifier] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_macro_rules_BANG] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_u8] = ACTIONS(1908), - [anon_sym_i8] = ACTIONS(1908), - [anon_sym_u16] = ACTIONS(1908), - [anon_sym_i16] = ACTIONS(1908), - [anon_sym_u32] = ACTIONS(1908), - [anon_sym_i32] = ACTIONS(1908), - [anon_sym_u64] = ACTIONS(1908), - [anon_sym_i64] = ACTIONS(1908), - [anon_sym_u128] = ACTIONS(1908), - [anon_sym_i128] = ACTIONS(1908), - [anon_sym_isize] = ACTIONS(1908), - [anon_sym_usize] = ACTIONS(1908), - [anon_sym_f32] = ACTIONS(1908), - [anon_sym_f64] = ACTIONS(1908), - [anon_sym_bool] = ACTIONS(1908), - [anon_sym_str] = ACTIONS(1908), - [anon_sym_char] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_async] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_const] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_default] = ACTIONS(1908), - [anon_sym_enum] = ACTIONS(1908), - [anon_sym_fn] = ACTIONS(1908), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_impl] = ACTIONS(1908), - [anon_sym_let] = ACTIONS(1908), - [anon_sym_loop] = ACTIONS(1908), - [anon_sym_match] = ACTIONS(1908), - [anon_sym_mod] = ACTIONS(1908), - [anon_sym_pub] = ACTIONS(1908), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(1908), - [anon_sym_trait] = ACTIONS(1908), - [anon_sym_type] = ACTIONS(1908), - [anon_sym_union] = ACTIONS(1908), - [anon_sym_unsafe] = ACTIONS(1908), - [anon_sym_use] = ACTIONS(1908), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_extern] = ACTIONS(1908), - [anon_sym_LT] = ACTIONS(1906), - [anon_sym_COLON_COLON] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_DOT_DOT] = ACTIONS(1906), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_yield] = ACTIONS(1908), - [anon_sym_move] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(1906), - [aux_sym_string_literal_token1] = ACTIONS(1906), - [sym_char_literal] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1908), - [sym_super] = ACTIONS(1908), - [sym_crate] = ACTIONS(1908), - [sym_metavariable] = ACTIONS(1906), - [sym_raw_string_literal] = ACTIONS(1906), - [sym_float_literal] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_macro_rules_BANG] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1908), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [anon_sym_POUND] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1910), + [anon_sym_LT] = ACTIONS(1908), + [anon_sym_COLON_COLON] = ACTIONS(1908), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_yield] = ACTIONS(1910), + [anon_sym_move] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1908), + [aux_sym_string_literal_token1] = ACTIONS(1908), + [sym_char_literal] = ACTIONS(1908), + [anon_sym_true] = ACTIONS(1910), + [anon_sym_false] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1908), + [sym_raw_string_literal] = ACTIONS(1908), + [sym_float_literal] = ACTIONS(1908), [sym_block_comment] = ACTIONS(3), }, [467] = { - [ts_builtin_sym_end] = ACTIONS(1910), - [sym_identifier] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_macro_rules_BANG] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_RBRACE] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1910), - [anon_sym_u8] = ACTIONS(1912), - [anon_sym_i8] = ACTIONS(1912), - [anon_sym_u16] = ACTIONS(1912), - [anon_sym_i16] = ACTIONS(1912), - [anon_sym_u32] = ACTIONS(1912), - [anon_sym_i32] = ACTIONS(1912), - [anon_sym_u64] = ACTIONS(1912), - [anon_sym_i64] = ACTIONS(1912), - [anon_sym_u128] = ACTIONS(1912), - [anon_sym_i128] = ACTIONS(1912), - [anon_sym_isize] = ACTIONS(1912), - [anon_sym_usize] = ACTIONS(1912), - [anon_sym_f32] = ACTIONS(1912), - [anon_sym_f64] = ACTIONS(1912), - [anon_sym_bool] = ACTIONS(1912), - [anon_sym_str] = ACTIONS(1912), - [anon_sym_char] = ACTIONS(1912), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_async] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_const] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_default] = ACTIONS(1912), - [anon_sym_enum] = ACTIONS(1912), - [anon_sym_fn] = ACTIONS(1912), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_impl] = ACTIONS(1912), - [anon_sym_let] = ACTIONS(1912), - [anon_sym_loop] = ACTIONS(1912), - [anon_sym_match] = ACTIONS(1912), - [anon_sym_mod] = ACTIONS(1912), - [anon_sym_pub] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1912), - [anon_sym_struct] = ACTIONS(1912), - [anon_sym_trait] = ACTIONS(1912), - [anon_sym_type] = ACTIONS(1912), - [anon_sym_union] = ACTIONS(1912), - [anon_sym_unsafe] = ACTIONS(1912), - [anon_sym_use] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_BANG] = ACTIONS(1910), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_COLON_COLON] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_DOT_DOT] = ACTIONS(1910), - [anon_sym_DASH] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1910), - [anon_sym_yield] = ACTIONS(1912), - [anon_sym_move] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(1910), - [aux_sym_string_literal_token1] = ACTIONS(1910), - [sym_char_literal] = ACTIONS(1910), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1912), - [sym_super] = ACTIONS(1912), - [sym_crate] = ACTIONS(1912), - [sym_metavariable] = ACTIONS(1910), - [sym_raw_string_literal] = ACTIONS(1910), - [sym_float_literal] = ACTIONS(1910), + [ts_builtin_sym_end] = ACTIONS(1912), + [sym_identifier] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_macro_rules_BANG] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1912), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_u8] = ACTIONS(1914), + [anon_sym_i8] = ACTIONS(1914), + [anon_sym_u16] = ACTIONS(1914), + [anon_sym_i16] = ACTIONS(1914), + [anon_sym_u32] = ACTIONS(1914), + [anon_sym_i32] = ACTIONS(1914), + [anon_sym_u64] = ACTIONS(1914), + [anon_sym_i64] = ACTIONS(1914), + [anon_sym_u128] = ACTIONS(1914), + [anon_sym_i128] = ACTIONS(1914), + [anon_sym_isize] = ACTIONS(1914), + [anon_sym_usize] = ACTIONS(1914), + [anon_sym_f32] = ACTIONS(1914), + [anon_sym_f64] = ACTIONS(1914), + [anon_sym_bool] = ACTIONS(1914), + [anon_sym_str] = ACTIONS(1914), + [anon_sym_char] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_async] = ACTIONS(1914), + [anon_sym_break] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1914), + [anon_sym_continue] = ACTIONS(1914), + [anon_sym_default] = ACTIONS(1914), + [anon_sym_enum] = ACTIONS(1914), + [anon_sym_fn] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_impl] = ACTIONS(1914), + [anon_sym_let] = ACTIONS(1914), + [anon_sym_loop] = ACTIONS(1914), + [anon_sym_match] = ACTIONS(1914), + [anon_sym_mod] = ACTIONS(1914), + [anon_sym_pub] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1914), + [anon_sym_struct] = ACTIONS(1914), + [anon_sym_trait] = ACTIONS(1914), + [anon_sym_type] = ACTIONS(1914), + [anon_sym_union] = ACTIONS(1914), + [anon_sym_unsafe] = ACTIONS(1914), + [anon_sym_use] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1912), + [anon_sym_BANG] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1914), + [anon_sym_LT] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_yield] = ACTIONS(1914), + [anon_sym_move] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(1912), + [aux_sym_string_literal_token1] = ACTIONS(1912), + [sym_char_literal] = ACTIONS(1912), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1914), + [sym_super] = ACTIONS(1914), + [sym_crate] = ACTIONS(1914), + [sym_metavariable] = ACTIONS(1912), + [sym_raw_string_literal] = ACTIONS(1912), + [sym_float_literal] = ACTIONS(1912), [sym_block_comment] = ACTIONS(3), }, [468] = { - [ts_builtin_sym_end] = ACTIONS(1914), - [sym_identifier] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_macro_rules_BANG] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_u8] = ACTIONS(1916), - [anon_sym_i8] = ACTIONS(1916), - [anon_sym_u16] = ACTIONS(1916), - [anon_sym_i16] = ACTIONS(1916), - [anon_sym_u32] = ACTIONS(1916), - [anon_sym_i32] = ACTIONS(1916), - [anon_sym_u64] = ACTIONS(1916), - [anon_sym_i64] = ACTIONS(1916), - [anon_sym_u128] = ACTIONS(1916), - [anon_sym_i128] = ACTIONS(1916), - [anon_sym_isize] = ACTIONS(1916), - [anon_sym_usize] = ACTIONS(1916), - [anon_sym_f32] = ACTIONS(1916), - [anon_sym_f64] = ACTIONS(1916), - [anon_sym_bool] = ACTIONS(1916), - [anon_sym_str] = ACTIONS(1916), - [anon_sym_char] = ACTIONS(1916), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_async] = ACTIONS(1916), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_const] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1916), - [anon_sym_default] = ACTIONS(1916), - [anon_sym_enum] = ACTIONS(1916), - [anon_sym_fn] = ACTIONS(1916), - [anon_sym_for] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1916), - [anon_sym_impl] = ACTIONS(1916), - [anon_sym_let] = ACTIONS(1916), - [anon_sym_loop] = ACTIONS(1916), - [anon_sym_match] = ACTIONS(1916), - [anon_sym_mod] = ACTIONS(1916), - [anon_sym_pub] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1916), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_struct] = ACTIONS(1916), - [anon_sym_trait] = ACTIONS(1916), - [anon_sym_type] = ACTIONS(1916), - [anon_sym_union] = ACTIONS(1916), - [anon_sym_unsafe] = ACTIONS(1916), - [anon_sym_use] = ACTIONS(1916), - [anon_sym_while] = ACTIONS(1916), - [anon_sym_POUND] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_extern] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_COLON_COLON] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1914), - [anon_sym_DOT_DOT] = ACTIONS(1914), - [anon_sym_DASH] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1914), - [anon_sym_yield] = ACTIONS(1916), - [anon_sym_move] = ACTIONS(1916), - [sym_integer_literal] = ACTIONS(1914), - [aux_sym_string_literal_token1] = ACTIONS(1914), - [sym_char_literal] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1916), - [sym_super] = ACTIONS(1916), - [sym_crate] = ACTIONS(1916), - [sym_metavariable] = ACTIONS(1914), - [sym_raw_string_literal] = ACTIONS(1914), - [sym_float_literal] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_macro_rules_BANG] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1916), + [anon_sym_u8] = ACTIONS(1918), + [anon_sym_i8] = ACTIONS(1918), + [anon_sym_u16] = ACTIONS(1918), + [anon_sym_i16] = ACTIONS(1918), + [anon_sym_u32] = ACTIONS(1918), + [anon_sym_i32] = ACTIONS(1918), + [anon_sym_u64] = ACTIONS(1918), + [anon_sym_i64] = ACTIONS(1918), + [anon_sym_u128] = ACTIONS(1918), + [anon_sym_i128] = ACTIONS(1918), + [anon_sym_isize] = ACTIONS(1918), + [anon_sym_usize] = ACTIONS(1918), + [anon_sym_f32] = ACTIONS(1918), + [anon_sym_f64] = ACTIONS(1918), + [anon_sym_bool] = ACTIONS(1918), + [anon_sym_str] = ACTIONS(1918), + [anon_sym_char] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_async] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_default] = ACTIONS(1918), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_fn] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_impl] = ACTIONS(1918), + [anon_sym_let] = ACTIONS(1918), + [anon_sym_loop] = ACTIONS(1918), + [anon_sym_match] = ACTIONS(1918), + [anon_sym_mod] = ACTIONS(1918), + [anon_sym_pub] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1918), + [anon_sym_struct] = ACTIONS(1918), + [anon_sym_trait] = ACTIONS(1918), + [anon_sym_type] = ACTIONS(1918), + [anon_sym_union] = ACTIONS(1918), + [anon_sym_unsafe] = ACTIONS(1918), + [anon_sym_use] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_POUND] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_COLON_COLON] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_DOT_DOT] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_yield] = ACTIONS(1918), + [anon_sym_move] = ACTIONS(1918), + [sym_integer_literal] = ACTIONS(1916), + [aux_sym_string_literal_token1] = ACTIONS(1916), + [sym_char_literal] = ACTIONS(1916), + [anon_sym_true] = ACTIONS(1918), + [anon_sym_false] = ACTIONS(1918), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1918), + [sym_super] = ACTIONS(1918), + [sym_crate] = ACTIONS(1918), + [sym_metavariable] = ACTIONS(1916), + [sym_raw_string_literal] = ACTIONS(1916), + [sym_float_literal] = ACTIONS(1916), [sym_block_comment] = ACTIONS(3), }, [469] = { - [ts_builtin_sym_end] = ACTIONS(1918), - [sym_identifier] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_macro_rules_BANG] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1918), - [anon_sym_u8] = ACTIONS(1920), - [anon_sym_i8] = ACTIONS(1920), - [anon_sym_u16] = ACTIONS(1920), - [anon_sym_i16] = ACTIONS(1920), - [anon_sym_u32] = ACTIONS(1920), - [anon_sym_i32] = ACTIONS(1920), - [anon_sym_u64] = ACTIONS(1920), - [anon_sym_i64] = ACTIONS(1920), - [anon_sym_u128] = ACTIONS(1920), - [anon_sym_i128] = ACTIONS(1920), - [anon_sym_isize] = ACTIONS(1920), - [anon_sym_usize] = ACTIONS(1920), - [anon_sym_f32] = ACTIONS(1920), - [anon_sym_f64] = ACTIONS(1920), - [anon_sym_bool] = ACTIONS(1920), - [anon_sym_str] = ACTIONS(1920), - [anon_sym_char] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_async] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_default] = ACTIONS(1920), - [anon_sym_enum] = ACTIONS(1920), - [anon_sym_fn] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_impl] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_mod] = ACTIONS(1920), - [anon_sym_pub] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_static] = ACTIONS(1920), - [anon_sym_struct] = ACTIONS(1920), - [anon_sym_trait] = ACTIONS(1920), - [anon_sym_type] = ACTIONS(1920), - [anon_sym_union] = ACTIONS(1920), - [anon_sym_unsafe] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_POUND] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_COLON_COLON] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_DOT_DOT] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_yield] = ACTIONS(1920), - [anon_sym_move] = ACTIONS(1920), - [sym_integer_literal] = ACTIONS(1918), - [aux_sym_string_literal_token1] = ACTIONS(1918), - [sym_char_literal] = ACTIONS(1918), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1920), - [sym_super] = ACTIONS(1920), - [sym_crate] = ACTIONS(1920), - [sym_metavariable] = ACTIONS(1918), - [sym_raw_string_literal] = ACTIONS(1918), - [sym_float_literal] = ACTIONS(1918), + [ts_builtin_sym_end] = ACTIONS(1920), + [sym_identifier] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_macro_rules_BANG] = ACTIONS(1920), + [anon_sym_LPAREN] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_u8] = ACTIONS(1922), + [anon_sym_i8] = ACTIONS(1922), + [anon_sym_u16] = ACTIONS(1922), + [anon_sym_i16] = ACTIONS(1922), + [anon_sym_u32] = ACTIONS(1922), + [anon_sym_i32] = ACTIONS(1922), + [anon_sym_u64] = ACTIONS(1922), + [anon_sym_i64] = ACTIONS(1922), + [anon_sym_u128] = ACTIONS(1922), + [anon_sym_i128] = ACTIONS(1922), + [anon_sym_isize] = ACTIONS(1922), + [anon_sym_usize] = ACTIONS(1922), + [anon_sym_f32] = ACTIONS(1922), + [anon_sym_f64] = ACTIONS(1922), + [anon_sym_bool] = ACTIONS(1922), + [anon_sym_str] = ACTIONS(1922), + [anon_sym_char] = ACTIONS(1922), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1922), + [anon_sym_const] = ACTIONS(1922), + [anon_sym_continue] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1922), + [anon_sym_enum] = ACTIONS(1922), + [anon_sym_fn] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(1922), + [anon_sym_impl] = ACTIONS(1922), + [anon_sym_let] = ACTIONS(1922), + [anon_sym_loop] = ACTIONS(1922), + [anon_sym_match] = ACTIONS(1922), + [anon_sym_mod] = ACTIONS(1922), + [anon_sym_pub] = ACTIONS(1922), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_trait] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1922), + [anon_sym_unsafe] = ACTIONS(1922), + [anon_sym_use] = ACTIONS(1922), + [anon_sym_while] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1920), + [anon_sym_COLON_COLON] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_yield] = ACTIONS(1922), + [anon_sym_move] = ACTIONS(1922), + [sym_integer_literal] = ACTIONS(1920), + [aux_sym_string_literal_token1] = ACTIONS(1920), + [sym_char_literal] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1922), + [anon_sym_false] = ACTIONS(1922), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1922), + [sym_super] = ACTIONS(1922), + [sym_crate] = ACTIONS(1922), + [sym_metavariable] = ACTIONS(1920), + [sym_raw_string_literal] = ACTIONS(1920), + [sym_float_literal] = ACTIONS(1920), [sym_block_comment] = ACTIONS(3), }, [470] = { - [ts_builtin_sym_end] = ACTIONS(1922), - [sym_identifier] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_macro_rules_BANG] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_RBRACE] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_u8] = ACTIONS(1924), - [anon_sym_i8] = ACTIONS(1924), - [anon_sym_u16] = ACTIONS(1924), - [anon_sym_i16] = ACTIONS(1924), - [anon_sym_u32] = ACTIONS(1924), - [anon_sym_i32] = ACTIONS(1924), - [anon_sym_u64] = ACTIONS(1924), - [anon_sym_i64] = ACTIONS(1924), - [anon_sym_u128] = ACTIONS(1924), - [anon_sym_i128] = ACTIONS(1924), - [anon_sym_isize] = ACTIONS(1924), - [anon_sym_usize] = ACTIONS(1924), - [anon_sym_f32] = ACTIONS(1924), - [anon_sym_f64] = ACTIONS(1924), - [anon_sym_bool] = ACTIONS(1924), - [anon_sym_str] = ACTIONS(1924), - [anon_sym_char] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_async] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1924), - [anon_sym_continue] = ACTIONS(1924), - [anon_sym_default] = ACTIONS(1924), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_fn] = ACTIONS(1924), - [anon_sym_for] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(1924), - [anon_sym_impl] = ACTIONS(1924), - [anon_sym_let] = ACTIONS(1924), - [anon_sym_loop] = ACTIONS(1924), - [anon_sym_match] = ACTIONS(1924), - [anon_sym_mod] = ACTIONS(1924), - [anon_sym_pub] = ACTIONS(1924), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(1924), - [anon_sym_trait] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_union] = ACTIONS(1924), - [anon_sym_unsafe] = ACTIONS(1924), - [anon_sym_use] = ACTIONS(1924), - [anon_sym_while] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_extern] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_COLON_COLON] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1922), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_yield] = ACTIONS(1924), - [anon_sym_move] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(1922), - [aux_sym_string_literal_token1] = ACTIONS(1922), - [sym_char_literal] = ACTIONS(1922), - [anon_sym_true] = ACTIONS(1924), - [anon_sym_false] = ACTIONS(1924), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1924), - [sym_super] = ACTIONS(1924), - [sym_crate] = ACTIONS(1924), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1922), - [sym_float_literal] = ACTIONS(1922), + [ts_builtin_sym_end] = ACTIONS(1924), + [sym_identifier] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_macro_rules_BANG] = ACTIONS(1924), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1924), + [anon_sym_u8] = ACTIONS(1926), + [anon_sym_i8] = ACTIONS(1926), + [anon_sym_u16] = ACTIONS(1926), + [anon_sym_i16] = ACTIONS(1926), + [anon_sym_u32] = ACTIONS(1926), + [anon_sym_i32] = ACTIONS(1926), + [anon_sym_u64] = ACTIONS(1926), + [anon_sym_i64] = ACTIONS(1926), + [anon_sym_u128] = ACTIONS(1926), + [anon_sym_i128] = ACTIONS(1926), + [anon_sym_isize] = ACTIONS(1926), + [anon_sym_usize] = ACTIONS(1926), + [anon_sym_f32] = ACTIONS(1926), + [anon_sym_f64] = ACTIONS(1926), + [anon_sym_bool] = ACTIONS(1926), + [anon_sym_str] = ACTIONS(1926), + [anon_sym_char] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_async] = ACTIONS(1926), + [anon_sym_break] = ACTIONS(1926), + [anon_sym_const] = ACTIONS(1926), + [anon_sym_continue] = ACTIONS(1926), + [anon_sym_default] = ACTIONS(1926), + [anon_sym_enum] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1926), + [anon_sym_for] = ACTIONS(1926), + [anon_sym_if] = ACTIONS(1926), + [anon_sym_impl] = ACTIONS(1926), + [anon_sym_let] = ACTIONS(1926), + [anon_sym_loop] = ACTIONS(1926), + [anon_sym_match] = ACTIONS(1926), + [anon_sym_mod] = ACTIONS(1926), + [anon_sym_pub] = ACTIONS(1926), + [anon_sym_return] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1926), + [anon_sym_struct] = ACTIONS(1926), + [anon_sym_trait] = ACTIONS(1926), + [anon_sym_type] = ACTIONS(1926), + [anon_sym_union] = ACTIONS(1926), + [anon_sym_unsafe] = ACTIONS(1926), + [anon_sym_use] = ACTIONS(1926), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_yield] = ACTIONS(1926), + [anon_sym_move] = ACTIONS(1926), + [sym_integer_literal] = ACTIONS(1924), + [aux_sym_string_literal_token1] = ACTIONS(1924), + [sym_char_literal] = ACTIONS(1924), + [anon_sym_true] = ACTIONS(1926), + [anon_sym_false] = ACTIONS(1926), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1926), + [sym_super] = ACTIONS(1926), + [sym_crate] = ACTIONS(1926), + [sym_metavariable] = ACTIONS(1924), + [sym_raw_string_literal] = ACTIONS(1924), + [sym_float_literal] = ACTIONS(1924), [sym_block_comment] = ACTIONS(3), }, [471] = { - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_macro_rules_BANG] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1926), - [anon_sym_u8] = ACTIONS(1928), - [anon_sym_i8] = ACTIONS(1928), - [anon_sym_u16] = ACTIONS(1928), - [anon_sym_i16] = ACTIONS(1928), - [anon_sym_u32] = ACTIONS(1928), - [anon_sym_i32] = ACTIONS(1928), - [anon_sym_u64] = ACTIONS(1928), - [anon_sym_i64] = ACTIONS(1928), - [anon_sym_u128] = ACTIONS(1928), - [anon_sym_i128] = ACTIONS(1928), - [anon_sym_isize] = ACTIONS(1928), - [anon_sym_usize] = ACTIONS(1928), - [anon_sym_f32] = ACTIONS(1928), - [anon_sym_f64] = ACTIONS(1928), - [anon_sym_bool] = ACTIONS(1928), - [anon_sym_str] = ACTIONS(1928), - [anon_sym_char] = ACTIONS(1928), - [anon_sym_SQUOTE] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_const] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_default] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1928), - [anon_sym_fn] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_impl] = ACTIONS(1928), - [anon_sym_let] = ACTIONS(1928), - [anon_sym_loop] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_mod] = ACTIONS(1928), - [anon_sym_pub] = ACTIONS(1928), - [anon_sym_return] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1928), - [anon_sym_struct] = ACTIONS(1928), - [anon_sym_trait] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_union] = ACTIONS(1928), - [anon_sym_unsafe] = ACTIONS(1928), - [anon_sym_use] = ACTIONS(1928), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_POUND] = ACTIONS(1926), - [anon_sym_BANG] = ACTIONS(1926), - [anon_sym_extern] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1926), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_AMP] = ACTIONS(1926), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_yield] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [sym_integer_literal] = ACTIONS(1926), - [aux_sym_string_literal_token1] = ACTIONS(1926), - [sym_char_literal] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1928), - [sym_super] = ACTIONS(1928), - [sym_crate] = ACTIONS(1928), - [sym_metavariable] = ACTIONS(1926), - [sym_raw_string_literal] = ACTIONS(1926), - [sym_float_literal] = ACTIONS(1926), + [ts_builtin_sym_end] = ACTIONS(1928), + [sym_identifier] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_macro_rules_BANG] = ACTIONS(1928), + [anon_sym_LPAREN] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(1928), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_u8] = ACTIONS(1930), + [anon_sym_i8] = ACTIONS(1930), + [anon_sym_u16] = ACTIONS(1930), + [anon_sym_i16] = ACTIONS(1930), + [anon_sym_u32] = ACTIONS(1930), + [anon_sym_i32] = ACTIONS(1930), + [anon_sym_u64] = ACTIONS(1930), + [anon_sym_i64] = ACTIONS(1930), + [anon_sym_u128] = ACTIONS(1930), + [anon_sym_i128] = ACTIONS(1930), + [anon_sym_isize] = ACTIONS(1930), + [anon_sym_usize] = ACTIONS(1930), + [anon_sym_f32] = ACTIONS(1930), + [anon_sym_f64] = ACTIONS(1930), + [anon_sym_bool] = ACTIONS(1930), + [anon_sym_str] = ACTIONS(1930), + [anon_sym_char] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1930), + [anon_sym_async] = ACTIONS(1930), + [anon_sym_break] = ACTIONS(1930), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_continue] = ACTIONS(1930), + [anon_sym_default] = ACTIONS(1930), + [anon_sym_enum] = ACTIONS(1930), + [anon_sym_fn] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_impl] = ACTIONS(1930), + [anon_sym_let] = ACTIONS(1930), + [anon_sym_loop] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_mod] = ACTIONS(1930), + [anon_sym_pub] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1930), + [anon_sym_struct] = ACTIONS(1930), + [anon_sym_trait] = ACTIONS(1930), + [anon_sym_type] = ACTIONS(1930), + [anon_sym_union] = ACTIONS(1930), + [anon_sym_unsafe] = ACTIONS(1930), + [anon_sym_use] = ACTIONS(1930), + [anon_sym_while] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1928), + [anon_sym_BANG] = ACTIONS(1928), + [anon_sym_extern] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_COLON_COLON] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym_DOT_DOT] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1928), + [anon_sym_yield] = ACTIONS(1930), + [anon_sym_move] = ACTIONS(1930), + [sym_integer_literal] = ACTIONS(1928), + [aux_sym_string_literal_token1] = ACTIONS(1928), + [sym_char_literal] = ACTIONS(1928), + [anon_sym_true] = ACTIONS(1930), + [anon_sym_false] = ACTIONS(1930), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1930), + [sym_super] = ACTIONS(1930), + [sym_crate] = ACTIONS(1930), + [sym_metavariable] = ACTIONS(1928), + [sym_raw_string_literal] = ACTIONS(1928), + [sym_float_literal] = ACTIONS(1928), [sym_block_comment] = ACTIONS(3), }, [472] = { - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_macro_rules_BANG] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_u8] = ACTIONS(1932), - [anon_sym_i8] = ACTIONS(1932), - [anon_sym_u16] = ACTIONS(1932), - [anon_sym_i16] = ACTIONS(1932), - [anon_sym_u32] = ACTIONS(1932), - [anon_sym_i32] = ACTIONS(1932), - [anon_sym_u64] = ACTIONS(1932), - [anon_sym_i64] = ACTIONS(1932), - [anon_sym_u128] = ACTIONS(1932), - [anon_sym_i128] = ACTIONS(1932), - [anon_sym_isize] = ACTIONS(1932), - [anon_sym_usize] = ACTIONS(1932), - [anon_sym_f32] = ACTIONS(1932), - [anon_sym_f64] = ACTIONS(1932), - [anon_sym_bool] = ACTIONS(1932), - [anon_sym_str] = ACTIONS(1932), - [anon_sym_char] = ACTIONS(1932), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_const] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_default] = ACTIONS(1932), - [anon_sym_enum] = ACTIONS(1932), - [anon_sym_fn] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_impl] = ACTIONS(1932), - [anon_sym_let] = ACTIONS(1932), - [anon_sym_loop] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_mod] = ACTIONS(1932), - [anon_sym_pub] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1932), - [anon_sym_trait] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_union] = ACTIONS(1932), - [anon_sym_unsafe] = ACTIONS(1932), - [anon_sym_use] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_extern] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_COLON_COLON] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [sym_integer_literal] = ACTIONS(1930), - [aux_sym_string_literal_token1] = ACTIONS(1930), - [sym_char_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1932), - [sym_super] = ACTIONS(1932), - [sym_crate] = ACTIONS(1932), - [sym_metavariable] = ACTIONS(1930), - [sym_raw_string_literal] = ACTIONS(1930), - [sym_float_literal] = ACTIONS(1930), + [sym_attribute_item] = STATE(560), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_macro_invocation] = STATE(2498), + [sym_scoped_identifier] = STATE(1586), + [sym_scoped_type_identifier] = STATE(2024), + [sym_match_arm] = STATE(497), + [sym_last_match_arm] = STATE(2423), + [sym_match_pattern] = STATE(2486), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1929), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_enum_variant_list_repeat1] = STATE(560), + [aux_sym_match_block_repeat1] = STATE(497), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [473] = { @@ -61667,18 +61656,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [494] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [sym__token_pattern] = STATE(262), + [sym_token_tree_pattern] = STATE(262), + [sym_token_binding_pattern] = STATE(262), + [sym_token_repetition_pattern] = STATE(262), + [sym__literal] = STATE(262), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(262), [sym_identifier] = ACTIONS(2018), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2024), [anon_sym_LBRACK] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(2028), [anon_sym_u8] = ACTIONS(2018), @@ -61733,7 +61722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2018), [sym_super] = ACTIONS(2018), [sym_crate] = ACTIONS(2018), @@ -61743,66 +61732,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [495] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2581), - [sym_scoped_identifier] = STATE(1567), - [sym_scoped_type_identifier] = STATE(1919), + [sym_attribute_item] = STATE(560), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_macro_invocation] = STATE(2498), + [sym_scoped_identifier] = STATE(1586), + [sym_scoped_type_identifier] = STATE(2024), [sym_match_arm] = STATE(513), - [sym_last_match_arm] = STATE(2560), - [sym_match_pattern] = STATE(2569), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2123), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(558), + [sym_last_match_arm] = STATE(2576), + [sym_match_pattern] = STATE(2486), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1929), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_enum_variant_list_repeat1] = STATE(560), [aux_sym_match_block_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(1132), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_union] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -61810,29 +61799,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [496] = { - [sym__token_pattern] = STATE(511), - [sym_token_tree_pattern] = STATE(511), - [sym_token_binding_pattern] = STATE(511), - [sym_token_repetition_pattern] = STATE(511), - [sym__literal] = STATE(511), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_pattern_repeat1] = STATE(511), + [sym_token_tree] = STATE(496), + [sym_token_repetition] = STATE(496), + [sym__literal] = STATE(496), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(496), [sym_identifier] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_RBRACK] = ACTIONS(2044), + [anon_sym_DOLLAR] = ACTIONS(2052), [anon_sym_u8] = ACTIONS(2038), [anon_sym_i8] = ACTIONS(2038), [anon_sym_u16] = ACTIONS(2038), @@ -61870,243 +61859,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_where] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [sym_mutable_specifier] = ACTIONS(2038), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_crate] = ACTIONS(2038), - [sym_metavariable] = ACTIONS(2036), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [497] = { - [sym__token_pattern] = STATE(494), - [sym_token_tree_pattern] = STATE(494), - [sym_token_binding_pattern] = STATE(494), - [sym_token_repetition_pattern] = STATE(494), - [sym__literal] = STATE(494), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_pattern_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(2028), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2042), - [anon_sym_as] = ACTIONS(2042), - [anon_sym_async] = ACTIONS(2042), - [anon_sym_await] = 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_where] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [sym_mutable_specifier] = ACTIONS(2042), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2042), - [sym_super] = ACTIONS(2042), - [sym_crate] = ACTIONS(2042), - [sym_metavariable] = ACTIONS(2036), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [498] = { - [sym__token_pattern] = STATE(508), - [sym_token_tree_pattern] = STATE(508), - [sym_token_binding_pattern] = STATE(508), - [sym_token_repetition_pattern] = STATE(508), - [sym__literal] = STATE(508), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_pattern_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_RBRACK] = ACTIONS(2040), - [anon_sym_DOLLAR] = ACTIONS(2028), - [anon_sym_u8] = ACTIONS(2044), - [anon_sym_i8] = ACTIONS(2044), - [anon_sym_u16] = ACTIONS(2044), - [anon_sym_i16] = ACTIONS(2044), - [anon_sym_u32] = ACTIONS(2044), - [anon_sym_i32] = ACTIONS(2044), - [anon_sym_u64] = ACTIONS(2044), - [anon_sym_i64] = ACTIONS(2044), - [anon_sym_u128] = ACTIONS(2044), - [anon_sym_i128] = ACTIONS(2044), - [anon_sym_isize] = ACTIONS(2044), - [anon_sym_usize] = ACTIONS(2044), - [anon_sym_f32] = ACTIONS(2044), - [anon_sym_f64] = ACTIONS(2044), - [anon_sym_bool] = ACTIONS(2044), - [anon_sym_str] = ACTIONS(2044), - [anon_sym_char] = ACTIONS(2044), - [aux_sym__non_special_token_token1] = ACTIONS(2044), - [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_as] = ACTIONS(2044), - [anon_sym_async] = ACTIONS(2044), - [anon_sym_await] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_default] = ACTIONS(2044), - [anon_sym_enum] = ACTIONS(2044), - [anon_sym_fn] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_impl] = ACTIONS(2044), - [anon_sym_let] = ACTIONS(2044), - [anon_sym_loop] = ACTIONS(2044), - [anon_sym_match] = ACTIONS(2044), - [anon_sym_mod] = ACTIONS(2044), - [anon_sym_pub] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2044), - [anon_sym_struct] = ACTIONS(2044), - [anon_sym_trait] = ACTIONS(2044), - [anon_sym_type] = ACTIONS(2044), - [anon_sym_union] = ACTIONS(2044), - [anon_sym_unsafe] = ACTIONS(2044), - [anon_sym_use] = ACTIONS(2044), - [anon_sym_where] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [sym_mutable_specifier] = ACTIONS(2044), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2044), - [sym_super] = ACTIONS(2044), - [sym_crate] = ACTIONS(2044), - [sym_metavariable] = ACTIONS(2036), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), + [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_where] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [sym_mutable_specifier] = ACTIONS(2038), + [sym_integer_literal] = ACTIONS(2055), + [aux_sym_string_literal_token1] = ACTIONS(2058), + [sym_char_literal] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2038), + [sym_super] = ACTIONS(2038), + [sym_crate] = ACTIONS(2038), + [sym_metavariable] = ACTIONS(2064), + [sym_raw_string_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), [sym_block_comment] = ACTIONS(3), }, - [499] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2581), - [sym_scoped_identifier] = STATE(1567), - [sym_scoped_type_identifier] = STATE(1919), + [497] = { + [sym_attribute_item] = STATE(560), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_macro_invocation] = STATE(2498), + [sym_scoped_identifier] = STATE(1586), + [sym_scoped_type_identifier] = STATE(2024), [sym_match_arm] = STATE(513), - [sym_last_match_arm] = STATE(2494), - [sym_match_pattern] = STATE(2569), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2123), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(558), + [sym_last_match_arm] = STATE(2412), + [sym_match_pattern] = STATE(2486), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1929), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_enum_variant_list_repeat1] = STATE(560), [aux_sym_match_block_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(1132), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_union] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -62114,103 +61951,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [500] = { - [sym__token_pattern] = STATE(503), - [sym_token_tree_pattern] = STATE(503), - [sym_token_binding_pattern] = STATE(503), - [sym_token_repetition_pattern] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_pattern_repeat1] = STATE(503), - [sym_identifier] = ACTIONS(2046), + [498] = { + [sym__token_pattern] = STATE(499), + [sym_token_tree_pattern] = STATE(499), + [sym_token_binding_pattern] = STATE(499), + [sym_token_repetition_pattern] = STATE(499), + [sym__literal] = STATE(499), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(499), + [sym_identifier] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2048), - [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2024), [anon_sym_LBRACK] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(2028), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2046), - [anon_sym_SQUOTE] = ACTIONS(2046), - [anon_sym_as] = ACTIONS(2046), - [anon_sym_async] = ACTIONS(2046), - [anon_sym_await] = 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_where] = ACTIONS(2046), - [anon_sym_while] = ACTIONS(2046), - [sym_mutable_specifier] = ACTIONS(2046), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_await] = 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_where] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [sym_mutable_specifier] = ACTIONS(2067), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2046), - [sym_super] = ACTIONS(2046), - [sym_crate] = ACTIONS(2046), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_crate] = ACTIONS(2067), [sym_metavariable] = ACTIONS(2036), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [501] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [499] = { + [sym__token_pattern] = STATE(262), + [sym_token_tree_pattern] = STATE(262), + [sym_token_binding_pattern] = STATE(262), + [sym_token_repetition_pattern] = STATE(262), + [sym__literal] = STATE(262), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(262), [sym_identifier] = ACTIONS(2018), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2024), [anon_sym_LBRACK] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(2028), [anon_sym_u8] = ACTIONS(2018), @@ -62265,7 +62102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2018), [sym_super] = ACTIONS(2018), [sym_crate] = ACTIONS(2018), @@ -62274,95 +62111,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [502] = { - [sym__token_pattern] = STATE(505), - [sym_token_tree_pattern] = STATE(505), - [sym_token_binding_pattern] = STATE(505), - [sym_token_repetition_pattern] = STATE(505), - [sym__literal] = STATE(505), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_pattern_repeat1] = STATE(505), - [sym_identifier] = ACTIONS(2052), + [500] = { + [sym__token_pattern] = STATE(502), + [sym_token_tree_pattern] = STATE(502), + [sym_token_binding_pattern] = STATE(502), + [sym_token_repetition_pattern] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2073), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2069), [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_RBRACK] = ACTIONS(2048), [anon_sym_DOLLAR] = ACTIONS(2028), - [anon_sym_u8] = ACTIONS(2052), - [anon_sym_i8] = ACTIONS(2052), - [anon_sym_u16] = ACTIONS(2052), - [anon_sym_i16] = ACTIONS(2052), - [anon_sym_u32] = ACTIONS(2052), - [anon_sym_i32] = ACTIONS(2052), - [anon_sym_u64] = ACTIONS(2052), - [anon_sym_i64] = ACTIONS(2052), - [anon_sym_u128] = ACTIONS(2052), - [anon_sym_i128] = ACTIONS(2052), - [anon_sym_isize] = ACTIONS(2052), - [anon_sym_usize] = ACTIONS(2052), - [anon_sym_f32] = ACTIONS(2052), - [anon_sym_f64] = ACTIONS(2052), - [anon_sym_bool] = ACTIONS(2052), - [anon_sym_str] = ACTIONS(2052), - [anon_sym_char] = ACTIONS(2052), - [aux_sym__non_special_token_token1] = ACTIONS(2052), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_as] = ACTIONS(2052), - [anon_sym_async] = ACTIONS(2052), - [anon_sym_await] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_default] = ACTIONS(2052), - [anon_sym_enum] = ACTIONS(2052), - [anon_sym_fn] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_impl] = ACTIONS(2052), - [anon_sym_let] = ACTIONS(2052), - [anon_sym_loop] = ACTIONS(2052), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_mod] = ACTIONS(2052), - [anon_sym_pub] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2052), - [anon_sym_struct] = ACTIONS(2052), - [anon_sym_trait] = ACTIONS(2052), - [anon_sym_type] = ACTIONS(2052), - [anon_sym_union] = ACTIONS(2052), - [anon_sym_unsafe] = ACTIONS(2052), - [anon_sym_use] = ACTIONS(2052), - [anon_sym_where] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2052), - [sym_mutable_specifier] = ACTIONS(2052), + [anon_sym_u8] = ACTIONS(2073), + [anon_sym_i8] = ACTIONS(2073), + [anon_sym_u16] = ACTIONS(2073), + [anon_sym_i16] = ACTIONS(2073), + [anon_sym_u32] = ACTIONS(2073), + [anon_sym_i32] = ACTIONS(2073), + [anon_sym_u64] = ACTIONS(2073), + [anon_sym_i64] = ACTIONS(2073), + [anon_sym_u128] = ACTIONS(2073), + [anon_sym_i128] = ACTIONS(2073), + [anon_sym_isize] = ACTIONS(2073), + [anon_sym_usize] = ACTIONS(2073), + [anon_sym_f32] = ACTIONS(2073), + [anon_sym_f64] = ACTIONS(2073), + [anon_sym_bool] = ACTIONS(2073), + [anon_sym_str] = ACTIONS(2073), + [anon_sym_char] = ACTIONS(2073), + [aux_sym__non_special_token_token1] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_as] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2073), + [anon_sym_break] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2073), + [anon_sym_continue] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(2073), + [anon_sym_enum] = ACTIONS(2073), + [anon_sym_fn] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_if] = ACTIONS(2073), + [anon_sym_impl] = ACTIONS(2073), + [anon_sym_let] = ACTIONS(2073), + [anon_sym_loop] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_mod] = ACTIONS(2073), + [anon_sym_pub] = ACTIONS(2073), + [anon_sym_return] = ACTIONS(2073), + [anon_sym_static] = ACTIONS(2073), + [anon_sym_struct] = ACTIONS(2073), + [anon_sym_trait] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_union] = ACTIONS(2073), + [anon_sym_unsafe] = ACTIONS(2073), + [anon_sym_use] = ACTIONS(2073), + [anon_sym_where] = ACTIONS(2073), + [anon_sym_while] = ACTIONS(2073), + [sym_mutable_specifier] = ACTIONS(2073), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2052), - [sym_super] = ACTIONS(2052), - [sym_crate] = ACTIONS(2052), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2073), + [sym_super] = ACTIONS(2073), + [sym_crate] = ACTIONS(2073), [sym_metavariable] = ACTIONS(2036), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [503] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [501] = { + [sym__token_pattern] = STATE(504), + [sym_token_tree_pattern] = STATE(504), + [sym_token_binding_pattern] = STATE(504), + [sym_token_repetition_pattern] = STATE(504), + [sym__literal] = STATE(504), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(504), + [sym_identifier] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2028), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2075), + [anon_sym_as] = ACTIONS(2075), + [anon_sym_async] = ACTIONS(2075), + [anon_sym_await] = 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_where] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2075), + [sym_mutable_specifier] = ACTIONS(2075), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2075), + [sym_super] = ACTIONS(2075), + [sym_crate] = ACTIONS(2075), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [502] = { + [sym__token_pattern] = STATE(262), + [sym_token_tree_pattern] = STATE(262), + [sym_token_binding_pattern] = STATE(262), + [sym_token_repetition_pattern] = STATE(262), + [sym__literal] = STATE(262), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(262), [sym_identifier] = ACTIONS(2018), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2071), [anon_sym_LBRACK] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(2028), [anon_sym_u8] = ACTIONS(2018), @@ -62417,7 +62330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2018), [sym_super] = ACTIONS(2018), [sym_crate] = ACTIONS(2018), @@ -62426,20 +62339,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, + [503] = { + [sym__token_pattern] = STATE(494), + [sym_token_tree_pattern] = STATE(494), + [sym_token_binding_pattern] = STATE(494), + [sym_token_repetition_pattern] = STATE(494), + [sym__literal] = STATE(494), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2028), + [anon_sym_u8] = ACTIONS(2077), + [anon_sym_i8] = ACTIONS(2077), + [anon_sym_u16] = ACTIONS(2077), + [anon_sym_i16] = ACTIONS(2077), + [anon_sym_u32] = ACTIONS(2077), + [anon_sym_i32] = ACTIONS(2077), + [anon_sym_u64] = ACTIONS(2077), + [anon_sym_i64] = ACTIONS(2077), + [anon_sym_u128] = ACTIONS(2077), + [anon_sym_i128] = ACTIONS(2077), + [anon_sym_isize] = ACTIONS(2077), + [anon_sym_usize] = ACTIONS(2077), + [anon_sym_f32] = ACTIONS(2077), + [anon_sym_f64] = ACTIONS(2077), + [anon_sym_bool] = ACTIONS(2077), + [anon_sym_str] = ACTIONS(2077), + [anon_sym_char] = ACTIONS(2077), + [aux_sym__non_special_token_token1] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_as] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_default] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [anon_sym_fn] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_impl] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_loop] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_mod] = ACTIONS(2077), + [anon_sym_pub] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_struct] = ACTIONS(2077), + [anon_sym_trait] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_union] = ACTIONS(2077), + [anon_sym_unsafe] = ACTIONS(2077), + [anon_sym_use] = ACTIONS(2077), + [anon_sym_where] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [sym_mutable_specifier] = ACTIONS(2077), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_crate] = ACTIONS(2077), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, [504] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [sym__token_pattern] = STATE(262), + [sym_token_tree_pattern] = STATE(262), + [sym_token_binding_pattern] = STATE(262), + [sym_token_repetition_pattern] = STATE(262), + [sym__literal] = STATE(262), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(262), [sym_identifier] = ACTIONS(2018), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(2024), [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2071), [anon_sym_DOLLAR] = ACTIONS(2028), [anon_sym_u8] = ACTIONS(2018), [anon_sym_i8] = ACTIONS(2018), @@ -62493,7 +62482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2018), [sym_super] = ACTIONS(2018), [sym_crate] = ACTIONS(2018), @@ -62503,19 +62492,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [505] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [sym_attribute_item] = STATE(560), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_macro_invocation] = STATE(2498), + [sym_scoped_identifier] = STATE(1586), + [sym_scoped_type_identifier] = STATE(2024), + [sym_match_arm] = STATE(513), + [sym_last_match_arm] = STATE(2347), + [sym_match_pattern] = STATE(2486), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1929), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_enum_variant_list_repeat1] = STATE(560), + [aux_sym_match_block_repeat1] = STATE(513), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [506] = { + [sym_delim_token_tree] = STATE(506), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2081), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_RBRACK] = ACTIONS(2087), + [anon_sym_DOLLAR] = ACTIONS(2095), + [anon_sym_u8] = ACTIONS(2081), + [anon_sym_i8] = ACTIONS(2081), + [anon_sym_u16] = ACTIONS(2081), + [anon_sym_i16] = ACTIONS(2081), + [anon_sym_u32] = ACTIONS(2081), + [anon_sym_i32] = ACTIONS(2081), + [anon_sym_u64] = ACTIONS(2081), + [anon_sym_i64] = ACTIONS(2081), + [anon_sym_u128] = ACTIONS(2081), + [anon_sym_i128] = ACTIONS(2081), + [anon_sym_isize] = ACTIONS(2081), + [anon_sym_usize] = ACTIONS(2081), + [anon_sym_f32] = ACTIONS(2081), + [anon_sym_f64] = ACTIONS(2081), + [anon_sym_bool] = ACTIONS(2081), + [anon_sym_str] = ACTIONS(2081), + [anon_sym_char] = ACTIONS(2081), + [aux_sym__non_special_token_token1] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2081), + [anon_sym_as] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_await] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_default] = ACTIONS(2081), + [anon_sym_enum] = ACTIONS(2081), + [anon_sym_fn] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_impl] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_mod] = ACTIONS(2081), + [anon_sym_pub] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_static] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2081), + [anon_sym_trait] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_union] = ACTIONS(2081), + [anon_sym_unsafe] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_where] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [sym_mutable_specifier] = ACTIONS(2081), + [sym_integer_literal] = ACTIONS(2098), + [aux_sym_string_literal_token1] = ACTIONS(2101), + [sym_char_literal] = ACTIONS(2098), + [anon_sym_true] = ACTIONS(2104), + [anon_sym_false] = ACTIONS(2104), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2081), + [sym_super] = ACTIONS(2081), + [sym_crate] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2098), + [sym_float_literal] = ACTIONS(2098), + [sym_block_comment] = ACTIONS(3), + }, + [507] = { + [sym__token_pattern] = STATE(262), + [sym_token_tree_pattern] = STATE(262), + [sym_token_binding_pattern] = STATE(262), + [sym_token_repetition_pattern] = STATE(262), + [sym__literal] = STATE(262), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(262), [sym_identifier] = ACTIONS(2018), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2024), [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_RBRACK] = ACTIONS(2054), + [anon_sym_RBRACK] = ACTIONS(2107), [anon_sym_DOLLAR] = ACTIONS(2028), [anon_sym_u8] = ACTIONS(2018), [anon_sym_i8] = ACTIONS(2018), @@ -62569,7 +62710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2018), [sym_super] = ACTIONS(2018), [sym_crate] = ACTIONS(2018), @@ -62578,172 +62719,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [506] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(506), - [sym__non_delim_token] = STATE(506), - [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2056), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_RBRACK] = ACTIONS(2062), - [anon_sym_DOLLAR] = ACTIONS(2070), - [anon_sym_u8] = ACTIONS(2056), - [anon_sym_i8] = ACTIONS(2056), - [anon_sym_u16] = ACTIONS(2056), - [anon_sym_i16] = ACTIONS(2056), - [anon_sym_u32] = ACTIONS(2056), - [anon_sym_i32] = ACTIONS(2056), - [anon_sym_u64] = ACTIONS(2056), - [anon_sym_i64] = ACTIONS(2056), - [anon_sym_u128] = ACTIONS(2056), - [anon_sym_i128] = ACTIONS(2056), - [anon_sym_isize] = ACTIONS(2056), - [anon_sym_usize] = ACTIONS(2056), - [anon_sym_f32] = ACTIONS(2056), - [anon_sym_f64] = ACTIONS(2056), - [anon_sym_bool] = ACTIONS(2056), - [anon_sym_str] = ACTIONS(2056), - [anon_sym_char] = ACTIONS(2056), - [aux_sym__non_special_token_token1] = ACTIONS(2056), - [anon_sym_SQUOTE] = ACTIONS(2056), - [anon_sym_as] = ACTIONS(2056), - [anon_sym_async] = ACTIONS(2056), - [anon_sym_await] = ACTIONS(2056), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_const] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_default] = ACTIONS(2056), - [anon_sym_enum] = ACTIONS(2056), - [anon_sym_fn] = ACTIONS(2056), - [anon_sym_for] = ACTIONS(2056), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_impl] = ACTIONS(2056), - [anon_sym_let] = ACTIONS(2056), - [anon_sym_loop] = ACTIONS(2056), - [anon_sym_match] = ACTIONS(2056), - [anon_sym_mod] = ACTIONS(2056), - [anon_sym_pub] = ACTIONS(2056), - [anon_sym_return] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2056), - [anon_sym_struct] = ACTIONS(2056), - [anon_sym_trait] = ACTIONS(2056), - [anon_sym_type] = ACTIONS(2056), - [anon_sym_union] = ACTIONS(2056), - [anon_sym_unsafe] = ACTIONS(2056), - [anon_sym_use] = ACTIONS(2056), - [anon_sym_where] = ACTIONS(2056), - [anon_sym_while] = ACTIONS(2056), - [sym_mutable_specifier] = ACTIONS(2056), - [sym_integer_literal] = ACTIONS(2073), - [aux_sym_string_literal_token1] = ACTIONS(2076), - [sym_char_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2056), - [sym_super] = ACTIONS(2056), - [sym_crate] = ACTIONS(2056), - [sym_raw_string_literal] = ACTIONS(2073), - [sym_float_literal] = ACTIONS(2073), + [508] = { + [sym__token_pattern] = STATE(507), + [sym_token_tree_pattern] = STATE(507), + [sym_token_binding_pattern] = STATE(507), + [sym_token_repetition_pattern] = STATE(507), + [sym__literal] = STATE(507), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2028), + [anon_sym_u8] = ACTIONS(2109), + [anon_sym_i8] = ACTIONS(2109), + [anon_sym_u16] = ACTIONS(2109), + [anon_sym_i16] = ACTIONS(2109), + [anon_sym_u32] = ACTIONS(2109), + [anon_sym_i32] = ACTIONS(2109), + [anon_sym_u64] = ACTIONS(2109), + [anon_sym_i64] = ACTIONS(2109), + [anon_sym_u128] = ACTIONS(2109), + [anon_sym_i128] = ACTIONS(2109), + [anon_sym_isize] = ACTIONS(2109), + [anon_sym_usize] = ACTIONS(2109), + [anon_sym_f32] = ACTIONS(2109), + [anon_sym_f64] = ACTIONS(2109), + [anon_sym_bool] = ACTIONS(2109), + [anon_sym_str] = ACTIONS(2109), + [anon_sym_char] = ACTIONS(2109), + [aux_sym__non_special_token_token1] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_as] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [anon_sym_fn] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_impl] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_loop] = ACTIONS(2109), + [anon_sym_match] = ACTIONS(2109), + [anon_sym_mod] = ACTIONS(2109), + [anon_sym_pub] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_struct] = ACTIONS(2109), + [anon_sym_trait] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_union] = ACTIONS(2109), + [anon_sym_unsafe] = ACTIONS(2109), + [anon_sym_use] = ACTIONS(2109), + [anon_sym_where] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [sym_mutable_specifier] = ACTIONS(2109), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_crate] = ACTIONS(2109), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [507] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2581), - [sym_scoped_identifier] = STATE(1567), - [sym_scoped_type_identifier] = STATE(1919), - [sym_match_arm] = STATE(513), - [sym_last_match_arm] = STATE(2421), - [sym_match_pattern] = STATE(2569), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2123), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(1132), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_union] = ACTIONS(1144), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [509] = { + [sym__token_pattern] = STATE(511), + [sym_token_tree_pattern] = STATE(511), + [sym_token_binding_pattern] = STATE(511), + [sym_token_repetition_pattern] = STATE(511), + [sym__literal] = STATE(511), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(511), + [sym_identifier] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2028), + [anon_sym_u8] = ACTIONS(2113), + [anon_sym_i8] = ACTIONS(2113), + [anon_sym_u16] = ACTIONS(2113), + [anon_sym_i16] = ACTIONS(2113), + [anon_sym_u32] = ACTIONS(2113), + [anon_sym_i32] = ACTIONS(2113), + [anon_sym_u64] = ACTIONS(2113), + [anon_sym_i64] = ACTIONS(2113), + [anon_sym_u128] = ACTIONS(2113), + [anon_sym_i128] = ACTIONS(2113), + [anon_sym_isize] = ACTIONS(2113), + [anon_sym_usize] = ACTIONS(2113), + [anon_sym_f32] = ACTIONS(2113), + [anon_sym_f64] = ACTIONS(2113), + [anon_sym_bool] = ACTIONS(2113), + [anon_sym_str] = ACTIONS(2113), + [anon_sym_char] = ACTIONS(2113), + [aux_sym__non_special_token_token1] = ACTIONS(2113), + [anon_sym_SQUOTE] = ACTIONS(2113), + [anon_sym_as] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_await] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2113), + [anon_sym_fn] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_impl] = ACTIONS(2113), + [anon_sym_let] = ACTIONS(2113), + [anon_sym_loop] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2113), + [anon_sym_mod] = ACTIONS(2113), + [anon_sym_pub] = ACTIONS(2113), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_static] = ACTIONS(2113), + [anon_sym_struct] = ACTIONS(2113), + [anon_sym_trait] = ACTIONS(2113), + [anon_sym_type] = ACTIONS(2113), + [anon_sym_union] = ACTIONS(2113), + [anon_sym_unsafe] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_where] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [sym_mutable_specifier] = ACTIONS(2113), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2113), + [sym_super] = ACTIONS(2113), + [sym_crate] = ACTIONS(2113), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [508] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [510] = { + [sym__token_pattern] = STATE(512), + [sym_token_tree_pattern] = STATE(512), + [sym_token_binding_pattern] = STATE(512), + [sym_token_repetition_pattern] = STATE(512), + [sym__literal] = STATE(512), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(512), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_RPAREN] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2028), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2115), + [anon_sym_async] = ACTIONS(2115), + [anon_sym_await] = 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_where] = ACTIONS(2115), + [anon_sym_while] = ACTIONS(2115), + [sym_mutable_specifier] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2115), + [sym_super] = ACTIONS(2115), + [sym_crate] = ACTIONS(2115), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [511] = { + [sym__token_pattern] = STATE(262), + [sym_token_tree_pattern] = STATE(262), + [sym_token_binding_pattern] = STATE(262), + [sym_token_repetition_pattern] = STATE(262), + [sym__literal] = STATE(262), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(262), [sym_identifier] = ACTIONS(2018), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2107), [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_RBRACK] = ACTIONS(2024), [anon_sym_DOLLAR] = ACTIONS(2028), [anon_sym_u8] = ACTIONS(2018), [anon_sym_i8] = ACTIONS(2018), @@ -62797,7 +63014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2018), [sym_super] = ACTIONS(2018), [sym_crate] = ACTIONS(2018), @@ -62806,171 +63023,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [509] = { - [sym__token_pattern] = STATE(504), - [sym_token_tree_pattern] = STATE(504), - [sym_token_binding_pattern] = STATE(504), - [sym_token_repetition_pattern] = STATE(504), - [sym__literal] = STATE(504), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_pattern_repeat1] = STATE(504), - [sym_identifier] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(2028), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2082), - [anon_sym_SQUOTE] = ACTIONS(2082), - [anon_sym_as] = ACTIONS(2082), - [anon_sym_async] = ACTIONS(2082), - [anon_sym_await] = 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_where] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [sym_mutable_specifier] = ACTIONS(2082), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2082), - [sym_super] = ACTIONS(2082), - [sym_crate] = ACTIONS(2082), - [sym_metavariable] = ACTIONS(2036), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [510] = { - [sym_token_tree] = STATE(510), - [sym_token_repetition] = STATE(510), - [sym__literal] = STATE(510), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_RPAREN] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_RBRACK] = ACTIONS(2090), - [anon_sym_DOLLAR] = ACTIONS(2098), - [anon_sym_u8] = ACTIONS(2084), - [anon_sym_i8] = ACTIONS(2084), - [anon_sym_u16] = ACTIONS(2084), - [anon_sym_i16] = ACTIONS(2084), - [anon_sym_u32] = ACTIONS(2084), - [anon_sym_i32] = ACTIONS(2084), - [anon_sym_u64] = ACTIONS(2084), - [anon_sym_i64] = ACTIONS(2084), - [anon_sym_u128] = ACTIONS(2084), - [anon_sym_i128] = ACTIONS(2084), - [anon_sym_isize] = ACTIONS(2084), - [anon_sym_usize] = ACTIONS(2084), - [anon_sym_f32] = ACTIONS(2084), - [anon_sym_f64] = ACTIONS(2084), - [anon_sym_bool] = ACTIONS(2084), - [anon_sym_str] = ACTIONS(2084), - [anon_sym_char] = ACTIONS(2084), - [aux_sym__non_special_token_token1] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2084), - [anon_sym_as] = ACTIONS(2084), - [anon_sym_async] = ACTIONS(2084), - [anon_sym_await] = ACTIONS(2084), - [anon_sym_break] = ACTIONS(2084), - [anon_sym_const] = ACTIONS(2084), - [anon_sym_continue] = ACTIONS(2084), - [anon_sym_default] = ACTIONS(2084), - [anon_sym_enum] = ACTIONS(2084), - [anon_sym_fn] = ACTIONS(2084), - [anon_sym_for] = ACTIONS(2084), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_impl] = ACTIONS(2084), - [anon_sym_let] = ACTIONS(2084), - [anon_sym_loop] = ACTIONS(2084), - [anon_sym_match] = ACTIONS(2084), - [anon_sym_mod] = ACTIONS(2084), - [anon_sym_pub] = ACTIONS(2084), - [anon_sym_return] = ACTIONS(2084), - [anon_sym_static] = ACTIONS(2084), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_trait] = ACTIONS(2084), - [anon_sym_type] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2084), - [anon_sym_unsafe] = ACTIONS(2084), - [anon_sym_use] = ACTIONS(2084), - [anon_sym_where] = ACTIONS(2084), - [anon_sym_while] = ACTIONS(2084), - [sym_mutable_specifier] = ACTIONS(2084), - [sym_integer_literal] = ACTIONS(2101), - [aux_sym_string_literal_token1] = ACTIONS(2104), - [sym_char_literal] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2107), - [anon_sym_false] = ACTIONS(2107), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2084), - [sym_super] = ACTIONS(2084), - [sym_crate] = ACTIONS(2084), - [sym_metavariable] = ACTIONS(2110), - [sym_raw_string_literal] = ACTIONS(2101), - [sym_float_literal] = ACTIONS(2101), - [sym_block_comment] = ACTIONS(3), - }, - [511] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), + [512] = { + [sym__token_pattern] = STATE(262), + [sym_token_tree_pattern] = STATE(262), + [sym_token_binding_pattern] = STATE(262), + [sym_token_repetition_pattern] = STATE(262), + [sym__literal] = STATE(262), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(262), [sym_identifier] = ACTIONS(2018), [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_RPAREN] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2024), [anon_sym_LBRACK] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(2028), [anon_sym_u8] = ACTIONS(2018), @@ -63025,7 +63090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2018), [sym_super] = ACTIONS(2018), [sym_crate] = ACTIONS(2018), @@ -63034,110 +63099,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [512] = { - [sym__token_pattern] = STATE(501), - [sym_token_tree_pattern] = STATE(501), - [sym_token_binding_pattern] = STATE(501), - [sym_token_repetition_pattern] = STATE(501), - [sym__literal] = STATE(501), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_pattern_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2020), - [anon_sym_RPAREN] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_DOLLAR] = ACTIONS(2028), - [anon_sym_u8] = ACTIONS(2113), - [anon_sym_i8] = ACTIONS(2113), - [anon_sym_u16] = ACTIONS(2113), - [anon_sym_i16] = ACTIONS(2113), - [anon_sym_u32] = ACTIONS(2113), - [anon_sym_i32] = ACTIONS(2113), - [anon_sym_u64] = ACTIONS(2113), - [anon_sym_i64] = ACTIONS(2113), - [anon_sym_u128] = ACTIONS(2113), - [anon_sym_i128] = ACTIONS(2113), - [anon_sym_isize] = ACTIONS(2113), - [anon_sym_usize] = ACTIONS(2113), - [anon_sym_f32] = ACTIONS(2113), - [anon_sym_f64] = ACTIONS(2113), - [anon_sym_bool] = ACTIONS(2113), - [anon_sym_str] = ACTIONS(2113), - [anon_sym_char] = ACTIONS(2113), - [aux_sym__non_special_token_token1] = ACTIONS(2113), - [anon_sym_SQUOTE] = ACTIONS(2113), - [anon_sym_as] = ACTIONS(2113), - [anon_sym_async] = ACTIONS(2113), - [anon_sym_await] = ACTIONS(2113), - [anon_sym_break] = ACTIONS(2113), - [anon_sym_const] = ACTIONS(2113), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_default] = ACTIONS(2113), - [anon_sym_enum] = ACTIONS(2113), - [anon_sym_fn] = ACTIONS(2113), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2113), - [anon_sym_impl] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2113), - [anon_sym_loop] = ACTIONS(2113), - [anon_sym_match] = ACTIONS(2113), - [anon_sym_mod] = ACTIONS(2113), - [anon_sym_pub] = ACTIONS(2113), - [anon_sym_return] = ACTIONS(2113), - [anon_sym_static] = ACTIONS(2113), - [anon_sym_struct] = ACTIONS(2113), - [anon_sym_trait] = ACTIONS(2113), - [anon_sym_type] = ACTIONS(2113), - [anon_sym_union] = ACTIONS(2113), - [anon_sym_unsafe] = ACTIONS(2113), - [anon_sym_use] = ACTIONS(2113), - [anon_sym_where] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2113), - [sym_mutable_specifier] = ACTIONS(2113), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2113), - [sym_super] = ACTIONS(2113), - [sym_crate] = ACTIONS(2113), - [sym_metavariable] = ACTIONS(2036), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, [513] = { - [sym_attribute_item] = STATE(560), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2581), - [sym_scoped_identifier] = STATE(1567), - [sym_scoped_type_identifier] = STATE(1919), + [sym_attribute_item] = STATE(558), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_macro_invocation] = STATE(2498), + [sym_scoped_identifier] = STATE(1586), + [sym_scoped_type_identifier] = STATE(2024), [sym_match_arm] = STATE(513), - [sym_match_pattern] = STATE(2581), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2123), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(560), + [sym_match_pattern] = STATE(2498), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1929), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_enum_variant_list_repeat1] = STATE(558), [aux_sym_match_block_repeat1] = STATE(513), [sym_identifier] = ACTIONS(2117), [anon_sym_LPAREN] = ACTIONS(2120), @@ -63186,13 +63175,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [514] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(506), - [sym__non_delim_token] = STATE(506), - [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_delim_token_tree] = STATE(541), + [sym__delim_tokens] = STATE(541), + [sym__non_delim_token] = STATE(541), + [sym__literal] = STATE(541), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(541), [sym_identifier] = ACTIONS(2177), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), @@ -63251,7 +63240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(2177), [sym_crate] = ACTIONS(2177), @@ -63260,1351 +63249,1351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [515] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(506), - [sym__non_delim_token] = STATE(506), - [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2177), + [sym_delim_token_tree] = STATE(553), + [sym__delim_tokens] = STATE(553), + [sym__non_delim_token] = STATE(553), + [sym__literal] = STATE(553), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(553), + [sym_identifier] = ACTIONS(2195), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2197), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [516] = { - [sym_token_tree] = STATE(510), - [sym_token_repetition] = STATE(510), - [sym__literal] = STATE(510), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_await] = 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_where] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [sym_mutable_specifier] = ACTIONS(2197), + [sym_token_tree] = STATE(518), + [sym_token_repetition] = STATE(518), + [sym__literal] = STATE(518), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(518), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2201), + [anon_sym_SQUOTE] = ACTIONS(2201), + [anon_sym_as] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_await] = 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_where] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [sym_mutable_specifier] = ACTIONS(2201), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_crate] = ACTIONS(2197), - [sym_metavariable] = ACTIONS(2209), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2201), + [sym_super] = ACTIONS(2201), + [sym_crate] = ACTIONS(2201), + [sym_metavariable] = ACTIONS(2213), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [517] = { - [sym_token_tree] = STATE(510), - [sym_token_repetition] = STATE(510), - [sym__literal] = STATE(510), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_await] = 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_where] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [sym_mutable_specifier] = ACTIONS(2197), + [sym_token_tree] = STATE(539), + [sym_token_repetition] = STATE(539), + [sym__literal] = STATE(539), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2215), + [anon_sym_i8] = ACTIONS(2215), + [anon_sym_u16] = ACTIONS(2215), + [anon_sym_i16] = ACTIONS(2215), + [anon_sym_u32] = ACTIONS(2215), + [anon_sym_i32] = ACTIONS(2215), + [anon_sym_u64] = ACTIONS(2215), + [anon_sym_i64] = ACTIONS(2215), + [anon_sym_u128] = ACTIONS(2215), + [anon_sym_i128] = ACTIONS(2215), + [anon_sym_isize] = ACTIONS(2215), + [anon_sym_usize] = ACTIONS(2215), + [anon_sym_f32] = ACTIONS(2215), + [anon_sym_f64] = ACTIONS(2215), + [anon_sym_bool] = ACTIONS(2215), + [anon_sym_str] = ACTIONS(2215), + [anon_sym_char] = ACTIONS(2215), + [aux_sym__non_special_token_token1] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), + [anon_sym_fn] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_impl] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_loop] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_mod] = ACTIONS(2215), + [anon_sym_pub] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_struct] = ACTIONS(2215), + [anon_sym_trait] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_union] = ACTIONS(2215), + [anon_sym_unsafe] = ACTIONS(2215), + [anon_sym_use] = ACTIONS(2215), + [anon_sym_where] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [sym_mutable_specifier] = ACTIONS(2215), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_crate] = ACTIONS(2197), - [sym_metavariable] = ACTIONS(2209), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_crate] = ACTIONS(2215), + [sym_metavariable] = ACTIONS(2217), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [518] = { - [sym_token_tree] = STATE(541), - [sym_token_repetition] = STATE(541), - [sym__literal] = STATE(541), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_repeat1] = STATE(541), - [sym_identifier] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_RBRACK] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_u8] = ACTIONS(2211), - [anon_sym_i8] = ACTIONS(2211), - [anon_sym_u16] = ACTIONS(2211), - [anon_sym_i16] = ACTIONS(2211), - [anon_sym_u32] = ACTIONS(2211), - [anon_sym_i32] = ACTIONS(2211), - [anon_sym_u64] = ACTIONS(2211), - [anon_sym_i64] = ACTIONS(2211), - [anon_sym_u128] = ACTIONS(2211), - [anon_sym_i128] = ACTIONS(2211), - [anon_sym_isize] = ACTIONS(2211), - [anon_sym_usize] = ACTIONS(2211), - [anon_sym_f32] = ACTIONS(2211), - [anon_sym_f64] = ACTIONS(2211), - [anon_sym_bool] = ACTIONS(2211), - [anon_sym_str] = ACTIONS(2211), - [anon_sym_char] = ACTIONS(2211), - [aux_sym__non_special_token_token1] = ACTIONS(2211), - [anon_sym_SQUOTE] = ACTIONS(2211), - [anon_sym_as] = ACTIONS(2211), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_await] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_enum] = ACTIONS(2211), - [anon_sym_fn] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_impl] = ACTIONS(2211), - [anon_sym_let] = ACTIONS(2211), - [anon_sym_loop] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_mod] = ACTIONS(2211), - [anon_sym_pub] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2211), - [anon_sym_trait] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_union] = ACTIONS(2211), - [anon_sym_unsafe] = ACTIONS(2211), - [anon_sym_use] = ACTIONS(2211), - [anon_sym_where] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2211), - [sym_mutable_specifier] = ACTIONS(2211), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2211), - [sym_super] = ACTIONS(2211), - [sym_crate] = ACTIONS(2211), - [sym_metavariable] = ACTIONS(2215), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [519] = { - [sym_token_tree] = STATE(516), - [sym_token_repetition] = STATE(516), - [sym__literal] = STATE(516), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_repeat1] = STATE(516), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2217), - [anon_sym_SQUOTE] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_async] = ACTIONS(2217), - [anon_sym_await] = 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_where] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [sym_mutable_specifier] = ACTIONS(2217), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2217), - [sym_super] = ACTIONS(2217), - [sym_crate] = ACTIONS(2217), - [sym_metavariable] = ACTIONS(2219), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [520] = { - [sym_token_tree] = STATE(517), - [sym_token_repetition] = STATE(517), - [sym__literal] = STATE(517), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_repeat1] = STATE(517), - [sym_identifier] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_await] = 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_where] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [sym_mutable_specifier] = ACTIONS(2221), + [sym_token_tree] = STATE(496), + [sym_token_repetition] = STATE(496), + [sym__literal] = STATE(496), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(496), + [sym_identifier] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2219), + [anon_sym_i8] = ACTIONS(2219), + [anon_sym_u16] = ACTIONS(2219), + [anon_sym_i16] = ACTIONS(2219), + [anon_sym_u32] = ACTIONS(2219), + [anon_sym_i32] = ACTIONS(2219), + [anon_sym_u64] = ACTIONS(2219), + [anon_sym_i64] = ACTIONS(2219), + [anon_sym_u128] = ACTIONS(2219), + [anon_sym_i128] = ACTIONS(2219), + [anon_sym_isize] = ACTIONS(2219), + [anon_sym_usize] = ACTIONS(2219), + [anon_sym_f32] = ACTIONS(2219), + [anon_sym_f64] = ACTIONS(2219), + [anon_sym_bool] = ACTIONS(2219), + [anon_sym_str] = ACTIONS(2219), + [anon_sym_char] = ACTIONS(2219), + [aux_sym__non_special_token_token1] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_impl] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_mod] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_trait] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_where] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [sym_mutable_specifier] = ACTIONS(2219), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_crate] = ACTIONS(2221), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_crate] = ACTIONS(2219), [sym_metavariable] = ACTIONS(2223), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [521] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(506), - [sym__non_delim_token] = STATE(506), - [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2177), + [519] = { + [sym_delim_token_tree] = STATE(533), + [sym__delim_tokens] = STATE(533), + [sym__non_delim_token] = STATE(533), + [sym__literal] = STATE(533), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(533), + [sym_identifier] = ACTIONS(2225), [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2227), [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2225), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2229), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_as] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_await] = 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_where] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [sym_mutable_specifier] = ACTIONS(2225), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_crate] = ACTIONS(2225), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [522] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(514), - [sym__non_delim_token] = STATE(514), - [sym__literal] = STATE(514), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(514), - [sym_identifier] = ACTIONS(2227), + [520] = { + [sym_delim_token_tree] = STATE(534), + [sym__delim_tokens] = STATE(534), + [sym__non_delim_token] = STATE(534), + [sym__literal] = STATE(534), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(534), + [sym_identifier] = ACTIONS(2231), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2227), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2231), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u128] = ACTIONS(2227), - [anon_sym_i128] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_str] = ACTIONS(2227), - [anon_sym_char] = ACTIONS(2227), - [aux_sym__non_special_token_token1] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_as] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [anon_sym_fn] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_impl] = ACTIONS(2227), - [anon_sym_let] = ACTIONS(2227), - [anon_sym_loop] = ACTIONS(2227), - [anon_sym_match] = ACTIONS(2227), - [anon_sym_mod] = ACTIONS(2227), - [anon_sym_pub] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_trait] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2227), - [anon_sym_unsafe] = ACTIONS(2227), - [anon_sym_use] = ACTIONS(2227), - [anon_sym_where] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [sym_mutable_specifier] = ACTIONS(2227), + [anon_sym_DOLLAR] = ACTIONS(2233), + [anon_sym_u8] = ACTIONS(2231), + [anon_sym_i8] = ACTIONS(2231), + [anon_sym_u16] = ACTIONS(2231), + [anon_sym_i16] = ACTIONS(2231), + [anon_sym_u32] = ACTIONS(2231), + [anon_sym_i32] = ACTIONS(2231), + [anon_sym_u64] = ACTIONS(2231), + [anon_sym_i64] = ACTIONS(2231), + [anon_sym_u128] = ACTIONS(2231), + [anon_sym_i128] = ACTIONS(2231), + [anon_sym_isize] = ACTIONS(2231), + [anon_sym_usize] = ACTIONS(2231), + [anon_sym_f32] = ACTIONS(2231), + [anon_sym_f64] = ACTIONS(2231), + [anon_sym_bool] = ACTIONS(2231), + [anon_sym_str] = ACTIONS(2231), + [anon_sym_char] = ACTIONS(2231), + [aux_sym__non_special_token_token1] = ACTIONS(2231), + [anon_sym_SQUOTE] = ACTIONS(2231), + [anon_sym_as] = ACTIONS(2231), + [anon_sym_async] = ACTIONS(2231), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(2231), + [anon_sym_const] = ACTIONS(2231), + [anon_sym_continue] = ACTIONS(2231), + [anon_sym_default] = ACTIONS(2231), + [anon_sym_enum] = ACTIONS(2231), + [anon_sym_fn] = ACTIONS(2231), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_impl] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_loop] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_mod] = ACTIONS(2231), + [anon_sym_pub] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_static] = ACTIONS(2231), + [anon_sym_struct] = ACTIONS(2231), + [anon_sym_trait] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2231), + [anon_sym_union] = ACTIONS(2231), + [anon_sym_unsafe] = ACTIONS(2231), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_where] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [sym_mutable_specifier] = ACTIONS(2231), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_crate] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, + [521] = { + [sym_token_tree] = STATE(556), + [sym_token_repetition] = STATE(556), + [sym__literal] = STATE(556), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(556), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [522] = { + [sym_token_tree] = STATE(496), + [sym_token_repetition] = STATE(496), + [sym__literal] = STATE(496), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(496), + [sym_identifier] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_RBRACK] = ACTIONS(2221), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2219), + [anon_sym_i8] = ACTIONS(2219), + [anon_sym_u16] = ACTIONS(2219), + [anon_sym_i16] = ACTIONS(2219), + [anon_sym_u32] = ACTIONS(2219), + [anon_sym_i32] = ACTIONS(2219), + [anon_sym_u64] = ACTIONS(2219), + [anon_sym_i64] = ACTIONS(2219), + [anon_sym_u128] = ACTIONS(2219), + [anon_sym_i128] = ACTIONS(2219), + [anon_sym_isize] = ACTIONS(2219), + [anon_sym_usize] = ACTIONS(2219), + [anon_sym_f32] = ACTIONS(2219), + [anon_sym_f64] = ACTIONS(2219), + [anon_sym_bool] = ACTIONS(2219), + [anon_sym_str] = ACTIONS(2219), + [anon_sym_char] = ACTIONS(2219), + [aux_sym__non_special_token_token1] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_impl] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_mod] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_trait] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_where] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [sym_mutable_specifier] = ACTIONS(2219), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_crate] = ACTIONS(2219), + [sym_metavariable] = ACTIONS(2223), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, [523] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(535), - [sym__non_delim_token] = STATE(535), - [sym__literal] = STATE(535), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(535), - [sym_identifier] = ACTIONS(2233), + [sym_delim_token_tree] = STATE(527), + [sym__delim_tokens] = STATE(527), + [sym__non_delim_token] = STATE(527), + [sym__literal] = STATE(527), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(527), + [sym_identifier] = ACTIONS(2241), [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2243), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2237), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_await] = 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_where] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [sym_mutable_specifier] = ACTIONS(2233), + [anon_sym_DOLLAR] = ACTIONS(2245), + [anon_sym_u8] = ACTIONS(2241), + [anon_sym_i8] = ACTIONS(2241), + [anon_sym_u16] = ACTIONS(2241), + [anon_sym_i16] = ACTIONS(2241), + [anon_sym_u32] = ACTIONS(2241), + [anon_sym_i32] = ACTIONS(2241), + [anon_sym_u64] = ACTIONS(2241), + [anon_sym_i64] = ACTIONS(2241), + [anon_sym_u128] = ACTIONS(2241), + [anon_sym_i128] = ACTIONS(2241), + [anon_sym_isize] = ACTIONS(2241), + [anon_sym_usize] = ACTIONS(2241), + [anon_sym_f32] = ACTIONS(2241), + [anon_sym_f64] = ACTIONS(2241), + [anon_sym_bool] = ACTIONS(2241), + [anon_sym_str] = ACTIONS(2241), + [anon_sym_char] = ACTIONS(2241), + [aux_sym__non_special_token_token1] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_fn] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_impl] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_loop] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_mod] = ACTIONS(2241), + [anon_sym_pub] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_trait] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_union] = ACTIONS(2241), + [anon_sym_unsafe] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_where] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [sym_mutable_specifier] = ACTIONS(2241), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_crate] = ACTIONS(2233), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_crate] = ACTIONS(2241), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [524] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(540), - [sym__non_delim_token] = STATE(540), - [sym__literal] = STATE(540), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(540), - [sym_identifier] = ACTIONS(2239), + [sym_delim_token_tree] = STATE(529), + [sym__delim_tokens] = STATE(529), + [sym__non_delim_token] = STATE(529), + [sym__literal] = STATE(529), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(529), + [sym_identifier] = ACTIONS(2247), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2243), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2241), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__non_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), + [anon_sym_DOLLAR] = ACTIONS(2249), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2247), + [anon_sym_as] = ACTIONS(2247), + [anon_sym_async] = ACTIONS(2247), + [anon_sym_await] = 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_where] = ACTIONS(2247), + [anon_sym_while] = ACTIONS(2247), + [sym_mutable_specifier] = ACTIONS(2247), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2247), + [sym_super] = ACTIONS(2247), + [sym_crate] = ACTIONS(2247), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [525] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(506), - [sym__non_delim_token] = STATE(506), - [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2177), + [sym_delim_token_tree] = STATE(532), + [sym__delim_tokens] = STATE(532), + [sym__non_delim_token] = STATE(532), + [sym__literal] = STATE(532), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(532), + [sym_identifier] = ACTIONS(2251), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), + [anon_sym_RBRACK] = ACTIONS(2243), + [anon_sym_DOLLAR] = ACTIONS(2253), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_await] = 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_where] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [sym_mutable_specifier] = ACTIONS(2251), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_crate] = ACTIONS(2251), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [526] = { - [sym_token_tree] = STATE(552), - [sym_token_repetition] = STATE(552), - [sym__literal] = STATE(552), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_repeat1] = STATE(552), - [sym_identifier] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2243), - [anon_sym_SQUOTE] = ACTIONS(2243), - [anon_sym_as] = ACTIONS(2243), - [anon_sym_async] = ACTIONS(2243), - [anon_sym_await] = 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_where] = ACTIONS(2243), - [anon_sym_while] = ACTIONS(2243), - [sym_mutable_specifier] = ACTIONS(2243), + [sym_token_tree] = STATE(522), + [sym_token_repetition] = STATE(522), + [sym__literal] = STATE(522), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(522), + [sym_identifier] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_RBRACK] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(2211), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_as] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_await] = 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_where] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [sym_mutable_specifier] = ACTIONS(2255), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2243), - [sym_super] = ACTIONS(2243), - [sym_crate] = ACTIONS(2243), - [sym_metavariable] = ACTIONS(2247), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2255), + [sym_super] = ACTIONS(2255), + [sym_crate] = ACTIONS(2255), + [sym_metavariable] = ACTIONS(2257), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [527] = { - [sym_token_tree] = STATE(551), - [sym_token_repetition] = STATE(551), - [sym__literal] = STATE(551), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_repeat1] = STATE(551), - [sym_identifier] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_u8] = ACTIONS(2249), - [anon_sym_i8] = ACTIONS(2249), - [anon_sym_u16] = ACTIONS(2249), - [anon_sym_i16] = ACTIONS(2249), - [anon_sym_u32] = ACTIONS(2249), - [anon_sym_i32] = ACTIONS(2249), - [anon_sym_u64] = ACTIONS(2249), - [anon_sym_i64] = ACTIONS(2249), - [anon_sym_u128] = ACTIONS(2249), - [anon_sym_i128] = ACTIONS(2249), - [anon_sym_isize] = ACTIONS(2249), - [anon_sym_usize] = ACTIONS(2249), - [anon_sym_f32] = ACTIONS(2249), - [anon_sym_f64] = ACTIONS(2249), - [anon_sym_bool] = ACTIONS(2249), - [anon_sym_str] = ACTIONS(2249), - [anon_sym_char] = ACTIONS(2249), - [aux_sym__non_special_token_token1] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_as] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_fn] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_impl] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_loop] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_mod] = ACTIONS(2249), - [anon_sym_pub] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_struct] = ACTIONS(2249), - [anon_sym_trait] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_union] = ACTIONS(2249), - [anon_sym_unsafe] = ACTIONS(2249), - [anon_sym_use] = ACTIONS(2249), - [anon_sym_where] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [sym_mutable_specifier] = ACTIONS(2249), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(2251), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), + [sym_delim_token_tree] = STATE(506), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2263), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = 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_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [528] = { - [sym_token_tree] = STATE(550), - [sym_token_repetition] = STATE(550), - [sym__literal] = STATE(550), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_repeat1] = STATE(550), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_RBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_u8] = ACTIONS(2253), - [anon_sym_i8] = ACTIONS(2253), - [anon_sym_u16] = ACTIONS(2253), - [anon_sym_i16] = ACTIONS(2253), - [anon_sym_u32] = ACTIONS(2253), - [anon_sym_i32] = ACTIONS(2253), - [anon_sym_u64] = ACTIONS(2253), - [anon_sym_i64] = ACTIONS(2253), - [anon_sym_u128] = ACTIONS(2253), - [anon_sym_i128] = ACTIONS(2253), - [anon_sym_isize] = ACTIONS(2253), - [anon_sym_usize] = ACTIONS(2253), - [anon_sym_f32] = ACTIONS(2253), - [anon_sym_f64] = ACTIONS(2253), - [anon_sym_bool] = ACTIONS(2253), - [anon_sym_str] = ACTIONS(2253), - [anon_sym_char] = ACTIONS(2253), - [aux_sym__non_special_token_token1] = ACTIONS(2253), - [anon_sym_SQUOTE] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2253), - [anon_sym_await] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_default] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_impl] = ACTIONS(2253), - [anon_sym_let] = ACTIONS(2253), - [anon_sym_loop] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_mod] = ACTIONS(2253), - [anon_sym_pub] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_static] = ACTIONS(2253), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_trait] = ACTIONS(2253), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_union] = ACTIONS(2253), - [anon_sym_unsafe] = ACTIONS(2253), - [anon_sym_use] = ACTIONS(2253), - [anon_sym_where] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [sym_mutable_specifier] = ACTIONS(2253), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2253), - [sym_super] = ACTIONS(2253), - [sym_crate] = ACTIONS(2253), - [sym_metavariable] = ACTIONS(2255), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), + [sym_delim_token_tree] = STATE(535), + [sym__delim_tokens] = STATE(535), + [sym__non_delim_token] = STATE(535), + [sym__literal] = STATE(535), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(535), + [sym_identifier] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2227), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2265), + [anon_sym_i8] = ACTIONS(2265), + [anon_sym_u16] = ACTIONS(2265), + [anon_sym_i16] = ACTIONS(2265), + [anon_sym_u32] = ACTIONS(2265), + [anon_sym_i32] = ACTIONS(2265), + [anon_sym_u64] = ACTIONS(2265), + [anon_sym_i64] = ACTIONS(2265), + [anon_sym_u128] = ACTIONS(2265), + [anon_sym_i128] = ACTIONS(2265), + [anon_sym_isize] = ACTIONS(2265), + [anon_sym_usize] = ACTIONS(2265), + [anon_sym_f32] = ACTIONS(2265), + [anon_sym_f64] = ACTIONS(2265), + [anon_sym_bool] = ACTIONS(2265), + [anon_sym_str] = ACTIONS(2265), + [anon_sym_char] = ACTIONS(2265), + [aux_sym__non_special_token_token1] = ACTIONS(2265), + [anon_sym_SQUOTE] = ACTIONS(2265), + [anon_sym_as] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_await] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_default] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_fn] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_impl] = ACTIONS(2265), + [anon_sym_let] = ACTIONS(2265), + [anon_sym_loop] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_mod] = ACTIONS(2265), + [anon_sym_pub] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_union] = ACTIONS(2265), + [anon_sym_unsafe] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_where] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [sym_mutable_specifier] = ACTIONS(2265), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2265), + [sym_super] = ACTIONS(2265), + [sym_crate] = ACTIONS(2265), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [529] = { - [sym_delim_token_tree] = STATE(607), + [sym_delim_token_tree] = STATE(506), [sym__delim_tokens] = STATE(506), [sym__non_delim_token] = STATE(506), [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2259), [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2225), [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2261), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2263), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = 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_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [530] = { - [sym_delim_token_tree] = STATE(607), + [sym_token_tree] = STATE(552), + [sym_token_repetition] = STATE(552), + [sym__literal] = STATE(552), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(552), + [sym_identifier] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2269), + [anon_sym_i8] = ACTIONS(2269), + [anon_sym_u16] = ACTIONS(2269), + [anon_sym_i16] = ACTIONS(2269), + [anon_sym_u32] = ACTIONS(2269), + [anon_sym_i32] = ACTIONS(2269), + [anon_sym_u64] = ACTIONS(2269), + [anon_sym_i64] = ACTIONS(2269), + [anon_sym_u128] = ACTIONS(2269), + [anon_sym_i128] = ACTIONS(2269), + [anon_sym_isize] = ACTIONS(2269), + [anon_sym_usize] = ACTIONS(2269), + [anon_sym_f32] = ACTIONS(2269), + [anon_sym_f64] = ACTIONS(2269), + [anon_sym_bool] = ACTIONS(2269), + [anon_sym_str] = ACTIONS(2269), + [anon_sym_char] = ACTIONS(2269), + [aux_sym__non_special_token_token1] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_as] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_await] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_impl] = ACTIONS(2269), + [anon_sym_let] = ACTIONS(2269), + [anon_sym_loop] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_mod] = ACTIONS(2269), + [anon_sym_pub] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_trait] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_use] = ACTIONS(2269), + [anon_sym_where] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [sym_mutable_specifier] = ACTIONS(2269), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2269), + [sym_super] = ACTIONS(2269), + [sym_crate] = ACTIONS(2269), + [sym_metavariable] = ACTIONS(2273), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [531] = { + [sym_delim_token_tree] = STATE(506), [sym__delim_tokens] = STATE(506), [sym__non_delim_token] = STATE(506), [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2259), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), + [anon_sym_RBRACK] = ACTIONS(2275), + [anon_sym_DOLLAR] = ACTIONS(2263), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = 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_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [531] = { - [sym_delim_token_tree] = STATE(607), + [532] = { + [sym_delim_token_tree] = STATE(506), [sym__delim_tokens] = STATE(506), [sym__non_delim_token] = STATE(506), [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2259), [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2183), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), + [anon_sym_RBRACK] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(2263), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = 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_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [532] = { - [sym_delim_token_tree] = STATE(607), + [533] = { + [sym_delim_token_tree] = STATE(506), [sym__delim_tokens] = STATE(506), [sym__non_delim_token] = STATE(506), [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [533] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(531), - [sym__non_delim_token] = STATE(531), - [sym__literal] = STATE(531), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(531), [sym_identifier] = ACTIONS(2259), [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2277), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(2263), [anon_sym_u8] = ACTIONS(2259), [anon_sym_i8] = ACTIONS(2259), [anon_sym_u16] = ACTIONS(2259), @@ -64657,7 +64646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2259), [sym_super] = ACTIONS(2259), [sym_crate] = ACTIONS(2259), @@ -64666,1424 +64655,1128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [534] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(515), - [sym__non_delim_token] = STATE(515), - [sym__literal] = STATE(515), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(515), - [sym_identifier] = ACTIONS(2263), + [sym_delim_token_tree] = STATE(506), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2259), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2277), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2235), - [anon_sym_DOLLAR] = ACTIONS(2265), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2263), - [anon_sym_SQUOTE] = ACTIONS(2263), - [anon_sym_as] = ACTIONS(2263), - [anon_sym_async] = ACTIONS(2263), - [anon_sym_await] = 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_where] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [sym_mutable_specifier] = ACTIONS(2263), + [anon_sym_DOLLAR] = ACTIONS(2263), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = 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_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2263), - [sym_super] = ACTIONS(2263), - [sym_crate] = ACTIONS(2263), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [535] = { - [sym_delim_token_tree] = STATE(607), + [sym_delim_token_tree] = STATE(506), [sym__delim_tokens] = STATE(506), [sym__non_delim_token] = STATE(506), [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2259), [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2195), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), + [anon_sym_RBRACK] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2263), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = 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_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [536] = { - [sym_delim_token_tree] = STATE(607), + [sym_delim_token_tree] = STATE(506), [sym__delim_tokens] = STATE(506), [sym__non_delim_token] = STATE(506), [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2259), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2275), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2263), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = 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_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [537] = { - [sym_delim_token_tree] = STATE(607), + [sym_delim_token_tree] = STATE(506), [sym__delim_tokens] = STATE(506), [sym__non_delim_token] = STATE(506), [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2259), [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2275), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2263), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = 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_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [538] = { - [sym_token_tree] = STATE(510), - [sym_token_repetition] = STATE(510), - [sym__literal] = STATE(510), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_await] = 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_where] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [sym_mutable_specifier] = ACTIONS(2197), + [sym_token_tree] = STATE(551), + [sym_token_repetition] = STATE(551), + [sym__literal] = STATE(551), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(551), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2279), + [anon_sym_SQUOTE] = ACTIONS(2279), + [anon_sym_as] = ACTIONS(2279), + [anon_sym_async] = ACTIONS(2279), + [anon_sym_await] = 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_where] = ACTIONS(2279), + [anon_sym_while] = ACTIONS(2279), + [sym_mutable_specifier] = ACTIONS(2279), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_crate] = ACTIONS(2197), - [sym_metavariable] = ACTIONS(2209), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2279), + [sym_super] = ACTIONS(2279), + [sym_crate] = ACTIONS(2279), + [sym_metavariable] = ACTIONS(2281), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [539] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(506), - [sym__non_delim_token] = STATE(506), - [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), + [sym_token_tree] = STATE(496), + [sym_token_repetition] = STATE(496), + [sym__literal] = STATE(496), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(496), + [sym_identifier] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2219), + [anon_sym_i8] = ACTIONS(2219), + [anon_sym_u16] = ACTIONS(2219), + [anon_sym_i16] = ACTIONS(2219), + [anon_sym_u32] = ACTIONS(2219), + [anon_sym_i32] = ACTIONS(2219), + [anon_sym_u64] = ACTIONS(2219), + [anon_sym_i64] = ACTIONS(2219), + [anon_sym_u128] = ACTIONS(2219), + [anon_sym_i128] = ACTIONS(2219), + [anon_sym_isize] = ACTIONS(2219), + [anon_sym_usize] = ACTIONS(2219), + [anon_sym_f32] = ACTIONS(2219), + [anon_sym_f64] = ACTIONS(2219), + [anon_sym_bool] = ACTIONS(2219), + [anon_sym_str] = ACTIONS(2219), + [anon_sym_char] = ACTIONS(2219), + [aux_sym__non_special_token_token1] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_impl] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_mod] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_trait] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_where] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [sym_mutable_specifier] = ACTIONS(2219), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_crate] = ACTIONS(2219), + [sym_metavariable] = ACTIONS(2223), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [540] = { + [sym_delim_token_tree] = STATE(506), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2283), + [anon_sym_DOLLAR] = ACTIONS(2263), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = 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_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [540] = { - [sym_delim_token_tree] = STATE(607), + [541] = { + [sym_delim_token_tree] = STATE(506), [sym__delim_tokens] = STATE(506), [sym__non_delim_token] = STATE(506), [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2259), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_RBRACE] = ACTIONS(2283), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2263), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = 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_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [541] = { - [sym_token_tree] = STATE(510), - [sym_token_repetition] = STATE(510), - [sym__literal] = STATE(510), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_RBRACK] = ACTIONS(2203), - [anon_sym_DOLLAR] = ACTIONS(2207), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_await] = 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_where] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [sym_mutable_specifier] = ACTIONS(2197), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_crate] = ACTIONS(2197), - [sym_metavariable] = ACTIONS(2209), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, [542] = { - [sym_delim_token_tree] = STATE(607), + [sym_delim_token_tree] = STATE(506), [sym__delim_tokens] = STATE(506), [sym__non_delim_token] = STATE(506), [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2259), [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2267), + [anon_sym_RPAREN] = ACTIONS(2283), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2263), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = 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_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [543] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(532), - [sym__non_delim_token] = STATE(532), - [sym__literal] = STATE(532), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(532), - [sym_identifier] = ACTIONS(2271), + [sym_delim_token_tree] = STATE(540), + [sym__delim_tokens] = STATE(540), + [sym__non_delim_token] = STATE(540), + [sym__literal] = STATE(540), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(540), + [sym_identifier] = ACTIONS(2285), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2273), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [anon_sym_as] = ACTIONS(2271), - [anon_sym_async] = ACTIONS(2271), - [anon_sym_await] = 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_where] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [sym_mutable_specifier] = ACTIONS(2271), + [anon_sym_RBRACK] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2287), + [anon_sym_u8] = ACTIONS(2285), + [anon_sym_i8] = ACTIONS(2285), + [anon_sym_u16] = ACTIONS(2285), + [anon_sym_i16] = ACTIONS(2285), + [anon_sym_u32] = ACTIONS(2285), + [anon_sym_i32] = ACTIONS(2285), + [anon_sym_u64] = ACTIONS(2285), + [anon_sym_i64] = ACTIONS(2285), + [anon_sym_u128] = ACTIONS(2285), + [anon_sym_i128] = ACTIONS(2285), + [anon_sym_isize] = ACTIONS(2285), + [anon_sym_usize] = ACTIONS(2285), + [anon_sym_f32] = ACTIONS(2285), + [anon_sym_f64] = ACTIONS(2285), + [anon_sym_bool] = ACTIONS(2285), + [anon_sym_str] = ACTIONS(2285), + [anon_sym_char] = ACTIONS(2285), + [aux_sym__non_special_token_token1] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_as] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [anon_sym_fn] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_impl] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_loop] = ACTIONS(2285), + [anon_sym_match] = ACTIONS(2285), + [anon_sym_mod] = ACTIONS(2285), + [anon_sym_pub] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_struct] = ACTIONS(2285), + [anon_sym_trait] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_union] = ACTIONS(2285), + [anon_sym_unsafe] = ACTIONS(2285), + [anon_sym_use] = ACTIONS(2285), + [anon_sym_where] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [sym_mutable_specifier] = ACTIONS(2285), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2271), - [sym_super] = ACTIONS(2271), - [sym_crate] = ACTIONS(2271), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_crate] = ACTIONS(2285), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [544] = { - [sym_token_tree] = STATE(538), - [sym_token_repetition] = STATE(538), - [sym__literal] = STATE(538), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2275), - [anon_sym_as] = ACTIONS(2275), - [anon_sym_async] = ACTIONS(2275), - [anon_sym_await] = 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_where] = ACTIONS(2275), - [anon_sym_while] = ACTIONS(2275), - [sym_mutable_specifier] = ACTIONS(2275), + [sym_token_tree] = STATE(548), + [sym_token_repetition] = STATE(548), + [sym__literal] = STATE(548), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(548), + [sym_identifier] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_RBRACK] = ACTIONS(2271), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2289), + [anon_sym_i8] = ACTIONS(2289), + [anon_sym_u16] = ACTIONS(2289), + [anon_sym_i16] = ACTIONS(2289), + [anon_sym_u32] = ACTIONS(2289), + [anon_sym_i32] = ACTIONS(2289), + [anon_sym_u64] = ACTIONS(2289), + [anon_sym_i64] = ACTIONS(2289), + [anon_sym_u128] = ACTIONS(2289), + [anon_sym_i128] = ACTIONS(2289), + [anon_sym_isize] = ACTIONS(2289), + [anon_sym_usize] = ACTIONS(2289), + [anon_sym_f32] = ACTIONS(2289), + [anon_sym_f64] = ACTIONS(2289), + [anon_sym_bool] = ACTIONS(2289), + [anon_sym_str] = ACTIONS(2289), + [anon_sym_char] = ACTIONS(2289), + [aux_sym__non_special_token_token1] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [anon_sym_fn] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_impl] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_loop] = ACTIONS(2289), + [anon_sym_match] = ACTIONS(2289), + [anon_sym_mod] = ACTIONS(2289), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_struct] = ACTIONS(2289), + [anon_sym_trait] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(2289), + [anon_sym_unsafe] = ACTIONS(2289), + [anon_sym_use] = ACTIONS(2289), + [anon_sym_where] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [sym_mutable_specifier] = ACTIONS(2289), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2275), - [sym_super] = ACTIONS(2275), - [sym_crate] = ACTIONS(2275), - [sym_metavariable] = ACTIONS(2279), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_crate] = ACTIONS(2289), + [sym_metavariable] = ACTIONS(2291), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, [545] = { - [sym_delim_token_tree] = STATE(607), + [sym_delim_token_tree] = STATE(542), [sym__delim_tokens] = STATE(542), [sym__non_delim_token] = STATE(542), [sym__literal] = STATE(542), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), [aux_sym_delim_token_tree_repeat1] = STATE(542), - [sym_identifier] = ACTIONS(2281), + [sym_identifier] = ACTIONS(2293), [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2283), + [anon_sym_RPAREN] = ACTIONS(2183), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2285), - [anon_sym_u8] = ACTIONS(2281), - [anon_sym_i8] = ACTIONS(2281), - [anon_sym_u16] = ACTIONS(2281), - [anon_sym_i16] = ACTIONS(2281), - [anon_sym_u32] = ACTIONS(2281), - [anon_sym_i32] = ACTIONS(2281), - [anon_sym_u64] = ACTIONS(2281), - [anon_sym_i64] = ACTIONS(2281), - [anon_sym_u128] = ACTIONS(2281), - [anon_sym_i128] = ACTIONS(2281), - [anon_sym_isize] = ACTIONS(2281), - [anon_sym_usize] = ACTIONS(2281), - [anon_sym_f32] = ACTIONS(2281), - [anon_sym_f64] = ACTIONS(2281), - [anon_sym_bool] = ACTIONS(2281), - [anon_sym_str] = ACTIONS(2281), - [anon_sym_char] = ACTIONS(2281), - [aux_sym__non_special_token_token1] = ACTIONS(2281), - [anon_sym_SQUOTE] = ACTIONS(2281), - [anon_sym_as] = ACTIONS(2281), - [anon_sym_async] = ACTIONS(2281), - [anon_sym_await] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_default] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [anon_sym_fn] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_impl] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_loop] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_mod] = ACTIONS(2281), - [anon_sym_pub] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_static] = ACTIONS(2281), - [anon_sym_struct] = ACTIONS(2281), - [anon_sym_trait] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2281), - [anon_sym_union] = ACTIONS(2281), - [anon_sym_unsafe] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_where] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [sym_mutable_specifier] = ACTIONS(2281), + [anon_sym_DOLLAR] = ACTIONS(2295), + [anon_sym_u8] = ACTIONS(2293), + [anon_sym_i8] = ACTIONS(2293), + [anon_sym_u16] = ACTIONS(2293), + [anon_sym_i16] = ACTIONS(2293), + [anon_sym_u32] = ACTIONS(2293), + [anon_sym_i32] = ACTIONS(2293), + [anon_sym_u64] = ACTIONS(2293), + [anon_sym_i64] = ACTIONS(2293), + [anon_sym_u128] = ACTIONS(2293), + [anon_sym_i128] = ACTIONS(2293), + [anon_sym_isize] = ACTIONS(2293), + [anon_sym_usize] = ACTIONS(2293), + [anon_sym_f32] = ACTIONS(2293), + [anon_sym_f64] = ACTIONS(2293), + [anon_sym_bool] = ACTIONS(2293), + [anon_sym_str] = ACTIONS(2293), + [anon_sym_char] = ACTIONS(2293), + [aux_sym__non_special_token_token1] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(2293), + [anon_sym_as] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_fn] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_impl] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_loop] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_mod] = ACTIONS(2293), + [anon_sym_pub] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_struct] = ACTIONS(2293), + [anon_sym_trait] = ACTIONS(2293), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_union] = ACTIONS(2293), + [anon_sym_unsafe] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_where] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [sym_mutable_specifier] = ACTIONS(2293), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2281), - [sym_super] = ACTIONS(2281), - [sym_crate] = ACTIONS(2281), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2293), + [sym_super] = ACTIONS(2293), + [sym_crate] = ACTIONS(2293), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [546] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(537), - [sym__non_delim_token] = STATE(537), - [sym__literal] = STATE(537), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(537), - [sym_identifier] = ACTIONS(2287), + [sym_delim_token_tree] = STATE(506), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2259), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2283), - [anon_sym_DOLLAR] = ACTIONS(2289), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_as] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_await] = 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_where] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [sym_mutable_specifier] = ACTIONS(2287), + [anon_sym_RBRACK] = ACTIONS(2297), + [anon_sym_DOLLAR] = ACTIONS(2263), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = 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_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_crate] = ACTIONS(2287), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, [547] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(539), - [sym__non_delim_token] = STATE(539), - [sym__literal] = STATE(539), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(539), - [sym_identifier] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2293), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2291), - [anon_sym_as] = ACTIONS(2291), - [anon_sym_async] = ACTIONS(2291), - [anon_sym_await] = 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_where] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [sym_mutable_specifier] = ACTIONS(2291), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2291), - [sym_super] = ACTIONS(2291), - [sym_crate] = ACTIONS(2291), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [548] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(554), - [sym__non_delim_token] = STATE(554), - [sym__literal] = STATE(554), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(554), - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2299), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2295), - [anon_sym_SQUOTE] = ACTIONS(2295), - [anon_sym_as] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2295), - [anon_sym_await] = 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_where] = ACTIONS(2295), - [anon_sym_while] = ACTIONS(2295), - [sym_mutable_specifier] = ACTIONS(2295), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2295), - [sym_super] = ACTIONS(2295), - [sym_crate] = ACTIONS(2295), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [549] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(536), - [sym__non_delim_token] = STATE(536), - [sym__literal] = STATE(536), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(536), - [sym_identifier] = ACTIONS(2301), + [sym_delim_token_tree] = STATE(531), + [sym__delim_tokens] = STATE(531), + [sym__non_delim_token] = STATE(531), + [sym__literal] = STATE(531), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(531), + [sym_identifier] = ACTIONS(2299), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2297), [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2301), [anon_sym_DOLLAR] = ACTIONS(2303), - [anon_sym_u8] = ACTIONS(2301), - [anon_sym_i8] = ACTIONS(2301), - [anon_sym_u16] = ACTIONS(2301), - [anon_sym_i16] = ACTIONS(2301), - [anon_sym_u32] = ACTIONS(2301), - [anon_sym_i32] = ACTIONS(2301), - [anon_sym_u64] = ACTIONS(2301), - [anon_sym_i64] = ACTIONS(2301), - [anon_sym_u128] = ACTIONS(2301), - [anon_sym_i128] = ACTIONS(2301), - [anon_sym_isize] = ACTIONS(2301), - [anon_sym_usize] = ACTIONS(2301), - [anon_sym_f32] = ACTIONS(2301), - [anon_sym_f64] = ACTIONS(2301), - [anon_sym_bool] = ACTIONS(2301), - [anon_sym_str] = ACTIONS(2301), - [anon_sym_char] = ACTIONS(2301), - [aux_sym__non_special_token_token1] = ACTIONS(2301), - [anon_sym_SQUOTE] = ACTIONS(2301), - [anon_sym_as] = ACTIONS(2301), - [anon_sym_async] = ACTIONS(2301), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_default] = ACTIONS(2301), - [anon_sym_enum] = ACTIONS(2301), - [anon_sym_fn] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_impl] = ACTIONS(2301), - [anon_sym_let] = ACTIONS(2301), - [anon_sym_loop] = ACTIONS(2301), - [anon_sym_match] = ACTIONS(2301), - [anon_sym_mod] = ACTIONS(2301), - [anon_sym_pub] = ACTIONS(2301), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2301), - [anon_sym_struct] = ACTIONS(2301), - [anon_sym_trait] = ACTIONS(2301), - [anon_sym_type] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(2301), - [anon_sym_unsafe] = ACTIONS(2301), - [anon_sym_use] = ACTIONS(2301), - [anon_sym_where] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [sym_mutable_specifier] = ACTIONS(2301), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_as] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_await] = 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_where] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [sym_mutable_specifier] = ACTIONS(2299), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2301), - [sym_super] = ACTIONS(2301), - [sym_crate] = ACTIONS(2301), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_crate] = ACTIONS(2299), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [550] = { - [sym_token_tree] = STATE(510), - [sym_token_repetition] = STATE(510), - [sym__literal] = STATE(510), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2205), + [548] = { + [sym_token_tree] = STATE(496), + [sym_token_repetition] = STATE(496), + [sym__literal] = STATE(496), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(496), + [sym_identifier] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2209), [anon_sym_RBRACK] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2207), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_await] = 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_where] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [sym_mutable_specifier] = ACTIONS(2197), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_crate] = ACTIONS(2197), - [sym_metavariable] = ACTIONS(2209), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [551] = { - [sym_token_tree] = STATE(510), - [sym_token_repetition] = STATE(510), - [sym__literal] = STATE(510), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_await] = 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_where] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [sym_mutable_specifier] = ACTIONS(2197), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2032), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2034), - [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_crate] = ACTIONS(2197), - [sym_metavariable] = ACTIONS(2209), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), - [sym_block_comment] = ACTIONS(3), - }, - [552] = { - [sym_token_tree] = STATE(510), - [sym_token_repetition] = STATE(510), - [sym__literal] = STATE(510), - [sym_string_literal] = STATE(574), - [sym_boolean_literal] = STATE(574), - [aux_sym_token_tree_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_await] = 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_where] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [sym_mutable_specifier] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2219), + [anon_sym_i8] = ACTIONS(2219), + [anon_sym_u16] = ACTIONS(2219), + [anon_sym_i16] = ACTIONS(2219), + [anon_sym_u32] = ACTIONS(2219), + [anon_sym_i32] = ACTIONS(2219), + [anon_sym_u64] = ACTIONS(2219), + [anon_sym_i64] = ACTIONS(2219), + [anon_sym_u128] = ACTIONS(2219), + [anon_sym_i128] = ACTIONS(2219), + [anon_sym_isize] = ACTIONS(2219), + [anon_sym_usize] = ACTIONS(2219), + [anon_sym_f32] = ACTIONS(2219), + [anon_sym_f64] = ACTIONS(2219), + [anon_sym_bool] = ACTIONS(2219), + [anon_sym_str] = ACTIONS(2219), + [anon_sym_char] = ACTIONS(2219), + [aux_sym__non_special_token_token1] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_impl] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_mod] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_trait] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_where] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [sym_mutable_specifier] = ACTIONS(2219), [sym_integer_literal] = ACTIONS(2030), [aux_sym_string_literal_token1] = ACTIONS(2032), [sym_char_literal] = ACTIONS(2030), [anon_sym_true] = ACTIONS(2034), [anon_sym_false] = ACTIONS(2034), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_crate] = ACTIONS(2197), - [sym_metavariable] = ACTIONS(2209), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_crate] = ACTIONS(2219), + [sym_metavariable] = ACTIONS(2223), [sym_raw_string_literal] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [553] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(530), - [sym__non_delim_token] = STATE(530), - [sym__literal] = STATE(530), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(530), + [549] = { + [sym_delim_token_tree] = STATE(536), + [sym__delim_tokens] = STATE(536), + [sym__non_delim_token] = STATE(536), + [sym__literal] = STATE(536), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(536), [sym_identifier] = ACTIONS(2307), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2301), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2297), [anon_sym_DOLLAR] = ACTIONS(2309), [anon_sym_u8] = ACTIONS(2307), [anon_sym_i8] = ACTIONS(2307), @@ -66137,7 +65830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2307), [sym_super] = ACTIONS(2307), [sym_crate] = ACTIONS(2307), @@ -66145,94 +65838,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [554] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(506), - [sym__non_delim_token] = STATE(506), - [sym__literal] = STATE(506), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [555] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(529), - [sym__non_delim_token] = STATE(529), - [sym__literal] = STATE(529), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(529), + [550] = { + [sym_delim_token_tree] = STATE(537), + [sym__delim_tokens] = STATE(537), + [sym__non_delim_token] = STATE(537), + [sym__literal] = STATE(537), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(537), [sym_identifier] = ACTIONS(2311), [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2313), + [anon_sym_RPAREN] = ACTIONS(2301), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(2313), [anon_sym_u8] = ACTIONS(2311), [anon_sym_i8] = ACTIONS(2311), [anon_sym_u16] = ACTIONS(2311), @@ -66285,7 +65904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2311), [sym_super] = ACTIONS(2311), [sym_crate] = ACTIONS(2311), @@ -66293,93 +65912,463 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, - [556] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(521), - [sym__non_delim_token] = STATE(521), - [sym__literal] = STATE(521), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(2317), + [551] = { + [sym_token_tree] = STATE(496), + [sym_token_repetition] = STATE(496), + [sym__literal] = STATE(496), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(496), + [sym_identifier] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2219), + [anon_sym_i8] = ACTIONS(2219), + [anon_sym_u16] = ACTIONS(2219), + [anon_sym_i16] = ACTIONS(2219), + [anon_sym_u32] = ACTIONS(2219), + [anon_sym_i32] = ACTIONS(2219), + [anon_sym_u64] = ACTIONS(2219), + [anon_sym_i64] = ACTIONS(2219), + [anon_sym_u128] = ACTIONS(2219), + [anon_sym_i128] = ACTIONS(2219), + [anon_sym_isize] = ACTIONS(2219), + [anon_sym_usize] = ACTIONS(2219), + [anon_sym_f32] = ACTIONS(2219), + [anon_sym_f64] = ACTIONS(2219), + [anon_sym_bool] = ACTIONS(2219), + [anon_sym_str] = ACTIONS(2219), + [anon_sym_char] = ACTIONS(2219), + [aux_sym__non_special_token_token1] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_impl] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_mod] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_trait] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_where] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [sym_mutable_specifier] = ACTIONS(2219), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_crate] = ACTIONS(2219), + [sym_metavariable] = ACTIONS(2223), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [552] = { + [sym_token_tree] = STATE(496), + [sym_token_repetition] = STATE(496), + [sym__literal] = STATE(496), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(496), + [sym_identifier] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2219), + [anon_sym_i8] = ACTIONS(2219), + [anon_sym_u16] = ACTIONS(2219), + [anon_sym_i16] = ACTIONS(2219), + [anon_sym_u32] = ACTIONS(2219), + [anon_sym_i32] = ACTIONS(2219), + [anon_sym_u64] = ACTIONS(2219), + [anon_sym_i64] = ACTIONS(2219), + [anon_sym_u128] = ACTIONS(2219), + [anon_sym_i128] = ACTIONS(2219), + [anon_sym_isize] = ACTIONS(2219), + [anon_sym_usize] = ACTIONS(2219), + [anon_sym_f32] = ACTIONS(2219), + [anon_sym_f64] = ACTIONS(2219), + [anon_sym_bool] = ACTIONS(2219), + [anon_sym_str] = ACTIONS(2219), + [anon_sym_char] = ACTIONS(2219), + [aux_sym__non_special_token_token1] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_impl] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_mod] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_trait] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_where] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [sym_mutable_specifier] = ACTIONS(2219), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_crate] = ACTIONS(2219), + [sym_metavariable] = ACTIONS(2223), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [553] = { + [sym_delim_token_tree] = STATE(506), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2259), [anon_sym_LPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2297), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2319), - [anon_sym_u8] = ACTIONS(2317), - [anon_sym_i8] = ACTIONS(2317), - [anon_sym_u16] = ACTIONS(2317), - [anon_sym_i16] = ACTIONS(2317), - [anon_sym_u32] = ACTIONS(2317), - [anon_sym_i32] = ACTIONS(2317), - [anon_sym_u64] = ACTIONS(2317), - [anon_sym_i64] = ACTIONS(2317), - [anon_sym_u128] = ACTIONS(2317), - [anon_sym_i128] = ACTIONS(2317), - [anon_sym_isize] = ACTIONS(2317), - [anon_sym_usize] = ACTIONS(2317), - [anon_sym_f32] = ACTIONS(2317), - [anon_sym_f64] = ACTIONS(2317), - [anon_sym_bool] = ACTIONS(2317), - [anon_sym_str] = ACTIONS(2317), - [anon_sym_char] = ACTIONS(2317), - [aux_sym__non_special_token_token1] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_as] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), - [anon_sym_fn] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_impl] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_loop] = ACTIONS(2317), - [anon_sym_match] = ACTIONS(2317), - [anon_sym_mod] = ACTIONS(2317), - [anon_sym_pub] = ACTIONS(2317), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_static] = ACTIONS(2317), - [anon_sym_struct] = ACTIONS(2317), - [anon_sym_trait] = ACTIONS(2317), - [anon_sym_type] = ACTIONS(2317), - [anon_sym_union] = ACTIONS(2317), - [anon_sym_unsafe] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_where] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [sym_mutable_specifier] = ACTIONS(2317), + [anon_sym_DOLLAR] = ACTIONS(2263), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = 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_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), [sym_integer_literal] = ACTIONS(2189), [aux_sym_string_literal_token1] = ACTIONS(2191), [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2317), - [sym_super] = ACTIONS(2317), - [sym_crate] = ACTIONS(2317), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), [sym_raw_string_literal] = ACTIONS(2189), [sym_float_literal] = ACTIONS(2189), [sym_block_comment] = ACTIONS(3), }, + [554] = { + [sym_delim_token_tree] = STATE(506), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2263), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = 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_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [555] = { + [sym_delim_token_tree] = STATE(546), + [sym__delim_tokens] = STATE(546), + [sym__non_delim_token] = STATE(546), + [sym__literal] = STATE(546), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(546), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2317), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2315), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_async] = ACTIONS(2315), + [anon_sym_await] = 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_where] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2315), + [sym_mutable_specifier] = ACTIONS(2315), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2315), + [sym_super] = ACTIONS(2315), + [sym_crate] = ACTIONS(2315), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_block_comment] = ACTIONS(3), + }, + [556] = { + [sym_token_tree] = STATE(496), + [sym_token_repetition] = STATE(496), + [sym__literal] = STATE(496), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(496), + [sym_identifier] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2219), + [anon_sym_i8] = ACTIONS(2219), + [anon_sym_u16] = ACTIONS(2219), + [anon_sym_i16] = ACTIONS(2219), + [anon_sym_u32] = ACTIONS(2219), + [anon_sym_i32] = ACTIONS(2219), + [anon_sym_u64] = ACTIONS(2219), + [anon_sym_i64] = ACTIONS(2219), + [anon_sym_u128] = ACTIONS(2219), + [anon_sym_i128] = ACTIONS(2219), + [anon_sym_isize] = ACTIONS(2219), + [anon_sym_usize] = ACTIONS(2219), + [anon_sym_f32] = ACTIONS(2219), + [anon_sym_f64] = ACTIONS(2219), + [anon_sym_bool] = ACTIONS(2219), + [anon_sym_str] = ACTIONS(2219), + [anon_sym_char] = ACTIONS(2219), + [aux_sym__non_special_token_token1] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_impl] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_mod] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_trait] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_where] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [sym_mutable_specifier] = ACTIONS(2219), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_crate] = ACTIONS(2219), + [sym_metavariable] = ACTIONS(2223), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, [557] = { - [sym_delim_token_tree] = STATE(607), - [sym__delim_tokens] = STATE(525), - [sym__non_delim_token] = STATE(525), - [sym__literal] = STATE(525), - [sym_string_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [aux_sym_delim_token_tree_repeat1] = STATE(525), + [sym_delim_token_tree] = STATE(554), + [sym__delim_tokens] = STATE(554), + [sym__non_delim_token] = STATE(554), + [sym__literal] = STATE(554), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(554), [sym_identifier] = ACTIONS(2321), [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2197), [anon_sym_LBRACE] = ACTIONS(2181), [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_RBRACK] = ACTIONS(2313), [anon_sym_DOLLAR] = ACTIONS(2323), [anon_sym_u8] = ACTIONS(2321), [anon_sym_i8] = ACTIONS(2321), @@ -66433,7 +66422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2189), [anon_sym_true] = ACTIONS(2193), [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2321), [sym_super] = ACTIONS(2321), [sym_crate] = ACTIONS(2321), @@ -66442,63 +66431,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [558] = { - [sym_attribute_item] = STATE(644), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2450), - [sym_scoped_identifier] = STATE(1567), - [sym_scoped_type_identifier] = STATE(1919), - [sym_match_pattern] = STATE(2490), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2123), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(644), - [sym_identifier] = ACTIONS(1132), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_union] = ACTIONS(1144), + [sym_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_macro_invocation] = STATE(2549), + [sym_scoped_identifier] = STATE(1586), + [sym_scoped_type_identifier] = STATE(2024), + [sym_match_pattern] = STATE(2549), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1929), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_enum_variant_list_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -66506,29 +66495,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [559] = { - [sym_attribute_item] = STATE(568), - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym_visibility_modifier] = STATE(688), - [sym__type] = STATE(1822), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [sym_attribute_item] = STATE(569), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym_visibility_modifier] = STATE(687), + [sym__type] = STATE(1888), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -66536,115 +66525,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_enum_variant_list_repeat1] = STATE(568), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_enum_variant_list_repeat1] = STATE(569), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_COMMA] = ACTIONS(2335), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(920), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, [560] = { - [sym_attribute_item] = STATE(644), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_macro_invocation] = STATE(2450), - [sym_scoped_identifier] = STATE(1567), - [sym_scoped_type_identifier] = STATE(1919), - [sym_match_pattern] = STATE(2450), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2123), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [aux_sym_enum_variant_list_repeat1] = STATE(644), - [sym_identifier] = ACTIONS(1132), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_union] = ACTIONS(1144), + [sym_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_macro_invocation] = STATE(2549), + [sym_scoped_identifier] = STATE(1586), + [sym_scoped_type_identifier] = STATE(2024), + [sym_match_pattern] = STATE(2562), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1929), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [aux_sym_enum_variant_list_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -66652,29 +66641,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [561] = { - [sym_attribute_item] = STATE(567), - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym_visibility_modifier] = STATE(670), - [sym__type] = STATE(1937), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [sym_attribute_item] = STATE(570), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym_visibility_modifier] = STATE(741), + [sym__type] = STATE(2075), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -66682,71 +66671,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_enum_variant_list_repeat1] = STATE(567), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_enum_variant_list_repeat1] = STATE(570), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_RPAREN] = ACTIONS(2339), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(920), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, [562] = { - [sym_attribute_item] = STATE(567), - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym_visibility_modifier] = STATE(670), - [sym__type] = STATE(1937), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [sym_attribute_item] = STATE(570), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym_visibility_modifier] = STATE(741), + [sym__type] = STATE(2075), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -66754,71 +66743,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_enum_variant_list_repeat1] = STATE(567), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_enum_variant_list_repeat1] = STATE(570), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_RPAREN] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(920), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, [563] = { - [sym_attribute_item] = STATE(567), - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym_visibility_modifier] = STATE(670), - [sym__type] = STATE(1937), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [sym_attribute_item] = STATE(570), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym_visibility_modifier] = STATE(741), + [sym__type] = STATE(2075), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -66826,71 +66815,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_enum_variant_list_repeat1] = STATE(567), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_enum_variant_list_repeat1] = STATE(570), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_RPAREN] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(920), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, [564] = { - [sym_attribute_item] = STATE(567), - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym_visibility_modifier] = STATE(670), - [sym__type] = STATE(1937), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [sym_attribute_item] = STATE(570), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym_visibility_modifier] = STATE(741), + [sym__type] = STATE(2075), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -66898,71 +66887,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_enum_variant_list_repeat1] = STATE(567), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_enum_variant_list_repeat1] = STATE(570), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_RPAREN] = ACTIONS(2345), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(920), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, [565] = { - [sym_attribute_item] = STATE(567), - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym_visibility_modifier] = STATE(670), - [sym__type] = STATE(1937), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [sym_attribute_item] = STATE(570), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym_visibility_modifier] = STATE(741), + [sym__type] = STATE(2075), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -66970,71 +66959,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_enum_variant_list_repeat1] = STATE(567), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_enum_variant_list_repeat1] = STATE(570), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_RPAREN] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(920), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, [566] = { - [sym_attribute_item] = STATE(567), - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym_visibility_modifier] = STATE(670), - [sym__type] = STATE(1937), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [sym_attribute_item] = STATE(570), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym_visibility_modifier] = STATE(741), + [sym__type] = STATE(2075), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -67042,71 +67031,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_enum_variant_list_repeat1] = STATE(567), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_enum_variant_list_repeat1] = STATE(570), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_RPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(920), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, [567] = { - [sym_attribute_item] = STATE(1147), - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym_visibility_modifier] = STATE(750), - [sym__type] = STATE(2025), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [sym_attribute_item] = STATE(570), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym_visibility_modifier] = STATE(741), + [sym__type] = STATE(2075), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -67114,127 +67103,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_enum_variant_list_repeat1] = STATE(1147), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_enum_variant_list_repeat1] = STATE(570), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(920), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, [568] = { - [sym_attribute_item] = STATE(1147), - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym_visibility_modifier] = STATE(762), - [sym__type] = STATE(1814), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1432), - [sym_for_lifetimes] = STATE(1216), - [sym_function_type] = STATE(1432), - [sym_tuple_type] = STATE(1432), - [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), - [sym_bounded_type] = STATE(1432), - [sym_reference_type] = STATE(1432), - [sym_pointer_type] = STATE(1432), - [sym_empty_type] = STATE(1432), - [sym_abstract_type] = STATE(1432), - [sym_dynamic_type] = STATE(1432), - [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_enum_variant_list_repeat1] = STATE(1147), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [569] = { [sym_identifier] = ACTIONS(2351), [anon_sym_LPAREN] = ACTIONS(2353), [anon_sym_RPAREN] = ACTIONS(2353), @@ -67296,7 +67214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2353), [anon_sym_true] = ACTIONS(2351), [anon_sym_false] = ACTIONS(2351), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2351), [sym_super] = ACTIONS(2351), [sym_crate] = ACTIONS(2351), @@ -67305,21 +67223,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2353), [sym_block_comment] = ACTIONS(3), }, + [569] = { + [sym_attribute_item] = STATE(1153), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym_visibility_modifier] = STATE(762), + [sym__type] = STATE(1800), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_enum_variant_list_repeat1] = STATE(1153), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, [570] = { - [sym_attribute_item] = STATE(567), - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym_visibility_modifier] = STATE(670), - [sym__type] = STATE(1937), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [sym_attribute_item] = STATE(1153), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym_visibility_modifier] = STATE(669), + [sym__type] = STATE(2156), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -67327,123 +67316,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_enum_variant_list_repeat1] = STATE(567), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_enum_variant_list_repeat1] = STATE(1153), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(2333), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(920), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, [571] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1832), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_RBRACK] = ACTIONS(830), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_COMMA] = ACTIONS(838), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_RPAREN] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_RBRACK] = ACTIONS(2359), + [anon_sym_DOLLAR] = ACTIONS(2357), + [anon_sym_u8] = ACTIONS(2357), + [anon_sym_i8] = ACTIONS(2357), + [anon_sym_u16] = ACTIONS(2357), + [anon_sym_i16] = ACTIONS(2357), + [anon_sym_u32] = ACTIONS(2357), + [anon_sym_i32] = ACTIONS(2357), + [anon_sym_u64] = ACTIONS(2357), + [anon_sym_i64] = ACTIONS(2357), + [anon_sym_u128] = ACTIONS(2357), + [anon_sym_i128] = ACTIONS(2357), + [anon_sym_isize] = ACTIONS(2357), + [anon_sym_usize] = ACTIONS(2357), + [anon_sym_f32] = ACTIONS(2357), + [anon_sym_f64] = ACTIONS(2357), + [anon_sym_bool] = ACTIONS(2357), + [anon_sym_str] = ACTIONS(2357), + [anon_sym_char] = ACTIONS(2357), + [aux_sym__non_special_token_token1] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_as] = ACTIONS(2357), + [anon_sym_async] = ACTIONS(2357), + [anon_sym_await] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_fn] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_impl] = ACTIONS(2357), + [anon_sym_let] = ACTIONS(2357), + [anon_sym_loop] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_mod] = ACTIONS(2357), + [anon_sym_pub] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_trait] = ACTIONS(2357), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_unsafe] = ACTIONS(2357), + [anon_sym_use] = ACTIONS(2357), + [anon_sym_where] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [sym_mutable_specifier] = ACTIONS(2357), + [sym_integer_literal] = ACTIONS(2359), + [aux_sym_string_literal_token1] = ACTIONS(2359), + [sym_char_literal] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(2357), + [anon_sym_false] = ACTIONS(2357), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2357), + [sym_super] = ACTIONS(2357), + [sym_crate] = ACTIONS(2357), + [sym_metavariable] = ACTIONS(2359), + [sym_raw_string_literal] = ACTIONS(2359), + [sym_float_literal] = ACTIONS(2359), [sym_block_comment] = ACTIONS(3), }, [572] = { @@ -67507,7 +67496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2363), [anon_sym_true] = ACTIONS(2361), [anon_sym_false] = ACTIONS(2361), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2361), [sym_super] = ACTIONS(2361), [sym_crate] = ACTIONS(2361), @@ -67577,7 +67566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2367), [anon_sym_true] = ACTIONS(2365), [anon_sym_false] = ACTIONS(2365), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2365), [sym_super] = ACTIONS(2365), [sym_crate] = ACTIONS(2365), @@ -67587,73 +67576,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [574] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1884), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), [sym_identifier] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_RPAREN] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2369), - [anon_sym_u8] = ACTIONS(2369), - [anon_sym_i8] = ACTIONS(2369), - [anon_sym_u16] = ACTIONS(2369), - [anon_sym_i16] = ACTIONS(2369), - [anon_sym_u32] = ACTIONS(2369), - [anon_sym_i32] = ACTIONS(2369), - [anon_sym_u64] = ACTIONS(2369), - [anon_sym_i64] = ACTIONS(2369), - [anon_sym_u128] = ACTIONS(2369), - [anon_sym_i128] = ACTIONS(2369), - [anon_sym_isize] = ACTIONS(2369), - [anon_sym_usize] = ACTIONS(2369), - [anon_sym_f32] = ACTIONS(2369), - [anon_sym_f64] = ACTIONS(2369), - [anon_sym_bool] = ACTIONS(2369), - [anon_sym_str] = ACTIONS(2369), - [anon_sym_char] = ACTIONS(2369), - [aux_sym__non_special_token_token1] = ACTIONS(2369), - [anon_sym_SQUOTE] = ACTIONS(2369), - [anon_sym_as] = ACTIONS(2369), - [anon_sym_async] = ACTIONS(2369), - [anon_sym_await] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_default] = ACTIONS(2369), - [anon_sym_enum] = ACTIONS(2369), - [anon_sym_fn] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_impl] = ACTIONS(2369), - [anon_sym_let] = ACTIONS(2369), - [anon_sym_loop] = ACTIONS(2369), - [anon_sym_match] = ACTIONS(2369), - [anon_sym_mod] = ACTIONS(2369), - [anon_sym_pub] = ACTIONS(2369), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_static] = ACTIONS(2369), - [anon_sym_struct] = ACTIONS(2369), - [anon_sym_trait] = ACTIONS(2369), - [anon_sym_type] = ACTIONS(2369), - [anon_sym_union] = ACTIONS(2369), - [anon_sym_unsafe] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_where] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [sym_mutable_specifier] = ACTIONS(2369), - [sym_integer_literal] = ACTIONS(2371), - [aux_sym_string_literal_token1] = ACTIONS(2371), - [sym_char_literal] = ACTIONS(2371), - [anon_sym_true] = ACTIONS(2369), - [anon_sym_false] = ACTIONS(2369), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2369), - [sym_super] = ACTIONS(2369), - [sym_crate] = ACTIONS(2369), - [sym_metavariable] = ACTIONS(2371), - [sym_raw_string_literal] = ACTIONS(2371), - [sym_float_literal] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_RBRACK] = ACTIONS(810), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [575] = { @@ -67717,7 +67706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2375), [anon_sym_true] = ACTIONS(2373), [anon_sym_false] = ACTIONS(2373), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2373), [sym_super] = ACTIONS(2373), [sym_crate] = ACTIONS(2373), @@ -67787,7 +67776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2379), [anon_sym_true] = ACTIONS(2377), [anon_sym_false] = ACTIONS(2377), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2377), [sym_super] = ACTIONS(2377), [sym_crate] = ACTIONS(2377), @@ -67797,213 +67786,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [577] = { - [sym_identifier] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_RPAREN] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_RBRACK] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2381), - [anon_sym_u8] = ACTIONS(2381), - [anon_sym_i8] = ACTIONS(2381), - [anon_sym_u16] = ACTIONS(2381), - [anon_sym_i16] = ACTIONS(2381), - [anon_sym_u32] = ACTIONS(2381), - [anon_sym_i32] = ACTIONS(2381), - [anon_sym_u64] = ACTIONS(2381), - [anon_sym_i64] = ACTIONS(2381), - [anon_sym_u128] = ACTIONS(2381), - [anon_sym_i128] = ACTIONS(2381), - [anon_sym_isize] = ACTIONS(2381), - [anon_sym_usize] = ACTIONS(2381), - [anon_sym_f32] = ACTIONS(2381), - [anon_sym_f64] = ACTIONS(2381), - [anon_sym_bool] = ACTIONS(2381), - [anon_sym_str] = ACTIONS(2381), - [anon_sym_char] = ACTIONS(2381), - [aux_sym__non_special_token_token1] = ACTIONS(2381), - [anon_sym_SQUOTE] = ACTIONS(2381), - [anon_sym_as] = ACTIONS(2381), - [anon_sym_async] = ACTIONS(2381), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_default] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [anon_sym_fn] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_impl] = ACTIONS(2381), - [anon_sym_let] = ACTIONS(2381), - [anon_sym_loop] = ACTIONS(2381), - [anon_sym_match] = ACTIONS(2381), - [anon_sym_mod] = ACTIONS(2381), - [anon_sym_pub] = ACTIONS(2381), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_static] = ACTIONS(2381), - [anon_sym_struct] = ACTIONS(2381), - [anon_sym_trait] = ACTIONS(2381), - [anon_sym_type] = ACTIONS(2381), - [anon_sym_union] = ACTIONS(2381), - [anon_sym_unsafe] = ACTIONS(2381), - [anon_sym_use] = ACTIONS(2381), - [anon_sym_where] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [sym_mutable_specifier] = ACTIONS(2381), - [sym_integer_literal] = ACTIONS(2383), - [aux_sym_string_literal_token1] = ACTIONS(2383), - [sym_char_literal] = ACTIONS(2383), - [anon_sym_true] = ACTIONS(2381), - [anon_sym_false] = ACTIONS(2381), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2381), - [sym_super] = ACTIONS(2381), - [sym_crate] = ACTIONS(2381), - [sym_metavariable] = ACTIONS(2383), - [sym_raw_string_literal] = ACTIONS(2383), - [sym_float_literal] = ACTIONS(2383), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1878), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [578] = { - [sym_identifier] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_RBRACK] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_u8] = ACTIONS(2385), - [anon_sym_i8] = ACTIONS(2385), - [anon_sym_u16] = ACTIONS(2385), - [anon_sym_i16] = ACTIONS(2385), - [anon_sym_u32] = ACTIONS(2385), - [anon_sym_i32] = ACTIONS(2385), - [anon_sym_u64] = ACTIONS(2385), - [anon_sym_i64] = ACTIONS(2385), - [anon_sym_u128] = ACTIONS(2385), - [anon_sym_i128] = ACTIONS(2385), - [anon_sym_isize] = ACTIONS(2385), - [anon_sym_usize] = ACTIONS(2385), - [anon_sym_f32] = ACTIONS(2385), - [anon_sym_f64] = ACTIONS(2385), - [anon_sym_bool] = ACTIONS(2385), - [anon_sym_str] = ACTIONS(2385), - [anon_sym_char] = ACTIONS(2385), - [aux_sym__non_special_token_token1] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2385), - [anon_sym_as] = ACTIONS(2385), - [anon_sym_async] = ACTIONS(2385), - [anon_sym_await] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), + [sym_function_modifiers] = STATE(2577), + [sym_const_parameter] = STATE(1980), + [sym_constrained_type_parameter] = STATE(1857), + [sym_optional_type_parameter] = STATE(1980), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1923), + [sym_bracketed_type] = STATE(2385), + [sym_qualified_type] = STATE(2422), + [sym_lifetime] = STATE(1714), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_impl] = ACTIONS(2385), - [anon_sym_let] = ACTIONS(2385), - [anon_sym_loop] = ACTIONS(2385), - [anon_sym_match] = ACTIONS(2385), - [anon_sym_mod] = ACTIONS(2385), - [anon_sym_pub] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2385), - [anon_sym_trait] = ACTIONS(2385), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_unsafe] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_where] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [sym_mutable_specifier] = ACTIONS(2385), - [sym_integer_literal] = ACTIONS(2387), - [aux_sym_string_literal_token1] = ACTIONS(2387), - [sym_char_literal] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2385), - [sym_super] = ACTIONS(2385), - [sym_crate] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), [sym_metavariable] = ACTIONS(2387), - [sym_raw_string_literal] = ACTIONS(2387), - [sym_float_literal] = ACTIONS(2387), [sym_block_comment] = ACTIONS(3), }, [579] = { - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_RPAREN] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_RBRACK] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2389), - [anon_sym_u8] = ACTIONS(2389), - [anon_sym_i8] = ACTIONS(2389), - [anon_sym_u16] = ACTIONS(2389), - [anon_sym_i16] = ACTIONS(2389), - [anon_sym_u32] = ACTIONS(2389), - [anon_sym_i32] = ACTIONS(2389), - [anon_sym_u64] = ACTIONS(2389), - [anon_sym_i64] = ACTIONS(2389), - [anon_sym_u128] = ACTIONS(2389), - [anon_sym_i128] = ACTIONS(2389), - [anon_sym_isize] = ACTIONS(2389), - [anon_sym_usize] = ACTIONS(2389), - [anon_sym_f32] = ACTIONS(2389), - [anon_sym_f64] = ACTIONS(2389), - [anon_sym_bool] = ACTIONS(2389), - [anon_sym_str] = ACTIONS(2389), - [anon_sym_char] = ACTIONS(2389), - [aux_sym__non_special_token_token1] = ACTIONS(2389), - [anon_sym_SQUOTE] = ACTIONS(2389), - [anon_sym_as] = ACTIONS(2389), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_default] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [anon_sym_fn] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_impl] = ACTIONS(2389), - [anon_sym_let] = ACTIONS(2389), - [anon_sym_loop] = ACTIONS(2389), - [anon_sym_match] = ACTIONS(2389), - [anon_sym_mod] = ACTIONS(2389), - [anon_sym_pub] = ACTIONS(2389), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_static] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(2389), - [anon_sym_trait] = ACTIONS(2389), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_union] = ACTIONS(2389), - [anon_sym_unsafe] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_where] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [sym_mutable_specifier] = ACTIONS(2389), - [sym_integer_literal] = ACTIONS(2391), - [aux_sym_string_literal_token1] = ACTIONS(2391), - [sym_char_literal] = ACTIONS(2391), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2389), - [sym_super] = ACTIONS(2389), - [sym_crate] = ACTIONS(2389), - [sym_metavariable] = ACTIONS(2391), - [sym_raw_string_literal] = ACTIONS(2391), - [sym_float_literal] = ACTIONS(2391), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1891), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_COMMA] = ACTIONS(2391), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [580] = { @@ -68067,7 +68056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2395), [anon_sym_true] = ACTIONS(2393), [anon_sym_false] = ACTIONS(2393), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2393), [sym_super] = ACTIONS(2393), [sym_crate] = ACTIONS(2393), @@ -68137,7 +68126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2399), [anon_sym_true] = ACTIONS(2397), [anon_sym_false] = ACTIONS(2397), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2397), [sym_super] = ACTIONS(2397), [sym_crate] = ACTIONS(2397), @@ -68207,7 +68196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2403), [anon_sym_true] = ACTIONS(2401), [anon_sym_false] = ACTIONS(2401), - [sym_line_comment] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(1012), [sym_self] = ACTIONS(2401), [sym_super] = ACTIONS(2401), [sym_crate] = ACTIONS(2401), @@ -68216,23 +68205,1410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2403), [sym_block_comment] = ACTIONS(3), }, - [583] = { - [sym_function_modifiers] = STATE(2427), - [sym_const_parameter] = STATE(2153), - [sym_constrained_type_parameter] = STATE(1797), - [sym_optional_type_parameter] = STATE(2153), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1941), - [sym_bracketed_type] = STATE(2386), - [sym_qualified_type] = STATE(2362), - [sym_lifetime] = STATE(1703), + [583] = { + [sym_parameter] = STATE(1914), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1890), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(2407), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(2409), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2411), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [584] = { + [sym_identifier] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_RBRACK] = ACTIONS(2415), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_u8] = ACTIONS(2413), + [anon_sym_i8] = ACTIONS(2413), + [anon_sym_u16] = ACTIONS(2413), + [anon_sym_i16] = ACTIONS(2413), + [anon_sym_u32] = ACTIONS(2413), + [anon_sym_i32] = ACTIONS(2413), + [anon_sym_u64] = ACTIONS(2413), + [anon_sym_i64] = ACTIONS(2413), + [anon_sym_u128] = ACTIONS(2413), + [anon_sym_i128] = ACTIONS(2413), + [anon_sym_isize] = ACTIONS(2413), + [anon_sym_usize] = ACTIONS(2413), + [anon_sym_f32] = ACTIONS(2413), + [anon_sym_f64] = ACTIONS(2413), + [anon_sym_bool] = ACTIONS(2413), + [anon_sym_str] = ACTIONS(2413), + [anon_sym_char] = ACTIONS(2413), + [aux_sym__non_special_token_token1] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_await] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_fn] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_impl] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_mod] = ACTIONS(2413), + [anon_sym_pub] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_struct] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_union] = ACTIONS(2413), + [anon_sym_unsafe] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_where] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [sym_mutable_specifier] = ACTIONS(2413), + [sym_integer_literal] = ACTIONS(2415), + [aux_sym_string_literal_token1] = ACTIONS(2415), + [sym_char_literal] = ACTIONS(2415), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2413), + [sym_super] = ACTIONS(2413), + [sym_crate] = ACTIONS(2413), + [sym_metavariable] = ACTIONS(2415), + [sym_raw_string_literal] = ACTIONS(2415), + [sym_float_literal] = ACTIONS(2415), + [sym_block_comment] = ACTIONS(3), + }, + [585] = { + [sym_identifier] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_RBRACK] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(2417), + [anon_sym_u8] = ACTIONS(2417), + [anon_sym_i8] = ACTIONS(2417), + [anon_sym_u16] = ACTIONS(2417), + [anon_sym_i16] = ACTIONS(2417), + [anon_sym_u32] = ACTIONS(2417), + [anon_sym_i32] = ACTIONS(2417), + [anon_sym_u64] = ACTIONS(2417), + [anon_sym_i64] = ACTIONS(2417), + [anon_sym_u128] = ACTIONS(2417), + [anon_sym_i128] = ACTIONS(2417), + [anon_sym_isize] = ACTIONS(2417), + [anon_sym_usize] = ACTIONS(2417), + [anon_sym_f32] = ACTIONS(2417), + [anon_sym_f64] = ACTIONS(2417), + [anon_sym_bool] = ACTIONS(2417), + [anon_sym_str] = ACTIONS(2417), + [anon_sym_char] = ACTIONS(2417), + [aux_sym__non_special_token_token1] = ACTIONS(2417), + [anon_sym_SQUOTE] = ACTIONS(2417), + [anon_sym_as] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + [anon_sym_fn] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_impl] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_mod] = ACTIONS(2417), + [anon_sym_pub] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_struct] = ACTIONS(2417), + [anon_sym_trait] = ACTIONS(2417), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_unsafe] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_where] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [sym_mutable_specifier] = ACTIONS(2417), + [sym_integer_literal] = ACTIONS(2419), + [aux_sym_string_literal_token1] = ACTIONS(2419), + [sym_char_literal] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2417), + [sym_super] = ACTIONS(2417), + [sym_crate] = ACTIONS(2417), + [sym_metavariable] = ACTIONS(2419), + [sym_raw_string_literal] = ACTIONS(2419), + [sym_float_literal] = ACTIONS(2419), + [sym_block_comment] = ACTIONS(3), + }, + [586] = { + [sym_identifier] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_RPAREN] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_RBRACK] = ACTIONS(2423), + [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_u8] = ACTIONS(2421), + [anon_sym_i8] = ACTIONS(2421), + [anon_sym_u16] = ACTIONS(2421), + [anon_sym_i16] = ACTIONS(2421), + [anon_sym_u32] = ACTIONS(2421), + [anon_sym_i32] = ACTIONS(2421), + [anon_sym_u64] = ACTIONS(2421), + [anon_sym_i64] = ACTIONS(2421), + [anon_sym_u128] = ACTIONS(2421), + [anon_sym_i128] = ACTIONS(2421), + [anon_sym_isize] = ACTIONS(2421), + [anon_sym_usize] = ACTIONS(2421), + [anon_sym_f32] = ACTIONS(2421), + [anon_sym_f64] = ACTIONS(2421), + [anon_sym_bool] = ACTIONS(2421), + [anon_sym_str] = ACTIONS(2421), + [anon_sym_char] = ACTIONS(2421), + [aux_sym__non_special_token_token1] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_await] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_default] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_fn] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_impl] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_mod] = ACTIONS(2421), + [anon_sym_pub] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2421), + [anon_sym_trait] = ACTIONS(2421), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_union] = ACTIONS(2421), + [anon_sym_unsafe] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_where] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [sym_mutable_specifier] = ACTIONS(2421), + [sym_integer_literal] = ACTIONS(2423), + [aux_sym_string_literal_token1] = ACTIONS(2423), + [sym_char_literal] = ACTIONS(2423), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2421), + [sym_super] = ACTIONS(2421), + [sym_crate] = ACTIONS(2421), + [sym_metavariable] = ACTIONS(2423), + [sym_raw_string_literal] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2423), + [sym_block_comment] = ACTIONS(3), + }, + [587] = { + [sym_identifier] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_RPAREN] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_RBRACK] = ACTIONS(2427), + [anon_sym_DOLLAR] = ACTIONS(2425), + [anon_sym_u8] = ACTIONS(2425), + [anon_sym_i8] = ACTIONS(2425), + [anon_sym_u16] = ACTIONS(2425), + [anon_sym_i16] = ACTIONS(2425), + [anon_sym_u32] = ACTIONS(2425), + [anon_sym_i32] = ACTIONS(2425), + [anon_sym_u64] = ACTIONS(2425), + [anon_sym_i64] = ACTIONS(2425), + [anon_sym_u128] = ACTIONS(2425), + [anon_sym_i128] = ACTIONS(2425), + [anon_sym_isize] = ACTIONS(2425), + [anon_sym_usize] = ACTIONS(2425), + [anon_sym_f32] = ACTIONS(2425), + [anon_sym_f64] = ACTIONS(2425), + [anon_sym_bool] = ACTIONS(2425), + [anon_sym_str] = ACTIONS(2425), + [anon_sym_char] = ACTIONS(2425), + [aux_sym__non_special_token_token1] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_await] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_mod] = ACTIONS(2425), + [anon_sym_pub] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_unsafe] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_where] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [sym_mutable_specifier] = ACTIONS(2425), + [sym_integer_literal] = ACTIONS(2427), + [aux_sym_string_literal_token1] = ACTIONS(2427), + [sym_char_literal] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2425), + [sym_super] = ACTIONS(2425), + [sym_crate] = ACTIONS(2425), + [sym_metavariable] = ACTIONS(2427), + [sym_raw_string_literal] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2427), + [sym_block_comment] = ACTIONS(3), + }, + [588] = { + [sym_identifier] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_RPAREN] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_RBRACK] = ACTIONS(2431), + [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_u8] = ACTIONS(2429), + [anon_sym_i8] = ACTIONS(2429), + [anon_sym_u16] = ACTIONS(2429), + [anon_sym_i16] = ACTIONS(2429), + [anon_sym_u32] = ACTIONS(2429), + [anon_sym_i32] = ACTIONS(2429), + [anon_sym_u64] = ACTIONS(2429), + [anon_sym_i64] = ACTIONS(2429), + [anon_sym_u128] = ACTIONS(2429), + [anon_sym_i128] = ACTIONS(2429), + [anon_sym_isize] = ACTIONS(2429), + [anon_sym_usize] = ACTIONS(2429), + [anon_sym_f32] = ACTIONS(2429), + [anon_sym_f64] = ACTIONS(2429), + [anon_sym_bool] = ACTIONS(2429), + [anon_sym_str] = ACTIONS(2429), + [anon_sym_char] = ACTIONS(2429), + [aux_sym__non_special_token_token1] = ACTIONS(2429), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_await] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_impl] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_mod] = ACTIONS(2429), + [anon_sym_pub] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_where] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [sym_mutable_specifier] = ACTIONS(2429), + [sym_integer_literal] = ACTIONS(2431), + [aux_sym_string_literal_token1] = ACTIONS(2431), + [sym_char_literal] = ACTIONS(2431), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2429), + [sym_super] = ACTIONS(2429), + [sym_crate] = ACTIONS(2429), + [sym_metavariable] = ACTIONS(2431), + [sym_raw_string_literal] = ACTIONS(2431), + [sym_float_literal] = ACTIONS(2431), + [sym_block_comment] = ACTIONS(3), + }, + [589] = { + [sym_identifier] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_DOLLAR] = ACTIONS(2433), + [anon_sym_u8] = ACTIONS(2433), + [anon_sym_i8] = ACTIONS(2433), + [anon_sym_u16] = ACTIONS(2433), + [anon_sym_i16] = ACTIONS(2433), + [anon_sym_u32] = ACTIONS(2433), + [anon_sym_i32] = ACTIONS(2433), + [anon_sym_u64] = ACTIONS(2433), + [anon_sym_i64] = ACTIONS(2433), + [anon_sym_u128] = ACTIONS(2433), + [anon_sym_i128] = ACTIONS(2433), + [anon_sym_isize] = ACTIONS(2433), + [anon_sym_usize] = ACTIONS(2433), + [anon_sym_f32] = ACTIONS(2433), + [anon_sym_f64] = ACTIONS(2433), + [anon_sym_bool] = ACTIONS(2433), + [anon_sym_str] = ACTIONS(2433), + [anon_sym_char] = ACTIONS(2433), + [aux_sym__non_special_token_token1] = ACTIONS(2433), + [anon_sym_SQUOTE] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_async] = ACTIONS(2433), + [anon_sym_await] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_default] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_fn] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_impl] = ACTIONS(2433), + [anon_sym_let] = ACTIONS(2433), + [anon_sym_loop] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_mod] = ACTIONS(2433), + [anon_sym_pub] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_trait] = ACTIONS(2433), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_union] = ACTIONS(2433), + [anon_sym_unsafe] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_where] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [sym_mutable_specifier] = ACTIONS(2433), + [sym_integer_literal] = ACTIONS(2435), + [aux_sym_string_literal_token1] = ACTIONS(2435), + [sym_char_literal] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2433), + [anon_sym_false] = ACTIONS(2433), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2433), + [sym_super] = ACTIONS(2433), + [sym_crate] = ACTIONS(2433), + [sym_metavariable] = ACTIONS(2435), + [sym_raw_string_literal] = ACTIONS(2435), + [sym_float_literal] = ACTIONS(2435), + [sym_block_comment] = ACTIONS(3), + }, + [590] = { + [sym_identifier] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_RPAREN] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2439), + [anon_sym_RBRACK] = ACTIONS(2439), + [anon_sym_DOLLAR] = ACTIONS(2437), + [anon_sym_u8] = ACTIONS(2437), + [anon_sym_i8] = ACTIONS(2437), + [anon_sym_u16] = ACTIONS(2437), + [anon_sym_i16] = ACTIONS(2437), + [anon_sym_u32] = ACTIONS(2437), + [anon_sym_i32] = ACTIONS(2437), + [anon_sym_u64] = ACTIONS(2437), + [anon_sym_i64] = ACTIONS(2437), + [anon_sym_u128] = ACTIONS(2437), + [anon_sym_i128] = ACTIONS(2437), + [anon_sym_isize] = ACTIONS(2437), + [anon_sym_usize] = ACTIONS(2437), + [anon_sym_f32] = ACTIONS(2437), + [anon_sym_f64] = ACTIONS(2437), + [anon_sym_bool] = ACTIONS(2437), + [anon_sym_str] = ACTIONS(2437), + [anon_sym_char] = ACTIONS(2437), + [aux_sym__non_special_token_token1] = ACTIONS(2437), + [anon_sym_SQUOTE] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_await] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_default] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_fn] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_impl] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_loop] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_mod] = ACTIONS(2437), + [anon_sym_pub] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2437), + [anon_sym_trait] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_union] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_where] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [sym_mutable_specifier] = ACTIONS(2437), + [sym_integer_literal] = ACTIONS(2439), + [aux_sym_string_literal_token1] = ACTIONS(2439), + [sym_char_literal] = ACTIONS(2439), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2437), + [sym_super] = ACTIONS(2437), + [sym_crate] = ACTIONS(2437), + [sym_metavariable] = ACTIONS(2439), + [sym_raw_string_literal] = ACTIONS(2439), + [sym_float_literal] = ACTIONS(2439), + [sym_block_comment] = ACTIONS(3), + }, + [591] = { + [sym_identifier] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_RBRACK] = ACTIONS(2443), + [anon_sym_DOLLAR] = ACTIONS(2441), + [anon_sym_u8] = ACTIONS(2441), + [anon_sym_i8] = ACTIONS(2441), + [anon_sym_u16] = ACTIONS(2441), + [anon_sym_i16] = ACTIONS(2441), + [anon_sym_u32] = ACTIONS(2441), + [anon_sym_i32] = ACTIONS(2441), + [anon_sym_u64] = ACTIONS(2441), + [anon_sym_i64] = ACTIONS(2441), + [anon_sym_u128] = ACTIONS(2441), + [anon_sym_i128] = ACTIONS(2441), + [anon_sym_isize] = ACTIONS(2441), + [anon_sym_usize] = ACTIONS(2441), + [anon_sym_f32] = ACTIONS(2441), + [anon_sym_f64] = ACTIONS(2441), + [anon_sym_bool] = ACTIONS(2441), + [anon_sym_str] = ACTIONS(2441), + [anon_sym_char] = ACTIONS(2441), + [aux_sym__non_special_token_token1] = ACTIONS(2441), + [anon_sym_SQUOTE] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_await] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2441), + [anon_sym_enum] = ACTIONS(2441), + [anon_sym_fn] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_impl] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_loop] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_mod] = ACTIONS(2441), + [anon_sym_pub] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(2441), + [anon_sym_trait] = ACTIONS(2441), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_union] = ACTIONS(2441), + [anon_sym_unsafe] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_where] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [sym_mutable_specifier] = ACTIONS(2441), + [sym_integer_literal] = ACTIONS(2443), + [aux_sym_string_literal_token1] = ACTIONS(2443), + [sym_char_literal] = ACTIONS(2443), + [anon_sym_true] = ACTIONS(2441), + [anon_sym_false] = ACTIONS(2441), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2441), + [sym_super] = ACTIONS(2441), + [sym_crate] = ACTIONS(2441), + [sym_metavariable] = ACTIONS(2443), + [sym_raw_string_literal] = ACTIONS(2443), + [sym_float_literal] = ACTIONS(2443), + [sym_block_comment] = ACTIONS(3), + }, + [592] = { + [sym_identifier] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_RPAREN] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_RBRACK] = ACTIONS(2423), + [anon_sym_DOLLAR] = ACTIONS(2423), + [anon_sym_u8] = ACTIONS(2421), + [anon_sym_i8] = ACTIONS(2421), + [anon_sym_u16] = ACTIONS(2421), + [anon_sym_i16] = ACTIONS(2421), + [anon_sym_u32] = ACTIONS(2421), + [anon_sym_i32] = ACTIONS(2421), + [anon_sym_u64] = ACTIONS(2421), + [anon_sym_i64] = ACTIONS(2421), + [anon_sym_u128] = ACTIONS(2421), + [anon_sym_i128] = ACTIONS(2421), + [anon_sym_isize] = ACTIONS(2421), + [anon_sym_usize] = ACTIONS(2421), + [anon_sym_f32] = ACTIONS(2421), + [anon_sym_f64] = ACTIONS(2421), + [anon_sym_bool] = ACTIONS(2421), + [anon_sym_str] = ACTIONS(2421), + [anon_sym_char] = ACTIONS(2421), + [aux_sym__non_special_token_token1] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_await] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_default] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_fn] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_impl] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_mod] = ACTIONS(2421), + [anon_sym_pub] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2421), + [anon_sym_trait] = ACTIONS(2421), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_union] = ACTIONS(2421), + [anon_sym_unsafe] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_where] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [sym_mutable_specifier] = ACTIONS(2421), + [sym_integer_literal] = ACTIONS(2423), + [aux_sym_string_literal_token1] = ACTIONS(2423), + [sym_char_literal] = ACTIONS(2423), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2421), + [sym_super] = ACTIONS(2421), + [sym_crate] = ACTIONS(2421), + [sym_raw_string_literal] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2423), + [sym_block_comment] = ACTIONS(3), + }, + [593] = { + [sym_identifier] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_RPAREN] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_RBRACK] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(582), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [aux_sym__non_special_token_token1] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_await] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_where] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [sym_mutable_specifier] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(582), + [aux_sym_string_literal_token1] = ACTIONS(582), + [sym_char_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(584), + [anon_sym_false] = ACTIONS(584), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_raw_string_literal] = ACTIONS(582), + [sym_float_literal] = ACTIONS(582), + [sym_block_comment] = ACTIONS(3), + }, + [594] = { + [sym_function_modifiers] = STATE(2577), + [sym_higher_ranked_trait_bound] = STATE(1600), + [sym_removed_trait_bound] = STATE(1600), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1598), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(1629), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, + [595] = { + [sym_function_modifiers] = STATE(2577), + [sym_higher_ranked_trait_bound] = STATE(1585), + [sym_removed_trait_bound] = STATE(1585), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1597), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(1596), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, + [596] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1854), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [597] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1854), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_RBRACK] = ACTIONS(2451), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [598] = { + [sym_identifier] = ACTIONS(626), + [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_RPAREN] = ACTIONS(624), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_RBRACK] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(624), + [anon_sym_u8] = ACTIONS(626), + [anon_sym_i8] = ACTIONS(626), + [anon_sym_u16] = ACTIONS(626), + [anon_sym_i16] = ACTIONS(626), + [anon_sym_u32] = ACTIONS(626), + [anon_sym_i32] = ACTIONS(626), + [anon_sym_u64] = ACTIONS(626), + [anon_sym_i64] = ACTIONS(626), + [anon_sym_u128] = ACTIONS(626), + [anon_sym_i128] = ACTIONS(626), + [anon_sym_isize] = ACTIONS(626), + [anon_sym_usize] = ACTIONS(626), + [anon_sym_f32] = ACTIONS(626), + [anon_sym_f64] = ACTIONS(626), + [anon_sym_bool] = ACTIONS(626), + [anon_sym_str] = ACTIONS(626), + [anon_sym_char] = ACTIONS(626), + [aux_sym__non_special_token_token1] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(626), + [anon_sym_as] = ACTIONS(626), + [anon_sym_async] = ACTIONS(626), + [anon_sym_await] = ACTIONS(626), + [anon_sym_break] = ACTIONS(626), + [anon_sym_const] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_enum] = ACTIONS(626), + [anon_sym_fn] = ACTIONS(626), + [anon_sym_for] = ACTIONS(626), + [anon_sym_if] = ACTIONS(626), + [anon_sym_impl] = ACTIONS(626), + [anon_sym_let] = ACTIONS(626), + [anon_sym_loop] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_mod] = ACTIONS(626), + [anon_sym_pub] = ACTIONS(626), + [anon_sym_return] = ACTIONS(626), + [anon_sym_static] = ACTIONS(626), + [anon_sym_struct] = ACTIONS(626), + [anon_sym_trait] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_union] = ACTIONS(626), + [anon_sym_unsafe] = ACTIONS(626), + [anon_sym_use] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_while] = ACTIONS(626), + [sym_mutable_specifier] = ACTIONS(626), + [sym_integer_literal] = ACTIONS(624), + [aux_sym_string_literal_token1] = ACTIONS(624), + [sym_char_literal] = ACTIONS(624), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_crate] = ACTIONS(626), + [sym_raw_string_literal] = ACTIONS(624), + [sym_float_literal] = ACTIONS(624), + [sym_block_comment] = ACTIONS(3), + }, + [599] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1854), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_RBRACK] = ACTIONS(2453), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [600] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1854), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(2455), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [601] = { + [sym_identifier] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_RPAREN] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_RBRACK] = ACTIONS(2399), + [anon_sym_DOLLAR] = ACTIONS(2399), + [anon_sym_u8] = ACTIONS(2397), + [anon_sym_i8] = ACTIONS(2397), + [anon_sym_u16] = ACTIONS(2397), + [anon_sym_i16] = ACTIONS(2397), + [anon_sym_u32] = ACTIONS(2397), + [anon_sym_i32] = ACTIONS(2397), + [anon_sym_u64] = ACTIONS(2397), + [anon_sym_i64] = ACTIONS(2397), + [anon_sym_u128] = ACTIONS(2397), + [anon_sym_i128] = ACTIONS(2397), + [anon_sym_isize] = ACTIONS(2397), + [anon_sym_usize] = ACTIONS(2397), + [anon_sym_f32] = ACTIONS(2397), + [anon_sym_f64] = ACTIONS(2397), + [anon_sym_bool] = ACTIONS(2397), + [anon_sym_str] = ACTIONS(2397), + [anon_sym_char] = ACTIONS(2397), + [aux_sym__non_special_token_token1] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_await] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_fn] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_impl] = ACTIONS(2397), + [anon_sym_let] = ACTIONS(2397), + [anon_sym_loop] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_mod] = ACTIONS(2397), + [anon_sym_pub] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_trait] = ACTIONS(2397), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_unsafe] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_where] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [sym_mutable_specifier] = ACTIONS(2397), + [sym_integer_literal] = ACTIONS(2399), + [aux_sym_string_literal_token1] = ACTIONS(2399), + [sym_char_literal] = ACTIONS(2399), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2397), + [sym_super] = ACTIONS(2397), + [sym_crate] = ACTIONS(2397), + [sym_raw_string_literal] = ACTIONS(2399), + [sym_float_literal] = ACTIONS(2399), + [sym_block_comment] = ACTIONS(3), + }, + [602] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1854), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [603] = { + [sym_function_modifiers] = STATE(2577), + [sym_higher_ranked_trait_bound] = STATE(1600), + [sym_removed_trait_bound] = STATE(1600), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1598), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(1630), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -68240,597 +69616,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_QMARK] = ACTIONS(2445), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(2407), - [anon_sym_default] = ACTIONS(906), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), + [anon_sym_for] = ACTIONS(2447), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(2409), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [584] = { - [sym_identifier] = ACTIONS(2411), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_RPAREN] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_RBRACK] = ACTIONS(2413), - [anon_sym_DOLLAR] = ACTIONS(2411), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2411), - [anon_sym_SQUOTE] = ACTIONS(2411), - [anon_sym_as] = ACTIONS(2411), - [anon_sym_async] = ACTIONS(2411), - [anon_sym_await] = 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_where] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [sym_mutable_specifier] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2413), - [aux_sym_string_literal_token1] = ACTIONS(2413), - [sym_char_literal] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2411), - [anon_sym_false] = ACTIONS(2411), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2411), - [sym_super] = ACTIONS(2411), - [sym_crate] = ACTIONS(2411), - [sym_metavariable] = ACTIONS(2413), - [sym_raw_string_literal] = ACTIONS(2413), - [sym_float_literal] = ACTIONS(2413), + [604] = { + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_RPAREN] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_RBRACK] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2375), + [anon_sym_u8] = ACTIONS(2373), + [anon_sym_i8] = ACTIONS(2373), + [anon_sym_u16] = ACTIONS(2373), + [anon_sym_i16] = ACTIONS(2373), + [anon_sym_u32] = ACTIONS(2373), + [anon_sym_i32] = ACTIONS(2373), + [anon_sym_u64] = ACTIONS(2373), + [anon_sym_i64] = ACTIONS(2373), + [anon_sym_u128] = ACTIONS(2373), + [anon_sym_i128] = ACTIONS(2373), + [anon_sym_isize] = ACTIONS(2373), + [anon_sym_usize] = ACTIONS(2373), + [anon_sym_f32] = ACTIONS(2373), + [anon_sym_f64] = ACTIONS(2373), + [anon_sym_bool] = ACTIONS(2373), + [anon_sym_str] = ACTIONS(2373), + [anon_sym_char] = ACTIONS(2373), + [aux_sym__non_special_token_token1] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_async] = ACTIONS(2373), + [anon_sym_await] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_impl] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_loop] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_mod] = ACTIONS(2373), + [anon_sym_pub] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_trait] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_where] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [sym_mutable_specifier] = ACTIONS(2373), + [sym_integer_literal] = ACTIONS(2375), + [aux_sym_string_literal_token1] = ACTIONS(2375), + [sym_char_literal] = ACTIONS(2375), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2373), + [sym_super] = ACTIONS(2373), + [sym_crate] = ACTIONS(2373), + [sym_raw_string_literal] = ACTIONS(2375), + [sym_float_literal] = ACTIONS(2375), [sym_block_comment] = ACTIONS(3), }, - [585] = { - [sym_parameter] = STATE(1952), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1864), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2415), - [anon_sym_union] = ACTIONS(2415), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), + [605] = { + [sym_identifier] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_RBRACK] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(2419), + [anon_sym_u8] = ACTIONS(2417), + [anon_sym_i8] = ACTIONS(2417), + [anon_sym_u16] = ACTIONS(2417), + [anon_sym_i16] = ACTIONS(2417), + [anon_sym_u32] = ACTIONS(2417), + [anon_sym_i32] = ACTIONS(2417), + [anon_sym_u64] = ACTIONS(2417), + [anon_sym_i64] = ACTIONS(2417), + [anon_sym_u128] = ACTIONS(2417), + [anon_sym_i128] = ACTIONS(2417), + [anon_sym_isize] = ACTIONS(2417), + [anon_sym_usize] = ACTIONS(2417), + [anon_sym_f32] = ACTIONS(2417), + [anon_sym_f64] = ACTIONS(2417), + [anon_sym_bool] = ACTIONS(2417), + [anon_sym_str] = ACTIONS(2417), + [anon_sym_char] = ACTIONS(2417), + [aux_sym__non_special_token_token1] = ACTIONS(2417), + [anon_sym_SQUOTE] = ACTIONS(2417), + [anon_sym_as] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + [anon_sym_fn] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_impl] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_mod] = ACTIONS(2417), + [anon_sym_pub] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_struct] = ACTIONS(2417), + [anon_sym_trait] = ACTIONS(2417), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_unsafe] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_where] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), [sym_mutable_specifier] = ACTIONS(2417), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(2419), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2421), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_integer_literal] = ACTIONS(2419), + [aux_sym_string_literal_token1] = ACTIONS(2419), + [sym_char_literal] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [sym_line_comment] = ACTIONS(1012), + [sym_self] = ACTIONS(2417), + [sym_super] = ACTIONS(2417), + [sym_crate] = ACTIONS(2417), + [sym_raw_string_literal] = ACTIONS(2419), + [sym_float_literal] = ACTIONS(2419), [sym_block_comment] = ACTIONS(3), }, - [586] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1835), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_RPAREN] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_COMMA] = ACTIONS(2425), - [anon_sym_ref] = ACTIONS(716), + [606] = { + [sym_function_modifiers] = STATE(2577), + [sym_higher_ranked_trait_bound] = STATE(1600), + [sym_removed_trait_bound] = STATE(1600), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1599), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(1629), + [sym_array_type] = STATE(1432), + [sym_for_lifetimes] = STATE(1216), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(1432), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), + [sym_bounded_type] = STATE(1432), + [sym_reference_type] = STATE(1432), + [sym_pointer_type] = STATE(1432), + [sym_empty_type] = STATE(1432), + [sym_abstract_type] = STATE(1432), + [sym_dynamic_type] = STATE(1432), + [sym_macro_invocation] = STATE(1432), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2445), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [587] = { - [sym_identifier] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2429), - [anon_sym_RPAREN] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_RBRACK] = ACTIONS(2429), - [anon_sym_DOLLAR] = ACTIONS(2427), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2427), - [anon_sym_SQUOTE] = ACTIONS(2427), - [anon_sym_as] = ACTIONS(2427), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_await] = 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_where] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [sym_mutable_specifier] = ACTIONS(2427), - [sym_integer_literal] = ACTIONS(2429), - [aux_sym_string_literal_token1] = ACTIONS(2429), - [sym_char_literal] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2427), - [sym_super] = ACTIONS(2427), - [sym_crate] = ACTIONS(2427), - [sym_metavariable] = ACTIONS(2429), - [sym_raw_string_literal] = ACTIONS(2429), - [sym_float_literal] = ACTIONS(2429), - [sym_block_comment] = ACTIONS(3), - }, - [588] = { - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_RPAREN] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_RBRACK] = ACTIONS(2433), - [anon_sym_DOLLAR] = ACTIONS(2431), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_as] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_await] = 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_where] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [sym_mutable_specifier] = ACTIONS(2431), - [sym_integer_literal] = ACTIONS(2433), - [aux_sym_string_literal_token1] = ACTIONS(2433), - [sym_char_literal] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2431), - [anon_sym_false] = ACTIONS(2431), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2431), - [sym_super] = ACTIONS(2431), - [sym_crate] = ACTIONS(2431), - [sym_metavariable] = ACTIONS(2433), - [sym_raw_string_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), - [sym_block_comment] = ACTIONS(3), - }, - [589] = { - [sym_identifier] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_RBRACK] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2435), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2435), - [anon_sym_SQUOTE] = ACTIONS(2435), - [anon_sym_as] = ACTIONS(2435), - [anon_sym_async] = ACTIONS(2435), - [anon_sym_await] = 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_where] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2435), - [sym_mutable_specifier] = ACTIONS(2435), - [sym_integer_literal] = ACTIONS(2437), - [aux_sym_string_literal_token1] = ACTIONS(2437), - [sym_char_literal] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2435), - [anon_sym_false] = ACTIONS(2435), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2435), - [sym_super] = ACTIONS(2435), - [sym_crate] = ACTIONS(2435), - [sym_metavariable] = ACTIONS(2437), - [sym_raw_string_literal] = ACTIONS(2437), - [sym_float_literal] = ACTIONS(2437), - [sym_block_comment] = ACTIONS(3), - }, - [590] = { - [sym_identifier] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_RPAREN] = ACTIONS(2441), - [anon_sym_LBRACE] = ACTIONS(2441), - [anon_sym_RBRACE] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(2441), - [anon_sym_RBRACK] = ACTIONS(2441), - [anon_sym_DOLLAR] = ACTIONS(2439), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_async] = ACTIONS(2439), - [anon_sym_await] = 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_where] = ACTIONS(2439), - [anon_sym_while] = ACTIONS(2439), - [sym_mutable_specifier] = ACTIONS(2439), - [sym_integer_literal] = ACTIONS(2441), - [aux_sym_string_literal_token1] = ACTIONS(2441), - [sym_char_literal] = ACTIONS(2441), - [anon_sym_true] = ACTIONS(2439), - [anon_sym_false] = ACTIONS(2439), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2439), - [sym_super] = ACTIONS(2439), - [sym_crate] = ACTIONS(2439), - [sym_metavariable] = ACTIONS(2441), - [sym_raw_string_literal] = ACTIONS(2441), - [sym_float_literal] = ACTIONS(2441), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [591] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1838), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_COMMA] = ACTIONS(812), + [607] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1854), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(2459), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68838,137 +69931,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [592] = { - [sym_identifier] = ACTIONS(2411), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_RPAREN] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_RBRACK] = ACTIONS(2413), - [anon_sym_DOLLAR] = ACTIONS(2413), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2411), - [anon_sym_SQUOTE] = ACTIONS(2411), - [anon_sym_as] = ACTIONS(2411), - [anon_sym_async] = ACTIONS(2411), - [anon_sym_await] = 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_where] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [sym_mutable_specifier] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2413), - [aux_sym_string_literal_token1] = ACTIONS(2413), - [sym_char_literal] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2411), - [anon_sym_false] = ACTIONS(2411), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2411), - [sym_super] = ACTIONS(2411), - [sym_crate] = ACTIONS(2411), - [sym_raw_string_literal] = ACTIONS(2413), - [sym_float_literal] = ACTIONS(2413), - [sym_block_comment] = ACTIONS(3), - }, - [593] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1847), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_RBRACK] = ACTIONS(2445), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [608] = { + [sym_parameter] = STATE(2283), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2020), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(2407), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68976,68 +70000,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(2411), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [594] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1847), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [609] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2224), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69045,275 +70068,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [595] = { - [sym_identifier] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_RPAREN] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2379), - [anon_sym_LBRACK] = ACTIONS(2379), - [anon_sym_RBRACK] = ACTIONS(2379), - [anon_sym_DOLLAR] = ACTIONS(2379), - [anon_sym_u8] = ACTIONS(2377), - [anon_sym_i8] = ACTIONS(2377), - [anon_sym_u16] = ACTIONS(2377), - [anon_sym_i16] = ACTIONS(2377), - [anon_sym_u32] = ACTIONS(2377), - [anon_sym_i32] = ACTIONS(2377), - [anon_sym_u64] = ACTIONS(2377), - [anon_sym_i64] = ACTIONS(2377), - [anon_sym_u128] = ACTIONS(2377), - [anon_sym_i128] = ACTIONS(2377), - [anon_sym_isize] = ACTIONS(2377), - [anon_sym_usize] = ACTIONS(2377), - [anon_sym_f32] = ACTIONS(2377), - [anon_sym_f64] = ACTIONS(2377), - [anon_sym_bool] = ACTIONS(2377), - [anon_sym_str] = ACTIONS(2377), - [anon_sym_char] = ACTIONS(2377), - [aux_sym__non_special_token_token1] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2377), - [anon_sym_as] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2377), - [anon_sym_await] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_const] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_default] = ACTIONS(2377), - [anon_sym_enum] = ACTIONS(2377), - [anon_sym_fn] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_impl] = ACTIONS(2377), - [anon_sym_let] = ACTIONS(2377), - [anon_sym_loop] = ACTIONS(2377), - [anon_sym_match] = ACTIONS(2377), - [anon_sym_mod] = ACTIONS(2377), - [anon_sym_pub] = ACTIONS(2377), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_static] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(2377), - [anon_sym_trait] = ACTIONS(2377), - [anon_sym_type] = ACTIONS(2377), - [anon_sym_union] = ACTIONS(2377), - [anon_sym_unsafe] = ACTIONS(2377), - [anon_sym_use] = ACTIONS(2377), - [anon_sym_where] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [sym_mutable_specifier] = ACTIONS(2377), - [sym_integer_literal] = ACTIONS(2379), - [aux_sym_string_literal_token1] = ACTIONS(2379), - [sym_char_literal] = ACTIONS(2379), - [anon_sym_true] = ACTIONS(2377), - [anon_sym_false] = ACTIONS(2377), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2377), - [sym_super] = ACTIONS(2377), - [sym_crate] = ACTIONS(2377), - [sym_raw_string_literal] = ACTIONS(2379), - [sym_float_literal] = ACTIONS(2379), - [sym_block_comment] = ACTIONS(3), - }, - [596] = { - [sym_function_modifiers] = STATE(2427), - [sym_higher_ranked_trait_bound] = STATE(1631), - [sym_removed_trait_bound] = STATE(1631), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1599), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(1625), - [sym_array_type] = STATE(1432), - [sym_for_lifetimes] = STATE(1216), - [sym_function_type] = STATE(1432), - [sym_tuple_type] = STATE(1432), - [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), - [sym_bounded_type] = STATE(1432), - [sym_reference_type] = STATE(1432), - [sym_pointer_type] = STATE(1432), - [sym_empty_type] = STATE(1432), - [sym_abstract_type] = STATE(1432), - [sym_dynamic_type] = STATE(1432), - [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2449), - [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_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [597] = { - [sym_identifier] = ACTIONS(618), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_LBRACK] = ACTIONS(616), - [anon_sym_RBRACK] = ACTIONS(616), - [anon_sym_DOLLAR] = ACTIONS(616), - [anon_sym_u8] = ACTIONS(618), - [anon_sym_i8] = ACTIONS(618), - [anon_sym_u16] = ACTIONS(618), - [anon_sym_i16] = ACTIONS(618), - [anon_sym_u32] = ACTIONS(618), - [anon_sym_i32] = ACTIONS(618), - [anon_sym_u64] = ACTIONS(618), - [anon_sym_i64] = ACTIONS(618), - [anon_sym_u128] = ACTIONS(618), - [anon_sym_i128] = ACTIONS(618), - [anon_sym_isize] = ACTIONS(618), - [anon_sym_usize] = ACTIONS(618), - [anon_sym_f32] = ACTIONS(618), - [anon_sym_f64] = ACTIONS(618), - [anon_sym_bool] = ACTIONS(618), - [anon_sym_str] = ACTIONS(618), - [anon_sym_char] = ACTIONS(618), - [aux_sym__non_special_token_token1] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(618), - [anon_sym_as] = ACTIONS(618), - [anon_sym_async] = ACTIONS(618), - [anon_sym_await] = ACTIONS(618), - [anon_sym_break] = ACTIONS(618), - [anon_sym_const] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(618), - [anon_sym_default] = ACTIONS(618), - [anon_sym_enum] = ACTIONS(618), - [anon_sym_fn] = ACTIONS(618), - [anon_sym_for] = ACTIONS(618), - [anon_sym_if] = ACTIONS(618), - [anon_sym_impl] = ACTIONS(618), - [anon_sym_let] = ACTIONS(618), - [anon_sym_loop] = ACTIONS(618), - [anon_sym_match] = ACTIONS(618), - [anon_sym_mod] = ACTIONS(618), - [anon_sym_pub] = ACTIONS(618), - [anon_sym_return] = ACTIONS(618), - [anon_sym_static] = ACTIONS(618), - [anon_sym_struct] = ACTIONS(618), - [anon_sym_trait] = ACTIONS(618), - [anon_sym_type] = ACTIONS(618), - [anon_sym_union] = ACTIONS(618), - [anon_sym_unsafe] = ACTIONS(618), - [anon_sym_use] = ACTIONS(618), - [anon_sym_where] = ACTIONS(618), - [anon_sym_while] = ACTIONS(618), - [sym_mutable_specifier] = ACTIONS(618), - [sym_integer_literal] = ACTIONS(616), - [aux_sym_string_literal_token1] = ACTIONS(616), - [sym_char_literal] = ACTIONS(616), - [anon_sym_true] = ACTIONS(618), - [anon_sym_false] = ACTIONS(618), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(618), - [sym_super] = ACTIONS(618), - [sym_crate] = ACTIONS(618), - [sym_raw_string_literal] = ACTIONS(616), - [sym_float_literal] = ACTIONS(616), - [sym_block_comment] = ACTIONS(3), - }, - [598] = { - [sym_parameter] = STATE(2292), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1895), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2415), - [anon_sym_union] = ACTIONS(2415), + [610] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1490), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(2417), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69321,68 +70136,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2421), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [599] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1847), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_RPAREN] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [611] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2326), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69390,137 +70204,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [600] = { - [sym_identifier] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_RPAREN] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(672), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_RBRACK] = ACTIONS(672), - [anon_sym_DOLLAR] = ACTIONS(672), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [aux_sym__non_special_token_token1] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(672), - [aux_sym_string_literal_token1] = ACTIONS(672), - [sym_char_literal] = ACTIONS(672), - [anon_sym_true] = ACTIONS(674), - [anon_sym_false] = ACTIONS(674), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym_raw_string_literal] = ACTIONS(672), - [sym_float_literal] = ACTIONS(672), - [sym_block_comment] = ACTIONS(3), - }, - [601] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1847), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_RPAREN] = ACTIONS(2455), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [612] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2278), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69528,206 +70272,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [602] = { - [sym_function_modifiers] = STATE(2427), - [sym_higher_ranked_trait_bound] = STATE(1631), - [sym_removed_trait_bound] = STATE(1631), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1599), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(1619), - [sym_array_type] = STATE(1432), - [sym_for_lifetimes] = STATE(1216), - [sym_function_type] = STATE(1432), - [sym_tuple_type] = STATE(1432), - [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), - [sym_bounded_type] = STATE(1432), - [sym_reference_type] = STATE(1432), - [sym_pointer_type] = STATE(1432), - [sym_empty_type] = STATE(1432), - [sym_abstract_type] = STATE(1432), - [sym_dynamic_type] = STATE(1432), - [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2449), - [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_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [613] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1824), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(2461), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [603] = { - [sym_identifier] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_RBRACK] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2387), - [anon_sym_u8] = ACTIONS(2385), - [anon_sym_i8] = ACTIONS(2385), - [anon_sym_u16] = ACTIONS(2385), - [anon_sym_i16] = ACTIONS(2385), - [anon_sym_u32] = ACTIONS(2385), - [anon_sym_i32] = ACTIONS(2385), - [anon_sym_u64] = ACTIONS(2385), - [anon_sym_i64] = ACTIONS(2385), - [anon_sym_u128] = ACTIONS(2385), - [anon_sym_i128] = ACTIONS(2385), - [anon_sym_isize] = ACTIONS(2385), - [anon_sym_usize] = ACTIONS(2385), - [anon_sym_f32] = ACTIONS(2385), - [anon_sym_f64] = ACTIONS(2385), - [anon_sym_bool] = ACTIONS(2385), - [anon_sym_str] = ACTIONS(2385), - [anon_sym_char] = ACTIONS(2385), - [aux_sym__non_special_token_token1] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2385), - [anon_sym_as] = ACTIONS(2385), - [anon_sym_async] = ACTIONS(2385), - [anon_sym_await] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_impl] = ACTIONS(2385), - [anon_sym_let] = ACTIONS(2385), - [anon_sym_loop] = ACTIONS(2385), - [anon_sym_match] = ACTIONS(2385), - [anon_sym_mod] = ACTIONS(2385), - [anon_sym_pub] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2385), - [anon_sym_trait] = ACTIONS(2385), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_unsafe] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_where] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [sym_mutable_specifier] = ACTIONS(2385), - [sym_integer_literal] = ACTIONS(2387), - [aux_sym_string_literal_token1] = ACTIONS(2387), - [sym_char_literal] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2385), - [sym_super] = ACTIONS(2385), - [sym_crate] = ACTIONS(2385), - [sym_raw_string_literal] = ACTIONS(2387), - [sym_float_literal] = ACTIONS(2387), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [604] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1847), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_RBRACK] = ACTIONS(2457), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [614] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1463), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69735,68 +70408,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [605] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1847), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_RPAREN] = ACTIONS(2459), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [615] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1852), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(2463), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69804,29 +70476,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [606] = { - [sym_function_modifiers] = STATE(2427), - [sym_higher_ranked_trait_bound] = STATE(1631), - [sym_removed_trait_bound] = STATE(1631), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1628), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(1625), + [616] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1420), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -69834,313 +70504,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(2465), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2449), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2451), + [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2467), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [607] = { - [sym_identifier] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_RPAREN] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_RBRACK] = ACTIONS(2463), - [anon_sym_DOLLAR] = ACTIONS(2463), - [anon_sym_u8] = ACTIONS(2461), - [anon_sym_i8] = ACTIONS(2461), - [anon_sym_u16] = ACTIONS(2461), - [anon_sym_i16] = ACTIONS(2461), - [anon_sym_u32] = ACTIONS(2461), - [anon_sym_i32] = ACTIONS(2461), - [anon_sym_u64] = ACTIONS(2461), - [anon_sym_i64] = ACTIONS(2461), - [anon_sym_u128] = ACTIONS(2461), - [anon_sym_i128] = ACTIONS(2461), - [anon_sym_isize] = ACTIONS(2461), - [anon_sym_usize] = ACTIONS(2461), - [anon_sym_f32] = ACTIONS(2461), - [anon_sym_f64] = ACTIONS(2461), - [anon_sym_bool] = ACTIONS(2461), - [anon_sym_str] = ACTIONS(2461), - [anon_sym_char] = ACTIONS(2461), - [aux_sym__non_special_token_token1] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_as] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_await] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_default] = ACTIONS(2461), - [anon_sym_enum] = ACTIONS(2461), - [anon_sym_fn] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_impl] = ACTIONS(2461), - [anon_sym_let] = ACTIONS(2461), - [anon_sym_loop] = ACTIONS(2461), - [anon_sym_match] = ACTIONS(2461), - [anon_sym_mod] = ACTIONS(2461), - [anon_sym_pub] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_static] = ACTIONS(2461), - [anon_sym_struct] = ACTIONS(2461), - [anon_sym_trait] = ACTIONS(2461), - [anon_sym_type] = ACTIONS(2461), - [anon_sym_union] = ACTIONS(2461), - [anon_sym_unsafe] = ACTIONS(2461), - [anon_sym_use] = ACTIONS(2461), - [anon_sym_where] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [sym_mutable_specifier] = ACTIONS(2461), - [sym_integer_literal] = ACTIONS(2463), - [aux_sym_string_literal_token1] = ACTIONS(2463), - [sym_char_literal] = ACTIONS(2463), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2461), - [sym_super] = ACTIONS(2461), - [sym_crate] = ACTIONS(2461), - [sym_raw_string_literal] = ACTIONS(2463), - [sym_float_literal] = ACTIONS(2463), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [608] = { + [617] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1829), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), [sym_identifier] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_RPAREN] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2371), - [anon_sym_u8] = ACTIONS(2369), - [anon_sym_i8] = ACTIONS(2369), - [anon_sym_u16] = ACTIONS(2369), - [anon_sym_i16] = ACTIONS(2369), - [anon_sym_u32] = ACTIONS(2369), - [anon_sym_i32] = ACTIONS(2369), - [anon_sym_u64] = ACTIONS(2369), - [anon_sym_i64] = ACTIONS(2369), - [anon_sym_u128] = ACTIONS(2369), - [anon_sym_i128] = ACTIONS(2369), - [anon_sym_isize] = ACTIONS(2369), - [anon_sym_usize] = ACTIONS(2369), - [anon_sym_f32] = ACTIONS(2369), - [anon_sym_f64] = ACTIONS(2369), - [anon_sym_bool] = ACTIONS(2369), - [anon_sym_str] = ACTIONS(2369), - [anon_sym_char] = ACTIONS(2369), - [aux_sym__non_special_token_token1] = ACTIONS(2369), - [anon_sym_SQUOTE] = ACTIONS(2369), - [anon_sym_as] = ACTIONS(2369), - [anon_sym_async] = ACTIONS(2369), - [anon_sym_await] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_default] = ACTIONS(2369), - [anon_sym_enum] = ACTIONS(2369), - [anon_sym_fn] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_impl] = ACTIONS(2369), - [anon_sym_let] = ACTIONS(2369), - [anon_sym_loop] = ACTIONS(2369), - [anon_sym_match] = ACTIONS(2369), - [anon_sym_mod] = ACTIONS(2369), - [anon_sym_pub] = ACTIONS(2369), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_static] = ACTIONS(2369), - [anon_sym_struct] = ACTIONS(2369), - [anon_sym_trait] = ACTIONS(2369), - [anon_sym_type] = ACTIONS(2369), - [anon_sym_union] = ACTIONS(2369), - [anon_sym_unsafe] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_where] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [sym_mutable_specifier] = ACTIONS(2369), - [sym_integer_literal] = ACTIONS(2371), - [aux_sym_string_literal_token1] = ACTIONS(2371), - [sym_char_literal] = ACTIONS(2371), - [anon_sym_true] = ACTIONS(2369), - [anon_sym_false] = ACTIONS(2369), - [sym_line_comment] = ACTIONS(1016), - [sym_self] = ACTIONS(2369), - [sym_super] = ACTIONS(2369), - [sym_crate] = ACTIONS(2369), - [sym_raw_string_literal] = ACTIONS(2371), - [sym_float_literal] = ACTIONS(2371), - [sym_block_comment] = ACTIONS(3), - }, - [609] = { - [sym_function_modifiers] = STATE(2427), - [sym_higher_ranked_trait_bound] = STATE(1592), - [sym_removed_trait_bound] = STATE(1592), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1583), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(1582), - [sym_array_type] = STATE(1432), - [sym_for_lifetimes] = STATE(1216), - [sym_function_type] = STATE(1432), - [sym_tuple_type] = STATE(1432), - [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), - [sym_bounded_type] = STATE(1432), - [sym_reference_type] = STATE(1432), - [sym_pointer_type] = STATE(1432), - [sym_empty_type] = STATE(1432), - [sym_abstract_type] = STATE(1432), - [sym_dynamic_type] = STATE(1432), - [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2449), - [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_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [610] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1810), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -70148,135 +70612,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [611] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1405), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), - [sym_array_type] = STATE(1432), - [sym_for_lifetimes] = STATE(1216), - [sym_function_type] = STATE(1432), - [sym_tuple_type] = STATE(1432), - [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), - [sym_bounded_type] = STATE(1432), - [sym_reference_type] = STATE(1432), - [sym_pointer_type] = STATE(1432), - [sym_empty_type] = STATE(1432), - [sym_abstract_type] = STATE(1432), - [sym_dynamic_type] = STATE(1432), - [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2467), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2469), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [612] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2210), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [618] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2179), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -70284,67 +70680,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [613] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1874), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2471), - [anon_sym_union] = ACTIONS(2471), + [619] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1854), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -70352,27 +70748,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2473), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [614] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(2304), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [620] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1420), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -70380,175 +70776,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_PLUS] = ACTIONS(2465), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2475), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [615] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1490), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [sym_mutable_specifier] = ACTIONS(2469), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(2471), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [616] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2334), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [621] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1936), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -70556,67 +70884,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [617] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2208), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [622] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2271), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -70624,135 +70952,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [618] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1492), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(2477), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [623] = { + [sym_attribute_item] = STATE(623), + [aux_sym_enum_variant_list_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_RBRACK] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_u8] = ACTIONS(2473), + [anon_sym_i8] = ACTIONS(2473), + [anon_sym_u16] = ACTIONS(2473), + [anon_sym_i16] = ACTIONS(2473), + [anon_sym_u32] = ACTIONS(2473), + [anon_sym_i32] = ACTIONS(2473), + [anon_sym_u64] = ACTIONS(2473), + [anon_sym_i64] = ACTIONS(2473), + [anon_sym_u128] = ACTIONS(2473), + [anon_sym_i128] = ACTIONS(2473), + [anon_sym_isize] = ACTIONS(2473), + [anon_sym_usize] = ACTIONS(2473), + [anon_sym_f32] = ACTIONS(2473), + [anon_sym_f64] = ACTIONS(2473), + [anon_sym_bool] = ACTIONS(2473), + [anon_sym_str] = ACTIONS(2473), + [anon_sym_char] = ACTIONS(2473), + [anon_sym_SQUOTE] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_default] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_loop] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2473), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_union] = ACTIONS(2473), + [anon_sym_unsafe] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_COMMA] = ACTIONS(2475), + [anon_sym_ref] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_COLON_COLON] = ACTIONS(2475), + [anon_sym__] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2475), + [sym_mutable_specifier] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_yield] = ACTIONS(2473), + [anon_sym_move] = ACTIONS(2473), + [sym_integer_literal] = ACTIONS(2475), + [aux_sym_string_literal_token1] = ACTIONS(2475), + [sym_char_literal] = ACTIONS(2475), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(2473), + [sym_super] = ACTIONS(2473), + [sym_crate] = ACTIONS(2473), + [sym_metavariable] = ACTIONS(2475), + [sym_raw_string_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), [sym_block_comment] = ACTIONS(3), }, - [619] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2188), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [624] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1479), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -70760,135 +71088,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [620] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2226), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_ref] = ACTIONS(716), + [625] = { + [sym_function_modifiers] = STATE(2391), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1098), + [sym_bracketed_type] = STATE(2494), + [sym_lifetime] = STATE(2394), + [sym_array_type] = STATE(1132), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1132), + [sym_tuple_type] = STATE(1132), + [sym_unit_type] = STATE(1132), + [sym_generic_type] = STATE(806), + [sym_generic_type_with_turbofish] = STATE(2495), + [sym_bounded_type] = STATE(1132), + [sym_reference_type] = STATE(1132), + [sym_pointer_type] = STATE(1132), + [sym_empty_type] = STATE(1132), + [sym_abstract_type] = STATE(1132), + [sym_dynamic_type] = STATE(1132), + [sym_macro_invocation] = STATE(1132), + [sym_scoped_identifier] = STATE(2315), + [sym_scoped_type_identifier] = STATE(790), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_u8] = ACTIONS(2490), + [anon_sym_i8] = ACTIONS(2490), + [anon_sym_u16] = ACTIONS(2490), + [anon_sym_i16] = ACTIONS(2490), + [anon_sym_u32] = ACTIONS(2490), + [anon_sym_i32] = ACTIONS(2490), + [anon_sym_u64] = ACTIONS(2490), + [anon_sym_i64] = ACTIONS(2490), + [anon_sym_u128] = ACTIONS(2490), + [anon_sym_i128] = ACTIONS(2490), + [anon_sym_isize] = ACTIONS(2490), + [anon_sym_usize] = ACTIONS(2490), + [anon_sym_f32] = ACTIONS(2490), + [anon_sym_f64] = ACTIONS(2490), + [anon_sym_bool] = ACTIONS(2490), + [anon_sym_str] = ACTIONS(2490), + [anon_sym_char] = ACTIONS(2490), + [anon_sym_SQUOTE] = ACTIONS(2329), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2492), + [anon_sym_fn] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2496), + [anon_sym_union] = ACTIONS(2498), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_dyn] = ACTIONS(2506), + [sym_mutable_specifier] = ACTIONS(2508), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(2510), + [sym_super] = ACTIONS(2510), + [sym_crate] = ACTIONS(2510), + [sym_metavariable] = ACTIONS(2512), [sym_block_comment] = ACTIONS(3), }, - [621] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1888), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [626] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2216), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(2479), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -70896,67 +71224,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [622] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1874), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2471), - [anon_sym_union] = ACTIONS(2471), + [627] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2207), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -70964,67 +71292,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2481), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [623] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1825), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [628] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1977), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -71032,67 +71360,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [624] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2282), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [629] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2193), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -71100,67 +71428,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [625] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1998), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [630] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1927), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -71168,67 +71496,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [626] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2174), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [631] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2192), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -71236,67 +71564,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [627] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2185), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [632] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -71304,67 +71632,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [628] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), + [633] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), [sym__pattern] = STATE(2184), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -71372,67 +71700,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [629] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2212), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [634] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1796), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2514), + [anon_sym_union] = ACTIONS(2514), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -71440,67 +71768,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(2516), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [630] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2215), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [635] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2254), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -71508,135 +71836,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [631] = { - [sym_function_modifiers] = STATE(2392), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1126), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(2424), - [sym_array_type] = STATE(1074), - [sym_for_lifetimes] = STATE(1213), - [sym_function_type] = STATE(1074), - [sym_tuple_type] = STATE(1074), - [sym_unit_type] = STATE(1074), - [sym_generic_type] = STATE(827), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1074), - [sym_reference_type] = STATE(1074), - [sym_pointer_type] = STATE(1074), - [sym_empty_type] = STATE(1074), - [sym_abstract_type] = STATE(1074), - [sym_dynamic_type] = STATE(1074), - [sym_macro_invocation] = STATE(1074), - [sym_scoped_identifier] = STATE(2346), - [sym_scoped_type_identifier] = STATE(782), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_STAR] = ACTIONS(2491), - [anon_sym_u8] = ACTIONS(2493), - [anon_sym_i8] = ACTIONS(2493), - [anon_sym_u16] = ACTIONS(2493), - [anon_sym_i16] = ACTIONS(2493), - [anon_sym_u32] = ACTIONS(2493), - [anon_sym_i32] = ACTIONS(2493), - [anon_sym_u64] = ACTIONS(2493), - [anon_sym_i64] = ACTIONS(2493), - [anon_sym_u128] = ACTIONS(2493), - [anon_sym_i128] = ACTIONS(2493), - [anon_sym_isize] = ACTIONS(2493), - [anon_sym_usize] = ACTIONS(2493), - [anon_sym_f32] = ACTIONS(2493), - [anon_sym_f64] = ACTIONS(2493), - [anon_sym_bool] = ACTIONS(2493), - [anon_sym_str] = ACTIONS(2493), - [anon_sym_char] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2495), - [anon_sym_fn] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2499), - [anon_sym_union] = ACTIONS(2501), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_dyn] = ACTIONS(2509), - [sym_mutable_specifier] = ACTIONS(2511), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2513), - [sym_super] = ACTIONS(2513), - [sym_crate] = ACTIONS(2513), - [sym_metavariable] = ACTIONS(2515), - [sym_block_comment] = ACTIONS(3), - }, - [632] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2181), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [636] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1804), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -71644,67 +71904,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [633] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2180), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [637] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2208), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -71712,67 +71972,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [634] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1461), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [638] = { + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1796), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2514), + [anon_sym_union] = ACTIONS(2514), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -71780,27 +72040,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(2518), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [635] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1405), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [639] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(2291), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -71808,379 +72068,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_PLUS] = ACTIONS(2465), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2517), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), - [sym_block_comment] = ACTIONS(3), - }, - [636] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2090), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [637] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1483), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [638] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1494), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [639] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1847), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [sym_mutable_specifier] = ACTIONS(2520), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, [640] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1468), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1469), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -72188,135 +72176,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [641] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2008), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1467), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), [sym_char_literal] = ACTIONS(734), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [642] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2178), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(1464), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(2522), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -72324,67 +72312,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [643] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(2318), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2175), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -72392,135 +72380,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [644] = { - [sym_attribute_item] = STATE(644), - [aux_sym_enum_variant_list_repeat1] = STATE(644), - [sym_identifier] = ACTIONS(2519), - [anon_sym_LPAREN] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2521), - [anon_sym_RBRACK] = ACTIONS(2521), - [anon_sym_STAR] = ACTIONS(2521), - [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_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_for] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_loop] = ACTIONS(2519), - [anon_sym_match] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_unsafe] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_POUND] = ACTIONS(2523), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_COMMA] = ACTIONS(2521), - [anon_sym_ref] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_COLON_COLON] = ACTIONS(2521), - [anon_sym__] = ACTIONS(2519), - [anon_sym_AMP] = ACTIONS(2521), - [sym_mutable_specifier] = ACTIONS(2519), - [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_yield] = ACTIONS(2519), - [anon_sym_move] = ACTIONS(2519), - [sym_integer_literal] = ACTIONS(2521), - [aux_sym_string_literal_token1] = ACTIONS(2521), - [sym_char_literal] = ACTIONS(2521), - [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(2521), - [sym_raw_string_literal] = ACTIONS(2521), - [sym_float_literal] = ACTIONS(2521), - [sym_block_comment] = ACTIONS(3), - }, - [645] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2454), - [sym_scoped_identifier] = STATE(1383), - [sym_scoped_type_identifier] = STATE(1919), - [sym_const_block] = STATE(1471), - [sym__pattern] = STATE(1848), - [sym_tuple_pattern] = STATE(1471), - [sym_slice_pattern] = STATE(1471), - [sym_tuple_struct_pattern] = STATE(1471), - [sym_struct_pattern] = STATE(1471), - [sym_remaining_field_pattern] = STATE(1471), - [sym_mut_pattern] = STATE(1471), - [sym_range_pattern] = STATE(1471), - [sym_ref_pattern] = STATE(1471), - [sym_captured_pattern] = STATE(1471), - [sym_reference_pattern] = STATE(1471), - [sym_or_pattern] = STATE(1471), - [sym__literal_pattern] = STATE(1433), - [sym_negative_literal] = STATE(1428), - [sym_string_literal] = STATE(1428), - [sym_boolean_literal] = STATE(1428), - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u128] = ACTIONS(1140), - [anon_sym_i128] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_str] = ACTIONS(1140), - [anon_sym_char] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), + [sym_bracketed_type] = STATE(2433), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(2441), + [sym_scoped_identifier] = STATE(1374), + [sym_scoped_type_identifier] = STATE(2024), + [sym_const_block] = STATE(1496), + [sym__pattern] = STATE(2181), + [sym_tuple_pattern] = STATE(1496), + [sym_slice_pattern] = STATE(1496), + [sym_tuple_struct_pattern] = STATE(1496), + [sym_struct_pattern] = STATE(1496), + [sym_remaining_field_pattern] = STATE(1496), + [sym_mut_pattern] = STATE(1496), + [sym_range_pattern] = STATE(1496), + [sym_ref_pattern] = STATE(1496), + [sym_captured_pattern] = STATE(1496), + [sym_reference_pattern] = STATE(1496), + [sym_or_pattern] = STATE(1496), + [sym__literal_pattern] = STATE(1417), + [sym_negative_literal] = STATE(1410), + [sym_string_literal] = STATE(1410), + [sym_boolean_literal] = STATE(1410), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1148), - [sym_mutable_specifier] = ACTIONS(2526), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -72528,27 +72448,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1152), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [646] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1831), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [645] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(2270), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(639), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -72556,67 +72476,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2329), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2524), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2526), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [647] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1941), - [sym_bracketed_type] = STATE(2386), - [sym_qualified_type] = STATE(2362), - [sym_lifetime] = STATE(2425), + [646] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1835), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -72624,65 +72543,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [648] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(2283), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(614), + [647] = { + [sym_function_modifiers] = STATE(2577), + [sym_type_parameters] = STATE(701), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1703), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1658), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -72690,66 +72611,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1538), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2530), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2532), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [649] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(2018), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [648] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(2039), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -72757,66 +72677,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_RPAREN] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [650] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(2018), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [649] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(2039), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -72824,67 +72744,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_RPAREN] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [651] = { - [sym_function_modifiers] = STATE(2427), - [sym_type_parameters] = STATE(703), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1674), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [650] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(2039), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1663), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -72892,65 +72811,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1555), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [652] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1422), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(635), + [651] = { + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(2039), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -72958,67 +72878,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2530), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, + [652] = { + [sym_function_modifiers] = STATE(2391), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1058), + [sym_bracketed_type] = STATE(2494), + [sym_lifetime] = STATE(625), + [sym_array_type] = STATE(1132), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1132), + [sym_tuple_type] = STATE(1132), + [sym_unit_type] = STATE(1132), + [sym_generic_type] = STATE(806), + [sym_generic_type_with_turbofish] = STATE(2495), + [sym_bounded_type] = STATE(1132), + [sym_reference_type] = STATE(1132), + [sym_pointer_type] = STATE(1132), + [sym_empty_type] = STATE(1132), + [sym_abstract_type] = STATE(1132), + [sym_dynamic_type] = STATE(1132), + [sym_macro_invocation] = STATE(1132), + [sym_scoped_identifier] = STATE(2315), + [sym_scoped_type_identifier] = STATE(790), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_u8] = ACTIONS(2490), + [anon_sym_i8] = ACTIONS(2490), + [anon_sym_u16] = ACTIONS(2490), + [anon_sym_i16] = ACTIONS(2490), + [anon_sym_u32] = ACTIONS(2490), + [anon_sym_i32] = ACTIONS(2490), + [anon_sym_u64] = ACTIONS(2490), + [anon_sym_i64] = ACTIONS(2490), + [anon_sym_u128] = ACTIONS(2490), + [anon_sym_i128] = ACTIONS(2490), + [anon_sym_isize] = ACTIONS(2490), + [anon_sym_usize] = ACTIONS(2490), + [anon_sym_f32] = ACTIONS(2490), + [anon_sym_f64] = ACTIONS(2490), + [anon_sym_bool] = ACTIONS(2490), + [anon_sym_str] = ACTIONS(2490), + [anon_sym_char] = ACTIONS(2490), + [anon_sym_SQUOTE] = ACTIONS(2524), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2492), + [anon_sym_fn] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2496), + [anon_sym_union] = ACTIONS(2498), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_dyn] = ACTIONS(2506), [sym_mutable_specifier] = ACTIONS(2542), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), + [sym_self] = ACTIONS(2510), + [sym_super] = ACTIONS(2510), + [sym_crate] = ACTIONS(2510), + [sym_metavariable] = ACTIONS(2512), [sym_block_comment] = ACTIONS(3), }, [653] = { - [sym_function_modifiers] = STATE(2427), - [sym_type_parameters] = STATE(693), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1660), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1865), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1661), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -73026,65 +73012,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1544), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(2544), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, [654] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(2018), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [sym_function_modifiers] = STATE(2577), + [sym_type_parameters] = STATE(702), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1706), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1727), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -73092,66 +73080,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(902), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1544), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2546), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, [655] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1808), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [sym_function_modifiers] = STATE(2577), + [sym_type_parameters] = STATE(706), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1718), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1664), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -73159,67 +73147,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_LBRACK] = ACTIONS(902), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1527), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2548), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, [656] = { - [sym_function_modifiers] = STATE(2427), - [sym_type_parameters] = STATE(734), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1682), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1407), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(616), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1688), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -73227,66 +73213,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1536), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2329), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(2524), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2550), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, [657] = { - [sym_function_modifiers] = STATE(2427), - [sym_type_parameters] = STATE(735), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1654), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [sym_function_modifiers] = STATE(2577), + [sym_type_parameters] = STATE(723), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1653), + [sym_bracketed_type] = STATE(2385), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1656), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1704), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -73294,132 +73281,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1529), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1516), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, [658] = { - [sym_function_modifiers] = STATE(2392), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(1117), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(631), - [sym_array_type] = STATE(1074), - [sym_for_lifetimes] = STATE(1213), - [sym_function_type] = STATE(1074), - [sym_tuple_type] = STATE(1074), - [sym_unit_type] = STATE(1074), - [sym_generic_type] = STATE(827), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1074), - [sym_reference_type] = STATE(1074), - [sym_pointer_type] = STATE(1074), - [sym_empty_type] = STATE(1074), - [sym_abstract_type] = STATE(1074), - [sym_dynamic_type] = STATE(1074), - [sym_macro_invocation] = STATE(1074), - [sym_scoped_identifier] = STATE(2346), - [sym_scoped_type_identifier] = STATE(782), - [aux_sym_function_modifiers_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2491), - [anon_sym_u8] = ACTIONS(2493), - [anon_sym_i8] = ACTIONS(2493), - [anon_sym_u16] = ACTIONS(2493), - [anon_sym_i16] = ACTIONS(2493), - [anon_sym_u32] = ACTIONS(2493), - [anon_sym_i32] = ACTIONS(2493), - [anon_sym_u64] = ACTIONS(2493), - [anon_sym_i64] = ACTIONS(2493), - [anon_sym_u128] = ACTIONS(2493), - [anon_sym_i128] = ACTIONS(2493), - [anon_sym_isize] = ACTIONS(2493), - [anon_sym_usize] = ACTIONS(2493), - [anon_sym_f32] = ACTIONS(2493), - [anon_sym_f64] = ACTIONS(2493), - [anon_sym_bool] = ACTIONS(2493), - [anon_sym_str] = ACTIONS(2493), - [anon_sym_char] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2530), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2495), - [anon_sym_fn] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2499), - [anon_sym_union] = ACTIONS(2501), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_dyn] = ACTIONS(2509), - [sym_mutable_specifier] = ACTIONS(2554), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2513), - [sym_super] = ACTIONS(2513), - [sym_crate] = ACTIONS(2513), - [sym_metavariable] = ACTIONS(2515), - [sym_block_comment] = ACTIONS(3), - }, - [659] = { - [sym_function_modifiers] = STATE(2427), - [sym_extern_modifier] = STATE(1594), - [sym__type] = STATE(2018), - [sym_bracketed_type] = STATE(2386), - [sym_lifetime] = STATE(2425), + [sym_function_modifiers] = STATE(2577), + [sym_extern_modifier] = STATE(1593), + [sym__type] = STATE(1923), + [sym_bracketed_type] = STATE(2385), + [sym_qualified_type] = STATE(2422), + [sym_lifetime] = STATE(2509), [sym_array_type] = STATE(1432), [sym_for_lifetimes] = STATE(1216), [sym_function_type] = STATE(1432), [sym_tuple_type] = STATE(1432), [sym_unit_type] = STATE(1432), - [sym_generic_type] = STATE(1396), - [sym_generic_type_with_turbofish] = STATE(2387), + [sym_generic_type] = STATE(1390), + [sym_generic_type_with_turbofish] = STATE(2386), [sym_bounded_type] = STATE(1432), [sym_reference_type] = STATE(1432), [sym_pointer_type] = STATE(1432), @@ -73427,51 +73348,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1432), [sym_dynamic_type] = STATE(1432), [sym_macro_invocation] = STATE(1432), - [sym_scoped_identifier] = STATE(2306), - [sym_scoped_type_identifier] = STATE(1366), - [aux_sym_function_modifiers_repeat1] = STATE(1594), + [sym_scoped_identifier] = STATE(2327), + [sym_scoped_type_identifier] = STATE(1365), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(2556), - [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(688), - [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_u8] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u128] = ACTIONS(908), + [anon_sym_i128] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_str] = ACTIONS(908), + [anon_sym_char] = ACTIONS(908), [anon_sym_SQUOTE] = ACTIONS(2329), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(906), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(908), + [anon_sym_union] = ACTIONS(912), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(918), - [sym_super] = ACTIONS(918), - [sym_crate] = ACTIONS(918), - [sym_metavariable] = ACTIONS(920), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, }; @@ -73494,19 +73414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -73514,33 +73434,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2306), 1, - sym_scoped_identifier, - STATE(2312), 1, + STATE(1433), 1, sym__type, - STATE(2386), 1, + STATE(2327), 1, + sym_scoped_identifier, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -73556,7 +73476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73591,19 +73511,310 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1365), 1, + sym_scoped_type_identifier, + STATE(1390), 1, + sym_generic_type, + STATE(1866), 1, + sym__type, + STATE(2327), 1, + sym_scoped_identifier, + STATE(2385), 1, + sym_bracketed_type, + STATE(2386), 1, + sym_generic_type_with_turbofish, + STATE(2509), 1, + sym_lifetime, + STATE(2577), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1593), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1432), 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(908), 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(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1365), 1, + sym_scoped_type_identifier, + STATE(1390), 1, + sym_generic_type, + STATE(1428), 1, + sym__type, + STATE(2327), 1, + sym_scoped_identifier, + STATE(2385), 1, + sym_bracketed_type, + STATE(2386), 1, + sym_generic_type_with_turbofish, + STATE(2509), 1, + sym_lifetime, + STATE(2577), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1593), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1432), 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(908), 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(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(912), 1, anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1365), 1, + sym_scoped_type_identifier, + STATE(1390), 1, + sym_generic_type, + STATE(1654), 1, + sym__type, + STATE(2327), 1, + sym_scoped_identifier, + STATE(2385), 1, + sym_bracketed_type, + STATE(2386), 1, + sym_generic_type_with_turbofish, + STATE(2509), 1, + sym_lifetime, + STATE(2577), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1593), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1432), 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(908), 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(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -73611,33 +73822,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1795), 1, + STATE(2112), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, + STATE(2385), 1, + sym_bracketed_type, STATE(2386), 1, + sym_generic_type_with_turbofish, + STATE(2509), 1, + sym_lifetime, + STATE(2577), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1593), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1432), 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(908), 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(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1365), 1, + sym_scoped_type_identifier, + STATE(1390), 1, + sym_generic_type, + STATE(2290), 1, + sym__type, + STATE(2327), 1, + sym_scoped_identifier, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -73653,7 +73961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73671,7 +73979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [258] = 32, + [774] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73688,19 +73996,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -73708,33 +74016,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1418), 1, + STATE(2291), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -73750,7 +74058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73768,7 +74076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [387] = 32, + [903] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73785,19 +74093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -73805,33 +74113,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2049), 1, + STATE(1420), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -73847,7 +74155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73865,7 +74173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [516] = 32, + [1032] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73882,19 +74190,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -73902,33 +74210,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2068), 1, + STATE(1737), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -73944,7 +74252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73962,7 +74270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [645] = 32, + [1161] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73979,19 +74287,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -73999,33 +74307,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1651), 1, + STATE(2142), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -74041,7 +74349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74059,7 +74367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [774] = 32, + [1290] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74076,19 +74384,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -74096,33 +74404,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1731), 1, + STATE(1925), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -74138,7 +74446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74156,7 +74464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [903] = 32, + [1419] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74173,19 +74481,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -74193,33 +74501,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1728), 1, + STATE(1414), 1, sym__type, - STATE(2306), 1, + STATE(1421), 1, + sym_lifetime, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -74235,7 +74543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74253,7 +74561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1032] = 32, + [1548] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74270,19 +74578,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -74290,33 +74598,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1648), 1, + STATE(1702), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -74332,7 +74640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74350,7 +74658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1161] = 32, + [1677] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74367,19 +74675,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -74387,33 +74695,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1405), 1, + STATE(1739), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -74429,7 +74737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74447,7 +74755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1290] = 32, + [1806] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74464,19 +74772,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -74484,33 +74792,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2025), 1, + STATE(1414), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -74526,7 +74834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74544,7 +74852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1419] = 32, + [1935] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74561,19 +74869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -74581,33 +74889,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1911), 1, + STATE(1698), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -74623,104 +74931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 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(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_LPAREN, - ACTIONS(2487), 1, - anon_sym_LBRACK, - ACTIONS(2491), 1, - anon_sym_STAR, - ACTIONS(2495), 1, - anon_sym_default, - ACTIONS(2497), 1, - anon_sym_fn, - ACTIONS(2499), 1, - anon_sym_impl, - ACTIONS(2501), 1, - anon_sym_union, - ACTIONS(2503), 1, - anon_sym_BANG, - ACTIONS(2505), 1, - anon_sym_COLON_COLON, - ACTIONS(2507), 1, - anon_sym_AMP, - ACTIONS(2509), 1, - anon_sym_dyn, - ACTIONS(2515), 1, - sym_metavariable, - STATE(782), 1, - sym_scoped_type_identifier, - STATE(827), 1, - sym_generic_type, - STATE(1092), 1, - sym__type, - STATE(1213), 1, - sym_for_lifetimes, - STATE(2346), 1, - sym_scoped_identifier, - STATE(2392), 1, - sym_function_modifiers, - STATE(2424), 1, - sym_lifetime, - STATE(2495), 1, - sym_bracketed_type, - STATE(2496), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1594), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2513), 3, - sym_self, - sym_super, - sym_crate, - STATE(1074), 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(2493), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74738,7 +74949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1677] = 32, + [2064] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74755,19 +74966,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -74775,33 +74986,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1723), 1, + STATE(2047), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -74817,7 +75028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74835,7 +75046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1806] = 32, + [2193] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74852,19 +75063,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -74872,33 +75083,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2105), 1, + STATE(1894), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -74914,7 +75125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74932,7 +75143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1935] = 32, + [2322] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74949,19 +75160,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -74969,33 +75180,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2061), 1, + STATE(1692), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -75011,7 +75222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75029,7 +75240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2064] = 32, + [2451] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75046,19 +75257,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -75066,33 +75277,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1634), 1, + STATE(2238), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -75108,7 +75319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75126,7 +75337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2193] = 32, + [2580] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75143,19 +75354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -75163,33 +75374,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1412), 1, - sym_lifetime, - STATE(1415), 1, + STATE(1685), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2427), 1, + STATE(2509), 1, + sym_lifetime, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -75205,7 +75416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75223,7 +75434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2322] = 32, + [2709] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75240,19 +75451,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -75260,33 +75471,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1908), 1, + STATE(1684), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -75302,7 +75513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75320,104 +75531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2451] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_LPAREN, - ACTIONS(2487), 1, - anon_sym_LBRACK, - ACTIONS(2491), 1, - anon_sym_STAR, - ACTIONS(2495), 1, - anon_sym_default, - ACTIONS(2497), 1, - anon_sym_fn, - ACTIONS(2499), 1, - anon_sym_impl, - ACTIONS(2501), 1, - anon_sym_union, - ACTIONS(2503), 1, - anon_sym_BANG, - ACTIONS(2505), 1, - anon_sym_COLON_COLON, - ACTIONS(2507), 1, - anon_sym_AMP, - ACTIONS(2509), 1, - anon_sym_dyn, - ACTIONS(2515), 1, - sym_metavariable, - STATE(782), 1, - sym_scoped_type_identifier, - STATE(827), 1, - sym_generic_type, - STATE(1073), 1, - sym__type, - STATE(1213), 1, - sym_for_lifetimes, - STATE(2346), 1, - sym_scoped_identifier, - STATE(2392), 1, - sym_function_modifiers, - STATE(2424), 1, - sym_lifetime, - STATE(2495), 1, - sym_bracketed_type, - STATE(2496), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1594), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2513), 3, - sym_self, - sym_super, - sym_crate, - STATE(1074), 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(2493), 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, + [2838] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75434,19 +75548,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -75454,33 +75568,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1415), 1, + STATE(1683), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -75496,7 +75610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75514,7 +75628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2709] = 32, + [2967] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75531,19 +75645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -75551,33 +75665,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2250), 1, + STATE(2132), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -75593,7 +75707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75611,7 +75725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2838] = 32, + [3096] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75628,19 +75742,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -75648,33 +75762,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1732), 1, + STATE(2086), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -75690,7 +75804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75708,7 +75822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2967] = 32, + [3225] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75725,19 +75839,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -75745,33 +75859,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2078), 1, + STATE(1682), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -75787,7 +75901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75805,7 +75919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3096] = 32, + [3354] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75822,19 +75936,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -75842,33 +75956,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1693), 1, + STATE(1419), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -75884,7 +75998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75902,7 +76016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3225] = 32, + [3483] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75919,19 +76033,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -75939,33 +76053,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1701), 1, - sym__type, STATE(2306), 1, + sym__type, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -75981,7 +76095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75999,7 +76113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3354] = 32, + [3612] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76016,19 +76130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -76036,33 +76150,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2125), 1, + STATE(1800), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -76078,7 +76192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76096,7 +76210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3483] = 32, + [3741] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76113,19 +76227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -76133,33 +76247,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1434), 1, + STATE(2202), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -76175,7 +76289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76193,7 +76307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3612] = 32, + [3870] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76210,19 +76324,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -76230,33 +76344,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1814), 1, + STATE(2123), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -76272,7 +76386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76290,7 +76404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3741] = 32, + [3999] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76307,19 +76421,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -76327,33 +76441,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2154), 1, + STATE(1680), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -76369,7 +76483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76387,7 +76501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3870] = 32, + [4128] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76404,19 +76518,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -76424,33 +76538,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1650), 1, + STATE(2018), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -76466,7 +76580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76484,7 +76598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3999] = 32, + [4257] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76501,19 +76615,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -76521,33 +76635,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2236), 1, + STATE(1671), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -76563,7 +76677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76581,7 +76695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4128] = 32, + [4386] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76598,19 +76712,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -76618,33 +76732,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2304), 1, + STATE(1669), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -76660,7 +76774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76678,7 +76792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4257] = 32, + [4515] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76695,53 +76809,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2558), 1, - sym_identifier, STATE(1216), 1, sym_for_lifetimes, - STATE(1551), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1720), 1, - sym__type, - STATE(1727), 1, + STATE(1390), 1, sym_generic_type, - STATE(2306), 1, + STATE(2158), 1, + sym__type, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -76757,7 +76871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76775,7 +76889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4386] = 32, + [4644] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76792,19 +76906,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -76812,33 +76926,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2176), 1, + STATE(2136), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -76854,201 +76968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 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(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_LPAREN, - ACTIONS(2487), 1, - anon_sym_LBRACK, - ACTIONS(2491), 1, - anon_sym_STAR, - ACTIONS(2495), 1, - anon_sym_default, - ACTIONS(2497), 1, - anon_sym_fn, - ACTIONS(2499), 1, - anon_sym_impl, - ACTIONS(2501), 1, - anon_sym_union, - ACTIONS(2503), 1, - anon_sym_BANG, - ACTIONS(2505), 1, - anon_sym_COLON_COLON, - ACTIONS(2507), 1, - anon_sym_AMP, - ACTIONS(2509), 1, - anon_sym_dyn, - ACTIONS(2515), 1, - sym_metavariable, - STATE(782), 1, - sym_scoped_type_identifier, - STATE(827), 1, - sym_generic_type, - STATE(1076), 1, - sym__type, - STATE(1213), 1, - sym_for_lifetimes, - STATE(2346), 1, - sym_scoped_identifier, - STATE(2392), 1, - sym_function_modifiers, - STATE(2424), 1, - sym_lifetime, - STATE(2495), 1, - sym_bracketed_type, - STATE(2496), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1594), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2513), 3, - sym_self, - sym_super, - sym_crate, - STATE(1074), 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(2493), 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(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_LPAREN, - ACTIONS(2487), 1, - anon_sym_LBRACK, - ACTIONS(2491), 1, - anon_sym_STAR, - ACTIONS(2495), 1, - anon_sym_default, - ACTIONS(2497), 1, - anon_sym_fn, - ACTIONS(2499), 1, - anon_sym_impl, - ACTIONS(2501), 1, - anon_sym_union, - ACTIONS(2503), 1, - anon_sym_BANG, - ACTIONS(2505), 1, - anon_sym_COLON_COLON, - ACTIONS(2507), 1, - anon_sym_AMP, - ACTIONS(2509), 1, - anon_sym_dyn, - ACTIONS(2515), 1, - sym_metavariable, - STATE(782), 1, - sym_scoped_type_identifier, - STATE(827), 1, - sym_generic_type, - STATE(1067), 1, - sym__type, - STATE(1213), 1, - sym_for_lifetimes, - STATE(2346), 1, - sym_scoped_identifier, - STATE(2392), 1, - sym_function_modifiers, - STATE(2424), 1, - sym_lifetime, - STATE(2495), 1, - sym_bracketed_type, - STATE(2496), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1594), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2513), 3, - sym_self, - sym_super, - sym_crate, - STATE(1074), 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(2493), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77083,19 +77003,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -77103,33 +77023,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2018), 1, + STATE(2293), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -77145,7 +77065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77180,19 +77100,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -77200,33 +77120,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2302), 1, + STATE(2141), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -77242,7 +77162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77277,19 +77197,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -77297,33 +77217,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1409), 1, + STATE(1677), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -77339,7 +77259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77374,19 +77294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -77394,33 +77314,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2030), 1, + STATE(1665), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -77436,7 +77356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77471,19 +77391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -77491,33 +77411,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1664), 1, + STATE(1663), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -77533,7 +77453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77568,53 +77488,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, + ACTIONS(2554), 1, + sym_identifier, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1533), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1709), 1, sym_generic_type, - STATE(2009), 1, + STATE(1712), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -77630,7 +77550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77665,53 +77585,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2560), 1, + ACTIONS(2556), 1, sym_identifier, STATE(1216), 1, sym_for_lifetimes, - STATE(1534), 1, + STATE(1542), 1, sym_scoped_type_identifier, - STATE(1658), 1, - sym__type, - STATE(1662), 1, + STATE(1691), 1, sym_generic_type, - STATE(2306), 1, + STATE(1699), 1, + sym__type, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -77727,7 +77647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77762,19 +77682,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -77782,33 +77702,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1616), 1, + STATE(1603), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -77824,7 +77744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77859,19 +77779,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -77879,33 +77799,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2077), 1, + STATE(1661), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -77921,7 +77841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77956,19 +77876,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, + ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1365), 1, + sym_scoped_type_identifier, + STATE(1390), 1, + sym_generic_type, + STATE(2301), 1, + sym__type, + STATE(2327), 1, + sym_scoped_identifier, + STATE(2385), 1, + sym_bracketed_type, + STATE(2386), 1, + sym_generic_type_with_turbofish, + STATE(2509), 1, + sym_lifetime, + STATE(2577), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1593), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1432), 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(908), 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(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(912), 1, anon_sym_union, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(918), 1, + anon_sym_AMP, + ACTIONS(924), 1, + sym_metavariable, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2558), 1, + sym_identifier, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1551), 1, + sym_scoped_type_identifier, + STATE(1648), 1, + sym__type, + STATE(1659), 1, + sym_generic_type, + STATE(2327), 1, + sym_scoped_identifier, + STATE(2385), 1, + sym_bracketed_type, + STATE(2386), 1, + sym_generic_type_with_turbofish, + STATE(2509), 1, + sym_lifetime, + STATE(2577), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1593), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1432), 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(908), 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(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, + anon_sym_default, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -77976,33 +78090,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1672), 1, + STATE(2196), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -78018,7 +78132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78036,74 +78150,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6063] = 32, + [6321] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(2487), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(2491), 1, - anon_sym_STAR, - ACTIONS(2495), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(2497), 1, - anon_sym_fn, - ACTIONS(2499), 1, - anon_sym_impl, - ACTIONS(2501), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(2503), 1, - anon_sym_BANG, - ACTIONS(2505), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2507), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(2509), 1, - anon_sym_dyn, - ACTIONS(2515), 1, + ACTIONS(924), 1, sym_metavariable, - STATE(782), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(827), 1, + STATE(1390), 1, sym_generic_type, - STATE(1120), 1, + STATE(1418), 1, sym__type, - STATE(1213), 1, - sym_for_lifetimes, - STATE(2346), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2392), 1, - sym_function_modifiers, - STATE(2424), 1, - sym_lifetime, - STATE(2495), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, + STATE(2509), 1, + sym_lifetime, + STATE(2577), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2513), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1074), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78115,7 +78229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2493), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78133,7 +78247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6192] = 32, + [6450] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78150,19 +78264,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -78170,33 +78284,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2281), 1, + STATE(2117), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -78212,7 +78326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78230,7 +78344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6321] = 32, + [6579] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78247,19 +78361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -78267,33 +78381,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1411), 1, + STATE(1932), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -78309,7 +78423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78327,7 +78441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6450] = 32, + [6708] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78344,19 +78458,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -78364,33 +78478,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1991), 1, + STATE(1613), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -78406,7 +78520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78424,7 +78538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6579] = 32, + [6837] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78441,19 +78555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -78461,33 +78575,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2048), 1, + STATE(2109), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -78503,7 +78617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78521,7 +78635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6708] = 32, + [6966] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78538,19 +78652,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -78558,33 +78672,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1726), 1, + STATE(1646), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -78600,7 +78714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78618,7 +78732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6837] = 32, + [7095] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78635,19 +78749,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -78655,33 +78769,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1970), 1, + STATE(1696), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -78697,7 +78811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78715,74 +78829,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6966] = 32, + [7224] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(2487), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(2491), 1, - anon_sym_STAR, - ACTIONS(2495), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(2497), 1, - anon_sym_fn, - ACTIONS(2499), 1, - anon_sym_impl, - ACTIONS(2501), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(2503), 1, - anon_sym_BANG, - ACTIONS(2505), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2507), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(2509), 1, - anon_sym_dyn, - ACTIONS(2515), 1, + ACTIONS(924), 1, sym_metavariable, - STATE(782), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(827), 1, + STATE(1390), 1, sym_generic_type, - STATE(1126), 1, + STATE(2089), 1, sym__type, - STATE(1213), 1, - sym_for_lifetimes, - STATE(2346), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2392), 1, - sym_function_modifiers, - STATE(2424), 1, - sym_lifetime, - STATE(2495), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, + STATE(2509), 1, + sym_lifetime, + STATE(2577), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2513), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1074), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78794,7 +78908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2493), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78812,7 +78926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7095] = 33, + [7353] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78829,57 +78943,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2562), 1, - sym_self, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1409), 1, + STATE(2076), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(918), 2, - sym_super, - sym_crate, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, STATE(1432), 11, sym_array_type, sym_function_type, @@ -78892,50 +79005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 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, - [7226] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1338), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1340), 42, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78953,32 +79023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7297] = 32, + [7482] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78995,19 +79040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -79015,33 +79060,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1891), 1, + STATE(2217), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -79057,7 +79102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79075,7 +79120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7426] = 32, + [7611] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79092,19 +79137,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -79112,33 +79157,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2222), 1, + STATE(1705), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -79154,7 +79199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79172,74 +79217,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7555] = 32, + [7740] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1216), 1, - sym_for_lifetimes, - STATE(1366), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(806), 1, sym_generic_type, - STATE(2140), 1, + STATE(1097), 1, sym__type, - STATE(2306), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2495), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - STATE(1432), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79251,7 +79296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79269,7 +79314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7684] = 32, + [7869] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79286,19 +79331,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -79306,33 +79351,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1893), 1, - sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2330), 1, + sym__type, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -79348,7 +79393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79366,74 +79411,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7813] = 32, + [7998] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(2487), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(2491), 1, - anon_sym_STAR, - ACTIONS(2495), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(2497), 1, - anon_sym_fn, - ACTIONS(2499), 1, - anon_sym_impl, - ACTIONS(2501), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(2503), 1, - anon_sym_BANG, - ACTIONS(2505), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2507), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(2509), 1, - anon_sym_dyn, - ACTIONS(2515), 1, + ACTIONS(924), 1, sym_metavariable, - STATE(782), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(827), 1, + STATE(1390), 1, sym_generic_type, - STATE(1135), 1, + STATE(1662), 1, sym__type, - STATE(1213), 1, - sym_for_lifetimes, - STATE(2346), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2392), 1, - sym_function_modifiers, - STATE(2424), 1, - sym_lifetime, - STATE(2495), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, + STATE(2509), 1, + sym_lifetime, + STATE(2577), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2513), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1074), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79445,7 +79490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2493), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79463,7 +79508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7942] = 32, + [8127] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79480,19 +79525,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -79500,33 +79545,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1410), 1, + STATE(1723), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -79542,7 +79587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79560,7 +79605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8071] = 32, + [8256] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79577,53 +79622,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, + ACTIONS(2560), 1, + sym_identifier, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1549), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1687), 1, sym_generic_type, - STATE(1683), 1, + STATE(1713), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -79639,7 +79684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79657,7 +79702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8200] = 32, + [8385] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79674,19 +79719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -79694,33 +79739,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1899), 1, + STATE(2029), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -79736,7 +79781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79754,74 +79799,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8329] = 32, + [8514] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1216), 1, - sym_for_lifetimes, - STATE(1366), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(806), 1, sym_generic_type, - STATE(1686), 1, + STATE(1098), 1, sym__type, - STATE(2306), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2495), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - STATE(1432), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79833,7 +79878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79851,74 +79896,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8458] = 32, + [8643] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1216), 1, - sym_for_lifetimes, - STATE(1366), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(806), 1, sym_generic_type, - STATE(1687), 1, + STATE(1126), 1, sym__type, - STATE(2306), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2495), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - STATE(1432), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79930,7 +79975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79948,74 +79993,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8587] = 32, + [8772] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(2487), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(2491), 1, - anon_sym_STAR, - ACTIONS(2495), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(2497), 1, - anon_sym_fn, - ACTIONS(2499), 1, - anon_sym_impl, - ACTIONS(2501), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(2503), 1, - anon_sym_BANG, - ACTIONS(2505), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2507), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(2509), 1, - anon_sym_dyn, - ACTIONS(2515), 1, + ACTIONS(924), 1, sym_metavariable, - STATE(782), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(827), 1, + STATE(1390), 1, sym_generic_type, - STATE(1122), 1, + STATE(1987), 1, sym__type, - STATE(1213), 1, - sym_for_lifetimes, - STATE(2346), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2392), 1, - sym_function_modifiers, - STATE(2424), 1, - sym_lifetime, - STATE(2495), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, + STATE(2509), 1, + sym_lifetime, + STATE(2577), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2513), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1074), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80027,7 +80072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2493), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80045,7 +80090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8716] = 32, + [8901] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80062,19 +80107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -80082,33 +80127,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2110), 1, + STATE(1949), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -80124,7 +80169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80142,7 +80187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8845] = 32, + [9030] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80159,19 +80204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -80179,33 +80224,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1417), 1, + STATE(1729), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -80221,7 +80266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80239,7 +80284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8974] = 32, + [9159] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80256,19 +80301,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -80276,33 +80321,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2118), 1, + STATE(1728), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -80318,7 +80363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80336,7 +80381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9103] = 32, + [9288] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80353,19 +80398,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -80373,33 +80418,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1684), 1, + STATE(2038), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -80415,7 +80460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80433,7 +80478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9232] = 32, + [9417] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80450,19 +80495,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -80470,33 +80515,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2187), 1, + STATE(2302), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -80512,7 +80557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80530,171 +80575,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9361] = 32, + [9546] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, - ACTIONS(902), 1, - anon_sym_LBRACK, - ACTIONS(906), 1, - anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, - ACTIONS(912), 1, - anon_sym_COLON_COLON, - ACTIONS(914), 1, - anon_sym_AMP, - ACTIONS(920), 1, - sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1216), 1, - sym_for_lifetimes, - STATE(1366), 1, - sym_scoped_type_identifier, - STATE(1396), 1, - sym_generic_type, - STATE(1420), 1, - sym__type, - STATE(2306), 1, - sym_scoped_identifier, - STATE(2386), 1, - sym_bracketed_type, - STATE(2387), 1, - sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1594), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(918), 3, - sym_self, - sym_super, - sym_crate, - STATE(1432), 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(904), 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, - [9490] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2564), 1, - sym_identifier, - STATE(1216), 1, - sym_for_lifetimes, - STATE(1523), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1697), 1, + STATE(806), 1, sym_generic_type, - STATE(1698), 1, + STATE(1113), 1, sym__type, - STATE(2306), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2495), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - STATE(1432), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80706,7 +80654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80724,7 +80672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9619] = 32, + [9675] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80741,53 +80689,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, + ACTIONS(2325), 1, + sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2566), 1, - sym_identifier, STATE(1216), 1, sym_for_lifetimes, - STATE(1528), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1647), 1, + STATE(1390), 1, sym_generic_type, - STATE(1689), 1, + STATE(1843), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -80803,7 +80751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80821,7 +80769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9748] = 32, + [9804] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80838,19 +80786,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -80858,33 +80806,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1423), 1, + STATE(1688), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -80900,7 +80848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80918,7 +80866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9877] = 32, + [9933] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80935,19 +80883,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -80955,33 +80903,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1670), 1, + STATE(1842), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -80997,7 +80945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81015,7 +80963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10006] = 32, + [10062] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81032,19 +80980,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -81052,33 +81000,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2300), 1, + STATE(1899), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -81094,7 +81042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81112,7 +81060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10135] = 32, + [10191] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81129,19 +81077,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -81149,33 +81097,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1705), 1, + STATE(1895), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -81191,7 +81139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81209,7 +81157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10264] = 32, + [10320] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81226,19 +81174,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -81246,33 +81194,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1706), 1, + STATE(2011), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -81288,7 +81236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81306,7 +81254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10393] = 32, + [10449] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81323,19 +81271,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -81343,33 +81291,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2135), 1, + STATE(2125), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -81385,7 +81333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81403,7 +81351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10522] = 32, + [10578] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81420,19 +81368,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -81440,33 +81388,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2108), 1, + STATE(2156), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -81482,7 +81430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81500,74 +81448,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10651] = 32, + [10707] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1216), 1, - sym_for_lifetimes, - STATE(1366), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(806), 1, sym_generic_type, - STATE(2132), 1, + STATE(1100), 1, sym__type, - STATE(2306), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2495), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - STATE(1432), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81579,7 +81527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81597,74 +81545,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10780] = 32, + [10836] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, + STATE(790), 1, + sym_scoped_type_identifier, + STATE(806), 1, + sym_generic_type, + STATE(1099), 1, + sym__type, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, + sym_scoped_identifier, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, + sym_bracketed_type, + STATE(2495), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1593), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2510), 3, + sym_self, + sym_super, + sym_crate, + STATE(1132), 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(2490), 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(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1216), 1, - sym_for_lifetimes, - STATE(1366), 1, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, + anon_sym_LPAREN, + ACTIONS(2484), 1, + anon_sym_LBRACK, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, + anon_sym_default, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, + anon_sym_union, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, + anon_sym_COLON_COLON, + ACTIONS(2504), 1, + anon_sym_AMP, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, + sym_metavariable, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(806), 1, sym_generic_type, - STATE(2239), 1, + STATE(1095), 1, sym__type, - STATE(2306), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2495), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - STATE(1432), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81676,7 +81721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81694,7 +81739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10909] = 32, + [11094] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81711,19 +81756,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -81731,33 +81776,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1685), 1, + STATE(1404), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -81773,7 +81818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81791,74 +81836,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11038] = 32, + [11223] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1216), 1, - sym_for_lifetimes, - STATE(1366), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(806), 1, sym_generic_type, - STATE(2159), 1, + STATE(1072), 1, sym__type, - STATE(2306), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2495), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - STATE(1432), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81870,7 +81915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81888,7 +81933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11167] = 32, + [11352] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81905,19 +81950,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -81925,33 +81970,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2039), 1, + STATE(2067), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -81967,7 +82012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81985,7 +82030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11296] = 32, + [11481] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82002,19 +82047,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -82022,33 +82067,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1708), 1, + STATE(1424), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -82064,7 +82109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82082,7 +82127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11425] = 32, + [11610] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82099,19 +82144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -82119,33 +82164,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1710), 1, + STATE(1434), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -82161,7 +82206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82179,7 +82224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11554] = 32, + [11739] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82196,19 +82241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -82216,33 +82261,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2052), 1, + STATE(1431), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -82258,7 +82303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82276,7 +82321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11683] = 32, + [11868] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82293,19 +82338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -82313,33 +82358,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2117), 1, + STATE(2039), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -82355,7 +82400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82373,7 +82418,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11812] = 32, + [11997] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1260), 20, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(1262), 42, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12068] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82390,19 +82503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -82410,33 +82523,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(2203), 1, + STATE(1933), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -82452,7 +82565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82470,7 +82583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11941] = 32, + [12197] = 33, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82487,56 +82600,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, ACTIONS(2329), 1, anon_sym_SQUOTE, + ACTIONS(2562), 1, + sym_self, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1715), 1, + STATE(1418), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + ACTIONS(922), 2, + sym_super, + sym_crate, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, - sym_self, - sym_super, - sym_crate, STATE(1432), 11, sym_array_type, sym_function_type, @@ -82549,7 +82663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82567,7 +82681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12070] = 32, + [12328] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82584,19 +82698,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -82604,33 +82718,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1414), 1, + STATE(1409), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -82646,7 +82760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82664,74 +82778,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12199] = 32, + [12457] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1216), 1, - sym_for_lifetimes, - STATE(1366), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(806), 1, sym_generic_type, - STATE(2087), 1, + STATE(1110), 1, sym__type, - STATE(2306), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2495), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - STATE(1432), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82743,7 +82857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82761,74 +82875,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12328] = 32, + [12586] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1216), 1, - sym_for_lifetimes, - STATE(1366), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(806), 1, sym_generic_type, - STATE(1721), 1, + STATE(1112), 1, sym__type, - STATE(2306), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2495), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - STATE(1432), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82840,7 +82954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82858,74 +82972,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12457] = 32, + [12715] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(898), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(902), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(908), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(912), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1216), 1, - sym_for_lifetimes, - STATE(1366), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(806), 1, sym_generic_type, - STATE(1722), 1, + STATE(1117), 1, sym__type, - STATE(2306), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2495), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, - sym_lifetime, - STATE(2427), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - STATE(1432), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82937,7 +83051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82955,7 +83069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12586] = 32, + [12844] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82972,19 +83086,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -82992,33 +83106,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1694), 1, + STATE(2062), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -83034,7 +83148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83052,7 +83166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12715] = 32, + [12973] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83069,19 +83183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -83089,33 +83203,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1955), 1, + STATE(2176), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -83131,7 +83245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83149,7 +83263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12844] = 32, + [13102] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83166,19 +83280,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -83186,33 +83300,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1700), 1, + STATE(1660), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -83228,104 +83342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 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, - [12973] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_LPAREN, - ACTIONS(2487), 1, - anon_sym_LBRACK, - ACTIONS(2491), 1, - anon_sym_STAR, - ACTIONS(2495), 1, - anon_sym_default, - ACTIONS(2497), 1, - anon_sym_fn, - ACTIONS(2499), 1, - anon_sym_impl, - ACTIONS(2501), 1, - anon_sym_union, - ACTIONS(2503), 1, - anon_sym_BANG, - ACTIONS(2505), 1, - anon_sym_COLON_COLON, - ACTIONS(2507), 1, - anon_sym_AMP, - ACTIONS(2509), 1, - anon_sym_dyn, - ACTIONS(2515), 1, - sym_metavariable, - STATE(782), 1, - sym_scoped_type_identifier, - STATE(827), 1, - sym_generic_type, - STATE(1095), 1, - sym__type, - STATE(1213), 1, - sym_for_lifetimes, - STATE(2346), 1, - sym_scoped_identifier, - STATE(2392), 1, - sym_function_modifiers, - STATE(2424), 1, - sym_lifetime, - STATE(2495), 1, - sym_bracketed_type, - STATE(2496), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1594), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2513), 3, - sym_self, - sym_super, - sym_crate, - STATE(1074), 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(2493), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83343,7 +83360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13102] = 32, + [13231] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83360,19 +83377,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -83380,33 +83397,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1883), 1, + STATE(1819), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -83422,104 +83439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 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, - [13231] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_LPAREN, - ACTIONS(2487), 1, - anon_sym_LBRACK, - ACTIONS(2491), 1, - anon_sym_STAR, - ACTIONS(2495), 1, - anon_sym_default, - ACTIONS(2497), 1, - anon_sym_fn, - ACTIONS(2499), 1, - anon_sym_impl, - ACTIONS(2501), 1, - anon_sym_union, - ACTIONS(2503), 1, - anon_sym_BANG, - ACTIONS(2505), 1, - anon_sym_COLON_COLON, - ACTIONS(2507), 1, - anon_sym_AMP, - ACTIONS(2509), 1, - anon_sym_dyn, - ACTIONS(2515), 1, - sym_metavariable, - STATE(782), 1, - sym_scoped_type_identifier, - STATE(827), 1, - sym_generic_type, - STATE(1116), 1, - sym__type, - STATE(1213), 1, - sym_for_lifetimes, - STATE(2346), 1, - sym_scoped_identifier, - STATE(2392), 1, - sym_function_modifiers, - STATE(2424), 1, - sym_lifetime, - STATE(2495), 1, - sym_bracketed_type, - STATE(2496), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1594), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2513), 3, - sym_self, - sym_super, - sym_crate, - STATE(1074), 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(2493), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83554,19 +83474,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -83574,33 +83494,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1926), 1, + STATE(2083), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -83616,7 +83536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83651,19 +83571,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -83671,33 +83591,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1794), 1, + STATE(1867), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -83713,7 +83633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83748,19 +83668,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -83768,33 +83688,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1724), 1, + STATE(1717), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -83810,7 +83730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83837,65 +83757,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2483), 1, + ACTIONS(2480), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(2487), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(2491), 1, + ACTIONS(2488), 1, anon_sym_STAR, - ACTIONS(2495), 1, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(2497), 1, + ACTIONS(2494), 1, anon_sym_fn, - ACTIONS(2499), 1, + ACTIONS(2496), 1, anon_sym_impl, - ACTIONS(2501), 1, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(2503), 1, + ACTIONS(2500), 1, anon_sym_BANG, - ACTIONS(2505), 1, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(2507), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(2509), 1, + ACTIONS(2506), 1, anon_sym_dyn, - ACTIONS(2515), 1, + ACTIONS(2512), 1, sym_metavariable, - STATE(782), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(827), 1, + STATE(806), 1, sym_generic_type, - STATE(1112), 1, + STATE(1142), 1, sym__type, - STATE(1213), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(2346), 1, + STATE(2315), 1, sym_scoped_identifier, - STATE(2392), 1, + STATE(2391), 1, sym_function_modifiers, - STATE(2424), 1, + STATE(2394), 1, sym_lifetime, - STATE(2495), 1, + STATE(2494), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2495), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2513), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - STATE(1074), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83907,7 +83827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2493), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83928,71 +83848,71 @@ static const uint16_t ts_small_parse_table[] = { [13876] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(2487), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(2491), 1, - anon_sym_STAR, - ACTIONS(2495), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(2497), 1, - anon_sym_fn, - ACTIONS(2499), 1, - anon_sym_impl, - ACTIONS(2501), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(2503), 1, - anon_sym_BANG, - ACTIONS(2505), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2507), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(2509), 1, - anon_sym_dyn, - ACTIONS(2515), 1, + ACTIONS(924), 1, sym_metavariable, - STATE(782), 1, + ACTIONS(2325), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(827), 1, + STATE(1390), 1, sym_generic_type, - STATE(1107), 1, + STATE(1700), 1, sym__type, - STATE(1213), 1, - sym_for_lifetimes, - STATE(2346), 1, - sym_scoped_identifier, - STATE(2392), 1, - sym_function_modifiers, - STATE(2424), 1, - sym_lifetime, - STATE(2495), 1, + STATE(2327), 1, + sym_scoped_identifier, + STATE(2385), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, + STATE(2509), 1, + sym_lifetime, + STATE(2577), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2513), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1074), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -84004,7 +83924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2493), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84039,19 +83959,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(898), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(906), 1, + anon_sym_LBRACK, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(908), 1, - anon_sym_union, ACTIONS(912), 1, + anon_sym_union, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(914), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(920), 1, + ACTIONS(924), 1, sym_metavariable, ACTIONS(2325), 1, sym_identifier, @@ -84059,33 +83979,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1216), 1, sym_for_lifetimes, - STATE(1366), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1396), 1, + STATE(1390), 1, sym_generic_type, - STATE(1808), 1, + STATE(1865), 1, sym__type, - STATE(2306), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2425), 1, + STATE(2509), 1, sym_lifetime, - STATE(2427), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, @@ -84101,7 +84021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(904), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84123,7 +84043,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 17, + ACTIONS(880), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -84141,7 +84061,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2568), 40, + ACTIONS(878), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84186,7 +84106,70 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(400), 18, + ACTIONS(2566), 17, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2564), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_DASH, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14266] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(412), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -84205,7 +84188,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2572), 39, + ACTIONS(2568), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84245,11 +84228,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14266] = 3, + [14332] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2576), 17, + ACTIONS(2572), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -84267,7 +84250,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2574), 40, + ACTIONS(2570), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84308,29 +84291,474 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14332] = 3, + [14398] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1260), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(1262), 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_SQUOTE, + 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_ref, + anon_sym__, + anon_sym_dyn, + sym_mutable_specifier, + anon_sym_DOT_DOT, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14460] = 9, + ACTIONS(2576), 1, + anon_sym_LPAREN, + ACTIONS(2580), 1, + anon_sym_BANG, + ACTIONS(2582), 1, + anon_sym_COLON_COLON, + ACTIONS(2584), 1, + anon_sym_LT2, + STATE(812), 1, + sym_type_arguments, + STATE(818), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2574), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [14530] = 8, + ACTIONS(2576), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, + anon_sym_COLON_COLON, + ACTIONS(2584), 1, + anon_sym_LT2, + STATE(812), 1, + sym_type_arguments, + STATE(818), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2588), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2586), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [14597] = 8, + ACTIONS(2576), 1, + anon_sym_LPAREN, + ACTIONS(2582), 1, + anon_sym_COLON_COLON, + ACTIONS(2584), 1, + anon_sym_LT2, + STATE(812), 1, + sym_type_arguments, + STATE(818), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2592), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2590), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [14664] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1124), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1126), 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, + [14720] = 6, + ACTIONS(2600), 1, + anon_sym_BANG, + ACTIONS(2602), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(2596), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2594), 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, + [14782] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1750), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1752), 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, + [14838] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1464), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1466), 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, + [14894] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(880), 17, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DASH_GT, + ACTIONS(1824), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(878), 40, + ACTIONS(1826), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84348,50 +84776,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, anon_sym_async, - anon_sym_break, anon_sym_const, - anon_sym_continue, anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, + anon_sym_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_while, - anon_sym_DASH, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [14398] = 3, + [14950] = 7, + ACTIONS(2580), 1, + anon_sym_BANG, + ACTIONS(2604), 1, + anon_sym_LBRACE, + ACTIONS(2606), 1, + anon_sym_COLON_COLON, + STATE(1108), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1338), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(568), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT, anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(566), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [15014] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1316), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1340), 38, + ACTIONS(1318), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84409,44 +84886,479 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_extern, - anon_sym_ref, - anon_sym__, - anon_sym_dyn, - sym_mutable_specifier, - anon_sym_DOT_DOT, - anon_sym_true, - anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [14460] = 9, - ACTIONS(2580), 1, + [15070] = 7, + ACTIONS(2576), 1, + anon_sym_LPAREN, + ACTIONS(2584), 1, + anon_sym_LT2, + STATE(813), 1, + sym_type_arguments, + STATE(822), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2610), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2608), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [15134] = 5, + ACTIONS(2616), 1, + anon_sym_BANG, + ACTIONS(2618), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2614), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2612), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [15194] = 5, + ACTIONS(2624), 1, + anon_sym_BANG, + ACTIONS(2626), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2622), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2620), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [15254] = 5, + ACTIONS(2632), 1, + anon_sym_BANG, + ACTIONS(2634), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2630), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2628), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [15314] = 5, + ACTIONS(2640), 1, + anon_sym_BANG, + ACTIONS(2642), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2638), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2636), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [15374] = 7, + ACTIONS(2576), 1, + anon_sym_LPAREN, + ACTIONS(2584), 1, + anon_sym_LT2, + STATE(813), 1, + sym_type_arguments, + STATE(822), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2646), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2644), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [15438] = 7, + ACTIONS(2576), 1, + anon_sym_LPAREN, + ACTIONS(2584), 1, + anon_sym_LT2, + STATE(813), 1, + sym_type_arguments, + STATE(822), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2650), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2648), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [15502] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2632), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2634), 30, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2584), 1, - anon_sym_BANG, - ACTIONS(2586), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(2588), 1, - anon_sym_LT2, - STATE(972), 1, - sym_type_arguments, - STATE(1009), 1, - sym_parameters, + 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, + [15557] = 5, + ACTIONS(2652), 1, + anon_sym_else, + STATE(1092), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 17, + ACTIONS(404), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84457,15 +85369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2578), 26, + ACTIONS(402), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84481,6 +85392,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, @@ -84490,22 +85402,70 @@ 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, - [14530] = 8, - ACTIONS(2580), 1, + [15616] = 4, + ACTIONS(2654), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2624), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2626), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2586), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(2588), 1, - anon_sym_LT2, - STATE(972), 1, - sym_type_arguments, - STATE(1009), 1, - sym_parameters, + 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, + [15673] = 5, + ACTIONS(2652), 1, + anon_sym_else, + STATE(1137), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 17, + ACTIONS(394), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84516,15 +85476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2590), 26, + ACTIONS(392), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84540,6 +85499,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, @@ -84549,22 +85509,17 @@ 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, - [14597] = 8, - ACTIONS(2580), 1, - anon_sym_LPAREN, - ACTIONS(2586), 1, - anon_sym_COLON_COLON, - ACTIONS(2588), 1, - anon_sym_LT2, - STATE(972), 1, - sym_type_arguments, - STATE(1009), 1, - sym_parameters, + [15732] = 5, + ACTIONS(2660), 1, + anon_sym_SQUOTE, + STATE(1140), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 17, + ACTIONS(2658), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84575,15 +85530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2594), 26, + ACTIONS(2656), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84599,6 +85553,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, @@ -84608,71 +85563,71 @@ 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, - [14664] = 3, + [15791] = 4, + ACTIONS(2662), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1362), 9, + ACTIONS(2632), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2634), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1364), 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, - [14720] = 5, - ACTIONS(2602), 1, - anon_sym_BANG, - ACTIONS(2604), 1, anon_sym_COLON_COLON, + 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, + [15848] = 4, + ACTIONS(2664), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 17, + ACTIONS(2640), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84681,18 +85636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2598), 28, + ACTIONS(2642), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84700,13 +85652,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, 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, @@ -84716,18 +85669,18 @@ 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, - [14780] = 5, - ACTIONS(2610), 1, - anon_sym_BANG, - ACTIONS(2612), 1, - anon_sym_COLON_COLON, + [15905] = 4, + ACTIONS(2666), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 17, + ACTIONS(2616), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84736,18 +85689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2606), 28, + ACTIONS(2618), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84755,13 +85705,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, 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, @@ -84771,16 +85722,170 @@ 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, - [14840] = 5, - ACTIONS(2618), 1, - anon_sym_BANG, - ACTIONS(2620), 1, + [15962] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1954), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1956), 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, + [16016] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1812), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1814), 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, + [16070] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1112), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1114), 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, + [16124] = 5, + ACTIONS(2670), 1, + anon_sym_LPAREN, + STATE(1125), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 17, + ACTIONS(2672), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84791,16 +85896,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2614), 28, + ACTIONS(2668), 28, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84811,12 +85913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, 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, @@ -84826,20 +85928,13 @@ 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, - [14900] = 7, - ACTIONS(2580), 1, - anon_sym_LPAREN, - ACTIONS(2588), 1, - anon_sym_LT2, - STATE(973), 1, - sym_type_arguments, - STATE(1027), 1, - sym_parameters, + [16182] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 17, + ACTIONS(520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84850,15 +85945,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2622), 26, + ACTIONS(518), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84874,6 +85968,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, @@ -84883,20 +85978,16 @@ 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, - [14964] = 7, - ACTIONS(2580), 1, - anon_sym_LPAREN, - ACTIONS(2588), 1, - anon_sym_LT2, - STATE(973), 1, - sym_type_arguments, - STATE(1027), 1, - sym_parameters, + anon_sym_else, + [16236] = 4, + ACTIONS(2674), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 17, + ACTIONS(2650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84907,15 +85998,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2626), 26, + ACTIONS(2648), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84931,6 +86021,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, @@ -84940,16 +86031,15 @@ 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, - [15028] = 5, - ACTIONS(2634), 1, - anon_sym_BANG, - ACTIONS(2636), 1, + [16292] = 4, + ACTIONS(2676), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2632), 17, + ACTIONS(2650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84960,14 +86050,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2630), 28, + ACTIONS(2648), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84980,12 +86068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, 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, @@ -84995,20 +86083,15 @@ 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, - [15088] = 7, - ACTIONS(2580), 1, - anon_sym_LPAREN, - ACTIONS(2588), 1, - anon_sym_LT2, - STATE(973), 1, - sym_type_arguments, - STATE(1027), 1, - sym_parameters, + [16348] = 4, + ACTIONS(2678), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 17, + ACTIONS(2650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85019,15 +86102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2638), 26, + ACTIONS(2648), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85043,6 +86125,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, @@ -85052,22 +86135,72 @@ 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, - [15152] = 3, + [16404] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1794), 9, + ACTIONS(1356), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1796), 38, + ACTIONS(1358), 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, + [16458] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1288), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1290), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85106,125 +86239,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15208] = 3, + [16512] = 4, + ACTIONS(2680), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1694), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(568), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, - anon_sym_COMMA, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1696), 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, - [15264] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1166), 9, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(566), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1168), 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, - [15320] = 7, - ACTIONS(2584), 1, - anon_sym_BANG, - ACTIONS(2642), 1, - anon_sym_LBRACE, - ACTIONS(2644), 1, - anon_sym_COLON_COLON, - STATE(1145), 1, - sym_field_initializer_list, + 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, + [16568] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(564), 15, + ACTIONS(550), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85240,10 +86311,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(562), 28, + ACTIONS(548), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85269,21 +86341,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15384] = 3, + anon_sym_else, + [16622] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1766), 9, + ACTIONS(1144), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1768), 38, + ACTIONS(1146), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85322,25 +86393,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15440] = 6, - ACTIONS(2652), 1, - anon_sym_BANG, - ACTIONS(2654), 1, - anon_sym_COLON_COLON, + [16676] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(2648), 16, + ACTIONS(2684), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85354,55 +86413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2646), 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, - [15502] = 5, - ACTIONS(2656), 1, - anon_sym_else, - STATE(1110), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(494), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(492), 29, + ACTIONS(2682), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85414,6 +86425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85432,16 +86444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15561] = 4, - ACTIONS(2658), 1, - anon_sym_LBRACE, + [16730] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 16, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85455,10 +86464,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2636), 29, + ACTIONS(2686), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85485,15 +86495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15618] = 5, - ACTIONS(2656), 1, - anon_sym_else, - STATE(1096), 1, - sym_else_clause, + [16784] = 4, + ACTIONS(2694), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(500), 15, + ACTIONS(2692), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85509,7 +86517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(498), 29, + ACTIONS(2690), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85539,15 +86547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15677] = 5, - ACTIONS(2664), 1, - anon_sym_SQUOTE, - STATE(1125), 1, - sym_loop_label, + [16840] = 4, + ACTIONS(2678), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2662), 15, + ACTIONS(2610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85563,7 +86569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2660), 29, + ACTIONS(2608), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85593,69 +86599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15736] = 4, - ACTIONS(2666), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2610), 16, - anon_sym_PLUS, - anon_sym_STAR, + [16896] = 5, + ACTIONS(2580), 1, anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2612), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2696), 1, anon_sym_COLON_COLON, - 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, - [15793] = 4, - ACTIONS(2668), 1, - anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 16, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85669,7 +86623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 29, + ACTIONS(566), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85680,7 +86634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85699,14 +86652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15850] = 3, + [16954] = 4, + ACTIONS(2678), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 16, + ACTIONS(2646), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85720,7 +86674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 30, + ACTIONS(2644), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85732,7 +86686,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85751,16 +86704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15905] = 4, - ACTIONS(2670), 1, - anon_sym_LBRACE, + [17010] = 4, + ACTIONS(2702), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 16, + ACTIONS(2700), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85774,10 +86726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2604), 29, + ACTIONS(2698), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85785,7 +86738,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85804,11 +86756,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15962] = 3, + [17066] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1762), 7, + ACTIONS(1428), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85816,7 +86768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1764), 38, + ACTIONS(1430), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85855,11 +86807,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16016] = 3, + [17120] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1504), 7, + ACTIONS(1436), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85867,7 +86819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1506), 38, + ACTIONS(1438), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85906,11 +86858,116 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16070] = 3, + [17174] = 5, + ACTIONS(2602), 1, + anon_sym_COLON_COLON, + ACTIONS(2704), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2596), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2594), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [17232] = 4, + ACTIONS(2710), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2708), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2706), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [17288] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1918), 7, + ACTIONS(1472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85918,7 +86975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1920), 38, + ACTIONS(1474), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85957,11 +87014,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16124] = 3, + [17342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1906), 7, + ACTIONS(1510), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85969,7 +87026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1908), 38, + ACTIONS(1512), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86008,62 +87065,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16178] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(538), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(536), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_else, - [16232] = 3, + [17396] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1726), 7, + ACTIONS(1514), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86071,7 +87077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1728), 38, + ACTIONS(1516), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86110,11 +87116,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16286] = 3, + [17450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1898), 7, + ACTIONS(538), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86122,7 +87128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1900), 38, + ACTIONS(540), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86161,63 +87167,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16340] = 4, - ACTIONS(2672), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2624), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2622), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [16396] = 3, + [17504] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1390), 7, + ACTIONS(548), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86225,7 +87179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1392), 38, + ACTIONS(550), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86264,63 +87218,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16450] = 4, - ACTIONS(2674), 1, - anon_sym_COLON_COLON, + [17558] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2622), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [16506] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1862), 7, + ACTIONS(518), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86328,7 +87230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1864), 38, + ACTIONS(520), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86367,11 +87269,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16560] = 3, + [17612] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1702), 7, + ACTIONS(1538), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86379,7 +87281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1704), 38, + ACTIONS(1540), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86418,11 +87320,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16614] = 3, + [17666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1686), 7, + ACTIONS(1550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86430,7 +87332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1688), 38, + ACTIONS(1552), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86469,11 +87371,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16668] = 3, + [17720] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1798), 7, + ACTIONS(1570), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86481,7 +87383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1800), 38, + ACTIONS(1572), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86520,11 +87422,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16722] = 3, + [17774] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1850), 7, + ACTIONS(582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86532,7 +87434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1852), 38, + ACTIONS(584), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86571,11 +87473,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16776] = 3, + [17828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1834), 7, + ACTIONS(1586), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86583,7 +87485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1836), 38, + ACTIONS(1588), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86622,11 +87524,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16830] = 3, + [17882] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1670), 7, + ACTIONS(1602), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86634,7 +87536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1672), 38, + ACTIONS(1604), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86673,7 +87575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16884] = 3, + [17936] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -86724,11 +87626,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16938] = 3, + [17990] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1662), 7, + ACTIONS(624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86736,7 +87638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1664), 38, + ACTIONS(626), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86775,11 +87677,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16992] = 3, + [18044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1618), 7, + ACTIONS(1828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86787,7 +87689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1620), 38, + ACTIONS(1830), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86826,11 +87728,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17046] = 3, + [18098] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1572), 7, + ACTIONS(1260), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86838,7 +87740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1574), 38, + ACTIONS(1262), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86877,11 +87779,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17100] = 3, + [18152] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1822), 7, + ACTIONS(1912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86889,7 +87791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1824), 38, + ACTIONS(1914), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86928,11 +87830,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17154] = 3, + [18206] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1802), 7, + ACTIONS(640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86940,7 +87842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1804), 38, + ACTIONS(642), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86979,11 +87881,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17208] = 3, + [18260] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1790), 7, + ACTIONS(652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86991,7 +87893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1792), 38, + ACTIONS(654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87030,11 +87932,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17262] = 3, + [18314] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1714), 7, + ACTIONS(1916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87042,7 +87944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1716), 38, + ACTIONS(1918), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87081,11 +87983,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17316] = 3, + [18368] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1678), 7, + ACTIONS(2714), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2716), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2712), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [18424] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87093,7 +88047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1680), 38, + ACTIONS(2004), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87132,11 +88086,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17370] = 3, + [18478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1552), 7, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87144,7 +88098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1554), 38, + ACTIONS(1972), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87183,63 +88137,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17424] = 4, - ACTIONS(2676), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2624), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2622), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [17480] = 3, + [18532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2680), 15, + ACTIONS(540), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87255,7 +88157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2678), 30, + ACTIONS(538), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87267,7 +88169,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -87286,11 +88187,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17534] = 3, + anon_sym_else, + [18586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1310), 7, + ACTIONS(1868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87298,7 +88200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1312), 38, + ACTIONS(1870), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87337,11 +88239,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17588] = 3, + [18640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1302), 7, + ACTIONS(1722), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87349,7 +88251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1304), 38, + ACTIONS(1724), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87388,11 +88290,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17642] = 3, + [18694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1986), 7, + ACTIONS(1718), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87400,7 +88302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1988), 38, + ACTIONS(1720), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87439,11 +88341,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17696] = 3, + [18748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1104), 7, + ACTIONS(2720), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2718), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_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, + 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, + [18802] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87451,7 +88404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1106), 38, + ACTIONS(1616), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87490,11 +88443,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17750] = 3, + [18856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1540), 7, + ACTIONS(1590), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87502,7 +88455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1542), 38, + ACTIONS(1592), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87541,13 +88494,115 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17804] = 4, - ACTIONS(2682), 1, - anon_sym_COLON_COLON, + [18910] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2630), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2628), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [18964] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(848), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(850), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [19018] = 4, + ACTIONS(2726), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(564), 15, + ACTIONS(2724), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87563,7 +88618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(562), 29, + ACTIONS(2722), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87593,11 +88648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17860] = 3, + [19074] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1294), 7, + ACTIONS(1132), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87605,7 +88660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1296), 38, + ACTIONS(1134), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87644,113 +88699,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17914] = 3, + [19128] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1290), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1292), 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, - [17968] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1528), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1530), 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, - [18022] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2010), 7, + ACTIONS(1128), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87758,7 +88711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2012), 38, + ACTIONS(1130), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87797,11 +88750,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18076] = 3, + [19182] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1524), 7, + ACTIONS(1120), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87809,7 +88762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1526), 38, + ACTIONS(1122), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87848,11 +88801,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18130] = 3, + [19236] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1520), 7, + ACTIONS(1116), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87860,7 +88813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1522), 38, + ACTIONS(1118), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87899,113 +88852,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18184] = 3, + [19290] = 4, + ACTIONS(2732), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1438), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2730), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1440), 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, - [18238] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1434), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2728), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1436), 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, - [18292] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [19346] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1430), 7, + ACTIONS(1164), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88013,7 +88916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1432), 38, + ACTIONS(1166), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88052,11 +88955,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18346] = 3, + [19400] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1410), 7, + ACTIONS(1168), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88064,7 +88967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1412), 38, + ACTIONS(1170), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88103,11 +89006,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18400] = 3, + [19454] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1398), 7, + ACTIONS(1172), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88115,7 +89018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1400), 38, + ACTIONS(1174), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88154,11 +89057,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18454] = 3, + [19508] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(1184), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88166,7 +89069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1632), 38, + ACTIONS(1186), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88205,11 +89108,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18508] = 3, + [19562] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1610), 7, + ACTIONS(1188), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88217,7 +89120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1612), 38, + ACTIONS(1190), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88256,11 +89159,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18562] = 3, + [19616] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1258), 7, + ACTIONS(1192), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88268,7 +89171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1260), 38, + ACTIONS(1194), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88307,11 +89210,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18616] = 3, + [19670] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1606), 7, + ACTIONS(1196), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88319,7 +89222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1608), 38, + ACTIONS(1198), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88358,11 +89261,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18670] = 3, + [19724] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1602), 7, + ACTIONS(1200), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88370,7 +89273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1604), 38, + ACTIONS(1202), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88409,11 +89312,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18724] = 3, + [19778] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2006), 7, + ACTIONS(1204), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88421,7 +89324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2008), 38, + ACTIONS(1206), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88460,11 +89363,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18778] = 3, + [19832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1462), 7, + ACTIONS(1212), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88472,7 +89375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1464), 38, + ACTIONS(1214), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88511,13 +89414,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18832] = 4, - ACTIONS(2688), 1, + [19886] = 4, + ACTIONS(2738), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2686), 15, + ACTIONS(2736), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88533,7 +89436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2684), 29, + ACTIONS(2734), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88563,11 +89466,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18888] = 3, + [19942] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1246), 7, + ACTIONS(1232), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88575,7 +89478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1248), 38, + ACTIONS(1234), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88614,11 +89517,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18942] = 3, + [19996] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2002), 7, + ACTIONS(2006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88626,7 +89529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2004), 38, + ACTIONS(2008), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88665,11 +89568,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18996] = 3, + [20050] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1334), 7, + ACTIONS(1236), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88677,7 +89580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1336), 38, + ACTIONS(1238), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88716,11 +89619,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19050] = 3, + [20104] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1590), 7, + ACTIONS(1248), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88728,7 +89631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1592), 38, + ACTIONS(1250), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88767,11 +89670,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19104] = 3, + [20158] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1108), 7, + ACTIONS(1252), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88779,7 +89682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1110), 38, + ACTIONS(1254), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88818,11 +89721,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19158] = 3, + [20212] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1170), 7, + ACTIONS(1256), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88830,7 +89733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1172), 38, + ACTIONS(1258), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88869,11 +89772,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19212] = 3, + [20266] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1450), 7, + ACTIONS(1264), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88881,7 +89784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1452), 38, + ACTIONS(1266), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88920,11 +89823,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19266] = 3, + [20320] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1682), 7, + ACTIONS(1268), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88932,7 +89835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1684), 38, + ACTIONS(1270), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88971,11 +89874,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19320] = 3, + [20374] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1998), 7, + ACTIONS(1272), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88983,7 +89886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2000), 38, + ACTIONS(1274), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89022,11 +89925,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19374] = 3, + [20428] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1544), 7, + ACTIONS(1140), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89034,7 +89937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1546), 38, + ACTIONS(1142), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89073,11 +89976,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19428] = 3, + [20482] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1218), 7, + ACTIONS(1284), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89085,7 +89988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1220), 38, + ACTIONS(1286), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89124,62 +90027,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19482] = 3, + [20536] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2692), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2690), 30, + ACTIONS(1292), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_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, - 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, - [19536] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1294), 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, + [20590] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1564), 7, + ACTIONS(1296), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89187,7 +90090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1566), 38, + ACTIONS(1298), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89226,11 +90129,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19590] = 3, + [20644] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1622), 7, + ACTIONS(1300), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89238,7 +90141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1624), 38, + ACTIONS(1302), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89277,11 +90180,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19644] = 3, + [20698] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1556), 7, + ACTIONS(1304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89289,7 +90192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1558), 38, + ACTIONS(1306), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89328,11 +90231,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19698] = 3, + [20752] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1210), 7, + ACTIONS(1308), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89340,7 +90243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1212), 38, + ACTIONS(1310), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89379,11 +90282,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19752] = 3, + [20806] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1206), 7, + ACTIONS(1312), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89391,7 +90294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1208), 38, + ACTIONS(1314), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89430,11 +90333,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19806] = 3, + [20860] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1128), 7, + ACTIONS(1148), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89442,7 +90345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1130), 38, + ACTIONS(1150), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89481,11 +90384,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19860] = 3, + [20914] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1186), 7, + ACTIONS(1324), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89493,7 +90396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1188), 38, + ACTIONS(1326), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89532,11 +90435,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19914] = 3, + [20968] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1174), 7, + ACTIONS(1328), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89544,7 +90447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1176), 38, + ACTIONS(1330), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89583,11 +90486,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19968] = 3, + [21022] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1994), 7, + ACTIONS(1332), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89595,7 +90498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1996), 38, + ACTIONS(1334), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89634,11 +90537,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20022] = 3, + [21076] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1112), 7, + ACTIONS(1336), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89646,7 +90549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1114), 38, + ACTIONS(1338), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89685,11 +90588,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20076] = 3, + [21130] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1634), 7, + ACTIONS(1152), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89697,7 +90600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1636), 38, + ACTIONS(1154), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89736,11 +90639,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20130] = 3, + [21184] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2696), 15, + ACTIONS(2742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89756,7 +90659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2694), 30, + ACTIONS(2740), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89768,7 +90671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -89787,11 +90690,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20184] = 3, + [21238] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1642), 7, + ACTIONS(1340), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89799,7 +90702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1644), 38, + ACTIONS(1342), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89838,11 +90741,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20238] = 3, + [21292] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1754), 7, + ACTIONS(1156), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89850,7 +90753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1756), 38, + ACTIONS(1158), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89889,11 +90792,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20292] = 3, + [21346] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1498), 7, + ACTIONS(1360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89901,7 +90804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1500), 38, + ACTIONS(1362), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89940,11 +90843,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20346] = 3, + [21400] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1494), 7, + ACTIONS(1364), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89952,7 +90855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1496), 38, + ACTIONS(1366), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89991,11 +90894,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20400] = 3, + [21454] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1958), 7, + ACTIONS(1368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90003,7 +90906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1960), 38, + ACTIONS(1370), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90042,11 +90945,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20454] = 3, + [21508] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1486), 7, + ACTIONS(1372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90054,7 +90957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1488), 38, + ACTIONS(1374), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90093,11 +90996,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20508] = 3, + [21562] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1470), 7, + ACTIONS(1376), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90105,7 +91008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1472), 38, + ACTIONS(1378), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90144,11 +91047,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20562] = 3, + [21616] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1870), 7, + ACTIONS(1160), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90156,7 +91059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1872), 38, + ACTIONS(1162), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90195,64 +91098,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20616] = 5, - ACTIONS(2700), 1, - anon_sym_LPAREN, - STATE(1129), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2702), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2698), 28, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [20674] = 3, + [21670] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1810), 7, + ACTIONS(1176), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90260,7 +91110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1812), 38, + ACTIONS(1178), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90299,62 +91149,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20728] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2706), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2704), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_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, - 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, - [20782] = 3, + [21724] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1930), 7, + ACTIONS(1384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90362,7 +91161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1932), 38, + ACTIONS(1386), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90401,11 +91200,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20836] = 3, + [21778] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1426), 7, + ACTIONS(1388), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90413,7 +91212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1428), 38, + ACTIONS(1390), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90452,11 +91251,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20890] = 3, + [21832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1422), 7, + ACTIONS(1392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90464,7 +91263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1424), 38, + ACTIONS(1394), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90503,11 +91302,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20944] = 3, + [21886] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2014), 7, + ACTIONS(1396), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90515,7 +91314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2016), 38, + ACTIONS(1398), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90554,11 +91353,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20998] = 3, + [21940] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1178), 7, + ACTIONS(1180), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90566,7 +91365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1180), 38, + ACTIONS(1182), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90605,11 +91404,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21052] = 3, + [21994] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1418), 7, + ACTIONS(1400), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90617,7 +91416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1420), 38, + ACTIONS(1402), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90656,11 +91455,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21106] = 3, + [22048] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1742), 7, + ACTIONS(1404), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90668,7 +91467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1744), 38, + ACTIONS(1406), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90707,11 +91506,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21160] = 3, + [22102] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1406), 7, + ACTIONS(1208), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90719,7 +91518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1408), 38, + ACTIONS(1210), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90758,11 +91557,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21214] = 3, + [22156] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1182), 7, + ACTIONS(1408), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90770,7 +91569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1184), 38, + ACTIONS(1410), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90809,11 +91608,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21268] = 3, + [22210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1978), 7, + ACTIONS(1216), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90821,7 +91620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1980), 38, + ACTIONS(1218), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90860,11 +91659,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21322] = 3, + [22264] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1402), 7, + ACTIONS(1412), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90872,7 +91671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1404), 38, + ACTIONS(1414), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90911,11 +91710,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21376] = 3, + [22318] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1894), 7, + ACTIONS(1220), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90923,7 +91722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1896), 38, + ACTIONS(1222), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90962,11 +91761,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21430] = 3, + [22372] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1658), 7, + ACTIONS(1416), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90974,7 +91773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1660), 38, + ACTIONS(1418), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91013,11 +91812,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21484] = 3, + [22426] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1394), 7, + ACTIONS(1420), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91025,7 +91824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1396), 38, + ACTIONS(1422), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91064,11 +91863,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21538] = 3, + [22480] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1874), 7, + ACTIONS(1424), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91076,7 +91875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1876), 38, + ACTIONS(1426), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91115,64 +91914,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21592] = 5, - ACTIONS(2654), 1, - anon_sym_COLON_COLON, - ACTIONS(2708), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2648), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2646), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [21650] = 3, + [22534] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1858), 7, + ACTIONS(1432), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91180,7 +91926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1860), 38, + ACTIONS(1434), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91219,11 +91965,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21704] = 3, + [22588] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1386), 7, + ACTIONS(1440), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91231,7 +91977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1388), 38, + ACTIONS(1442), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91270,11 +92016,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21758] = 3, + [22642] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1378), 7, + ACTIONS(1444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91282,7 +92028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1380), 38, + ACTIONS(1446), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91321,11 +92067,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21812] = 3, + [22696] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1854), 7, + ACTIONS(1224), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91333,7 +92079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1856), 38, + ACTIONS(1226), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91372,11 +92118,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21866] = 3, + [22750] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1374), 7, + ACTIONS(1448), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91384,7 +92130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1376), 38, + ACTIONS(1450), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91423,11 +92169,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21920] = 3, + [22804] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1746), 7, + ACTIONS(1452), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91435,7 +92181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1748), 38, + ACTIONS(1454), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91474,11 +92220,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21974] = 3, + [22858] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1370), 7, + ACTIONS(1456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91486,7 +92232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1372), 38, + ACTIONS(1458), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91525,11 +92271,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22028] = 3, + [22912] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1366), 7, + ACTIONS(1228), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91537,7 +92283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1368), 38, + ACTIONS(1230), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91576,11 +92322,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22082] = 3, + [22966] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1230), 7, + ACTIONS(1460), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91588,7 +92334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1232), 38, + ACTIONS(1462), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91627,11 +92373,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22136] = 3, + [23020] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1358), 7, + ACTIONS(1240), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91639,7 +92385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1360), 38, + ACTIONS(1242), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91678,11 +92424,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22190] = 3, + [23074] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1974), 7, + ACTIONS(1522), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91690,7 +92436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1976), 38, + ACTIONS(1524), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91729,11 +92475,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22244] = 3, + [23128] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1350), 7, + ACTIONS(1244), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91741,7 +92487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1352), 38, + ACTIONS(1246), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91780,11 +92526,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22298] = 3, + [23182] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1234), 7, + ACTIONS(1530), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91792,7 +92538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1236), 38, + ACTIONS(1532), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91831,11 +92577,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22352] = 3, + [23236] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1342), 7, + ACTIONS(1546), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91843,7 +92589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1344), 38, + ACTIONS(1548), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91882,11 +92628,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22406] = 3, + [23290] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1970), 7, + ACTIONS(1276), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91894,7 +92640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1972), 38, + ACTIONS(1278), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91933,11 +92679,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22460] = 3, + [23344] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1298), 7, + ACTIONS(1554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91945,7 +92691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1300), 38, + ACTIONS(1556), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91984,11 +92730,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22514] = 3, + [23398] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1274), 7, + ACTIONS(1280), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91996,7 +92742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1276), 38, + ACTIONS(1282), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92035,11 +92781,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22568] = 3, + [23452] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1270), 7, + ACTIONS(1558), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92047,7 +92793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1272), 38, + ACTIONS(1560), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92086,11 +92832,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22622] = 3, + [23506] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1262), 7, + ACTIONS(1320), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92098,7 +92844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1264), 38, + ACTIONS(1322), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92137,11 +92883,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22676] = 3, + [23560] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1238), 7, + ACTIONS(1562), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92149,7 +92895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1240), 38, + ACTIONS(1564), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92188,11 +92934,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22730] = 3, + [23614] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1250), 7, + ACTIONS(1574), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92200,7 +92946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1252), 38, + ACTIONS(1576), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92239,11 +92985,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22784] = 3, + [23668] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1242), 7, + ACTIONS(1344), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92251,7 +92997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1244), 38, + ACTIONS(1346), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92290,62 +93036,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22838] = 3, + [23722] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1226), 7, + ACTIONS(2746), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2744), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1228), 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, - [22892] = 3, + 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, + [23776] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1846), 7, + ACTIONS(1594), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92353,7 +93099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1848), 38, + ACTIONS(1596), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92392,11 +93138,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22946] = 3, + [23830] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, + ACTIONS(1348), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92404,7 +93150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1256), 38, + ACTIONS(1350), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92443,11 +93189,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23000] = 3, + [23884] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1222), 7, + ACTIONS(1598), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92455,7 +93201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1224), 38, + ACTIONS(1600), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92494,11 +93240,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23054] = 3, + [23938] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1990), 7, + ACTIONS(1606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92506,7 +93252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1992), 38, + ACTIONS(1608), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92545,11 +93291,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23108] = 3, + [23992] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1938), 7, + ACTIONS(1610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92557,7 +93303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1940), 38, + ACTIONS(1612), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92596,62 +93342,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23162] = 3, + [24046] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1116), 7, + ACTIONS(2750), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2748), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1118), 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, - [23216] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_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, + 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, + [24100] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1838), 7, + ACTIONS(1622), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92659,7 +93405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1840), 38, + ACTIONS(1624), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92698,11 +93444,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23270] = 3, + [24154] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1826), 7, + ACTIONS(1626), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92710,7 +93456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1828), 38, + ACTIONS(1628), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92749,11 +93495,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23324] = 3, + [24208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1120), 7, + ACTIONS(1630), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92761,7 +93507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1122), 38, + ACTIONS(1632), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92800,11 +93546,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23378] = 3, + [24262] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1654), 7, + ACTIONS(1634), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92812,7 +93558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1656), 38, + ACTIONS(1636), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92851,11 +93597,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23432] = 3, + [24316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1266), 7, + ACTIONS(1670), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92863,7 +93609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1268), 38, + ACTIONS(1672), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92902,11 +93648,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23486] = 3, + [24370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1922), 7, + ACTIONS(1674), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92914,7 +93660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1924), 38, + ACTIONS(1676), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92953,11 +93699,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23540] = 3, + [24424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1778), 7, + ACTIONS(1678), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92965,7 +93711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1780), 38, + ACTIONS(1680), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93004,11 +93750,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23594] = 3, + [24478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1966), 7, + ACTIONS(1686), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93016,7 +93762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1968), 38, + ACTIONS(1688), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93055,11 +93801,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23648] = 3, + [24532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1124), 7, + ACTIONS(1690), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93067,7 +93813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1126), 38, + ACTIONS(1692), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93106,11 +93852,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23702] = 3, + [24586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1154), 7, + ACTIONS(1352), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93118,7 +93864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1156), 38, + ACTIONS(1354), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93157,11 +93903,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23756] = 3, + [24640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1158), 7, + ACTIONS(1694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93169,7 +93915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1160), 38, + ACTIONS(1696), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93208,7 +93954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23810] = 3, + [24694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -93259,115 +94005,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23864] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1750), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1752), 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, - [23918] = 5, - ACTIONS(2584), 1, - anon_sym_BANG, - ACTIONS(2710), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(564), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(562), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [23976] = 3, + [24748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1710), 7, + ACTIONS(1702), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93375,7 +94017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1712), 38, + ACTIONS(1704), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93414,62 +94056,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24030] = 3, + [24802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(552), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(550), 30, + ACTIONS(1706), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_else, - [24084] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1708), 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, + [24856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1706), 7, + ACTIONS(1710), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93477,7 +94119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1708), 38, + ACTIONS(1712), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93516,11 +94158,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24138] = 3, + [24910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1690), 7, + ACTIONS(1714), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93528,7 +94170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1692), 38, + ACTIONS(1716), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93567,11 +94209,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24192] = 3, + [24964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1638), 7, + ACTIONS(1726), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93579,7 +94221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1640), 38, + ACTIONS(1728), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93618,11 +94260,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24246] = 3, + [25018] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1962), 7, + ACTIONS(1730), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93630,7 +94272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1964), 38, + ACTIONS(1732), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93669,11 +94311,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24300] = 3, + [25072] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1278), 7, + ACTIONS(1380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93681,7 +94323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1280), 38, + ACTIONS(1382), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93720,11 +94362,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24354] = 3, + [25126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1282), 7, + ACTIONS(1734), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93732,7 +94374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1284), 38, + ACTIONS(1736), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93771,11 +94413,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24408] = 3, + [25180] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1576), 7, + ACTIONS(1468), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93783,7 +94425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1578), 38, + ACTIONS(1470), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93822,62 +94464,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24462] = 3, + [25234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(848), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(850), 30, + ACTIONS(1738), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [24516] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1740), 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, + [25288] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, + ACTIONS(1742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93885,7 +94527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1320), 38, + ACTIONS(1744), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93924,11 +94566,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24570] = 3, + [25342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1954), 7, + ACTIONS(1746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93936,7 +94578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1956), 38, + ACTIONS(1748), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93975,11 +94617,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24624] = 3, + [25396] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1190), 7, + ACTIONS(1476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93987,7 +94629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1192), 38, + ACTIONS(1478), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94026,11 +94668,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24678] = 3, + [25450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1442), 7, + ACTIONS(1766), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94038,7 +94680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1444), 38, + ACTIONS(1768), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94077,11 +94719,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24732] = 3, + [25504] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1382), 7, + ACTIONS(1774), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94089,7 +94731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1384), 38, + ACTIONS(1776), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94128,11 +94770,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24786] = 3, + [25558] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1950), 7, + ACTIONS(1778), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94140,7 +94782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1952), 38, + ACTIONS(1780), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94179,115 +94821,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24840] = 4, - ACTIONS(2716), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2714), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2712), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [24896] = 4, - ACTIONS(2722), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2720), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2718), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [24952] = 3, + [25612] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1346), 7, + ACTIONS(1782), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94295,7 +94833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1348), 38, + ACTIONS(1784), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94334,11 +94872,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25006] = 3, + [25666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1194), 7, + ACTIONS(1786), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94346,7 +94884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1196), 38, + ACTIONS(1788), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94385,11 +94923,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25060] = 3, + [25720] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1982), 7, + ACTIONS(1790), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94397,7 +94935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1984), 38, + ACTIONS(1792), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94436,11 +94974,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25114] = 3, + [25774] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1306), 7, + ACTIONS(1794), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94448,7 +94986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1308), 38, + ACTIONS(1796), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94487,11 +95025,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25168] = 3, + [25828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1162), 7, + ACTIONS(1800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94499,7 +95037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1164), 38, + ACTIONS(1802), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94538,11 +95076,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25222] = 3, + [25882] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1198), 7, + ACTIONS(1804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94550,7 +95088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1200), 38, + ACTIONS(1806), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94589,113 +95127,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25276] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2726), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2724), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - 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, - [25330] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2730), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2728), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - 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, - [25384] = 3, + [25936] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1202), 7, + ACTIONS(1808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94703,7 +95139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1204), 38, + ACTIONS(1810), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94742,11 +95178,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25438] = 3, + [25990] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1286), 7, + ACTIONS(1816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94754,7 +95190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1288), 38, + ACTIONS(1818), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94793,11 +95229,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25492] = 3, + [26044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, + ACTIONS(1820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94805,7 +95241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1324), 38, + ACTIONS(1822), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94844,11 +95280,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25546] = 3, + [26098] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1214), 7, + ACTIONS(1480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94856,7 +95292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1216), 38, + ACTIONS(1482), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94895,11 +95331,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25600] = 3, + [26152] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1946), 7, + ACTIONS(1848), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94907,7 +95343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1948), 38, + ACTIONS(1850), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94946,63 +95382,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25654] = 4, - ACTIONS(2736), 1, - anon_sym_DASH_GT, + [26206] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2732), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [25710] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1942), 7, + ACTIONS(1506), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95010,7 +95394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1944), 38, + ACTIONS(1508), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95049,11 +95433,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25764] = 3, + [26260] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1326), 7, + ACTIONS(1876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95061,7 +95445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1328), 38, + ACTIONS(1878), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95100,11 +95484,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25818] = 3, + [26314] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1934), 7, + ACTIONS(1518), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95112,7 +95496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1936), 38, + ACTIONS(1520), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95151,11 +95535,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25872] = 3, + [26368] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(526), 7, + ACTIONS(1884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95163,7 +95547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(528), 38, + ACTIONS(1886), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95202,11 +95586,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25926] = 3, + [26422] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1330), 7, + ACTIONS(1888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95214,7 +95598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1332), 38, + ACTIONS(1890), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95253,11 +95637,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25980] = 3, + [26476] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1926), 7, + ACTIONS(1526), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95265,7 +95649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1928), 38, + ACTIONS(1528), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95304,11 +95688,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26034] = 3, + [26530] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(550), 7, + ACTIONS(1892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95316,7 +95700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(552), 38, + ACTIONS(1894), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95355,11 +95739,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26088] = 3, + [26584] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(536), 7, + ACTIONS(1534), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95367,7 +95751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(538), 38, + ACTIONS(1536), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95406,13 +95790,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26142] = 4, - ACTIONS(2742), 1, - anon_sym_DASH_GT, + [26638] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2740), 15, + ACTIONS(2754), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95428,7 +95810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2738), 29, + ACTIONS(2752), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95440,6 +95822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -95458,11 +95841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26198] = 3, + [26692] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(672), 7, + ACTIONS(1542), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95470,7 +95853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(674), 38, + ACTIONS(1544), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95509,11 +95892,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26252] = 3, + [26746] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1354), 7, + ACTIONS(1566), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95521,7 +95904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1356), 38, + ACTIONS(1568), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95560,11 +95943,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26306] = 3, + [26800] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1902), 7, + ACTIONS(1108), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95572,7 +95955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1904), 38, + ACTIONS(1110), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95611,11 +95994,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26360] = 3, + [26854] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1806), 7, + ACTIONS(1900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95623,7 +96006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1808), 38, + ACTIONS(1902), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95662,63 +96045,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26414] = 4, - ACTIONS(2676), 1, - anon_sym_COLON_COLON, + [26908] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2638), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [26470] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1786), 7, + ACTIONS(1904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95726,7 +96057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1788), 38, + ACTIONS(1906), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95765,11 +96096,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26524] = 3, + [26962] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1890), 7, + ACTIONS(1908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95777,7 +96108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1892), 38, + ACTIONS(1910), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95816,11 +96147,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26578] = 3, + [27016] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1414), 7, + ACTIONS(1578), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95828,7 +96159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1416), 38, + ACTIONS(1580), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95867,11 +96198,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26632] = 3, + [27070] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1774), 7, + ACTIONS(1920), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95879,7 +96210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1776), 38, + ACTIONS(1922), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95918,11 +96249,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26686] = 3, + [27124] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1770), 7, + ACTIONS(1924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95930,7 +96261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1772), 38, + ACTIONS(1926), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95969,11 +96300,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26740] = 3, + [27178] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1458), 7, + ACTIONS(1582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95981,7 +96312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1460), 38, + ACTIONS(1584), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96020,115 +96351,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26794] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2746), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2748), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2744), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [26850] = 4, - ACTIONS(2676), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2628), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2626), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [26906] = 3, + [27232] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2752), 15, + ACTIONS(2758), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96144,7 +96371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2750), 30, + ACTIONS(2756), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96175,113 +96402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26960] = 3, + [27286] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2756), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2754), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - 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, - [27014] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1782), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1784), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27068] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(616), 7, + ACTIONS(1618), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96289,7 +96414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(618), 38, + ACTIONS(1620), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96328,11 +96453,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27122] = 3, + [27340] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1886), 7, + ACTIONS(1638), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96340,7 +96465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1888), 38, + ACTIONS(1640), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96379,115 +96504,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27176] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2616), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2614), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [27230] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2760), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2758), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_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, - 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, - [27284] = 4, - ACTIONS(2766), 1, - anon_sym_DASH_GT, + [27394] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2764), 15, + ACTIONS(2762), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96503,7 +96524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2762), 29, + ACTIONS(2760), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96515,6 +96536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -96533,11 +96555,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27340] = 3, + [27448] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1882), 7, + ACTIONS(1642), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96545,7 +96567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1884), 38, + ACTIONS(1644), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96584,11 +96606,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27394] = 3, + [27502] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1738), 7, + ACTIONS(1646), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96596,7 +96618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1740), 38, + ACTIONS(1648), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96635,11 +96657,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27448] = 3, + [27556] = 4, + ACTIONS(2768), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2766), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2764), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [27612] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1814), 7, + ACTIONS(1950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96647,7 +96721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1816), 38, + ACTIONS(1952), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96686,62 +96760,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27502] = 3, + [27666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1734), 7, + ACTIONS(2772), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2770), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1736), 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, - [27556] = 3, + 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, + [27720] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1730), 7, + ACTIONS(1958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96749,7 +96823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1732), 38, + ACTIONS(1960), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96788,11 +96862,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27610] = 3, + [27774] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1516), 7, + ACTIONS(1962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96800,7 +96874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1518), 38, + ACTIONS(1964), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96839,11 +96913,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27664] = 3, + [27828] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2776), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2774), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_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, + 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, + [27882] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1878), 7, + ACTIONS(1982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96851,7 +96976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1880), 38, + ACTIONS(1984), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96890,11 +97015,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27718] = 3, + [27936] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1446), 7, + ACTIONS(1990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96902,7 +97027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1448), 38, + ACTIONS(1992), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96941,11 +97066,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27772] = 3, + [27990] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 15, + ACTIONS(2780), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96961,7 +97086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2768), 30, + ACTIONS(2778), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96973,7 +97098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -96992,11 +97117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27826] = 3, + [28044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1646), 7, + ACTIONS(1104), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97004,7 +97129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1648), 38, + ACTIONS(1106), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97043,11 +97168,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27880] = 3, + [28098] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1650), 7, + ACTIONS(2782), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2716), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2712), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [28154] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2014), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97055,7 +97232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1652), 38, + ACTIONS(2016), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97094,11 +97271,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27934] = 3, + [28208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1758), 7, + ACTIONS(2010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97106,7 +97283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1760), 38, + ACTIONS(2012), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97145,11 +97322,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27988] = 3, + [28262] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1722), 7, + ACTIONS(1650), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97157,7 +97334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1724), 38, + ACTIONS(1652), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97196,11 +97373,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28042] = 3, + [28316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1454), 7, + ACTIONS(1654), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97208,7 +97385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1456), 38, + ACTIONS(1656), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97247,11 +97424,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28096] = 3, + [28370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1466), 7, + ACTIONS(1658), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97259,7 +97436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1468), 38, + ACTIONS(1660), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97298,62 +97475,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28150] = 3, + [28424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(528), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(526), 30, + ACTIONS(1998), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_else, - [28204] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2000), 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, + [28478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(1994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97361,7 +97538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1844), 38, + ACTIONS(1996), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97400,63 +97577,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28258] = 4, - ACTIONS(2776), 1, - anon_sym_DASH_GT, + [28532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2772), 29, + ACTIONS(1986), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [28314] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1988), 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, + [28586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1718), 7, + ACTIONS(1662), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97464,7 +97640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1720), 38, + ACTIONS(1664), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97503,11 +97679,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28368] = 3, + [28640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1490), 7, + ACTIONS(1978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97515,7 +97691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1492), 38, + ACTIONS(1980), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97554,11 +97730,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28422] = 3, + [28694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1866), 7, + ACTIONS(1682), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97566,7 +97742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1868), 38, + ACTIONS(1684), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97605,11 +97781,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28476] = 3, + [28748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1474), 7, + ACTIONS(1754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97617,7 +97793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1476), 38, + ACTIONS(1756), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97656,11 +97832,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28530] = 3, + [28802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1482), 7, + ACTIONS(1974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97668,7 +97844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1484), 38, + ACTIONS(1976), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97707,113 +97883,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28584] = 3, + [28856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1508), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1510), 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, - [28638] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1512), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1514), 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, - [28692] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1536), 7, + ACTIONS(1758), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97821,7 +97895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1538), 38, + ACTIONS(1760), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97860,11 +97934,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28746] = 3, + [28910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1478), 7, + ACTIONS(1966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97872,7 +97946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1480), 38, + ACTIONS(1968), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97911,62 +97985,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28800] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2780), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2778), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - 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, - [28854] = 3, + [28964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1818), 7, + ACTIONS(1762), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97974,7 +97997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1820), 38, + ACTIONS(1764), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98013,11 +98036,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28908] = 3, + [29018] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1548), 7, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98025,7 +98048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1550), 38, + ACTIONS(1948), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98064,11 +98087,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28962] = 3, + [29072] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1568), 7, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98076,7 +98099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1570), 38, + ACTIONS(1944), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98115,11 +98138,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29016] = 3, + [29126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1582), 7, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98127,7 +98150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1584), 38, + ACTIONS(1940), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98166,11 +98189,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29070] = 3, + [29180] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1598), 7, + ACTIONS(1934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98178,7 +98201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1600), 38, + ACTIONS(1936), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98217,11 +98240,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29124] = 3, + [29234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1338), 7, + ACTIONS(1928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98229,7 +98252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1340), 38, + ACTIONS(1930), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98268,11 +98291,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29178] = 3, + [29288] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(648), 7, + ACTIONS(1896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98280,7 +98303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(650), 38, + ACTIONS(1898), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98319,11 +98342,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29232] = 3, + [29342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(604), 7, + ACTIONS(1880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98331,7 +98354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(606), 38, + ACTIONS(1882), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98370,11 +98393,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29286] = 3, + [29396] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1674), 7, + ACTIONS(1872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98382,7 +98405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1676), 38, + ACTIONS(1874), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98421,114 +98444,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29340] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2784), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2782), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - 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, - [29394] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2786), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2748), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2744), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, [29450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1532), 7, + ACTIONS(1864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98536,7 +98456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1534), 38, + ACTIONS(1866), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98579,7 +98499,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1626), 7, + ACTIONS(1860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98587,7 +98507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1628), 38, + ACTIONS(1862), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98630,7 +98550,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1560), 7, + ACTIONS(1856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98638,7 +98558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1562), 38, + ACTIONS(1858), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98681,7 +98601,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1614), 7, + ACTIONS(1770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98689,7 +98609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1616), 38, + ACTIONS(1772), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98732,7 +98652,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1586), 7, + ACTIONS(1852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98740,7 +98660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1588), 38, + ACTIONS(1854), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98783,7 +98703,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1594), 7, + ACTIONS(1844), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98791,7 +98711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1596), 38, + ACTIONS(1846), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98834,7 +98754,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1830), 7, + ACTIONS(1840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98842,7 +98762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1832), 38, + ACTIONS(1842), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98885,7 +98805,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(1836), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98893,7 +98813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1912), 38, + ACTIONS(1838), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98936,7 +98856,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1914), 7, + ACTIONS(1832), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98944,7 +98864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1916), 38, + ACTIONS(1834), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98987,7 +98907,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99003,7 +98923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 29, + ACTIONS(2784), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99087,7 +99007,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2794), 15, + ACTIONS(2397), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99103,7 +99023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2792), 29, + ACTIONS(2399), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99137,7 +99057,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(614), 15, + ACTIONS(2794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99153,7 +99073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(612), 29, + ACTIONS(2792), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99183,361 +99103,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30148] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(622), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(620), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + [30148] = 4, + ACTIONS(2800), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [30201] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(650), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(648), 29, - anon_sym_SEMI, + ACTIONS(2798), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [30254] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2798), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, ACTIONS(2796), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [30307] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2802), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2800), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [30360] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2806), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2804), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [30413] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2810), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2808), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [30466] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2814), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2812), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [30519] = 3, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30203] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2818), 15, + ACTIONS(642), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99553,7 +99174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2816), 29, + ACTIONS(640), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99583,11 +99204,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30572] = 3, + [30256] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2822), 15, + ACTIONS(2804), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99603,7 +99224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2820), 29, + ACTIONS(2802), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99633,11 +99254,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30625] = 3, + [30309] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(678), 15, + ACTIONS(2808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99653,7 +99274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(676), 29, + ACTIONS(2806), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99683,11 +99304,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30678] = 3, + [30362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2377), 15, + ACTIONS(658), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99703,7 +99324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2379), 29, + ACTIONS(656), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99733,11 +99354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30731] = 3, + [30415] = 4, + ACTIONS(2602), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2826), 15, + ACTIONS(2596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99753,11 +99376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2824), 29, + ACTIONS(2594), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -99783,11 +99405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30784] = 3, + [30470] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 15, + ACTIONS(2812), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99803,7 +99425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2622), 29, + ACTIONS(2810), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99833,11 +99455,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30837] = 3, + [30523] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(654), 15, + ACTIONS(622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99853,7 +99475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(652), 29, + ACTIONS(620), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99883,11 +99505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30890] = 3, + [30576] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2830), 15, + ACTIONS(2816), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99903,7 +99525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2828), 29, + ACTIONS(2814), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99933,11 +99555,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30943] = 3, + [30629] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2834), 15, + ACTIONS(2820), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99953,7 +99575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2832), 29, + ACTIONS(2818), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99983,11 +99605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30996] = 3, + [30682] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(670), 15, + ACTIONS(2716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100003,7 +99625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(668), 29, + ACTIONS(2712), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100033,11 +99655,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31049] = 3, + [30735] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2838), 15, + ACTIONS(2824), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100053,7 +99675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2836), 29, + ACTIONS(2822), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100083,11 +99705,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31102] = 3, + [30788] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2842), 15, + ACTIONS(2828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100103,7 +99725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2840), 29, + ACTIONS(2826), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100133,11 +99755,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31155] = 3, + [30841] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 15, + ACTIONS(2417), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100153,7 +99775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2698), 29, + ACTIONS(2419), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100183,11 +99805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31208] = 3, + [30894] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2846), 15, + ACTIONS(322), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100203,7 +99825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2844), 29, + ACTIONS(320), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100233,11 +99855,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31261] = 3, + [30947] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2850), 15, + ACTIONS(2832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100253,7 +99875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2848), 29, + ACTIONS(2830), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100283,11 +99905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31314] = 3, + [31000] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2411), 15, + ACTIONS(630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100303,7 +99925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2413), 29, + ACTIONS(628), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100333,112 +99955,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31367] = 4, - ACTIONS(2856), 1, - anon_sym_RBRACE, + [31053] = 4, + ACTIONS(2834), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2854), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, + ACTIONS(568), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2852), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31422] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2860), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(566), 28, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2858), 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, - [31475] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [31108] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(602), 15, + ACTIONS(2838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100454,7 +100026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(600), 29, + ACTIONS(2836), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100484,13 +100056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31528] = 4, - ACTIONS(2654), 1, - anon_sym_COLON_COLON, + [31161] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 15, + ACTIONS(2842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100506,10 +100076,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2646), 28, + ACTIONS(2840), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -100535,11 +100106,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31583] = 3, + [31214] = 4, + ACTIONS(2848), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2846), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2844), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31269] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2864), 15, + ACTIONS(626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100555,7 +100177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2862), 29, + ACTIONS(624), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100585,11 +100207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31636] = 3, + [31322] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2868), 15, + ACTIONS(2852), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100605,7 +100227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2866), 29, + ACTIONS(2850), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100635,11 +100257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31689] = 3, + [31375] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2872), 15, + ACTIONS(2373), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100655,7 +100277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2870), 29, + ACTIONS(2375), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100685,11 +100307,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31742] = 3, + [31428] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2854), 1, + sym_identifier, + ACTIONS(2858), 1, + anon_sym_LPAREN, + ACTIONS(2860), 1, + anon_sym_STAR, + ACTIONS(2866), 1, + anon_sym_for, + ACTIONS(2868), 1, + anon_sym_AMP, + ACTIONS(2870), 1, + sym_metavariable, + STATE(1792), 1, + sym_scoped_type_identifier, + STATE(1947), 1, + sym_where_predicate, + STATE(2131), 1, + sym_generic_type, + STATE(2385), 1, + sym_bracketed_type, + STATE(2386), 1, + sym_generic_type_with_turbofish, + STATE(2491), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2856), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(2864), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(2209), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2862), 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, + [31517] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2876), 15, + ACTIONS(2874), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100705,7 +100395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2874), 29, + ACTIONS(2872), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100735,11 +100425,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31795] = 3, + [31570] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2880), 15, + ACTIONS(678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100755,7 +100445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2878), 29, + ACTIONS(676), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100785,11 +100475,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31848] = 3, + [31623] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2884), 15, + ACTIONS(2878), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100805,7 +100495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2882), 29, + ACTIONS(2876), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100835,11 +100525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31901] = 3, + [31676] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2888), 15, + ACTIONS(2882), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100855,7 +100545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2886), 29, + ACTIONS(2880), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100885,11 +100575,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31954] = 3, + [31729] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(638), 15, + ACTIONS(2886), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100905,7 +100595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(636), 29, + ACTIONS(2884), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100935,11 +100625,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32007] = 3, + [31782] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2892), 15, + ACTIONS(2890), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100955,7 +100645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2890), 29, + ACTIONS(2888), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100985,11 +100675,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32060] = 3, + [31835] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(662), 15, + ACTIONS(634), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101005,7 +100695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(660), 29, + ACTIONS(632), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101035,11 +100725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32113] = 3, + [31888] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(606), 15, + ACTIONS(2894), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101055,7 +100745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(604), 29, + ACTIONS(2892), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101085,11 +100775,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32166] = 3, + [31941] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2896), 15, + ACTIONS(2898), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101105,7 +100795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2894), 29, + ACTIONS(2896), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101135,11 +100825,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32219] = 3, + [31994] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2900), 15, + ACTIONS(2902), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101155,7 +100845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2898), 29, + ACTIONS(2900), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101185,11 +100875,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32272] = 3, + [32047] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(618), 15, + ACTIONS(2421), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101205,7 +100895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(616), 29, + ACTIONS(2423), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101235,147 +100925,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32325] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(912), 1, - anon_sym_COLON_COLON, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - sym_identifier, - ACTIONS(2906), 1, - anon_sym_LPAREN, - ACTIONS(2908), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_for, - ACTIONS(2916), 1, - anon_sym_AMP, - ACTIONS(2918), 1, - sym_metavariable, - STATE(1869), 1, - sym_scoped_type_identifier, - STATE(1948), 1, - sym_generic_type, - STATE(2067), 1, - sym_where_predicate, - STATE(2386), 1, - sym_bracketed_type, - STATE(2387), 1, - sym_generic_type_with_turbofish, - STATE(2552), 1, - sym_scoped_identifier, + [32100] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2904), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2912), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(918), 3, - sym_self, - sym_super, - sym_crate, - STATE(2266), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2910), 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, - [32414] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(912), 1, - anon_sym_COLON_COLON, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - sym_identifier, - ACTIONS(2906), 1, - anon_sym_LPAREN, - ACTIONS(2908), 1, + ACTIONS(2906), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_for, - ACTIONS(2916), 1, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2918), 1, - sym_metavariable, - STATE(1869), 1, - sym_scoped_type_identifier, - STATE(1948), 1, - sym_generic_type, - STATE(2067), 1, - sym_where_predicate, - STATE(2386), 1, - sym_bracketed_type, - STATE(2387), 1, - sym_generic_type_with_turbofish, - STATE(2552), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2912), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(2920), 2, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2904), 29, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(918), 3, - sym_self, - sym_super, - sym_crate, - STATE(2266), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2910), 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, - [32503] = 3, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [32153] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2924), 15, + ACTIONS(2910), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101391,7 +100995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2922), 29, + ACTIONS(2908), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101421,11 +101025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32556] = 3, + [32206] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(642), 15, + ACTIONS(2914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101441,7 +101045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(640), 29, + ACTIONS(2912), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101471,11 +101075,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32609] = 3, + [32259] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2928), 15, + ACTIONS(2918), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101491,7 +101095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2926), 29, + ACTIONS(2916), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101521,11 +101125,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32662] = 3, + [32312] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2932), 15, + ACTIONS(2922), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101541,7 +101145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2930), 29, + ACTIONS(2920), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101571,11 +101175,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32715] = 3, + [32365] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2936), 15, + ACTIONS(592), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101591,7 +101195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2934), 29, + ACTIONS(590), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101621,11 +101225,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32768] = 3, + [32418] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2854), 1, + sym_identifier, + ACTIONS(2858), 1, + anon_sym_LPAREN, + ACTIONS(2860), 1, + anon_sym_STAR, + ACTIONS(2866), 1, + anon_sym_for, + ACTIONS(2868), 1, + anon_sym_AMP, + ACTIONS(2870), 1, + sym_metavariable, + STATE(1792), 1, + sym_scoped_type_identifier, + STATE(1947), 1, + sym_where_predicate, + STATE(2131), 1, + sym_generic_type, + STATE(2385), 1, + sym_bracketed_type, + STATE(2386), 1, + sym_generic_type_with_turbofish, + STATE(2491), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(634), 15, + ACTIONS(2864), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2924), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(2209), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2862), 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, + [32507] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(588), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101641,7 +101313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(632), 29, + ACTIONS(586), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101671,11 +101343,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32821] = 3, + [32560] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2940), 15, + ACTIONS(2928), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2926), 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, + [32613] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101691,7 +101413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2938), 29, + ACTIONS(2644), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101721,11 +101443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32874] = 3, + [32666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2944), 15, + ACTIONS(2932), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101741,7 +101463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2942), 29, + ACTIONS(2930), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101771,11 +101493,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32927] = 3, + [32719] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 15, + ACTIONS(2936), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101791,7 +101513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2626), 29, + ACTIONS(2934), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101821,61 +101543,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32980] = 3, + [32772] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2948), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2940), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(2946), 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, - [33033] = 3, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2938), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [32825] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2952), 15, + ACTIONS(2944), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101891,7 +101613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2950), 29, + ACTIONS(2942), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101921,11 +101643,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33086] = 3, + [32878] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2956), 15, + ACTIONS(2948), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101941,7 +101663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2954), 29, + ACTIONS(2946), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101971,11 +101693,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33139] = 3, + [32931] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2960), 15, + ACTIONS(2952), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101991,7 +101713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2958), 29, + ACTIONS(2950), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102021,11 +101743,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33192] = 3, + [32984] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(630), 15, + ACTIONS(2956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102041,7 +101763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(628), 29, + ACTIONS(2954), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102071,13 +101793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33245] = 4, - ACTIONS(2962), 1, - anon_sym_COLON_COLON, + [33037] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(564), 15, + ACTIONS(596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102093,10 +101813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(562), 28, + ACTIONS(594), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -102122,11 +101843,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33300] = 3, + [33090] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 15, + ACTIONS(2960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102142,7 +101863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2964), 29, + ACTIONS(2958), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102172,11 +101893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33353] = 3, + [33143] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102192,7 +101913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 29, + ACTIONS(598), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102222,11 +101943,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33406] = 3, + [33196] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2970), 15, + ACTIONS(2964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102242,7 +101963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2968), 29, + ACTIONS(2962), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102272,11 +101993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33459] = 3, + [33249] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(646), 15, + ACTIONS(584), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102292,7 +102013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(644), 29, + ACTIONS(582), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102322,11 +102043,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33512] = 3, + [33302] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2974), 15, + ACTIONS(2956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102342,7 +102063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2972), 29, + ACTIONS(2954), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102372,11 +102093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33565] = 3, + [33355] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 15, + ACTIONS(2968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102392,7 +102113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2976), 29, + ACTIONS(2966), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102422,11 +102143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33618] = 3, + [33408] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2982), 15, + ACTIONS(638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102442,7 +102163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2980), 29, + ACTIONS(636), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102472,11 +102193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33671] = 3, + [33461] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2986), 15, + ACTIONS(2610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102492,7 +102213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2984), 29, + ACTIONS(2608), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102522,11 +102243,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33724] = 3, + [33514] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2990), 15, + ACTIONS(2972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102542,7 +102263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2988), 29, + ACTIONS(2970), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102572,11 +102293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33777] = 3, + [33567] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2994), 15, + ACTIONS(670), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102592,7 +102313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2992), 29, + ACTIONS(668), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102622,11 +102343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33830] = 3, + [33620] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2369), 15, + ACTIONS(2976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102642,7 +102363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2371), 29, + ACTIONS(2974), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102672,11 +102393,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33883] = 3, + [33673] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2998), 15, + ACTIONS(2980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102692,7 +102413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2996), 29, + ACTIONS(2978), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102722,11 +102443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33936] = 3, + [33726] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3002), 15, + ACTIONS(666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102742,7 +102463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3000), 29, + ACTIONS(664), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102772,11 +102493,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33989] = 3, + [33779] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3006), 15, + ACTIONS(2984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102792,7 +102513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3004), 29, + ACTIONS(2982), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102822,11 +102543,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34042] = 3, + [33832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3010), 15, + ACTIONS(2988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102842,7 +102563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3008), 29, + ACTIONS(2986), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102872,11 +102593,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34095] = 3, + [33885] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3014), 15, + ACTIONS(650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102892,7 +102613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3012), 29, + ACTIONS(648), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102922,11 +102643,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34148] = 3, + [33938] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2992), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2990), 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, + [33991] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3014), 15, + ACTIONS(2650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102942,7 +102713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3012), 29, + ACTIONS(2648), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102972,11 +102743,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34201] = 3, + [34044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(580), 15, + ACTIONS(576), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102992,7 +102763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(578), 29, + ACTIONS(574), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103022,11 +102793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34254] = 3, + [34097] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2748), 15, + ACTIONS(646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103042,7 +102813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2744), 29, + ACTIONS(644), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103072,11 +102843,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34307] = 3, + [34150] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(674), 15, + ACTIONS(662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103092,7 +102863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(672), 29, + ACTIONS(660), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103122,11 +102893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34360] = 3, + [34203] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 15, + ACTIONS(2672), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103142,7 +102913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3016), 29, + ACTIONS(2668), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103172,11 +102943,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34413] = 3, + [34256] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(610), 15, + ACTIONS(674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103192,7 +102963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(608), 29, + ACTIONS(672), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103222,11 +102993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34466] = 3, + [34309] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3022), 15, + ACTIONS(2996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103242,7 +103013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3020), 29, + ACTIONS(2994), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103272,11 +103043,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34519] = 3, + [34362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(658), 15, + ACTIONS(3000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103292,7 +103063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(656), 29, + ACTIONS(2998), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103322,11 +103093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34572] = 3, + [34415] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(572), 15, + ACTIONS(3004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103342,7 +103113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(570), 29, + ACTIONS(3002), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103372,11 +103143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34625] = 3, + [34468] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3026), 15, + ACTIONS(3008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103392,7 +103163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3024), 29, + ACTIONS(3006), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103422,11 +103193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34678] = 3, + [34521] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2385), 15, + ACTIONS(3012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103442,7 +103213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2387), 29, + ACTIONS(3010), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103472,63 +103243,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34731] = 5, - ACTIONS(3028), 1, - anon_sym_POUND, + [34574] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1147), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2521), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3016), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(2519), 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, - [34788] = 3, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3014), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [34627] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(666), 15, + ACTIONS(3020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103544,7 +103313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(664), 29, + ACTIONS(3018), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103574,28 +103343,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34841] = 4, - ACTIONS(3035), 1, - anon_sym_RBRACE, + [34680] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3033), 14, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(3024), 12, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_POUND, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3031), 29, + ACTIONS(3022), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103613,23 +103378,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [34896] = 3, + [34733] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(626), 15, + ACTIONS(3028), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103645,7 +103413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(624), 29, + ACTIONS(3026), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103675,11 +103443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34949] = 3, + [34786] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3039), 12, + ACTIONS(3032), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -103692,7 +103460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3037), 32, + ACTIONS(3030), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103725,11 +103493,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35002] = 3, + [34839] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3043), 12, + ACTIONS(3036), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -103742,7 +103510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3041), 32, + ACTIONS(3034), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103775,11 +103543,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35055] = 3, + [34892] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(316), 15, + ACTIONS(3040), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103795,7 +103563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(314), 29, + ACTIONS(3038), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103825,11 +103593,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35108] = 3, + [34945] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3047), 12, + ACTIONS(3044), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3042), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [34998] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3048), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3046), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [35051] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3052), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -103842,7 +103710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3045), 32, + ACTIONS(3050), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103875,24 +103743,26 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35161] = 3, + [35104] = 5, + ACTIONS(3054), 1, + anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 12, - anon_sym_SEMI, + STATE(1153), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2475), 9, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, - anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3049), 32, + ACTIONS(2473), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103916,20 +103786,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_for, anon_sym_impl, + anon_sym_pub, anon_sym_union, anon_sym_unsafe, - anon_sym_where, anon_sym_extern, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [35214] = 3, + [35161] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 15, + ACTIONS(654), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103945,7 +103815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3053), 29, + ACTIONS(652), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103975,11 +103845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35267] = 3, + [35214] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3059), 15, + ACTIONS(572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103995,7 +103865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3057), 29, + ACTIONS(570), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104025,57 +103895,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35320] = 15, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_EQ, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3077), 1, - anon_sym_DOT_DOT, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3087), 1, - anon_sym_DOT, + [35267] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(560), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3061), 21, + anon_sym_DOT, + ACTIONS(558), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + 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, @@ -104086,41 +103945,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35396] = 17, - ACTIONS(3063), 1, + [35320] = 17, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3077), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3091), 1, - anon_sym_EQ, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -104129,7 +103988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 19, + ACTIONS(3057), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104149,162 +104008,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35476] = 7, - ACTIONS(3063), 1, + [35400] = 12, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT_DOT, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3075), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3099), 13, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3069), 1, anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3097), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [35536] = 20, - ACTIONS(3063), 1, - anon_sym_LBRACK, ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3079), 1, - anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3107), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3101), 7, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3109), 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, - [35622] = 7, - ACTIONS(2642), 1, - anon_sym_LBRACE, - ACTIONS(2644), 1, - anon_sym_COLON_COLON, - ACTIONS(3111), 1, - anon_sym_BANG, - STATE(1145), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(564), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3091), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(562), 24, + ACTIONS(3089), 25, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -104321,41 +104066,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35682] = 17, - ACTIONS(3063), 1, + [35470] = 17, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3077), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3115), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -104364,7 +104109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3113), 19, + ACTIONS(3093), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104384,39 +104129,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35762] = 12, - ACTIONS(3063), 1, + [35550] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2798), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3073), 1, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3081), 1, - anon_sym_CARET, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2796), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35602] = 7, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_DOT_DOT, ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3075), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3067), 3, + ACTIONS(3099), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3069), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(3061), 25, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3097), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104442,59 +104231,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35832] = 17, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3077), 1, - anon_sym_DOT_DOT, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3119), 1, - anon_sym_EQ, + [35662] = 7, + ACTIONS(2604), 1, + anon_sym_LBRACE, + ACTIONS(2606), 1, + anon_sym_COLON_COLON, + ACTIONS(3101), 1, + anon_sym_BANG, + STATE(1108), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(568), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3117), 19, + anon_sym_DOT, + ACTIONS(566), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COMMA, + 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, @@ -104505,11 +104284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35912] = 3, + [35722] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3033), 14, + ACTIONS(2846), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -104524,7 +104303,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3031), 29, + ACTIONS(2844), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104554,38 +104333,99 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35964] = 11, - ACTIONS(3063), 1, + [35774] = 17, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3077), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, + ACTIONS(3105), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3075), 2, + ACTIONS(3067), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, + ACTIONS(3063), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3103), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [35854] = 9, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, + anon_sym_DOT_DOT, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3061), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3069), 5, + ACTIONS(3091), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3061), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3089), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104611,20 +104451,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36032] = 7, - ACTIONS(3063), 1, + [35918] = 7, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3075), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3123), 13, + ACTIONS(3109), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104638,7 +104478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3121), 25, + ACTIONS(3107), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104664,62 +104504,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36092] = 20, - ACTIONS(3063), 1, + [35978] = 8, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3077), 1, anon_sym_DOT_DOT, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3107), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3125), 7, + ACTIONS(3091), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3089), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3109), 10, + 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, @@ -104730,39 +104558,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36178] = 16, - ACTIONS(3063), 1, + [36040] = 17, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3069), 1, - anon_sym_EQ, - ACTIONS(3073), 1, anon_sym_AMP, - ACTIONS(3077), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -104771,7 +104601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3061), 20, + ACTIONS(282), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104781,7 +104611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104792,74 +104621,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36256] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2854), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2852), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36308] = 8, - ACTIONS(3063), 1, + [36120] = 7, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3075), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3069), 10, + ACTIONS(3091), 13, anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104869,7 +104646,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3061), 25, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3089), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104895,34 +104674,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36370] = 7, - ACTIONS(3063), 1, + [36180] = 17, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3069), 1, + anon_sym_AMP, + ACTIONS(3073), 1, anon_sym_DOT_DOT, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, + ACTIONS(3113), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3075), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3069), 13, + ACTIONS(3061), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3071), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3063), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3061), 25, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3111), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104932,12 +104727,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - 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, @@ -104948,12 +104737,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36430] = 17, - ACTIONS(3063), 1, + [36260] = 13, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3077), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, ACTIONS(3079), 1, anon_sym_PIPE, @@ -104961,37 +104750,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3129), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3075), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3127), 19, + ACTIONS(3091), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3089), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105001,6 +104780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + 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, @@ -105011,49 +104796,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36510] = 7, - ACTIONS(3063), 1, + [36332] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3069), 1, + anon_sym_AMP, + ACTIONS(3073), 1, anon_sym_DOT_DOT, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3075), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3133), 13, + ACTIONS(3061), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3071), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3063), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3131), 25, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3115), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, - 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(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105064,37 +104862,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36570] = 10, - ACTIONS(3063), 1, + [36418] = 10, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3075), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3069), 6, + ACTIONS(3091), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3061), 25, + ACTIONS(3089), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105120,41 +104918,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36636] = 17, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(3063), 1, + [36484] = 17, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3077), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, + ACTIONS(3127), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -105163,7 +104961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 19, + ACTIONS(3125), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105183,40 +104981,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36716] = 13, - ACTIONS(3063), 1, + [36564] = 16, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3077), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, + ACTIONS(3091), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3075), 2, + ACTIONS(3067), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3069), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3061), 25, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3089), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105226,12 +105032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - 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, @@ -105242,36 +105043,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36788] = 9, - ACTIONS(3063), 1, + [36642] = 7, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3075), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3131), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3069), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3061), 25, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3129), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105297,12 +105096,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36852] = 17, - ACTIONS(3063), 1, + [36702] = 15, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3077), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, ACTIONS(3079), 1, anon_sym_PIPE, @@ -105310,28 +105109,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3137), 1, + ACTIONS(3091), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -105340,7 +105135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3135), 19, + ACTIONS(3089), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105350,6 +105145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105360,130 +105157,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36932] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(912), 1, - anon_sym_COLON_COLON, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - sym_identifier, - ACTIONS(2906), 1, - anon_sym_LPAREN, - ACTIONS(2908), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_for, - ACTIONS(2916), 1, + [36778] = 20, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(2918), 1, - sym_metavariable, - STATE(1869), 1, - sym_scoped_type_identifier, - STATE(1948), 1, - sym_generic_type, - STATE(2067), 1, - sym_where_predicate, - STATE(2386), 1, - sym_bracketed_type, - STATE(2387), 1, - sym_generic_type_with_turbofish, - STATE(2552), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2912), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(918), 3, - sym_self, - sym_super, - sym_crate, - STATE(2266), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2910), 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, - [37017] = 3, + ACTIONS(3073), 1, + anon_sym_DOT_DOT, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3061), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + anon_sym_DASH, + ACTIONS(3067), 2, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2990), 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_extern, - anon_sym_dyn, - sym_mutable_specifier, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37068] = 6, - ACTIONS(2652), 1, + anon_sym_GT, + ACTIONS(3071), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3063), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3133), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3123), 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, + [36864] = 11, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, + anon_sym_AMP, + ACTIONS(3073), 1, + anon_sym_DOT_DOT, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3061), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3071), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3063), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3091), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3089), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [36932] = 6, + ACTIONS(2600), 1, anon_sym_BANG, - ACTIONS(2654), 1, + ACTIONS(2602), 1, anon_sym_COLON_COLON, - ACTIONS(3139), 1, + ACTIONS(3135), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 16, + ACTIONS(2596), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_as, @@ -105500,7 +105307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2646), 23, + ACTIONS(2594), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -105524,22 +105331,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37125] = 3, + [36989] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1338), 10, + ACTIONS(2970), 10, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SQUOTE, - anon_sym_POUND, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(1340), 32, + ACTIONS(2972), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105563,63 +105370,128 @@ static const uint16_t ts_small_parse_table[] = { 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_mutable_specifier, sym_identifier, sym_self, sym_super, sym_crate, - [37176] = 21, + [37040] = 20, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2854), 1, + sym_identifier, + ACTIONS(2858), 1, + anon_sym_LPAREN, + ACTIONS(2860), 1, + anon_sym_STAR, + ACTIONS(2866), 1, + anon_sym_for, + ACTIONS(2868), 1, + anon_sym_AMP, + ACTIONS(2870), 1, + sym_metavariable, + STATE(1792), 1, + sym_scoped_type_identifier, + STATE(1818), 1, + sym_where_predicate, + STATE(2131), 1, + sym_generic_type, + STATE(2385), 1, + sym_bracketed_type, + STATE(2386), 1, + sym_generic_type_with_turbofish, + STATE(2491), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2864), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(2209), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2862), 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, + [37125] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(912), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(2918), 1, - sym_metavariable, - ACTIONS(3141), 1, + ACTIONS(3137), 1, sym_identifier, - ACTIONS(3143), 1, + ACTIONS(3141), 1, anon_sym_default, - STATE(1216), 1, - sym_for_lifetimes, - STATE(1359), 1, + ACTIONS(3143), 1, + sym_metavariable, + STATE(789), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(817), 1, sym_generic_type, - STATE(1419), 1, + STATE(1106), 1, sym_function_type, - STATE(2386), 1, - sym_bracketed_type, - STATE(2387), 1, - sym_generic_type_with_turbofish, - STATE(2427), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2391), 1, sym_function_modifiers, - STATE(2552), 1, + STATE(2416), 1, sym_scoped_identifier, + STATE(2494), 1, + sym_bracketed_type, + STATE(2495), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - ACTIONS(2912), 18, + ACTIONS(3139), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105638,54 +105510,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37263] = 21, + [37212] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(912), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(2918), 1, - sym_metavariable, - ACTIONS(3143), 1, + ACTIONS(3141), 1, anon_sym_default, + ACTIONS(3143), 1, + sym_metavariable, ACTIONS(3145), 1, sym_identifier, - STATE(1216), 1, - sym_for_lifetimes, - STATE(1361), 1, + STATE(784), 1, sym_scoped_type_identifier, - STATE(1387), 1, + STATE(815), 1, sym_generic_type, - STATE(1408), 1, + STATE(1122), 1, sym_function_type, - STATE(2386), 1, - sym_bracketed_type, - STATE(2387), 1, - sym_generic_type_with_turbofish, - STATE(2427), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2391), 1, sym_function_modifiers, - STATE(2552), 1, + STATE(2416), 1, sym_scoped_identifier, + STATE(2494), 1, + sym_bracketed_type, + STATE(2495), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(918), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - ACTIONS(2912), 18, + ACTIONS(3139), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105704,49 +105576,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37350] = 17, + [37299] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(888), 1, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(916), 1, anon_sym_COLON_COLON, + ACTIONS(2870), 1, + sym_metavariable, ACTIONS(3147), 1, sym_identifier, ACTIONS(3149), 1, - anon_sym_RPAREN, - ACTIONS(3153), 1, - anon_sym_COMMA, - ACTIONS(3157), 1, - sym_metavariable, - STATE(1696), 1, - sym_scoped_identifier, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, + anon_sym_default, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1363), 1, + sym_scoped_type_identifier, + STATE(1403), 1, + sym_generic_type, + STATE(1406), 1, + sym_function_type, + STATE(2385), 1, sym_bracketed_type, + STATE(2386), 1, + sym_generic_type_with_turbofish, + STATE(2491), 1, + sym_scoped_identifier, + STATE(2577), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1130), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2148), 2, - sym_meta_item, - sym__literal, - ACTIONS(3155), 3, + STATE(1593), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3151), 19, + ACTIONS(2864), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105764,56 +105641,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, anon_sym_union, - [37429] = 20, + [37386] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(912), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, + ACTIONS(2854), 1, sym_identifier, - ACTIONS(2906), 1, + ACTIONS(2858), 1, anon_sym_LPAREN, - ACTIONS(2908), 1, + ACTIONS(2860), 1, anon_sym_STAR, - ACTIONS(2914), 1, + ACTIONS(2866), 1, anon_sym_for, - ACTIONS(2916), 1, + ACTIONS(2868), 1, anon_sym_AMP, - ACTIONS(2918), 1, + ACTIONS(2870), 1, sym_metavariable, - STATE(1869), 1, + STATE(1792), 1, sym_scoped_type_identifier, - STATE(1872), 1, + STATE(1947), 1, sym_where_predicate, - STATE(1948), 1, + STATE(2131), 1, sym_generic_type, - STATE(2386), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2387), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2552), 1, + STATE(2491), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2912), 2, + ACTIONS(2864), 2, anon_sym_default, anon_sym_union, - ACTIONS(918), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(2266), 5, + STATE(2209), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2910), 17, + ACTIONS(2862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105831,54 +105707,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37514] = 21, + [37471] = 17, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2497), 1, - anon_sym_fn, - ACTIONS(2505), 1, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3159), 1, + ACTIONS(3151), 1, sym_identifier, - ACTIONS(3163), 1, - anon_sym_default, - ACTIONS(3165), 1, + ACTIONS(3153), 1, + anon_sym_RPAREN, + ACTIONS(3157), 1, + anon_sym_COMMA, + ACTIONS(3161), 1, sym_metavariable, - STATE(785), 1, - sym_scoped_type_identifier, - STATE(993), 1, - sym_generic_type, - STATE(1121), 1, - sym_function_type, - STATE(1213), 1, - sym_for_lifetimes, - STATE(2392), 1, - sym_function_modifiers, - STATE(2417), 1, + STATE(1730), 1, sym_scoped_identifier, - STATE(2495), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2405), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2513), 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1096), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1984), 2, + sym_meta_item, + sym__literal, + ACTIONS(3159), 3, sym_self, sym_super, sym_crate, - ACTIONS(3161), 18, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3155), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105896,55 +105767,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_default, anon_sym_union, - [37601] = 21, + [37550] = 21, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2497), 1, - anon_sym_fn, - ACTIONS(2505), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(3163), 1, - anon_sym_default, - ACTIONS(3165), 1, + ACTIONS(2870), 1, sym_metavariable, - ACTIONS(3167), 1, + ACTIONS(3149), 1, + anon_sym_default, + ACTIONS(3163), 1, sym_identifier, - STATE(783), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1360), 1, sym_scoped_type_identifier, - STATE(1001), 1, + STATE(1393), 1, sym_generic_type, - STATE(1113), 1, + STATE(1422), 1, sym_function_type, - STATE(1213), 1, - sym_for_lifetimes, - STATE(2392), 1, - sym_function_modifiers, - STATE(2417), 1, - sym_scoped_identifier, - STATE(2495), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, + STATE(2491), 1, + sym_scoped_identifier, + STATE(2577), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, + STATE(1593), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2513), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - ACTIONS(3161), 18, + ACTIONS(2864), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105963,17 +105835,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37688] = 6, - ACTIONS(2584), 1, + [37637] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1260), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(1262), 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, + [37688] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(732), 1, + anon_sym_DASH, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(888), 1, + anon_sym_COLON_COLON, + ACTIONS(3165), 1, + sym_identifier, + ACTIONS(3171), 1, + sym_metavariable, + STATE(1437), 1, + sym_scoped_identifier, + STATE(1468), 1, + sym__literal_pattern, + STATE(2377), 1, + sym_bracketed_type, + STATE(2405), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(738), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3169), 3, + sym_self, + sym_super, + sym_crate, + STATE(1410), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(734), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3167), 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, + [37764] = 6, + ACTIONS(2580), 1, anon_sym_BANG, - ACTIONS(3169), 1, + ACTIONS(3173), 1, anon_sym_COLON_COLON, - STATE(1145), 1, + STATE(1108), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(564), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105989,7 +105969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(562), 23, + ACTIONS(566), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106013,38 +105993,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37744] = 16, + [37820] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3147), 1, + ACTIONS(3151), 1, sym_identifier, - ACTIONS(3157), 1, + ACTIONS(3161), 1, sym_metavariable, - ACTIONS(3171), 1, + ACTIONS(3175), 1, anon_sym_RPAREN, - STATE(1696), 1, + STATE(1730), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, + STATE(2378), 1, sym_bracketed_type, + STATE(2405), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1130), 2, + STATE(1096), 2, sym_string_literal, sym_boolean_literal, - STATE(2211), 2, + STATE(2213), 2, sym_meta_item, sym__literal, - ACTIONS(3155), 3, + ACTIONS(3159), 3, sym_self, sym_super, sym_crate, @@ -106053,7 +106033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3151), 19, + ACTIONS(3155), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106073,38 +106053,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37820] = 16, + [37896] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3147), 1, + ACTIONS(3151), 1, sym_identifier, - ACTIONS(3157), 1, + ACTIONS(3161), 1, sym_metavariable, - ACTIONS(3173), 1, + ACTIONS(3177), 1, anon_sym_RPAREN, - STATE(1696), 1, + STATE(1730), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, + STATE(2378), 1, sym_bracketed_type, + STATE(2405), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1130), 2, + STATE(1096), 2, sym_string_literal, sym_boolean_literal, - STATE(2211), 2, + STATE(2213), 2, sym_meta_item, sym__literal, - ACTIONS(3155), 3, + ACTIONS(3159), 3, sym_self, sym_super, sym_crate, @@ -106113,7 +106093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3151), 19, + ACTIONS(3155), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106133,15 +106113,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37896] = 5, - ACTIONS(2710), 1, + [37972] = 5, + ACTIONS(2696), 1, anon_sym_COLON_COLON, - ACTIONS(3111), 1, + ACTIONS(3101), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(564), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106157,7 +106137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(562), 24, + ACTIONS(566), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -106182,66 +106162,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37950] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(732), 1, - anon_sym_DASH, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(888), 1, - anon_sym_COLON_COLON, - ACTIONS(3175), 1, - sym_identifier, - ACTIONS(3181), 1, - sym_metavariable, - STATE(1442), 1, - sym_scoped_identifier, - STATE(1469), 1, - sym__literal_pattern, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2378), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(738), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3179), 3, - sym_self, - sym_super, - sym_crate, - STATE(1428), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(734), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3177), 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, [38026] = 16, ACTIONS(77), 1, anon_sym_LT, @@ -106251,29 +106171,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3183), 1, + ACTIONS(3179), 1, sym_identifier, - ACTIONS(3189), 1, + ACTIONS(3185), 1, sym_metavariable, - STATE(1443), 1, + STATE(1457), 1, sym_scoped_identifier, - STATE(1478), 1, + STATE(1466), 1, sym__literal_pattern, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2378), 1, + STATE(2377), 1, sym_bracketed_type, + STATE(2405), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(738), 2, anon_sym_true, anon_sym_false, - ACTIONS(3187), 3, + ACTIONS(3183), 3, sym_self, sym_super, sym_crate, - STATE(1428), 3, + STATE(1410), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, @@ -106282,7 +106202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3185), 19, + ACTIONS(3181), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106302,60 +106222,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [38102] = 4, - ACTIONS(3195), 1, + [38102] = 5, + ACTIONS(2580), 1, + anon_sym_BANG, + ACTIONS(3187), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3193), 8, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(568), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(3191), 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, - [38153] = 4, - ACTIONS(3197), 1, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(566), 23, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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, + [38155] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3193), 8, + ACTIONS(3191), 9, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -106364,7 +106284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3191), 31, + ACTIONS(3189), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106396,42 +106316,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38204] = 3, + [38204] = 23, + ACTIONS(368), 1, + anon_sym_RBRACK, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, + anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3193), 1, + anon_sym_SEMI, + ACTIONS(3195), 1, + anon_sym_COMMA, + ACTIONS(3199), 1, + anon_sym_DOT_DOT, + STATE(1979), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 16, + ACTIONS(3061), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2636), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3063), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106442,36 +106382,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38253] = 15, + [38293] = 15, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3147), 1, + ACTIONS(3151), 1, sym_identifier, - ACTIONS(3157), 1, + ACTIONS(3161), 1, sym_metavariable, - STATE(1696), 1, + STATE(1730), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, + STATE(2378), 1, sym_bracketed_type, + STATE(2405), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1130), 2, + STATE(1096), 2, sym_string_literal, sym_boolean_literal, - STATE(2211), 2, + STATE(2213), 2, sym_meta_item, sym__literal, - ACTIONS(3155), 3, + ACTIONS(3159), 3, sym_self, sym_super, sym_crate, @@ -106480,7 +106420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3151), 19, + ACTIONS(3155), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106500,21 +106440,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [38326] = 3, + [38366] = 4, + ACTIONS(3205), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3201), 9, + ACTIONS(3203), 8, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, anon_sym_LT, - anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3199), 31, + ACTIONS(3201), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106546,11 +106487,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38375] = 3, + [38417] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 9, + ACTIONS(3209), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -106560,7 +106501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3203), 31, + ACTIONS(3207), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106592,17 +106533,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38424] = 5, - ACTIONS(2584), 1, - anon_sym_BANG, - ACTIONS(3207), 1, - anon_sym_COLON_COLON, + [38466] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(564), 15, + ACTIONS(2624), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106616,12 +106554,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(562), 23, + ACTIONS(2626), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106640,62 +106579,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38477] = 23, - ACTIONS(374), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3107), 1, - anon_sym_EQ, - ACTIONS(3209), 1, - anon_sym_SEMI, - ACTIONS(3211), 1, - anon_sym_COMMA, - ACTIONS(3215), 1, - anon_sym_DOT_DOT, - STATE(2113), 1, - aux_sym_array_expression_repeat1, + [38515] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(2616), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + anon_sym_DOT, + ACTIONS(2618), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + 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(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106706,44 +106625,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38566] = 5, - ACTIONS(2708), 1, - anon_sym_BANG, - ACTIONS(3217), 1, - anon_sym_COLON_COLON, + [38564] = 23, + ACTIONS(552), 1, + anon_sym_RBRACK, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, + anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3199), 1, + anon_sym_DOT_DOT, + ACTIONS(3211), 1, + anon_sym_SEMI, + ACTIONS(3213), 1, + anon_sym_COMMA, + STATE(2015), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 15, + ACTIONS(3061), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2646), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3063), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106754,11 +106691,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38619] = 3, + [38653] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3043), 9, + ACTIONS(3032), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -106768,7 +106705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3041), 31, + ACTIONS(3030), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106800,11 +106737,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38668] = 3, + [38702] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2948), 9, + ACTIONS(2992), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -106814,7 +106751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2946), 31, + ACTIONS(2990), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106846,80 +106783,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38717] = 23, - ACTIONS(540), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3107), 1, - anon_sym_EQ, + [38751] = 5, + ACTIONS(2704), 1, + anon_sym_BANG, ACTIONS(3215), 1, - anon_sym_DOT_DOT, - ACTIONS(3219), 1, - anon_sym_SEMI, - ACTIONS(3221), 1, - anon_sym_COMMA, - STATE(1906), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3065), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3109), 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, - [38806] = 3, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 16, + ACTIONS(2596), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106933,13 +106807,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2612), 24, + ACTIONS(2594), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106958,11 +106831,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38855] = 3, + [38804] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 16, + ACTIONS(2632), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -106979,7 +106852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2604), 24, + ACTIONS(2634), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -107004,12 +106877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38904] = 3, + [38853] = 4, + ACTIONS(3217), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3225), 9, - anon_sym_LPAREN, + ACTIONS(3203), 8, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -107018,7 +106892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3223), 31, + ACTIONS(3201), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107050,11 +106924,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38953] = 3, + [38904] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 16, + ACTIONS(2640), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -107071,7 +106945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 24, + ACTIONS(2642), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -107096,48 +106970,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39002] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(912), 1, - anon_sym_COLON_COLON, - ACTIONS(2918), 1, - sym_metavariable, - ACTIONS(3143), 1, - anon_sym_default, - ACTIONS(3227), 1, - sym_identifier, - ACTIONS(3229), 1, - anon_sym_fn, - STATE(1828), 1, - sym_scoped_type_identifier, - STATE(2386), 1, - sym_bracketed_type, - STATE(2387), 1, - sym_generic_type_with_turbofish, - STATE(2419), 1, - sym_function_modifiers, - STATE(2441), 1, - sym_generic_type, - STATE(2552), 1, - sym_scoped_identifier, + [38953] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(918), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2912), 18, + ACTIONS(3221), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3219), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107155,98 +107002,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - [39080] = 4, - ACTIONS(3217), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2648), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2646), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [39002] = 22, + ACTIONS(3059), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3069), 1, + anon_sym_AMP, + ACTIONS(3075), 1, anon_sym_AMP_AMP, + ACTIONS(3077), 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, - [39130] = 22, - ACTIONS(384), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3231), 1, + ACTIONS(3223), 1, + anon_sym_RPAREN, + ACTIONS(3225), 1, anon_sym_COMMA, - STATE(2071), 1, + STATE(2059), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -107255,7 +107069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107266,73 +107080,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39216] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(912), 1, + [39088] = 4, + ACTIONS(3227), 1, anon_sym_COLON_COLON, - ACTIONS(2918), 1, - sym_metavariable, - ACTIONS(3143), 1, - anon_sym_default, - ACTIONS(3233), 1, - sym_identifier, - ACTIONS(3235), 1, - anon_sym_fn, - STATE(1809), 1, - sym_scoped_type_identifier, - STATE(2386), 1, - sym_bracketed_type, - STATE(2387), 1, - sym_generic_type_with_turbofish, - STATE(2441), 1, - sym_generic_type, - STATE(2522), 1, - sym_function_modifiers, - STATE(2552), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1594), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(918), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2912), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [39294] = 4, - ACTIONS(2746), 1, + ACTIONS(568), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(566), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + 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, + [39138] = 4, + ACTIONS(2714), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2748), 15, + ACTIONS(2716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107348,7 +107148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2744), 23, + ACTIONS(2712), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -107372,51 +107172,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39344] = 22, - ACTIONS(3063), 1, + [39188] = 22, + ACTIONS(386), 1, + anon_sym_RPAREN, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3237), 1, - anon_sym_RPAREN, - ACTIONS(3239), 1, + ACTIONS(3229), 1, anon_sym_COMMA, - STATE(1939), 1, + STATE(1918), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -107425,7 +107225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107436,13 +107236,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39430] = 4, - ACTIONS(2786), 1, + [39274] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + sym_metavariable, + ACTIONS(3149), 1, + anon_sym_default, + ACTIONS(3231), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_fn, + STATE(1806), 1, + sym_scoped_type_identifier, + STATE(2385), 1, + sym_bracketed_type, + STATE(2386), 1, + sym_generic_type_with_turbofish, + STATE(2440), 1, + sym_generic_type, + STATE(2491), 1, + sym_scoped_identifier, + STATE(2541), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1593), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2864), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [39352] = 4, + ACTIONS(2782), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2748), 15, + ACTIONS(2716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107458,7 +107318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2744), 23, + ACTIONS(2712), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -107482,13 +107342,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [39402] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(916), 1, + anon_sym_COLON_COLON, + ACTIONS(2870), 1, + sym_metavariable, + ACTIONS(3149), 1, + anon_sym_default, + ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3237), 1, + anon_sym_fn, + STATE(1830), 1, + sym_scoped_type_identifier, + STATE(2385), 1, + sym_bracketed_type, + STATE(2386), 1, + sym_generic_type_with_turbofish, + STATE(2418), 1, + sym_function_modifiers, + STATE(2440), 1, + sym_generic_type, + STATE(2491), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1593), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(922), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2864), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, [39480] = 4, - ACTIONS(3241), 1, + ACTIONS(3215), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(564), 15, + ACTIONS(2596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107504,7 +107424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(562), 23, + ACTIONS(2594), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -107528,54 +107448,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39530] = 17, - ACTIONS(3063), 1, + [39530] = 12, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3137), 1, - anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3253), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3249), 1, anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3251), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3265), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3135), 14, + ACTIONS(3091), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3089), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, + 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, @@ -107586,58 +107501,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39605] = 21, - ACTIONS(15), 1, + [39595] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - STATE(169), 1, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(1077), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107648,57 +107563,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39688] = 20, - ACTIONS(3063), 1, + [39678] = 11, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3107), 1, - anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3247), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3275), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3067), 3, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3091), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3089), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107709,58 +107615,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39769] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [39741] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - STATE(84), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3271), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107771,57 +107676,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39852] = 20, - ACTIONS(3063), 1, + [39822] = 16, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3091), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3247), 1, anon_sym_DOT_DOT, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3265), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3277), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3067), 3, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3089), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107832,58 +107733,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39933] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [39895] = 15, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, - anon_sym_AMP, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3091), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - STATE(142), 1, - sym_block, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3265), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3089), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107894,58 +107789,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40016] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [39966] = 10, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, - anon_sym_AMP, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, - ACTIONS(3267), 1, - anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - STATE(1137), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3091), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3089), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107956,58 +107840,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40099] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [40027] = 13, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, - ACTIONS(3267), 1, - anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - STATE(1106), 1, - sym_block, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3265), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3091), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3089), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108018,58 +107894,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40182] = 21, - ACTIONS(392), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, + [40094] = 17, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3113), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, - anon_sym_COMMA, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3111), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108080,58 +107952,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40265] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [40169] = 21, + ACTIONS(398), 1, + anon_sym_RPAREN, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - STATE(48), 1, - sym_block, + ACTIONS(3273), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108142,57 +108014,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40348] = 20, - ACTIONS(3063), 1, + [40252] = 21, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(237), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3281), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3067), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108203,57 +108076,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40429] = 20, - ACTIONS(3063), 1, + [40335] = 8, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3107), 1, - anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3067), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3091), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3089), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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(3109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108264,49 +108125,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40510] = 21, - ACTIONS(3063), 1, + [40392] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3285), 1, - anon_sym_RPAREN, - ACTIONS(3287), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3275), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -108315,7 +108175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108326,58 +108186,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40593] = 21, - ACTIONS(266), 1, - anon_sym_RBRACE, - ACTIONS(3063), 1, + [40473] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, - anon_sym_SEMI, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(159), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108388,48 +108248,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40676] = 20, - ACTIONS(3063), 1, + [40556] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, + ACTIONS(3277), 1, + anon_sym_SEMI, + ACTIONS(3279), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3291), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -108438,7 +108299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108449,49 +108310,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40757] = 21, - ACTIONS(390), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, + [40639] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3281), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -108500,7 +108360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108511,58 +108371,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40840] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [40720] = 21, + ACTIONS(278), 1, + anon_sym_RBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - STATE(1148), 1, - sym_block, + ACTIONS(3277), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108573,58 +108433,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40923] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [40803] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, - ACTIONS(3267), 1, - anon_sym_EQ, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - STATE(122), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3115), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108635,54 +108494,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41006] = 17, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(3063), 1, + [40884] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3249), 1, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3243), 1, anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3255), 1, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, + STATE(174), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3251), 2, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3265), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108693,48 +108556,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41081] = 20, - ACTIONS(3063), 1, + [40967] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3293), 2, - anon_sym_RBRACE, + ACTIONS(3283), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -108743,7 +108606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108754,49 +108617,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41162] = 21, - ACTIONS(109), 1, - anon_sym_RBRACE, - ACTIONS(3063), 1, + [41048] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, + ACTIONS(3277), 1, anon_sym_SEMI, + ACTIONS(3285), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -108805,7 +108668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108816,58 +108679,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41245] = 21, - ACTIONS(284), 1, + [41131] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - STATE(1150), 1, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(49), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108878,46 +108741,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41328] = 9, - ACTIONS(3063), 1, + [41214] = 17, + ACTIONS(3059), 1, anon_sym_LBRACK, + ACTIONS(3065), 1, + anon_sym_EQ, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3253), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3247), 1, anon_sym_DOT_DOT, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3251), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3069), 8, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3061), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3057), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108928,58 +108799,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41387] = 21, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [41289] = 21, + ACTIONS(390), 1, + anon_sym_RPAREN, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - STATE(222), 1, - sym_block, + ACTIONS(3273), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108990,58 +108861,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41470] = 21, - ACTIONS(3063), 1, + [41372] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3295), 1, - anon_sym_LBRACE, - STATE(243), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3287), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109052,48 +108922,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41553] = 11, - ACTIONS(3063), 1, + [41453] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3249), 1, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3243), 1, anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(1104), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3251), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3069), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3061), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109104,49 +108984,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41616] = 12, - ACTIONS(3063), 1, + [41536] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3249), 1, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3243), 1, anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, ACTIONS(3261), 1, - anon_sym_CARET, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + ACTIONS(3289), 1, + anon_sym_LBRACE, + STATE(186), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3251), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3069), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3061), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109157,48 +109046,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41681] = 20, - ACTIONS(3063), 1, + [41619] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3297), 2, + ACTIONS(3291), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -109207,7 +109096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109218,58 +109107,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41762] = 21, - ACTIONS(582), 1, + [41700] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3293), 1, + sym_identifier, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3063), 1, + ACTIONS(3297), 1, + anon_sym_RBRACE, + ACTIONS(3299), 1, + anon_sym_STAR, + ACTIONS(3303), 1, + anon_sym_COMMA, + ACTIONS(3305), 1, + anon_sym_COLON_COLON, + ACTIONS(3309), 1, + sym_metavariable, + STATE(1767), 1, + sym_scoped_identifier, + STATE(2378), 1, + sym_bracketed_type, + STATE(2405), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3307), 3, + sym_self, + sym_super, + sym_crate, + STATE(2066), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3301), 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, + [41771] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - STATE(244), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3311), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109280,58 +109224,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41845] = 21, - ACTIONS(3063), 1, + [41852] = 21, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3299), 1, - anon_sym_RBRACE, - ACTIONS(3301), 1, - anon_sym_COMMA, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(238), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109342,49 +109286,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41928] = 21, - ACTIONS(3063), 1, + [41935] = 21, + ACTIONS(260), 1, + anon_sym_RBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, + ACTIONS(3277), 1, anon_sym_SEMI, - ACTIONS(3303), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -109393,7 +109337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109404,120 +109348,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42011] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [42018] = 7, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, - anon_sym_AMP, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, - ACTIONS(3267), 1, - anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - STATE(47), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3131), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3247), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3265), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3273), 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, - [42094] = 21, - ACTIONS(284), 1, + ACTIONS(3129), 20, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3103), 1, anon_sym_QMARK, - ACTIONS(3105), 1, anon_sym_as, - ACTIONS(3249), 1, - anon_sym_AMP, - ACTIONS(3255), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, - ACTIONS(3267), 1, - anon_sym_EQ, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - STATE(794), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3263), 4, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109528,53 +109396,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42177] = 16, - ACTIONS(3063), 1, + [42073] = 21, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_EQ, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3249), 1, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3243), 1, anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3255), 1, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3259), 1, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, + STATE(226), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3251), 2, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3265), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3061), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_PIPE_PIPE, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109585,52 +109458,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42250] = 15, - ACTIONS(3063), 1, + [42156] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3069), 1, - anon_sym_EQ, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3249), 1, anon_sym_AMP, - ACTIONS(3253), 1, - anon_sym_DOT_DOT, - ACTIONS(3259), 1, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3081), 1, anon_sym_CARET, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3199), 1, + anon_sym_DOT_DOT, + ACTIONS(3313), 1, + anon_sym_RBRACE, + ACTIONS(3315), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3251), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3265), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3197), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3061), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109641,47 +109520,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42321] = 10, - ACTIONS(3063), 1, + [42239] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, + ACTIONS(3069), 1, + anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3253), 1, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3199), 1, anon_sym_DOT_DOT, + ACTIONS(3317), 1, + anon_sym_RPAREN, + ACTIONS(3319), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3251), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3265), 2, + ACTIONS(3067), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3197), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3069), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3061), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109692,50 +109582,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42382] = 17, - ACTIONS(3063), 1, + [42322] = 17, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3091), 1, - anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3253), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3255), 1, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3251), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3265), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 14, + ACTIONS(282), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -109750,45 +109640,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42457] = 8, - ACTIONS(3063), 1, + [42397] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(792), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(3239), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3069), 10, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3061), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109799,48 +109702,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42514] = 20, - ACTIONS(3063), 1, + [42480] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, + ACTIONS(3277), 1, + anon_sym_SEMI, + ACTIONS(3321), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3305), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -109849,7 +109753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109860,57 +109764,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42595] = 20, - ACTIONS(3063), 1, + [42563] = 7, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, - anon_sym_AMP, - ACTIONS(3253), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, - ACTIONS(3267), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3243), 2, + ACTIONS(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3091), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3247), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3251), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3265), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3089), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109921,49 +109812,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42676] = 21, - ACTIONS(3063), 1, + [42618] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, + ACTIONS(3273), 1, anon_sym_COMMA, - ACTIONS(3307), 1, + ACTIONS(3323), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -109972,7 +109863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109983,58 +109874,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42759] = 21, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [42701] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - STATE(255), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3325), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110045,58 +109935,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42842] = 21, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [42782] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - STATE(252), 1, - sym_block, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + anon_sym_LBRACE, + STATE(1087), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110107,58 +109997,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42925] = 21, - ACTIONS(582), 1, + [42865] = 21, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - STATE(223), 1, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(242), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110169,58 +110059,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43008] = 21, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [42948] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - STATE(249), 1, - sym_block, + ACTIONS(3329), 1, + anon_sym_RBRACE, + ACTIONS(3331), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110231,58 +110121,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43091] = 21, - ACTIONS(284), 1, + [43031] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - STATE(1123), 1, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(151), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110293,57 +110183,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43174] = 20, - ACTIONS(3063), 1, + [43114] = 21, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(254), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3309), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3067), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110354,58 +110245,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43255] = 21, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [43197] = 17, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3095), 1, + anon_sym_EQ, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, - ACTIONS(3267), 1, - anon_sym_EQ, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - STATE(247), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3093), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110416,58 +110303,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43338] = 21, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [43272] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - STATE(246), 1, - sym_block, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(253), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110478,58 +110365,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43421] = 21, - ACTIONS(3063), 1, + [43355] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3311), 1, - anon_sym_RBRACE, - ACTIONS(3313), 1, - anon_sym_COMMA, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(1065), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110540,58 +110427,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43504] = 21, - ACTIONS(3063), 1, + [43438] = 7, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, - anon_sym_AMP, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, - ACTIONS(3267), 1, - anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3315), 1, - anon_sym_LBRACE, - STATE(161), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3109), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3247), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3265), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3107), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + 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(3273), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110602,58 +110475,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43587] = 21, - ACTIONS(274), 1, - anon_sym_RBRACE, - ACTIONS(3063), 1, + [43493] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + anon_sym_DOT, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, - anon_sym_SEMI, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(100), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110664,54 +110537,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43670] = 17, - ACTIONS(3063), 1, + [43576] = 7, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3115), 1, - anon_sym_EQ, - ACTIONS(3249), 1, - anon_sym_AMP, - ACTIONS(3253), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3099), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3247), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3251), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3265), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3113), 14, + ACTIONS(3097), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, + 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, @@ -110722,49 +110585,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43745] = 21, - ACTIONS(268), 1, + [43631] = 21, + ACTIONS(107), 1, anon_sym_RBRACE, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, + ACTIONS(3277), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -110773,7 +110636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110784,49 +110647,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43828] = 21, - ACTIONS(3063), 1, + [43714] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, + ACTIONS(3277), 1, anon_sym_SEMI, - ACTIONS(3317), 1, + ACTIONS(3335), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -110835,7 +110698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110846,58 +110709,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43911] = 21, - ACTIONS(15), 1, + [43797] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - STATE(162), 1, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(1130), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110908,50 +110771,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43994] = 13, - ACTIONS(3063), 1, + [43880] = 21, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3249), 1, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3243), 1, anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, ACTIONS(3253), 1, - anon_sym_DOT_DOT, + anon_sym_EQ, ACTIONS(3259), 1, - anon_sym_PIPE, + anon_sym_DOT_DOT, ACTIONS(3261), 1, - anon_sym_CARET, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(223), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3251), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3265), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3069), 3, - anon_sym_EQ, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 3, + ACTIONS(3257), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3061), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110962,49 +110833,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44061] = 21, - ACTIONS(262), 1, + [43963] = 21, + ACTIONS(105), 1, anon_sym_RBRACE, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, + ACTIONS(3277), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -111013,7 +110884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111024,48 +110895,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44144] = 20, - ACTIONS(3063), 1, + [44046] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3319), 2, + ACTIONS(3337), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -111074,7 +110945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111085,97 +110956,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44225] = 7, - ACTIONS(3063), 1, + [44127] = 21, + ACTIONS(272), 1, + anon_sym_RBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3087), 1, - anon_sym_DOT, - ACTIONS(3253), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3251), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3133), 13, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3069), 1, anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3131), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3075), 1, anon_sym_AMP_AMP, + ACTIONS(3077), 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, - [44280] = 21, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, + ACTIONS(3277), 1, anon_sym_SEMI, - ACTIONS(3321), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -111184,7 +111007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111195,114 +111018,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44363] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3323), 1, - sym_identifier, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(3327), 1, - anon_sym_RBRACE, - ACTIONS(3329), 1, - anon_sym_STAR, - ACTIONS(3333), 1, - anon_sym_COMMA, - ACTIONS(3335), 1, - anon_sym_COLON_COLON, - ACTIONS(3339), 1, - sym_metavariable, - STATE(1742), 1, - sym_scoped_identifier, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3337), 3, - sym_self, - sym_super, - sym_crate, - STATE(2001), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3331), 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, - [44434] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [44210] = 17, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_QMARK, ACTIONS(3105), 1, - anon_sym_as, - ACTIONS(3249), 1, + anon_sym_EQ, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, - ACTIONS(3267), 1, - anon_sym_EQ, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - STATE(141), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3103), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111313,44 +111076,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44517] = 7, - ACTIONS(3063), 1, + [44285] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, + ACTIONS(3069), 1, + anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3253), 1, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3199), 1, anon_sym_DOT_DOT, + ACTIONS(3277), 1, + anon_sym_SEMI, + ACTIONS(3339), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3251), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3069), 13, + ACTIONS(3061), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3197), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3063), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3061), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111361,44 +111138,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44572] = 7, - ACTIONS(3063), 1, + [44368] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(72), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3251), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3123), 13, + ACTIONS(3239), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3241), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3121), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111409,58 +111200,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44627] = 21, - ACTIONS(272), 1, - anon_sym_RBRACE, - ACTIONS(3063), 1, + [44451] = 21, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, - anon_sym_SEMI, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(256), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111471,49 +111262,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44710] = 21, - ACTIONS(3063), 1, + [44534] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, + ACTIONS(3277), 1, anon_sym_SEMI, ACTIONS(3341), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -111522,7 +111313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111533,49 +111324,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44793] = 21, - ACTIONS(3063), 1, + [44617] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, - anon_sym_SEMI, - ACTIONS(3343), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3343), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -111584,7 +111374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111595,50 +111385,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44876] = 17, - ACTIONS(3063), 1, + [44698] = 17, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3119), 1, + ACTIONS(3127), 1, anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3253), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3255), 1, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3251), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3265), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3117), 14, + ACTIONS(3125), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -111653,58 +111443,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44951] = 21, + [44773] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - STATE(792), 1, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(1124), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111715,44 +111505,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45034] = 7, - ACTIONS(3063), 1, + [44856] = 21, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(233), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3251), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3099), 13, + ACTIONS(3239), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3241), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3097), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111763,57 +111567,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45089] = 20, - ACTIONS(3063), 1, + [44939] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(45), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3345), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3067), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111824,58 +111629,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45170] = 21, - ACTIONS(3063), 1, + [45022] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3255), 1, - anon_sym_AMP_AMP, - ACTIONS(3257), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, - anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3271), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3347), 1, - anon_sym_LBRACE, - STATE(1098), 1, - sym_match_block, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(121), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111886,58 +111691,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45253] = 21, - ACTIONS(3063), 1, + [45105] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_AMP, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, - anon_sym_SEMI, - ACTIONS(3349), 1, - anon_sym_RBRACE, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, + STATE(1156), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111948,58 +111753,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45336] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3063), 1, + [45188] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3255), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, - ACTIONS(3267), 1, - anon_sym_EQ, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - STATE(1071), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3133), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3265), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3245), 3, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112010,54 +111814,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45419] = 17, - ACTIONS(3063), 1, + [45269] = 9, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3129), 1, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3241), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3091), 8, anon_sym_EQ, - ACTIONS(3249), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3253), 1, - anon_sym_DOT_DOT, - ACTIONS(3255), 1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3089), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP, - ACTIONS(3257), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 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, + [45328] = 20, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, + anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3261), 1, + ACTIONS(3081), 1, anon_sym_CARET, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3199), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3243), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3251), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3265), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3197), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3345), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3127), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112068,57 +111925,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45494] = 20, - ACTIONS(3063), 1, + [45409] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3249), 1, + ACTIONS(3243), 1, anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3255), 1, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3257), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3259), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3261), 1, - anon_sym_CARET, - ACTIONS(3267), 1, - anon_sym_EQ, + STATE(794), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3125), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3243), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3251), 2, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3265), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3245), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3263), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3273), 10, + ACTIONS(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112129,48 +111987,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45575] = 20, - ACTIONS(3063), 1, + [45492] = 21, + ACTIONS(274), 1, + anon_sym_RBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, + ACTIONS(3277), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3351), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -112179,7 +112038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112190,101 +112049,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45656] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3323), 1, - sym_identifier, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(3329), 1, - anon_sym_STAR, - ACTIONS(3335), 1, - anon_sym_COLON_COLON, - ACTIONS(3339), 1, - sym_metavariable, - ACTIONS(3353), 1, - anon_sym_RBRACE, - STATE(1742), 1, - sym_scoped_identifier, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3337), 3, - sym_self, - sym_super, - sym_crate, - STATE(2333), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3331), 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, - [45724] = 20, - ACTIONS(3063), 1, + [45575] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3355), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3347), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -112293,7 +112099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112304,47 +112110,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45804] = 20, - ACTIONS(3063), 1, + [45656] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3357), 1, - anon_sym_SEMI, + ACTIONS(3349), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -112353,7 +112159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112364,47 +112170,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45884] = 20, - ACTIONS(3063), 1, + [45736] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3359), 1, + ACTIONS(3351), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -112413,7 +112219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112424,47 +112230,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45964] = 20, - ACTIONS(3063), 1, + [45816] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3361), 1, - anon_sym_SEMI, + ACTIONS(3353), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -112473,7 +112279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112484,47 +112290,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46044] = 20, - ACTIONS(3063), 1, + [45896] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3363), 1, + ACTIONS(3355), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -112533,7 +112339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112544,47 +112350,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46124] = 20, - ACTIONS(3063), 1, + [45976] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3365), 1, + ACTIONS(3357), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -112593,7 +112399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112604,47 +112410,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46204] = 20, - ACTIONS(3063), 1, + [46056] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3367), 1, - anon_sym_RBRACK, + ACTIONS(3359), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -112653,7 +112459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112664,47 +112470,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46284] = 20, - ACTIONS(3063), 1, + [46136] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3369), 1, + ACTIONS(3361), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -112713,7 +112519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112724,47 +112530,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46364] = 20, - ACTIONS(3063), 1, + [46216] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3371), 1, + ACTIONS(3363), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -112773,7 +112579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112784,47 +112590,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46444] = 20, - ACTIONS(3063), 1, + [46296] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3373), 1, - anon_sym_RBRACK, + ACTIONS(3365), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -112833,7 +112639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112844,47 +112650,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46524] = 20, - ACTIONS(3063), 1, + [46376] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3375), 1, - anon_sym_SEMI, + ACTIONS(3367), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -112893,7 +112699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112904,101 +112710,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46604] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3323), 1, - sym_identifier, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(3329), 1, - anon_sym_STAR, - ACTIONS(3335), 1, - anon_sym_COLON_COLON, - ACTIONS(3339), 1, - sym_metavariable, - ACTIONS(3377), 1, - anon_sym_RBRACE, - STATE(1742), 1, - sym_scoped_identifier, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3337), 3, - sym_self, - sym_super, - sym_crate, - STATE(2333), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3331), 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, - [46672] = 20, - ACTIONS(3063), 1, + [46456] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_RBRACK, + ACTIONS(3369), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113007,7 +112759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113018,47 +112770,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46752] = 20, - ACTIONS(3063), 1, + [46536] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3381), 1, - anon_sym_RBRACK, + ACTIONS(3371), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113067,7 +112819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113078,47 +112830,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46832] = 20, - ACTIONS(3063), 1, + [46616] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3121), 1, + anon_sym_EQ, + ACTIONS(3199), 1, + anon_sym_DOT_DOT, + ACTIONS(3373), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3061), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3067), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3197), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3063), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3083), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3123), 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, + [46696] = 20, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, + anon_sym_AMP, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3095), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3079), 1, + anon_sym_PIPE, + ACTIONS(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3383), 1, + ACTIONS(3375), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113127,7 +112939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113138,47 +112950,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46912] = 20, - ACTIONS(3063), 1, + [46776] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3385), 1, + ACTIONS(3377), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113187,7 +112999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113198,47 +113010,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46992] = 20, - ACTIONS(3063), 1, + [46856] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3387), 1, - anon_sym_COMMA, + ACTIONS(3379), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113247,7 +113059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113258,47 +113070,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47072] = 20, - ACTIONS(3063), 1, + [46936] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3389), 1, + ACTIONS(3381), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113307,7 +113119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113318,47 +113130,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47152] = 20, - ACTIONS(3063), 1, + [47016] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3391), 1, + ACTIONS(3383), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113367,7 +113179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113378,47 +113190,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47232] = 20, - ACTIONS(3063), 1, + [47096] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3393), 1, + ACTIONS(3385), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113427,7 +113239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113438,47 +113250,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47312] = 20, - ACTIONS(3063), 1, + [47176] = 14, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3293), 1, + sym_identifier, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3299), 1, + anon_sym_STAR, + ACTIONS(3305), 1, + anon_sym_COLON_COLON, + ACTIONS(3309), 1, + sym_metavariable, + ACTIONS(3387), 1, + anon_sym_RBRACE, + STATE(1767), 1, + sym_scoped_identifier, + STATE(2378), 1, + sym_bracketed_type, + STATE(2405), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3307), 3, + sym_self, + sym_super, + sym_crate, + STATE(2232), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3301), 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, + [47244] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3395), 1, - anon_sym_EQ_GT, + ACTIONS(3273), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113487,7 +113353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113498,47 +113364,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47392] = 20, - ACTIONS(3063), 1, + [47324] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3397), 1, + ACTIONS(3389), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113547,7 +113413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113558,47 +113424,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47472] = 20, - ACTIONS(3063), 1, + [47404] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, - anon_sym_COMMA, + ACTIONS(3391), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113607,7 +113473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113618,47 +113484,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47552] = 20, - ACTIONS(3063), 1, + [47484] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3399), 1, + ACTIONS(3277), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113667,7 +113533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113678,47 +113544,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47632] = 20, - ACTIONS(3063), 1, + [47564] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3401), 1, - anon_sym_SEMI, + ACTIONS(3393), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113727,7 +113593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113738,47 +113604,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47712] = 20, - ACTIONS(3063), 1, + [47644] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3403), 1, - anon_sym_RBRACK, + ACTIONS(3395), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113787,7 +113653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113798,47 +113664,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47792] = 20, - ACTIONS(3063), 1, + [47724] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3405), 1, - anon_sym_RBRACK, + ACTIONS(3397), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113847,7 +113713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113858,47 +113724,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [47804] = 14, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3293), 1, + sym_identifier, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3299), 1, + anon_sym_STAR, + ACTIONS(3305), 1, + anon_sym_COLON_COLON, + ACTIONS(3309), 1, + sym_metavariable, + ACTIONS(3399), 1, + anon_sym_RBRACE, + STATE(1767), 1, + sym_scoped_identifier, + STATE(2378), 1, + sym_bracketed_type, + STATE(2405), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3307), 3, + sym_self, + sym_super, + sym_crate, + STATE(2232), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3301), 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, [47872] = 20, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, - anon_sym_SEMI, + ACTIONS(3401), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113907,7 +113827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113919,46 +113839,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [47952] = 20, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3407), 1, - anon_sym_COMMA, + ACTIONS(3403), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -113967,7 +113887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113979,46 +113899,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [48032] = 20, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3409), 1, - anon_sym_SEMI, + ACTIONS(3405), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -114027,7 +113947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114039,46 +113959,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [48112] = 20, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3411), 1, - anon_sym_COMMA, + ACTIONS(3407), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -114087,7 +114007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114099,46 +114019,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [48192] = 20, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3413), 1, - anon_sym_RBRACK, + ACTIONS(3409), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -114147,7 +114067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114159,46 +114079,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [48272] = 20, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3415), 1, + ACTIONS(3411), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -114207,7 +114127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114219,46 +114139,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [48352] = 20, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3417), 1, - anon_sym_SEMI, + ACTIONS(3413), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -114267,7 +114187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114279,46 +114199,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [48432] = 20, - ACTIONS(3063), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3069), 1, anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3077), 1, + anon_sym_PIPE_PIPE, ACTIONS(3079), 1, anon_sym_PIPE, ACTIONS(3081), 1, anon_sym_CARET, ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_AMP_AMP, - ACTIONS(3095), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3105), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3107), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3419), 1, + ACTIONS(3415), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3213), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -114327,7 +114247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3109), 10, + ACTIONS(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114341,36 +114261,36 @@ static const uint16_t ts_small_parse_table[] = { [48512] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3323), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3325), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3329), 1, + ACTIONS(3299), 1, anon_sym_STAR, - ACTIONS(3335), 1, + ACTIONS(3305), 1, anon_sym_COLON_COLON, - ACTIONS(3339), 1, + ACTIONS(3309), 1, sym_metavariable, - STATE(1742), 1, + STATE(1767), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, + STATE(2378), 1, sym_bracketed_type, + STATE(2405), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 3, + ACTIONS(3307), 3, sym_self, sym_super, sym_crate, - STATE(2407), 5, + STATE(2232), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3331), 19, + ACTIONS(3301), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114393,36 +114313,36 @@ static const uint16_t ts_small_parse_table[] = { [48577] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3323), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3325), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3329), 1, + ACTIONS(3299), 1, anon_sym_STAR, - ACTIONS(3335), 1, + ACTIONS(3305), 1, anon_sym_COLON_COLON, - ACTIONS(3339), 1, + ACTIONS(3309), 1, sym_metavariable, - STATE(1742), 1, + STATE(1767), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, + STATE(2378), 1, sym_bracketed_type, + STATE(2405), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 3, + ACTIONS(3307), 3, sym_self, sym_super, sym_crate, - STATE(2432), 5, + STATE(2559), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3331), 19, + ACTIONS(3301), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114445,36 +114365,36 @@ static const uint16_t ts_small_parse_table[] = { [48642] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3323), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3325), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3329), 1, + ACTIONS(3299), 1, anon_sym_STAR, - ACTIONS(3335), 1, + ACTIONS(3305), 1, anon_sym_COLON_COLON, - ACTIONS(3339), 1, + ACTIONS(3309), 1, sym_metavariable, - STATE(1742), 1, + STATE(1767), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, + STATE(2378), 1, sym_bracketed_type, + STATE(2405), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 3, + ACTIONS(3307), 3, sym_self, sym_super, sym_crate, - STATE(2333), 5, + STATE(2407), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3331), 19, + ACTIONS(3301), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114497,36 +114417,36 @@ static const uint16_t ts_small_parse_table[] = { [48707] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3323), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3325), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3329), 1, + ACTIONS(3299), 1, anon_sym_STAR, - ACTIONS(3335), 1, + ACTIONS(3305), 1, anon_sym_COLON_COLON, - ACTIONS(3339), 1, + ACTIONS(3309), 1, sym_metavariable, - STATE(1742), 1, + STATE(1767), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, + STATE(2378), 1, sym_bracketed_type, + STATE(2405), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 3, + ACTIONS(3307), 3, sym_self, sym_super, sym_crate, - STATE(2374), 5, + STATE(2395), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3331), 19, + ACTIONS(3301), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114549,36 +114469,36 @@ static const uint16_t ts_small_parse_table[] = { [48772] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3323), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3325), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3329), 1, + ACTIONS(3299), 1, anon_sym_STAR, - ACTIONS(3335), 1, + ACTIONS(3305), 1, anon_sym_COLON_COLON, - ACTIONS(3339), 1, + ACTIONS(3309), 1, sym_metavariable, - STATE(1742), 1, + STATE(1767), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, + STATE(2378), 1, sym_bracketed_type, + STATE(2405), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3337), 3, + ACTIONS(3307), 3, sym_self, sym_super, sym_crate, - STATE(2482), 5, + STATE(2480), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3331), 19, + ACTIONS(3301), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114602,11 +114522,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3423), 3, + ACTIONS(3419), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3421), 28, + ACTIONS(3417), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114639,11 +114559,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3427), 3, + ACTIONS(3423), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3425), 28, + ACTIONS(3421), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114676,11 +114596,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3431), 3, + ACTIONS(3427), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3429), 28, + ACTIONS(3425), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114714,24 +114634,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3433), 1, + ACTIONS(3429), 1, sym_identifier, - ACTIONS(3439), 1, + ACTIONS(3435), 1, sym_metavariable, - STATE(2201), 1, + STATE(2214), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, + STATE(2378), 1, sym_bracketed_type, + STATE(2405), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3437), 3, + ACTIONS(3433), 3, sym_self, sym_super, sym_crate, - ACTIONS(3435), 19, + ACTIONS(3431), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114756,24 +114676,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3441), 1, + ACTIONS(3437), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(3443), 1, sym_metavariable, - STATE(2200), 1, + STATE(2257), 1, sym_scoped_identifier, - STATE(2373), 1, - sym_generic_type_with_turbofish, - STATE(2492), 1, + STATE(2378), 1, sym_bracketed_type, + STATE(2405), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3445), 3, + ACTIONS(3441), 3, sym_self, sym_super, sym_crate, - ACTIONS(3443), 19, + ACTIONS(3439), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114794,12 +114714,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_union, [49061] = 3, - ACTIONS(2385), 1, + ACTIONS(2397), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2387), 20, + ACTIONS(2399), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114821,12 +114741,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [49091] = 3, - ACTIONS(2411), 1, + ACTIONS(2373), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2413), 20, + ACTIONS(2375), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114847,79 +114767,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49121] = 9, - ACTIONS(2582), 1, - anon_sym_COLON, - ACTIONS(3449), 1, + [49121] = 10, + ACTIONS(3447), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_BANG, + ACTIONS(3449), 1, + anon_sym_LBRACE, ACTIONS(3453), 1, anon_sym_COLON_COLON, - ACTIONS(3455), 1, + ACTIONS(3457), 1, anon_sym_LT2, + ACTIONS(3459), 1, + anon_sym_AT, STATE(1382), 1, sym_type_arguments, - STATE(1392), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 12, + ACTIONS(3451), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3445), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [49161] = 10, - ACTIONS(3455), 1, + [49163] = 9, + ACTIONS(2578), 1, + anon_sym_COLON, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, ACTIONS(3461), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_BANG, ACTIONS(3465), 1, anon_sym_COLON_COLON, - ACTIONS(3469), 1, - anon_sym_AT, STATE(1382), 1, sym_type_arguments, + STATE(1402), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3463), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3457), 9, + ACTIONS(2574), 12, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, [49203] = 4, - ACTIONS(2632), 1, + ACTIONS(2630), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 2, + ACTIONS(2634), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2630), 15, + ACTIONS(2628), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114936,16 +114856,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_PIPE, [49232] = 4, + ACTIONS(2622), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 2, + ACTIONS(2626), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2620), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LT2, + anon_sym_PIPE, + [49261] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2628), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2610), 2, + ACTIONS(2632), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2612), 14, + ACTIONS(2634), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114960,16 +114905,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49261] = 4, - ACTIONS(2608), 1, + [49290] = 4, + ACTIONS(2614), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 2, + ACTIONS(2618), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2606), 15, + ACTIONS(2612), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114985,73 +114930,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49290] = 4, - ACTIONS(2616), 1, - anon_sym_COLON, + [49319] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2614), 15, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2612), 2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LT2, - anon_sym_PIPE, - [49319] = 4, - ACTIONS(2600), 1, + ACTIONS(2616), 2, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2604), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2598), 15, + anon_sym_EQ, + ACTIONS(2618), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [49348] = 8, - ACTIONS(2596), 1, + ACTIONS(2588), 1, anon_sym_COLON, - ACTIONS(3449), 1, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, anon_sym_LPAREN, - ACTIONS(3453), 1, + ACTIONS(3465), 1, anon_sym_COLON_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, STATE(1382), 1, sym_type_arguments, - STATE(1392), 1, + STATE(1402), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 12, + ACTIONS(2586), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115068,13 +114988,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 2, + ACTIONS(2620), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2602), 2, + ACTIONS(2624), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2604), 14, + ACTIONS(2626), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115090,70 +115010,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [49414] = 4, + ACTIONS(2638), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2634), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2636), 14, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, + ACTIONS(2642), 2, anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [49443] = 8, - ACTIONS(2592), 1, - anon_sym_COLON, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3453), 1, anon_sym_COLON_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - STATE(1382), 1, - sym_type_arguments, - STATE(1392), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2590), 12, + ACTIONS(2636), 15, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [49480] = 4, + [49443] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, + ACTIONS(2636), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2618), 2, + ACTIONS(2640), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2620), 14, + ACTIONS(2642), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115168,25 +115059,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49509] = 6, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, + [49472] = 8, + ACTIONS(2592), 1, + anon_sym_COLON, + ACTIONS(3457), 1, anon_sym_LT2, - STATE(1378), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3465), 1, + anon_sym_COLON_COLON, + STATE(1382), 1, sym_type_arguments, - STATE(1399), 1, + STATE(1402), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2638), 13, + ACTIONS(2590), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -115194,14 +115088,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49541] = 3, + [49509] = 17, + ACTIONS(3469), 1, + anon_sym_const, + ACTIONS(3471), 1, + anon_sym_enum, + ACTIONS(3473), 1, + anon_sym_fn, + ACTIONS(3475), 1, + anon_sym_mod, + ACTIONS(3477), 1, + anon_sym_static, + ACTIONS(3479), 1, + anon_sym_struct, + ACTIONS(3481), 1, + anon_sym_trait, + ACTIONS(3483), 1, + anon_sym_type, + ACTIONS(3485), 1, + anon_sym_union, + ACTIONS(3487), 1, + anon_sym_unsafe, + ACTIONS(3489), 1, + anon_sym_use, + ACTIONS(3491), 1, + anon_sym_extern, + STATE(1537), 1, + sym_extern_modifier, + STATE(1593), 1, + aux_sym_function_modifiers_repeat1, + STATE(2569), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3467), 2, + anon_sym_async, + anon_sym_default, + [49563] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 2, + ACTIONS(2624), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2612), 15, + ACTIONS(2626), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115217,19 +115148,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49567] = 6, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, + [49589] = 6, + ACTIONS(3457), 1, anon_sym_LT2, - STATE(1378), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1381), 1, sym_type_arguments, - STATE(1399), 1, + STATE(1386), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 13, + ACTIONS(2608), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115243,14 +115174,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49599] = 3, + [49621] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 2, + ACTIONS(2616), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2604), 15, + ACTIONS(2618), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115266,51 +115197,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49625] = 17, - ACTIONS(3473), 1, - anon_sym_const, - ACTIONS(3475), 1, - anon_sym_enum, - ACTIONS(3477), 1, - anon_sym_fn, - ACTIONS(3479), 1, - anon_sym_mod, - ACTIONS(3481), 1, - anon_sym_static, - ACTIONS(3483), 1, - anon_sym_struct, - ACTIONS(3485), 1, - anon_sym_trait, - ACTIONS(3487), 1, - anon_sym_type, - ACTIONS(3489), 1, - anon_sym_union, - ACTIONS(3491), 1, - anon_sym_unsafe, - ACTIONS(3493), 1, - anon_sym_use, - ACTIONS(3495), 1, - anon_sym_extern, - STATE(1546), 1, - sym_extern_modifier, - STATE(1594), 1, - aux_sym_function_modifiers_repeat1, - STATE(2572), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3471), 2, - anon_sym_async, - anon_sym_default, - [49679] = 3, + [49647] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 2, + ACTIONS(2640), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2636), 15, + ACTIONS(2642), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115326,56 +115220,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, + [49673] = 6, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1381), 1, + sym_type_arguments, + STATE(1386), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2644), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, [49705] = 17, - ACTIONS(3497), 1, + ACTIONS(3493), 1, anon_sym_const, - ACTIONS(3499), 1, + ACTIONS(3495), 1, anon_sym_enum, - ACTIONS(3501), 1, + ACTIONS(3497), 1, anon_sym_fn, - ACTIONS(3503), 1, + ACTIONS(3499), 1, anon_sym_mod, - ACTIONS(3505), 1, + ACTIONS(3501), 1, anon_sym_static, - ACTIONS(3507), 1, + ACTIONS(3503), 1, anon_sym_struct, - ACTIONS(3509), 1, + ACTIONS(3505), 1, anon_sym_trait, - ACTIONS(3511), 1, + ACTIONS(3507), 1, anon_sym_type, - ACTIONS(3513), 1, + ACTIONS(3509), 1, anon_sym_union, - ACTIONS(3515), 1, + ACTIONS(3511), 1, anon_sym_unsafe, - ACTIONS(3517), 1, + ACTIONS(3513), 1, anon_sym_use, - ACTIONS(3519), 1, + ACTIONS(3515), 1, anon_sym_extern, - STATE(1521), 1, + STATE(1520), 1, sym_extern_modifier, - STATE(1594), 1, + STATE(1593), 1, aux_sym_function_modifiers_repeat1, - STATE(2352), 1, + STATE(2571), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3471), 2, + ACTIONS(3467), 2, anon_sym_async, anon_sym_default, [49759] = 6, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3457), 1, anon_sym_LT2, - STATE(1378), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1381), 1, sym_type_arguments, - STATE(1399), 1, + STATE(1386), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 13, + ACTIONS(2648), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115389,33 +115309,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49791] = 3, - ACTIONS(3521), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3191), 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, - [49816] = 2, + [49791] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 16, + ACTIONS(2628), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115432,13 +115330,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, + [49814] = 3, + ACTIONS(3517), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3201), 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, [49839] = 3, - ACTIONS(2696), 1, + ACTIONS(2762), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2694), 14, + ACTIONS(2760), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115454,12 +115374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, [49863] = 3, - ACTIONS(2784), 1, + ACTIONS(2746), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 14, + ACTIONS(2744), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115475,61 +115395,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, [49887] = 13, - ACTIONS(3451), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3461), 1, + ACTIONS(3449), 1, anon_sym_LBRACE, - ACTIONS(3469), 1, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3459), 1, anon_sym_AT, - ACTIONS(3523), 1, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3519), 1, anon_sym_LPAREN, - ACTIONS(3525), 1, + ACTIONS(3521), 1, anon_sym_RBRACK, - ACTIONS(3528), 1, + ACTIONS(3524), 1, anon_sym_COLON_COLON, STATE(1382), 1, sym_type_arguments, - STATE(1392), 1, + STATE(1402), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2574), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3457), 2, + ACTIONS(3445), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3467), 2, + ACTIONS(3455), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, [49931] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - sym_mutable_specifier, - anon_sym_PIPE, - sym_self, - [49953] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3203), 15, + ACTIONS(3219), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115545,11 +115445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49975] = 2, + [49953] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 15, + ACTIONS(3189), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115565,11 +115465,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49997] = 2, + [49975] = 14, + ACTIONS(2574), 1, + anon_sym_PLUS, + ACTIONS(3445), 1, + anon_sym_PIPE, + ACTIONS(3449), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_COLON, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3459), 1, + anon_sym_AT, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3526), 1, + anon_sym_LPAREN, + ACTIONS(3528), 1, + anon_sym_COLON_COLON, + STATE(1382), 1, + sym_type_arguments, + STATE(1402), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3521), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [50021] = 6, + ACTIONS(3447), 1, + anon_sym_LPAREN, + ACTIONS(3530), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3451), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3445), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [50051] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2970), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + sym_mutable_specifier, + anon_sym_PIPE, + sym_self, + [50073] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3223), 15, + ACTIONS(3207), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115585,34 +115561,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [50019] = 3, - ACTIONS(2780), 1, + [50095] = 13, + ACTIONS(3445), 1, + anon_sym_PIPE, + ACTIONS(3449), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, anon_sym_COLON, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3459), 1, + anon_sym_AT, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3532), 1, + anon_sym_LPAREN, + ACTIONS(3534), 1, + anon_sym_COLON_COLON, + STATE(1382), 1, + sym_type_arguments, + STATE(1402), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2778), 14, - anon_sym_SEMI, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2574), 3, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, + [50139] = 3, + ACTIONS(3536), 1, anon_sym_COLON_COLON, - anon_sym_PIPE, - [50043] = 3, - ACTIONS(3530), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3203), 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, + [50163] = 3, + ACTIONS(2834), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3193), 14, + ACTIONS(3203), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115627,13 +115634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [50067] = 3, - ACTIONS(2730), 1, + [50187] = 3, + ACTIONS(2758), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2728), 14, + ACTIONS(2756), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115648,97 +115655,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [50091] = 14, - ACTIONS(2578), 1, - anon_sym_PLUS, - ACTIONS(3451), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3457), 1, - anon_sym_PIPE, - ACTIONS(3461), 1, - anon_sym_LBRACE, - ACTIONS(3463), 1, + [50211] = 3, + ACTIONS(2688), 1, anon_sym_COLON, - ACTIONS(3469), 1, - anon_sym_AT, - ACTIONS(3532), 1, - anon_sym_LPAREN, - ACTIONS(3534), 1, - anon_sym_COLON_COLON, - STATE(1382), 1, - sym_type_arguments, - STATE(1392), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3525), 2, + ACTIONS(2686), 14, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - [50137] = 3, - ACTIONS(2962), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3193), 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, - [50161] = 13, - ACTIONS(3451), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3457), 1, - anon_sym_PIPE, - ACTIONS(3461), 1, anon_sym_LBRACE, - ACTIONS(3463), 1, - anon_sym_COLON, - ACTIONS(3469), 1, - anon_sym_AT, - ACTIONS(3536), 1, - anon_sym_LPAREN, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, - STATE(1382), 1, - sym_type_arguments, - STATE(1392), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2578), 3, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [50205] = 3, - ACTIONS(2726), 1, + anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [50235] = 3, + ACTIONS(2684), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2724), 14, + ACTIONS(2682), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115753,126 +115697,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [50229] = 6, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_COLON_COLON, + [50259] = 3, + ACTIONS(3538), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3463), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3457), 9, + ACTIONS(2722), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50259] = 14, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_BANG, - ACTIONS(3453), 1, - anon_sym_COLON_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3542), 1, anon_sym_COLON, - ACTIONS(3544), 1, - anon_sym_EQ, - ACTIONS(3546), 1, - anon_sym_COMMA, - ACTIONS(3548), 1, - anon_sym_GT, - STATE(1382), 1, - sym_type_arguments, - STATE(1392), 1, - sym_parameters, - STATE(2126), 1, - sym_trait_bounds, - STATE(2129), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 2, anon_sym_PLUS, anon_sym_as, - [50304] = 3, - ACTIONS(2377), 1, + anon_sym_where, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2379), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, anon_sym_COMMA, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50327] = 2, + [50282] = 4, + ACTIONS(2650), 1, + anon_sym_COLON, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2704), 14, + ACTIONS(2648), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50348] = 4, - ACTIONS(2628), 1, - anon_sym_COLON, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, + [50307] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 12, + ACTIONS(2748), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50373] = 2, + [50328] = 3, + ACTIONS(3542), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2690), 14, + ACTIONS(2706), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115884,18 +115775,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50394] = 4, - ACTIONS(2624), 1, + [50351] = 4, + ACTIONS(2650), 1, anon_sym_COLON, - ACTIONS(3552), 1, + ACTIONS(3205), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 12, + ACTIONS(2648), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115908,13 +115798,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50419] = 3, - ACTIONS(3554), 1, + [50376] = 3, + ACTIONS(3544), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 13, + ACTIONS(2690), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115928,40 +115818,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50442] = 4, - ACTIONS(2624), 1, - anon_sym_COLON, - ACTIONS(3195), 1, - anon_sym_COLON_COLON, + [50399] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 12, + ACTIONS(2718), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50467] = 3, - ACTIONS(3556), 1, - anon_sym_DASH_GT, + [50420] = 4, + ACTIONS(2650), 1, + anon_sym_COLON, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2762), 13, + ACTIONS(2648), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -115969,40 +115858,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50490] = 4, - ACTIONS(2640), 1, - anon_sym_COLON, + [50445] = 4, ACTIONS(3550), 1, - anon_sym_COLON_COLON, + anon_sym_pat, + STATE(587), 1, + sym_fragment_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3548), 12, + anon_sym_block, + anon_sym_expr, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [50470] = 3, + ACTIONS(2417), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2638), 12, + ACTIONS(2419), 13, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50515] = 3, - ACTIONS(3558), 1, - anon_sym_DASH_GT, + [50493] = 4, + ACTIONS(2610), 1, + anon_sym_COLON, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2684), 13, + ACTIONS(2608), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -116010,13 +115920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50538] = 3, - ACTIONS(3560), 1, + [50518] = 3, + ACTIONS(3552), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2738), 13, + ACTIONS(2728), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116030,53 +115940,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50561] = 4, - ACTIONS(2624), 1, - anon_sym_COLON, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, + [50541] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 12, + ACTIONS(2740), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50586] = 4, - ACTIONS(3564), 1, - anon_sym_pat, - STATE(572), 1, - sym_fragment_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3562), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [50611] = 2, + [50562] = 3, + ACTIONS(3554), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2758), 14, + ACTIONS(2764), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116088,16 +115977,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50632] = 3, - ACTIONS(3566), 1, - anon_sym_DASH_GT, + [50585] = 14, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3465), 1, + anon_sym_COLON_COLON, + ACTIONS(3556), 1, + anon_sym_COLON, + ACTIONS(3558), 1, + anon_sym_EQ, + ACTIONS(3560), 1, + anon_sym_COMMA, + ACTIONS(3562), 1, + anon_sym_GT, + STATE(1382), 1, + sym_type_arguments, + STATE(1402), 1, + sym_parameters, + STATE(1942), 1, + aux_sym_type_parameters_repeat1, + STATE(1946), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2772), 13, + ACTIONS(2574), 2, + anon_sym_PLUS, + anon_sym_as, + [50630] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2752), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116109,21 +116026,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50655] = 5, - ACTIONS(3572), 1, + [50651] = 5, + ACTIONS(3568), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3570), 2, + ACTIONS(3566), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3574), 2, + ACTIONS(3570), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3568), 9, + ACTIONS(3564), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116133,13 +116051,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50682] = 3, - ACTIONS(3576), 1, - anon_sym_DASH_GT, + [50678] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 13, + ACTIONS(2774), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116151,15 +116067,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50705] = 3, - ACTIONS(3578), 1, + [50699] = 3, + ACTIONS(3572), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 13, + ACTIONS(2734), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116173,11 +116090,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50728] = 2, + [50722] = 3, + ACTIONS(3574), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2768), 14, + ACTIONS(2698), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116189,33 +116108,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50749] = 2, + [50745] = 4, + ACTIONS(2646), 1, + anon_sym_COLON, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2678), 14, + ACTIONS(2644), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, [50770] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2980), 13, + ACTIONS(3010), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116233,7 +116153,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(616), 13, + ACTIONS(2938), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116251,7 +116171,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2972), 13, + ACTIONS(2644), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116269,7 +116189,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 13, + ACTIONS(2788), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116287,7 +116207,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2942), 13, + ACTIONS(582), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116305,7 +116225,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2808), 13, + ACTIONS(2916), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116319,29 +116239,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50890] = 2, + [50890] = 3, + ACTIONS(3578), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2926), 13, + ACTIONS(3576), 12, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50910] = 2, + [50912] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3012), 13, + ACTIONS(2998), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116355,11 +116276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50930] = 2, + [50932] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2840), 13, + ACTIONS(2930), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116373,11 +116294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50950] = 2, + [50952] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 13, + ACTIONS(2920), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116391,11 +116312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50970] = 2, + [50972] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3012), 13, + ACTIONS(2954), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116409,11 +116330,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50990] = 2, + [50992] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2832), 13, + ACTIONS(640), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116427,11 +116348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51010] = 2, + [51012] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2828), 13, + ACTIONS(2892), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116445,29 +116366,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51030] = 2, + [51032] = 4, + ACTIONS(3451), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2886), 13, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3445), 10, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [51050] = 2, + [51056] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2638), 13, + ACTIONS(2912), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116481,11 +116404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51070] = 2, + [51076] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2874), 13, + ACTIONS(2904), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116499,11 +116422,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51090] = 2, + [51096] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2800), 13, + ACTIONS(2908), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116517,11 +116440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51110] = 2, + [51116] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2958), 13, + ACTIONS(2954), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116535,11 +116458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51130] = 2, + [51136] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2964), 13, + ACTIONS(2608), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116553,29 +116476,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51150] = 2, + [51156] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(604), 13, + ACTIONS(2632), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2634), 11, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [51170] = 2, + [51178] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2950), 13, + ACTIONS(2942), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116589,11 +116513,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51190] = 2, + [51198] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2938), 13, + ACTIONS(624), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116607,11 +116531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51210] = 2, + [51218] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(648), 13, + ACTIONS(652), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116625,7 +116549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51230] = 3, + [51238] = 3, ACTIONS(3582), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -116644,11 +116568,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51252] = 2, + [51260] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(672), 13, + ACTIONS(2822), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116662,30 +116586,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51272] = 3, - ACTIONS(3586), 1, - anon_sym_EQ, + [51280] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3584), 12, + ACTIONS(2896), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [51294] = 2, + [51300] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 13, + ACTIONS(2966), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116699,11 +116622,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51314] = 2, + [51320] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 13, + ACTIONS(2962), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116717,31 +116640,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51334] = 4, - ACTIONS(3463), 1, - anon_sym_EQ, + [51340] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3457), 10, + ACTIONS(2648), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [51358] = 2, + [51360] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2968), 13, + ACTIONS(2900), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116755,75 +116676,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51378] = 3, + [51380] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2620), 11, + ACTIONS(2950), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [51400] = 5, - ACTIONS(2618), 1, - anon_sym_COLON, - ACTIONS(3588), 1, - anon_sym_LPAREN, + [51400] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 5, - anon_sym_RPAREN, + ACTIONS(3584), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2620), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2620), 5, + ACTIONS(2626), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51425] = 5, - ACTIONS(2602), 1, + [51423] = 5, + ACTIONS(2616), 1, anon_sym_COLON, - ACTIONS(3591), 1, + ACTIONS(3587), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 5, + ACTIONS(2612), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2604), 5, + ACTIONS(2618), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51450] = 4, - ACTIONS(3598), 1, + [51448] = 4, + ACTIONS(3594), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3596), 2, + ACTIONS(3592), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3594), 9, + ACTIONS(3590), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116833,113 +116752,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51473] = 4, - ACTIONS(3530), 1, - anon_sym_COLON_COLON, + [51471] = 5, + ACTIONS(2624), 1, + anon_sym_COLON, + ACTIONS(3584), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3596), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3594), 9, - anon_sym_SEMI, + ACTIONS(2620), 5, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_in, + anon_sym_LT2, + ACTIONS(2626), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [51496] = 5, - ACTIONS(2610), 1, + ACTIONS(2632), 1, anon_sym_COLON, - ACTIONS(3600), 1, + ACTIONS(3596), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 5, + ACTIONS(2628), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2612), 5, + ACTIONS(2634), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [51521] = 5, - ACTIONS(2634), 1, + ACTIONS(2640), 1, anon_sym_COLON, - ACTIONS(3603), 1, + ACTIONS(3599), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 5, + ACTIONS(2636), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2636), 5, + ACTIONS(2642), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51546] = 4, - ACTIONS(3606), 1, + [51546] = 10, + ACTIONS(3447), 1, + anon_sym_LPAREN, + ACTIONS(3449), 1, + anon_sym_LBRACE, + ACTIONS(3453), 1, anon_sym_COLON_COLON, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3459), 1, + anon_sym_AT, + ACTIONS(3602), 1, + anon_sym_BANG, + STATE(1382), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3596), 2, - anon_sym_COLON, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3445), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [51581] = 3, + ACTIONS(540), 1, anon_sym_EQ, - ACTIONS(3594), 9, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(538), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51569] = 4, - ACTIONS(3606), 1, - anon_sym_COLON_COLON, + [51602] = 5, + ACTIONS(2616), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3610), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3608), 9, - anon_sym_SEMI, + ACTIONS(2612), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3587), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, anon_sym_COMMA, - anon_sym_in, + ACTIONS(2618), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51592] = 4, - ACTIONS(3530), 1, + [51627] = 4, + ACTIONS(3608), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3610), 2, + ACTIONS(3606), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3608), 9, + ACTIONS(3604), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116949,16 +116894,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51615] = 4, - ACTIONS(3616), 1, + [51650] = 4, + ACTIONS(3614), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3614), 2, + ACTIONS(3612), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3612), 9, + ACTIONS(3610), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116968,93 +116913,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51638] = 4, + [51673] = 5, + ACTIONS(2624), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3591), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2598), 4, - anon_sym_SEMI, + ACTIONS(2620), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2604), 6, - anon_sym_BANG, + ACTIONS(3584), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2626), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51661] = 4, + [51698] = 5, + ACTIONS(2632), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3588), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2614), 4, - anon_sym_SEMI, + ACTIONS(2628), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2620), 6, - anon_sym_BANG, + ACTIONS(3596), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2634), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51684] = 5, - ACTIONS(2634), 1, + [51723] = 5, + ACTIONS(2640), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 3, + ACTIONS(2636), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3603), 3, + ACTIONS(3599), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2636), 5, + ACTIONS(2642), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51709] = 4, + [51748] = 4, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3600), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2606), 4, + ACTIONS(3618), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3616), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2612), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_in, anon_sym_PIPE, - [51732] = 4, - ACTIONS(3598), 1, + [51771] = 4, + ACTIONS(3614), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3610), 2, + ACTIONS(3592), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3608), 9, + ACTIONS(3590), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117064,16 +117011,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51755] = 4, - ACTIONS(3616), 1, + [51794] = 4, + ACTIONS(3536), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3620), 2, + ACTIONS(3612), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3618), 9, + ACTIONS(3610), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117083,33 +117030,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51778] = 5, - ACTIONS(2610), 1, + [51817] = 4, + ACTIONS(3536), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3592), 2, anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3590), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [51840] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 3, + ACTIONS(3587), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2612), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3600), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2612), 5, + ACTIONS(2618), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51803] = 3, - ACTIONS(528), 1, + [51863] = 3, + ACTIONS(520), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(526), 11, + ACTIONS(518), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117121,33 +117086,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51824] = 5, - ACTIONS(2618), 1, - anon_sym_COLON, + [51884] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 3, + ACTIONS(3596), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2628), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3588), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2620), 5, + ACTIONS(2634), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51849] = 3, - ACTIONS(552), 1, + [51907] = 3, + ACTIONS(550), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(550), 11, + ACTIONS(548), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117159,95 +117123,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51870] = 3, - ACTIONS(538), 1, - anon_sym_EQ, + [51928] = 4, + ACTIONS(3594), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(536), 11, + ACTIONS(3612), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3610), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51891] = 10, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_LBRACE, - ACTIONS(3465), 1, - anon_sym_COLON_COLON, - ACTIONS(3469), 1, - anon_sym_AT, - ACTIONS(3622), 1, - anon_sym_BANG, - STATE(1382), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3457), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [51926] = 4, + [51951] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3603), 2, + ACTIONS(3599), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2630), 4, + ACTIONS(2636), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2636), 6, + ACTIONS(2642), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51949] = 5, - ACTIONS(2602), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2598), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3591), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2604), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, [51974] = 3, - ACTIONS(3626), 1, + ACTIONS(3622), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3624), 10, + ACTIONS(3620), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117259,12 +117179,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51994] = 3, - ACTIONS(3630), 1, + ACTIONS(3626), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3628), 10, + ACTIONS(3624), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117275,59 +117195,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52014] = 9, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_BANG, - ACTIONS(3453), 1, - anon_sym_COLON_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3632), 1, - anon_sym_for, - STATE(1382), 1, - sym_type_arguments, - STATE(1392), 1, - sym_parameters, + [52014] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3630), 1, + sym_crate, + STATE(1574), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, + ACTIONS(3628), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52046] = 9, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3451), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52038] = 6, + ACTIONS(3632), 1, + anon_sym_COLON, + ACTIONS(3634), 1, anon_sym_BANG, - ACTIONS(3453), 1, + ACTIONS(3636), 1, anon_sym_COLON_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3634), 1, - anon_sym_for, - STATE(1382), 1, - sym_type_arguments, - STATE(1392), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52078] = 3, - ACTIONS(3638), 1, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2598), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52064] = 3, + ACTIONS(3640), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3636), 10, + ACTIONS(3638), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117338,59 +117251,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52098] = 9, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_BANG, - ACTIONS(3453), 1, - anon_sym_COLON_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3640), 1, - anon_sym_for, - STATE(1382), 1, - sym_type_arguments, - STATE(1392), 1, - sym_parameters, + [52084] = 3, + ACTIONS(3644), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, + ACTIONS(3642), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52130] = 9, - ACTIONS(3449), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [52104] = 9, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, + ACTIONS(3463), 1, anon_sym_BANG, - ACTIONS(3453), 1, + ACTIONS(3465), 1, anon_sym_COLON_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3642), 1, + ACTIONS(3646), 1, anon_sym_for, STATE(1382), 1, sym_type_arguments, - STATE(1392), 1, + STATE(1402), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, + ACTIONS(2574), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52162] = 3, - ACTIONS(3646), 1, + [52136] = 3, + ACTIONS(3612), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3644), 10, + ACTIONS(3610), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117401,7 +117308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52182] = 3, + [52156] = 3, ACTIONS(3650), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -117418,13 +117325,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52202] = 3, - ACTIONS(3596), 1, + [52176] = 3, + ACTIONS(3592), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3594), 10, + ACTIONS(3590), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117435,33 +117342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52222] = 6, - ACTIONS(3652), 1, - anon_sym_COLON, + [52196] = 3, ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3656), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3574), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52248] = 3, - ACTIONS(3463), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 10, + ACTIONS(3652), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117472,13 +117359,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52268] = 3, - ACTIONS(3660), 1, + [52216] = 3, + ACTIONS(3658), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3658), 10, + ACTIONS(3656), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117489,53 +117376,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52288] = 3, - ACTIONS(3664), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3662), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [52308] = 9, - ACTIONS(3449), 1, + [52236] = 9, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, + ACTIONS(3463), 1, anon_sym_BANG, - ACTIONS(3453), 1, + ACTIONS(3465), 1, anon_sym_COLON_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3666), 1, + ACTIONS(3660), 1, anon_sym_for, STATE(1382), 1, sym_type_arguments, - STATE(1392), 1, + STATE(1402), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, + ACTIONS(2574), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52340] = 3, - ACTIONS(3670), 1, + [52268] = 3, + ACTIONS(3664), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3668), 10, + ACTIONS(3662), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117546,13 +117416,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52360] = 3, - ACTIONS(3674), 1, + [52288] = 3, + ACTIONS(3668), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3672), 10, + ACTIONS(3666), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117563,36 +117433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52380] = 9, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_BANG, - ACTIONS(3453), 1, - anon_sym_COLON_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3676), 1, - anon_sym_for, - STATE(1382), 1, - sym_type_arguments, - STATE(1392), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52412] = 3, - ACTIONS(3610), 1, + [52308] = 3, + ACTIONS(3672), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3608), 10, + ACTIONS(3670), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117603,70 +117450,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52432] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3680), 1, - sym_crate, - STATE(1558), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3678), 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, - [52456] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3682), 1, - sym_crate, - STATE(1558), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3678), 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, - [52480] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3684), 1, - sym_crate, - STATE(1558), 1, - sym_string_literal, + [52328] = 3, + ACTIONS(3676), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3678), 8, + ACTIONS(3674), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52504] = 3, - ACTIONS(622), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [52348] = 3, + ACTIONS(3680), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(620), 10, + ACTIONS(3678), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117677,13 +117484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52524] = 3, - ACTIONS(3688), 1, + [52368] = 3, + ACTIONS(3684), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3686), 10, + ACTIONS(3682), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117694,13 +117501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52544] = 3, - ACTIONS(3692), 1, + [52388] = 3, + ACTIONS(600), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3690), 10, + ACTIONS(598), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117711,55 +117518,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52564] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3694), 1, - sym_crate, - STATE(1558), 1, - sym_string_literal, + [52408] = 3, + ACTIONS(3688), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3678), 8, + ACTIONS(3686), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52588] = 9, - ACTIONS(3449), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [52428] = 9, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, + ACTIONS(3463), 1, anon_sym_BANG, - ACTIONS(3453), 1, + ACTIONS(3465), 1, anon_sym_COLON_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3696), 1, + ACTIONS(3690), 1, anon_sym_for, STATE(1382), 1, sym_type_arguments, - STATE(1392), 1, + STATE(1402), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, + ACTIONS(2574), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52620] = 3, - ACTIONS(3700), 1, + [52460] = 3, + ACTIONS(3694), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3698), 10, + ACTIONS(3692), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117770,36 +117575,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52640] = 9, - ACTIONS(3449), 1, + [52480] = 9, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, anon_sym_LPAREN, - ACTIONS(3451), 1, + ACTIONS(3463), 1, anon_sym_BANG, - ACTIONS(3453), 1, + ACTIONS(3465), 1, anon_sym_COLON_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3702), 1, + ACTIONS(3696), 1, anon_sym_for, STATE(1382), 1, sym_type_arguments, - STATE(1392), 1, + STATE(1402), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, + ACTIONS(2574), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52672] = 3, - ACTIONS(3706), 1, + [52512] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3698), 1, + sym_crate, + STATE(1574), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3628), 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, + [52536] = 3, + ACTIONS(3702), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3704), 10, + ACTIONS(3700), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117810,13 +117634,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52692] = 3, - ACTIONS(3710), 1, + [52556] = 9, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3465), 1, + anon_sym_COLON_COLON, + ACTIONS(3704), 1, + anon_sym_for, + STATE(1382), 1, + sym_type_arguments, + STATE(1402), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2574), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52588] = 9, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3465), 1, + anon_sym_COLON_COLON, + ACTIONS(3706), 1, + anon_sym_for, + STATE(1382), 1, + sym_type_arguments, + STATE(1402), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2574), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52620] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3708), 1, + sym_crate, + STATE(1574), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3628), 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, + [52644] = 3, + ACTIONS(3712), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3708), 10, + ACTIONS(3710), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117827,13 +117716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52712] = 3, - ACTIONS(3714), 1, + [52664] = 3, + ACTIONS(3716), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3712), 10, + ACTIONS(3714), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117844,13 +117733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52732] = 3, - ACTIONS(3718), 1, + [52684] = 3, + ACTIONS(3720), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 10, + ACTIONS(3718), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117861,24 +117750,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52752] = 3, + [52704] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, ACTIONS(3722), 1, - anon_sym_EQ, + sym_crate, + STATE(1574), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3720), 10, + ACTIONS(3628), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [52772] = 3, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52728] = 3, ACTIONS(3726), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -117895,13 +117786,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52792] = 3, + [52748] = 9, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3465), 1, + anon_sym_COLON_COLON, + ACTIONS(3728), 1, + anon_sym_for, + STATE(1382), 1, + sym_type_arguments, + STATE(1402), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2574), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52780] = 6, + ACTIONS(3632), 1, + anon_sym_COLON, + ACTIONS(3634), 1, + anon_sym_BANG, ACTIONS(3730), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2598), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52806] = 3, + ACTIONS(3734), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3728), 10, + ACTIONS(3732), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117912,13 +117846,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52812] = 3, - ACTIONS(3734), 1, + [52826] = 3, + ACTIONS(3451), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3732), 10, + ACTIONS(3445), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117929,7 +117863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52832] = 3, + [52846] = 3, ACTIONS(3738), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -117946,13 +117880,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52852] = 3, - ACTIONS(3742), 1, + [52866] = 9, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3465), 1, + anon_sym_COLON_COLON, + ACTIONS(3740), 1, + anon_sym_for, + STATE(1382), 1, + sym_type_arguments, + STATE(1402), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2574), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52898] = 3, + ACTIONS(3744), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3740), 10, + ACTIONS(3742), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117963,13 +117920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52872] = 3, - ACTIONS(3746), 1, + [52918] = 3, + ACTIONS(3748), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3744), 10, + ACTIONS(3746), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117980,13 +117937,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52892] = 3, - ACTIONS(3750), 1, + [52938] = 3, + ACTIONS(3752), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3748), 10, + ACTIONS(3750), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117997,13 +117954,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52912] = 3, - ACTIONS(3754), 1, + [52958] = 3, + ACTIONS(3756), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3752), 10, + ACTIONS(3754), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -118014,13 +117971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52932] = 3, - ACTIONS(3758), 1, + [52978] = 3, + ACTIONS(3760), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3756), 10, + ACTIONS(3758), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -118031,2246 +117988,2280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52952] = 6, - ACTIONS(3652), 1, - anon_sym_COLON, - ACTIONS(3654), 1, + [52998] = 5, + ACTIONS(3634), 1, anon_sym_BANG, - ACTIONS(3760), 1, + ACTIONS(3730), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 2, + ACTIONS(3570), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2650), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52978] = 3, - ACTIONS(3764), 1, - anon_sym_EQ, + [53021] = 5, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3762), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3762), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2598), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53044] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3764), 1, + sym_identifier, + ACTIONS(3766), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + ACTIONS(3768), 1, anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [52998] = 7, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3766), 1, - anon_sym_LBRACE, - STATE(1378), 1, - sym_type_arguments, - STATE(1399), 1, - sym_parameters, + ACTIONS(3770), 1, + sym_crate, + STATE(2081), 1, + sym_enum_variant, + STATE(2532), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [53025] = 10, + STATE(1566), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53077] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3768), 1, + ACTIONS(3764), 1, sym_identifier, ACTIONS(3770), 1, - anon_sym_RBRACE, + sym_crate, ACTIONS(3772), 1, - anon_sym_COMMA, + anon_sym_RBRACE, ACTIONS(3774), 1, - sym_crate, - STATE(1932), 1, + anon_sym_COMMA, + STATE(1921), 1, sym_enum_variant, - STATE(2465), 1, + STATE(2532), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1588), 2, + STATE(1568), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53058] = 10, + [53110] = 7, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_LBRACE, + STATE(1381), 1, + sym_type_arguments, + STATE(1386), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2648), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [53137] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3776), 1, - sym_identifier, ACTIONS(3778), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3780), 1, + anon_sym_RBRACE, + ACTIONS(3782), 1, anon_sym_COMMA, - STATE(2041), 1, + STATE(1901), 1, sym_field_declaration, - STATE(2533), 1, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1580), 2, + STATE(1578), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53091] = 8, + [53170] = 8, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3782), 1, - sym_identifier, ACTIONS(3784), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3786), 1, - anon_sym_COMMA, + anon_sym_RBRACE, ACTIONS(3788), 1, + anon_sym_COMMA, + ACTIONS(3790), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1879), 2, + STATE(1812), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1935), 3, + STATE(2102), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [53120] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3509), 1, - anon_sym_trait, - ACTIONS(3790), 1, - anon_sym_impl, - STATE(163), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53145] = 9, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_BANG, - ACTIONS(3453), 1, - anon_sym_COLON_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3792), 1, - anon_sym_EQ, - STATE(1392), 1, - sym_parameters, - STATE(1786), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 3, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - [53176] = 5, - ACTIONS(3654), 1, + [53199] = 5, + ACTIONS(3634), 1, anon_sym_BANG, - ACTIONS(3760), 1, + ACTIONS(3636), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 2, + ACTIONS(3570), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2650), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53199] = 5, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3656), 1, - anon_sym_COLON_COLON, + [53222] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3481), 1, + anon_sym_trait, + ACTIONS(3792), 1, + anon_sym_impl, + STATE(163), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2650), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53222] = 5, - ACTIONS(3654), 1, + [53247] = 9, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, anon_sym_BANG, - ACTIONS(3794), 1, + ACTIONS(3465), 1, anon_sym_COLON_COLON, + ACTIONS(3794), 1, + anon_sym_EQ, + STATE(1402), 1, + sym_parameters, + STATE(1747), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53245] = 10, + ACTIONS(2574), 3, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + [53278] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3776), 1, + ACTIONS(3778), 1, sym_identifier, ACTIONS(3796), 1, anon_sym_RBRACE, ACTIONS(3798), 1, anon_sym_COMMA, - STATE(2120), 1, + STATE(2119), 1, sym_field_declaration, - STATE(2533), 1, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1587), 2, + STATE(1557), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53278] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3768), 1, - sym_identifier, - ACTIONS(3774), 1, - sym_crate, + [53311] = 10, ACTIONS(3800), 1, - anon_sym_RBRACE, + anon_sym_SEMI, ACTIONS(3802), 1, - anon_sym_COMMA, - STATE(2082), 1, - sym_enum_variant, - STATE(2465), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1581), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53311] = 7, - ACTIONS(3451), 1, - anon_sym_BANG, - ACTIONS(3459), 1, anon_sym_LPAREN, - ACTIONS(3463), 1, - anon_sym_COLON, ACTIONS(3804), 1, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3808), 1, + anon_sym_LT, + STATE(830), 1, + sym_field_declaration_list, + STATE(1622), 1, + sym_type_parameters, + STATE(2044), 1, + sym_ordered_field_declaration_list, + STATE(2264), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3457), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [53337] = 9, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3806), 1, - sym_identifier, - ACTIONS(3808), 1, - anon_sym_const, + [53343] = 7, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, ACTIONS(3810), 1, - anon_sym_GT, - ACTIONS(3812), 1, - sym_metavariable, - STATE(1818), 1, - sym_lifetime, - STATE(2050), 1, - sym_constrained_type_parameter, + anon_sym_for, + STATE(1381), 1, + sym_type_arguments, + STATE(1386), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2265), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53367] = 5, - ACTIONS(3814), 1, + ACTIONS(2648), 4, anon_sym_SEMI, - ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(860), 1, - sym_declaration_list, + anon_sym_PLUS, + anon_sym_where, + [53369] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3812), 1, + sym_identifier, + STATE(104), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 6, + ACTIONS(3814), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53389] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, + [53391] = 5, + ACTIONS(3816), 1, + anon_sym_SEMI, ACTIONS(3818), 1, - sym_identifier, - STATE(101), 1, - sym_block, + anon_sym_LBRACE, + STATE(312), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3820), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53411] = 5, + [53413] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3770), 1, + sym_crate, + ACTIONS(3778), 1, + sym_identifier, + ACTIONS(3820), 1, + anon_sym_RBRACE, + STATE(2225), 1, + sym_field_declaration, + STATE(2376), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1588), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53443] = 5, ACTIONS(3822), 1, anon_sym_SEMI, ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(348), 1, + STATE(842), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53433] = 5, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(3826), 1, - anon_sym_SEMI, - STATE(468), 1, - sym_declaration_list, + [53465] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3770), 1, + sym_crate, + ACTIONS(3778), 1, + sym_identifier, + ACTIONS(3826), 1, + anon_sym_RBRACE, + STATE(2225), 1, + sym_field_declaration, + STATE(2376), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53455] = 9, + STATE(1588), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53495] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3768), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3774), 1, + ACTIONS(3770), 1, sym_crate, ACTIONS(3828), 1, anon_sym_RBRACE, - STATE(2229), 1, + STATE(2325), 1, sym_enum_variant, - STATE(2465), 1, + STATE(2532), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1595), 2, + STATE(1569), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53485] = 7, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3830), 1, - anon_sym_for, - STATE(1378), 1, - sym_type_arguments, - STATE(1399), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53511] = 9, + [53525] = 9, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3806), 1, + ACTIONS(3830), 1, sym_identifier, - ACTIONS(3808), 1, - anon_sym_const, - ACTIONS(3812), 1, - sym_metavariable, ACTIONS(3832), 1, + anon_sym_const, + ACTIONS(3834), 1, anon_sym_GT, - STATE(1818), 1, + ACTIONS(3836), 1, + sym_metavariable, + STATE(1821), 1, sym_lifetime, - STATE(2050), 1, + STATE(2071), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2265), 2, + STATE(2206), 2, sym_const_parameter, sym_optional_type_parameter, - [53541] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3768), 1, - sym_identifier, - ACTIONS(3774), 1, - sym_crate, - ACTIONS(3834), 1, - anon_sym_RBRACE, - STATE(2229), 1, - sym_enum_variant, - STATE(2465), 1, - sym_visibility_modifier, + [53555] = 10, + ACTIONS(3802), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3808), 1, + anon_sym_LT, + ACTIONS(3838), 1, + anon_sym_SEMI, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(373), 1, + sym_field_declaration_list, + STATE(1614), 1, + sym_type_parameters, + STATE(1897), 1, + sym_ordered_field_declaration_list, + STATE(2292), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1595), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53571] = 9, + [53587] = 9, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3806), 1, + ACTIONS(3830), 1, sym_identifier, - ACTIONS(3808), 1, + ACTIONS(3832), 1, anon_sym_const, - ACTIONS(3812), 1, - sym_metavariable, ACTIONS(3836), 1, + sym_metavariable, + ACTIONS(3842), 1, anon_sym_GT, - STATE(1818), 1, + STATE(1881), 1, sym_lifetime, - STATE(2050), 1, + STATE(2071), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2265), 2, + STATE(2206), 2, sym_const_parameter, sym_optional_type_parameter, - [53601] = 9, + [53617] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3768), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3774), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3838), 1, + ACTIONS(3844), 1, anon_sym_RBRACE, - STATE(2229), 1, + STATE(2325), 1, sym_enum_variant, - STATE(2465), 1, + STATE(2532), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1595), 2, + STATE(1569), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53631] = 7, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, + [53647] = 7, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(3840), 1, - anon_sym_for, - STATE(1378), 1, - sym_type_arguments, - STATE(1399), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53657] = 7, - ACTIONS(3449), 1, + ACTIONS(3461), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3842), 1, + ACTIONS(3846), 1, anon_sym_for, - STATE(1378), 1, + STATE(1381), 1, sym_type_arguments, - STATE(1399), 1, + STATE(1386), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, + ACTIONS(2648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53683] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3844), 1, - anon_sym_move, - STATE(98), 1, - sym_block, + [53673] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3770), 1, + sym_crate, + ACTIONS(3778), 1, + sym_identifier, + ACTIONS(3848), 1, + anon_sym_RBRACE, + STATE(2225), 1, + sym_field_declaration, + STATE(2376), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53705] = 9, + STATE(1588), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53703] = 9, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3806), 1, + ACTIONS(3830), 1, sym_identifier, - ACTIONS(3808), 1, + ACTIONS(3832), 1, anon_sym_const, - ACTIONS(3812), 1, + ACTIONS(3836), 1, sym_metavariable, - ACTIONS(3846), 1, + ACTIONS(3850), 1, anon_sym_GT, - STATE(1818), 1, + STATE(1821), 1, sym_lifetime, - STATE(2050), 1, + STATE(2071), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2265), 2, + STATE(2206), 2, sym_const_parameter, sym_optional_type_parameter, - [53735] = 7, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3782), 1, - sym_identifier, - ACTIONS(3788), 1, - anon_sym_DOT_DOT, - ACTIONS(3848), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1879), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53761] = 9, + [53733] = 9, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3806), 1, + ACTIONS(3830), 1, sym_identifier, - ACTIONS(3808), 1, + ACTIONS(3832), 1, anon_sym_const, - ACTIONS(3812), 1, + ACTIONS(3836), 1, sym_metavariable, - ACTIONS(3850), 1, + ACTIONS(3852), 1, anon_sym_GT, - STATE(1818), 1, + STATE(1821), 1, sym_lifetime, - STATE(2050), 1, + STATE(2071), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2265), 2, + STATE(2206), 2, sym_const_parameter, sym_optional_type_parameter, - [53791] = 7, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3852), 1, - anon_sym_for, - STATE(1378), 1, - sym_type_arguments, - STATE(1399), 1, - sym_parameters, + [53763] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3764), 1, + sym_identifier, + ACTIONS(3770), 1, + sym_crate, + ACTIONS(3854), 1, + anon_sym_RBRACE, + STATE(2325), 1, + sym_enum_variant, + STATE(2532), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53817] = 7, + STATE(1569), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53793] = 9, + ACTIONS(53), 1, + anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3788), 1, - anon_sym_DOT_DOT, - ACTIONS(3854), 1, + ACTIONS(3770), 1, + sym_crate, + ACTIONS(3856), 1, anon_sym_RBRACE, + STATE(2325), 1, + sym_enum_variant, + STATE(2532), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1879), 2, + STATE(1569), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53843] = 7, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, + [53823] = 7, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(3856), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3858), 1, anon_sym_for, - STATE(1378), 1, + STATE(1381), 1, sym_type_arguments, - STATE(1399), 1, + STATE(1386), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, + ACTIONS(2648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53869] = 10, - ACTIONS(3858), 1, - anon_sym_SEMI, - ACTIONS(3860), 1, + [53849] = 7, + ACTIONS(3447), 1, anon_sym_LPAREN, - ACTIONS(3862), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(3866), 1, - anon_sym_LT, - STATE(907), 1, - sym_field_declaration_list, - STATE(1600), 1, - sym_type_parameters, - STATE(2139), 1, - sym_ordered_field_declaration_list, - STATE(2162), 1, - sym_where_clause, + ACTIONS(3451), 1, + anon_sym_COLON, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3860), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53901] = 9, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3445), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [53875] = 9, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3806), 1, + ACTIONS(3830), 1, sym_identifier, - ACTIONS(3808), 1, + ACTIONS(3832), 1, anon_sym_const, - ACTIONS(3812), 1, + ACTIONS(3836), 1, sym_metavariable, - ACTIONS(3868), 1, + ACTIONS(3862), 1, anon_sym_GT, - STATE(1818), 1, + STATE(1821), 1, sym_lifetime, - STATE(2050), 1, + STATE(2071), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2265), 2, + STATE(2206), 2, sym_const_parameter, sym_optional_type_parameter, - [53931] = 9, + [53905] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3774), 1, - sym_crate, - ACTIONS(3776), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3870), 1, + ACTIONS(3770), 1, + sym_crate, + ACTIONS(3864), 1, anon_sym_RBRACE, - STATE(2343), 1, - sym_field_declaration, - STATE(2533), 1, + STATE(2325), 1, + sym_enum_variant, + STATE(2532), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1569), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53961] = 9, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3806), 1, - sym_identifier, - ACTIONS(3808), 1, - anon_sym_const, - ACTIONS(3812), 1, - sym_metavariable, - ACTIONS(3872), 1, - anon_sym_GT, - STATE(1818), 1, - sym_lifetime, - STATE(2050), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2265), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53991] = 10, - ACTIONS(3860), 1, - anon_sym_LPAREN, - ACTIONS(3862), 1, + [53935] = 5, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, ACTIONS(3866), 1, - anon_sym_LT, - ACTIONS(3874), 1, anon_sym_SEMI, - STATE(1039), 1, - sym_field_declaration_list, - STATE(1644), 1, - sym_type_parameters, - STATE(2045), 1, - sym_ordered_field_declaration_list, - STATE(2264), 1, - sym_where_clause, + STATE(468), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54023] = 9, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3806), 1, - sym_identifier, - ACTIONS(3808), 1, + ACTIONS(2598), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3812), 1, - sym_metavariable, - ACTIONS(3876), 1, - anon_sym_GT, - STATE(1826), 1, - sym_lifetime, - STATE(2050), 1, - sym_constrained_type_parameter, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53957] = 7, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3868), 1, + anon_sym_for, + STATE(1381), 1, + sym_type_arguments, + STATE(1386), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2265), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54053] = 9, + ACTIONS(2648), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53983] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3870), 1, + anon_sym_move, + STATE(102), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54005] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3776), 1, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3878), 1, + ACTIONS(3872), 1, anon_sym_RBRACE, - STATE(2343), 1, + STATE(2225), 1, sym_field_declaration, - STATE(2533), 1, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1588), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54083] = 7, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, + [54035] = 9, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3830), 1, + sym_identifier, + ACTIONS(3832), 1, + anon_sym_const, + ACTIONS(3836), 1, + sym_metavariable, + ACTIONS(3874), 1, + anon_sym_GT, + STATE(1821), 1, + sym_lifetime, + STATE(2071), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2206), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54065] = 7, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(3880), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, anon_sym_for, - STATE(1378), 1, + STATE(1381), 1, sym_type_arguments, - STATE(1399), 1, + STATE(1386), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, + ACTIONS(2648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54109] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - sym_crate, - ACTIONS(3776), 1, - sym_identifier, - ACTIONS(3882), 1, - anon_sym_RBRACE, - STATE(2343), 1, - sym_field_declaration, - STATE(2533), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54139] = 5, - ACTIONS(3816), 1, + [54091] = 5, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3884), 1, + ACTIONS(3878), 1, anon_sym_SEMI, - STATE(1057), 1, + STATE(808), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54161] = 10, - ACTIONS(3860), 1, + [54113] = 7, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, anon_sym_LPAREN, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(3866), 1, - anon_sym_LT, - ACTIONS(3886), 1, + ACTIONS(3880), 1, + anon_sym_for, + STATE(1381), 1, + sym_type_arguments, + STATE(1386), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2648), 4, anon_sym_SEMI, - ACTIONS(3888), 1, anon_sym_LBRACE, - STATE(373), 1, - sym_field_declaration_list, - STATE(1629), 1, - sym_type_parameters, - STATE(2031), 1, - sym_ordered_field_declaration_list, - STATE(2252), 1, - sym_where_clause, + anon_sym_PLUS, + anon_sym_where, + [54139] = 9, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3830), 1, + sym_identifier, + ACTIONS(3832), 1, + anon_sym_const, + ACTIONS(3836), 1, + sym_metavariable, + ACTIONS(3882), 1, + anon_sym_GT, + STATE(1821), 1, + sym_lifetime, + STATE(2071), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2206), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54169] = 9, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3830), 1, + sym_identifier, + ACTIONS(3832), 1, + anon_sym_const, + ACTIONS(3836), 1, + sym_metavariable, + ACTIONS(3884), 1, + anon_sym_GT, + STATE(1821), 1, + sym_lifetime, + STATE(2071), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54193] = 9, + STATE(2206), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54199] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3776), 1, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3890), 1, + ACTIONS(3886), 1, anon_sym_RBRACE, - STATE(2343), 1, + STATE(2225), 1, sym_field_declaration, - STATE(2533), 1, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1588), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54223] = 9, + [54229] = 9, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3806), 1, + ACTIONS(3830), 1, sym_identifier, - ACTIONS(3808), 1, + ACTIONS(3832), 1, anon_sym_const, - ACTIONS(3812), 1, + ACTIONS(3836), 1, sym_metavariable, - ACTIONS(3892), 1, + ACTIONS(3888), 1, anon_sym_GT, - STATE(1818), 1, + STATE(1821), 1, sym_lifetime, - STATE(2050), 1, + STATE(2071), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2265), 2, + STATE(2206), 2, sym_const_parameter, sym_optional_type_parameter, - [54253] = 9, - ACTIONS(53), 1, - anon_sym_pub, + [54259] = 7, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3890), 1, + anon_sym_for, + STATE(1381), 1, + sym_type_arguments, + STATE(1386), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2648), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54285] = 7, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3774), 1, - sym_crate, - ACTIONS(3776), 1, + ACTIONS(3784), 1, sym_identifier, - ACTIONS(3894), 1, + ACTIONS(3790), 1, + anon_sym_DOT_DOT, + ACTIONS(3892), 1, anon_sym_RBRACE, - STATE(2343), 1, - sym_field_declaration, - STATE(2533), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1812), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54283] = 7, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, + STATE(2236), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54311] = 7, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(3896), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3894), 1, anon_sym_for, - STATE(1378), 1, + STATE(1381), 1, sym_type_arguments, - STATE(1399), 1, + STATE(1386), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, + ACTIONS(2648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54309] = 9, - ACTIONS(53), 1, - anon_sym_pub, + [54337] = 10, + ACTIONS(3802), 1, + anon_sym_LPAREN, + ACTIONS(3804), 1, + anon_sym_LBRACE, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3808), 1, + anon_sym_LT, + ACTIONS(3896), 1, + anon_sym_SEMI, + STATE(967), 1, + sym_field_declaration_list, + STATE(1642), 1, + sym_type_parameters, + STATE(2138), 1, + sym_ordered_field_declaration_list, + STATE(2180), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54369] = 10, + ACTIONS(3802), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3808), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(3898), 1, + anon_sym_SEMI, + STATE(335), 1, + sym_field_declaration_list, + STATE(1640), 1, + sym_type_parameters, + STATE(2078), 1, + sym_ordered_field_declaration_list, + STATE(2171), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54401] = 7, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3768), 1, + ACTIONS(3784), 1, sym_identifier, - ACTIONS(3774), 1, - sym_crate, - ACTIONS(3898), 1, + ACTIONS(3790), 1, + anon_sym_DOT_DOT, + ACTIONS(3900), 1, anon_sym_RBRACE, - STATE(2229), 1, - sym_enum_variant, - STATE(2465), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1595), 2, + STATE(1812), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54339] = 9, + STATE(2236), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54427] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3768), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3774), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3900), 1, + ACTIONS(3902), 1, anon_sym_RBRACE, - STATE(2229), 1, + STATE(2325), 1, sym_enum_variant, - STATE(2465), 1, + STATE(2532), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1595), 2, + STATE(1569), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54369] = 9, + [54457] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3776), 1, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3902), 1, + ACTIONS(3904), 1, anon_sym_RBRACE, - STATE(2343), 1, + STATE(2225), 1, sym_field_declaration, - STATE(2533), 1, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1588), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54399] = 7, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3904), 1, - anon_sym_for, - STATE(1378), 1, - sym_type_arguments, - STATE(1399), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54425] = 9, + [54487] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3768), 1, - sym_identifier, - ACTIONS(3774), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3906), 1, - anon_sym_RBRACE, - STATE(2229), 1, - sym_enum_variant, - STATE(2465), 1, + ACTIONS(3778), 1, + sym_identifier, + STATE(2134), 1, + sym_field_declaration, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1595), 2, + STATE(1153), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54455] = 10, - ACTIONS(3860), 1, - anon_sym_LPAREN, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(3866), 1, - anon_sym_LT, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3908), 1, - anon_sym_SEMI, - STATE(330), 1, - sym_field_declaration_list, - STATE(1615), 1, - sym_type_parameters, - STATE(1923), 1, - sym_ordered_field_declaration_list, - STATE(2339), 1, - sym_where_clause, + [54514] = 6, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3784), 1, + sym_identifier, + ACTIONS(3790), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54487] = 2, + STATE(1812), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2236), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54537] = 4, + ACTIONS(3908), 1, + anon_sym_PLUS, + STATE(1579), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3910), 8, + ACTIONS(3906), 6, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54502] = 8, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54556] = 8, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3808), 1, + ACTIONS(3832), 1, anon_sym_const, - ACTIONS(3912), 1, + ACTIONS(3910), 1, sym_identifier, - ACTIONS(3914), 1, + ACTIONS(3912), 1, sym_metavariable, - STATE(1730), 1, + STATE(1693), 1, sym_lifetime, - STATE(1797), 1, + STATE(1857), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2153), 2, + STATE(1980), 2, sym_const_parameter, sym_optional_type_parameter, - [54529] = 8, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(3918), 1, - anon_sym_RBRACE, - ACTIONS(3920), 1, - anon_sym_COMMA, + [54583] = 8, + ACTIONS(3914), 1, + anon_sym_LPAREN, + ACTIONS(3919), 1, + anon_sym_LBRACE, ACTIONS(3922), 1, - anon_sym_ref, - ACTIONS(3924), 1, - sym_mutable_specifier, + anon_sym_LBRACK, + STATE(1561), 1, + aux_sym_macro_definition_repeat1, + STATE(2389), 1, + sym_macro_rule, + STATE(2437), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2083), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54556] = 9, + ACTIONS(3917), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [54610] = 4, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + STATE(1574), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3628), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54629] = 9, + ACTIONS(3806), 1, + anon_sym_where, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(3926), 1, + ACTIONS(3925), 1, anon_sym_COLON, - ACTIONS(3928), 1, + ACTIONS(3927), 1, anon_sym_LT, - STATE(378), 1, + STATE(1025), 1, sym_declaration_list, - STATE(1653), 1, + STATE(1673), 1, sym_type_parameters, - STATE(1817), 1, + STATE(1805), 1, sym_trait_bounds, - STATE(2255), 1, + STATE(2204), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54585] = 4, - ACTIONS(3932), 1, - anon_sym_PLUS, - STATE(1569), 1, - aux_sym_trait_bounds_repeat1, + [54658] = 4, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + ACTIONS(3634), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3930), 6, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2598), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54677] = 9, + ACTIONS(3806), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54604] = 8, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(3922), 1, - anon_sym_ref, - ACTIONS(3924), 1, - sym_mutable_specifier, - ACTIONS(3934), 1, - anon_sym_RBRACE, - ACTIONS(3936), 1, - anon_sym_COMMA, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3925), 1, + anon_sym_COLON, + ACTIONS(3927), 1, + anon_sym_LT, + STATE(831), 1, + sym_declaration_list, + STATE(1715), 1, + sym_type_parameters, + STATE(1828), 1, + sym_trait_bounds, + STATE(2262), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2035), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54631] = 8, + [54706] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3774), 1, - sym_crate, - ACTIONS(3776), 1, + ACTIONS(3764), 1, sym_identifier, - STATE(2343), 1, - sym_field_declaration, - STATE(2533), 1, + ACTIONS(3770), 1, + sym_crate, + STATE(2155), 1, + sym_enum_variant, + STATE(2532), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1153), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54658] = 6, + [54733] = 6, + ACTIONS(3447), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3929), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3445), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [54756] = 8, + ACTIONS(53), 1, + anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3788), 1, - anon_sym_DOT_DOT, + ACTIONS(3770), 1, + sym_crate, + STATE(1915), 1, + sym_enum_variant, + STATE(2532), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1879), 2, + STATE(1153), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2232), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [54681] = 4, - ACTIONS(3616), 1, - anon_sym_COLON_COLON, - ACTIONS(3938), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54700] = 6, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_COLON_COLON, - ACTIONS(3622), 1, - anon_sym_BANG, + [54783] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3764), 1, + sym_identifier, + ACTIONS(3770), 1, + sym_crate, + STATE(2265), 1, + sym_enum_variant, + STATE(2532), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3457), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [54723] = 9, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + STATE(1153), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54810] = 9, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3926), 1, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(3925), 1, anon_sym_COLON, - ACTIONS(3928), 1, + ACTIONS(3927), 1, anon_sym_LT, - STATE(473), 1, + STATE(378), 1, sym_declaration_list, - STATE(1707), 1, + STATE(1711), 1, sym_type_parameters, - STATE(1803), 1, + STATE(1874), 1, sym_trait_bounds, - STATE(2179), 1, + STATE(2294), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54752] = 4, - ACTIONS(3942), 1, - anon_sym_PLUS, - STATE(1569), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3940), 6, - anon_sym_SEMI, - anon_sym_LBRACE, + [54839] = 9, + ACTIONS(3806), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54771] = 9, - ACTIONS(3816), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(3926), 1, + ACTIONS(3925), 1, anon_sym_COLON, - ACTIONS(3928), 1, + ACTIONS(3927), 1, anon_sym_LT, - STATE(1040), 1, + STATE(492), 1, sym_declaration_list, - STATE(1655), 1, + STATE(1701), 1, sym_type_parameters, - STATE(1824), 1, + STATE(1886), 1, sym_trait_bounds, - STATE(2263), 1, + STATE(2281), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54800] = 9, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [54868] = 9, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3926), 1, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(3925), 1, anon_sym_COLON, - ACTIONS(3928), 1, + ACTIONS(3927), 1, anon_sym_LT, - STATE(310), 1, + STATE(301), 1, sym_declaration_list, - STATE(1737), 1, + STATE(1707), 1, sym_type_parameters, - STATE(1851), 1, + STATE(1869), 1, sym_trait_bounds, - STATE(2238), 1, + STATE(2335), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54829] = 6, - ACTIONS(3451), 1, - anon_sym_BANG, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3945), 1, - anon_sym_COLON_COLON, + [54897] = 5, + ACTIONS(3934), 1, + anon_sym_fn, + ACTIONS(3936), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3457), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [54852] = 4, - ACTIONS(2672), 1, - anon_sym_COLON_COLON, - ACTIONS(3947), 1, - anon_sym_BANG, + STATE(1573), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3931), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [54918] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 6, + ACTIONS(3939), 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, - [54871] = 8, + [54933] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3764), 1, + sym_identifier, + ACTIONS(3770), 1, + sym_crate, + STATE(2325), 1, + sym_enum_variant, + STATE(2532), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1569), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54960] = 6, + ACTIONS(3762), 1, + anon_sym_COLON_COLON, + ACTIONS(3941), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2648), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3564), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54983] = 8, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3808), 1, - anon_sym_const, - ACTIONS(3949), 1, + ACTIONS(3830), 1, sym_identifier, - ACTIONS(3951), 1, + ACTIONS(3832), 1, + anon_sym_const, + ACTIONS(3836), 1, sym_metavariable, - STATE(1775), 1, + STATE(1821), 1, sym_lifetime, - STATE(1830), 1, + STATE(2071), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2032), 2, + STATE(2206), 2, sym_const_parameter, sym_optional_type_parameter, - [54898] = 8, + [55010] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3776), 1, + ACTIONS(3778), 1, sym_identifier, - STATE(2194), 1, + STATE(2150), 1, sym_field_declaration, - STATE(2533), 1, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1147), 2, + STATE(1153), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54925] = 4, - ACTIONS(900), 1, - anon_sym_LBRACE, - STATE(1482), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54944] = 6, - ACTIONS(3568), 1, - anon_sym_PIPE, - ACTIONS(3570), 1, - anon_sym_COLON, - ACTIONS(3760), 1, - anon_sym_COLON_COLON, + [55037] = 4, + ACTIONS(3946), 1, + anon_sym_PLUS, + STATE(1579), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2622), 3, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(3944), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [54967] = 4, - ACTIONS(3485), 1, - anon_sym_trait, + anon_sym_GT, + [55056] = 8, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3949), 1, + sym_identifier, + ACTIONS(3951), 1, + anon_sym_RBRACE, ACTIONS(3953), 1, - anon_sym_impl, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54986] = 6, - ACTIONS(3794), 1, - anon_sym_COLON_COLON, + anon_sym_COMMA, ACTIONS(3955), 1, - anon_sym_RBRACK, + anon_sym_ref, + ACTIONS(3957), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3568), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3574), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [55009] = 8, + STATE(1940), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55083] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3776), 1, + ACTIONS(3778), 1, sym_identifier, - STATE(2092), 1, + STATE(2225), 1, sym_field_declaration, - STATE(2533), 1, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1147), 2, + STATE(1588), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55036] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3768), 1, - sym_identifier, - ACTIONS(3774), 1, - sym_crate, - STATE(2156), 1, - sym_enum_variant, - STATE(2465), 1, - sym_visibility_modifier, + [55110] = 4, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, + ACTIONS(3959), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55129] = 9, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3925), 1, + anon_sym_COLON, + ACTIONS(3927), 1, + anon_sym_LT, + STATE(931), 1, + sym_declaration_list, + STATE(1650), 1, + sym_type_parameters, + STATE(1799), 1, + sym_trait_bounds, + STATE(2188), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1147), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55063] = 4, - ACTIONS(3960), 1, - anon_sym_PLUS, - STATE(1562), 1, - aux_sym_trait_bounds_repeat1, + [55158] = 8, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3949), 1, + sym_identifier, + ACTIONS(3955), 1, + anon_sym_ref, + ACTIONS(3957), 1, + sym_mutable_specifier, + ACTIONS(3961), 1, + anon_sym_RBRACE, + ACTIONS(3963), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3958), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55082] = 4, - ACTIONS(3962), 1, + STATE(2139), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55185] = 4, + ACTIONS(3908), 1, anon_sym_PLUS, - STATE(1562), 1, + STATE(1559), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3958), 6, + ACTIONS(3965), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55101] = 8, - ACTIONS(3964), 1, + [55204] = 6, + ACTIONS(3447), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACE, - ACTIONS(3972), 1, - anon_sym_LBRACK, - STATE(1584), 1, - aux_sym_macro_definition_repeat1, - STATE(2437), 1, - sym_token_tree_pattern, - STATE(2520), 1, - sym_macro_rule, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3967), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [55128] = 4, - ACTIONS(3552), 1, + ACTIONS(3530), 1, anon_sym_COLON_COLON, - ACTIONS(3654), 1, + ACTIONS(3602), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55147] = 8, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3445), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [55227] = 8, ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3808), 1, + ACTIONS(3832), 1, anon_sym_const, - ACTIONS(3912), 1, + ACTIONS(3910), 1, sym_identifier, - ACTIONS(3914), 1, + ACTIONS(3912), 1, sym_metavariable, - STATE(1748), 1, + STATE(1774), 1, sym_lifetime, - STATE(1797), 1, + STATE(1857), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2153), 2, + STATE(1980), 2, sym_const_parameter, sym_optional_type_parameter, - [55174] = 8, + [55254] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3774), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3776), 1, + ACTIONS(3778), 1, sym_identifier, - STATE(2127), 1, + STATE(2168), 1, sym_field_declaration, - STATE(2533), 1, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1147), 2, + STATE(1153), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55201] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3768), 1, - sym_identifier, - ACTIONS(3774), 1, - sym_crate, - STATE(1967), 1, - sym_enum_variant, - STATE(2465), 1, - sym_visibility_modifier, + [55281] = 4, + ACTIONS(2674), 1, + anon_sym_COLON_COLON, + ACTIONS(3967), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1147), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55228] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3768), 1, + ACTIONS(2598), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55300] = 8, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3832), 1, + anon_sym_const, + ACTIONS(3969), 1, sym_identifier, - ACTIONS(3774), 1, - sym_crate, - STATE(2229), 1, - sym_enum_variant, - STATE(2465), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1595), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55255] = 9, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(3926), 1, - anon_sym_COLON, - ACTIONS(3928), 1, - anon_sym_LT, - STATE(920), 1, - sym_declaration_list, - STATE(1690), 1, - sym_type_parameters, - STATE(1801), 1, - sym_trait_bounds, - STATE(2182), 1, - sym_where_clause, + ACTIONS(3971), 1, + sym_metavariable, + STATE(1769), 1, + sym_lifetime, + STATE(1834), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55284] = 5, - ACTIONS(3978), 1, - anon_sym_fn, - ACTIONS(3980), 1, - anon_sym_extern, + STATE(2031), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55327] = 4, + ACTIONS(3505), 1, + anon_sym_trait, + ACTIONS(3973), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1591), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3975), 4, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_unsafe, - [55305] = 4, - ACTIONS(3932), 1, - anon_sym_PLUS, - STATE(1562), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3958), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55324] = 7, - ACTIONS(2622), 1, - anon_sym_PLUS, - ACTIONS(3568), 1, + anon_sym_extern, + [55346] = 6, + ACTIONS(3564), 1, anon_sym_PIPE, - ACTIONS(3570), 1, + ACTIONS(3566), 1, anon_sym_COLON, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 2, + ACTIONS(3570), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3955), 2, + ACTIONS(2648), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [55349] = 5, - ACTIONS(3985), 1, + [55369] = 5, + ACTIONS(3977), 1, anon_sym_fn, - ACTIONS(3987), 1, + ACTIONS(3979), 1, anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1591), 2, + STATE(1573), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(3983), 4, + ACTIONS(3975), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - [55370] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3768), 1, - sym_identifier, - ACTIONS(3774), 1, - sym_crate, - STATE(2324), 1, - sym_enum_variant, - STATE(2465), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1147), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55397] = 9, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(3926), 1, + [55390] = 7, + ACTIONS(2648), 1, + anon_sym_PLUS, + ACTIONS(3564), 1, + anon_sym_PIPE, + ACTIONS(3566), 1, anon_sym_COLON, - ACTIONS(3928), 1, - anon_sym_LT, - STATE(982), 1, - sym_declaration_list, - STATE(1712), 1, - sym_type_parameters, - STATE(1806), 1, - sym_trait_bounds, - STATE(2205), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55426] = 8, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3806), 1, - sym_identifier, - ACTIONS(3808), 1, - anon_sym_const, - ACTIONS(3812), 1, - sym_metavariable, - STATE(1818), 1, - sym_lifetime, - STATE(2050), 1, - sym_constrained_type_parameter, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2265), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55453] = 4, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - STATE(1558), 1, - sym_string_literal, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3941), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55415] = 4, + ACTIONS(904), 1, + anon_sym_LBRACE, + STATE(1478), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3678), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55472] = 2, + [55434] = 4, + ACTIONS(3981), 1, + anon_sym_PLUS, + STATE(1559), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3940), 7, + ACTIONS(3965), 6, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55486] = 8, - ACTIONS(3860), 1, - anon_sym_LPAREN, - ACTIONS(3862), 1, + [55453] = 4, + ACTIONS(3983), 1, + anon_sym_PLUS, + STATE(1559), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3965), 6, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3864), 1, anon_sym_where, - ACTIONS(3989), 1, - anon_sym_SEMI, - STATE(963), 1, - sym_field_declaration_list, - STATE(2116), 1, - sym_ordered_field_declaration_list, - STATE(2202), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55472] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55512] = 6, - ACTIONS(3860), 1, - anon_sym_LPAREN, - ACTIONS(3862), 1, + ACTIONS(3944), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3993), 1, + anon_sym_PLUS, + anon_sym_where, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55486] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3991), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2076), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [55534] = 8, - ACTIONS(3995), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, + ACTIONS(3944), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4001), 1, - anon_sym_RBRACK, - ACTIONS(4003), 1, + anon_sym_PLUS, + anon_sym_where, anon_sym_EQ, - ACTIONS(4005), 1, - anon_sym_COLON_COLON, - STATE(2469), 1, - sym_delim_token_tree, + anon_sym_COMMA, + anon_sym_GT, + [55500] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55560] = 8, - ACTIONS(4007), 1, - anon_sym_LPAREN, - ACTIONS(4009), 1, - anon_sym_RPAREN, - ACTIONS(4011), 1, + ACTIONS(3944), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4013), 1, - anon_sym_LBRACK, - STATE(1584), 1, - aux_sym_macro_definition_repeat1, - STATE(2272), 1, - sym_macro_rule, - STATE(2437), 1, - sym_token_tree_pattern, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55514] = 3, + ACTIONS(3985), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55586] = 8, - ACTIONS(3995), 1, + ACTIONS(3814), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55530] = 7, + ACTIONS(3445), 1, + anon_sym_PIPE, + ACTIONS(3447), 1, anon_sym_LPAREN, - ACTIONS(3997), 1, - anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4001), 1, - anon_sym_RBRACK, - ACTIONS(4003), 1, - anon_sym_EQ, - ACTIONS(4015), 1, + ACTIONS(3451), 1, + anon_sym_COLON, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3987), 1, anon_sym_COLON_COLON, - STATE(2469), 1, - sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55612] = 8, - ACTIONS(3995), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55554] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3989), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4001), 1, - anon_sym_RBRACK, - ACTIONS(4003), 1, + anon_sym_PLUS, + anon_sym_where, anon_sym_EQ, - ACTIONS(4017), 1, - anon_sym_COLON_COLON, - STATE(2469), 1, - sym_delim_token_tree, + anon_sym_COMMA, + anon_sym_GT, + [55568] = 3, + ACTIONS(3991), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55638] = 3, - ACTIONS(4019), 1, - anon_sym_trait, + ACTIONS(2598), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55584] = 3, + ACTIONS(3993), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 6, + ACTIONS(3814), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55654] = 8, - ACTIONS(3616), 1, - anon_sym_COLON_COLON, + [55600] = 7, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3949), 1, + sym_identifier, + ACTIONS(3955), 1, + anon_sym_ref, + ACTIONS(3957), 1, + sym_mutable_specifier, ACTIONS(3995), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2322), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55624] = 6, + ACTIONS(3802), 1, anon_sym_LPAREN, - ACTIONS(3997), 1, + ACTIONS(3804), 1, anon_sym_LBRACE, ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4021), 1, - anon_sym_RBRACK, - ACTIONS(4023), 1, anon_sym_EQ, - STATE(2478), 1, - sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55680] = 8, - ACTIONS(4007), 1, + ACTIONS(3997), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1920), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [55646] = 7, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3949), 1, + sym_identifier, + ACTIONS(3955), 1, + anon_sym_ref, + ACTIONS(3957), 1, + sym_mutable_specifier, + ACTIONS(4001), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2322), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55670] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4007), 1, + anon_sym_RBRACE, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4025), 1, - anon_sym_RPAREN, - STATE(1584), 1, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2274), 1, + STATE(2167), 1, sym_macro_rule, STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55706] = 3, - ACTIONS(2672), 1, - anon_sym_COLON_COLON, + [55696] = 3, + ACTIONS(4011), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 6, + ACTIONS(3814), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55722] = 3, - ACTIONS(4027), 1, - sym_identifier, + [55712] = 3, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3820), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55738] = 8, - ACTIONS(4007), 1, + [55728] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, + ACTIONS(4009), 1, + anon_sym_LBRACK, ACTIONS(4013), 1, + anon_sym_RBRACE, + STATE(1561), 1, + aux_sym_macro_definition_repeat1, + STATE(2165), 1, + sym_macro_rule, + STATE(2437), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55754] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4015), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55768] = 8, + ACTIONS(3802), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(4017), 1, + anon_sym_SEMI, + STATE(279), 1, + sym_field_declaration_list, + STATE(1907), 1, + sym_ordered_field_declaration_list, + STATE(2282), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55794] = 8, + ACTIONS(4003), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, + anon_sym_LBRACE, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4029), 1, + ACTIONS(4019), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2297), 1, + STATE(2273), 1, sym_macro_rule, STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55764] = 8, - ACTIONS(4007), 1, + [55820] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4031), 1, + ACTIONS(4021), 1, anon_sym_RPAREN, - STATE(1608), 1, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2301), 1, + STATE(2275), 1, sym_macro_rule, STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55790] = 3, - ACTIONS(4033), 1, - sym_identifier, + [55846] = 3, + ACTIONS(2674), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3820), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55806] = 3, - ACTIONS(3552), 1, - anon_sym_COLON_COLON, + [55862] = 8, + ACTIONS(4003), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, + anon_sym_LBRACE, + ACTIONS(4009), 1, + anon_sym_LBRACK, + ACTIONS(4023), 1, + anon_sym_RPAREN, + STATE(1561), 1, + aux_sym_macro_definition_repeat1, + STATE(2338), 1, + sym_macro_rule, + STATE(2437), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55888] = 3, + ACTIONS(4025), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55822] = 8, - ACTIONS(3860), 1, + [55904] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(3888), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(4035), 1, - anon_sym_SEMI, - STATE(477), 1, - sym_field_declaration_list, - STATE(2149), 1, - sym_ordered_field_declaration_list, - STATE(2175), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55848] = 2, + ACTIONS(4009), 1, + anon_sym_LBRACK, + ACTIONS(4027), 1, + anon_sym_RBRACE, + STATE(1561), 1, + aux_sym_macro_definition_repeat1, + STATE(2334), 1, + sym_macro_rule, + STATE(2437), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4037), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55862] = 8, - ACTIONS(4007), 1, + [55930] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4039), 1, + ACTIONS(4029), 1, anon_sym_RPAREN, - STATE(1584), 1, + STATE(1615), 1, aux_sym_macro_definition_repeat1, - STATE(2332), 1, + STATE(2295), 1, sym_macro_rule, STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55888] = 8, - ACTIONS(4007), 1, + [55956] = 8, + ACTIONS(3802), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(3804), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4031), 1, + anon_sym_SEMI, + STATE(897), 1, + sym_field_declaration_list, + STATE(2121), 1, + sym_ordered_field_declaration_list, + STATE(2205), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55982] = 8, + ACTIONS(4003), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, + anon_sym_LBRACE, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4041), 1, - anon_sym_RBRACE, - STATE(1584), 1, + ACTIONS(4033), 1, + anon_sym_RPAREN, + STATE(1616), 1, aux_sym_macro_definition_repeat1, - STATE(2330), 1, + STATE(2296), 1, sym_macro_rule, STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55914] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3940), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55928] = 3, - ACTIONS(4043), 1, + [56008] = 3, + ACTIONS(4035), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3820), 6, + ACTIONS(3814), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55944] = 8, - ACTIONS(4007), 1, + [56024] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, - anon_sym_RPAREN, - STATE(1584), 1, + ACTIONS(4037), 1, + anon_sym_RBRACE, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2329), 1, + STATE(2343), 1, sym_macro_rule, STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55970] = 7, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(3922), 1, - anon_sym_ref, - ACTIONS(3924), 1, - sym_mutable_specifier, - ACTIONS(4047), 1, + [56050] = 8, + ACTIONS(4003), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, + anon_sym_LBRACE, + ACTIONS(4009), 1, + anon_sym_LBRACK, + ACTIONS(4039), 1, anon_sym_RBRACE, + STATE(1609), 1, + aux_sym_macro_definition_repeat1, + STATE(2235), 1, + sym_macro_rule, + STATE(2437), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2299), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55994] = 8, - ACTIONS(4007), 1, + [56076] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4049), 1, + ACTIONS(4041), 1, anon_sym_RBRACE, - STATE(1584), 1, + STATE(1612), 1, aux_sym_macro_definition_repeat1, - STATE(2328), 1, + STATE(2243), 1, sym_macro_rule, STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56020] = 3, + [56102] = 8, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, + ACTIONS(4043), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, + anon_sym_LBRACE, + ACTIONS(4047), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_RBRACK, ACTIONS(4051), 1, - anon_sym_trait, + anon_sym_EQ, + STATE(2372), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56036] = 2, + [56128] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3940), 7, + ACTIONS(3944), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -120278,2279 +120269,2234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [56050] = 8, - ACTIONS(4007), 1, + [56142] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3944), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56156] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, ACTIONS(4053), 1, - anon_sym_RBRACE, - STATE(1584), 1, + anon_sym_RPAREN, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2170), 1, + STATE(2324), 1, sym_macro_rule, STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56076] = 8, - ACTIONS(4007), 1, + [56182] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, ACTIONS(4055), 1, anon_sym_RBRACE, - STATE(1584), 1, + STATE(1620), 1, aux_sym_macro_definition_repeat1, - STATE(2168), 1, + STATE(2260), 1, sym_macro_rule, STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56102] = 2, + [56208] = 6, + ACTIONS(3802), 1, + anon_sym_LPAREN, + ACTIONS(3804), 1, + anon_sym_LBRACE, + ACTIONS(4059), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3940), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, + ACTIONS(4057), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [56116] = 8, - ACTIONS(3860), 1, - anon_sym_LPAREN, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, - anon_sym_SEMI, - STATE(270), 1, + STATE(2028), 2, sym_field_declaration_list, - STATE(2023), 1, sym_ordered_field_declaration_list, - STATE(2223), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56142] = 8, - ACTIONS(4007), 1, + [56230] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, - anon_sym_RBRACE, - STATE(1627), 1, + ACTIONS(4061), 1, + anon_sym_RPAREN, + STATE(1631), 1, aux_sym_macro_definition_repeat1, - STATE(2251), 1, + STATE(2299), 1, sym_macro_rule, STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56168] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3940), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56182] = 6, - ACTIONS(3860), 1, + [56256] = 8, + ACTIONS(4043), 1, anon_sym_LPAREN, - ACTIONS(3862), 1, + ACTIONS(4045), 1, anon_sym_LBRACE, + ACTIONS(4047), 1, + anon_sym_LBRACK, ACTIONS(4063), 1, + anon_sym_RBRACK, + ACTIONS(4065), 1, anon_sym_EQ, + ACTIONS(4067), 1, + anon_sym_COLON_COLON, + STATE(2388), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4061), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1959), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [56204] = 7, - ACTIONS(3451), 1, - anon_sym_BANG, - ACTIONS(3457), 1, - anon_sym_PIPE, - ACTIONS(3459), 1, + [56282] = 8, + ACTIONS(4043), 1, anon_sym_LPAREN, - ACTIONS(3463), 1, - anon_sym_COLON, + ACTIONS(4045), 1, + anon_sym_LBRACE, + ACTIONS(4047), 1, + anon_sym_LBRACK, + ACTIONS(4063), 1, + anon_sym_RBRACK, ACTIONS(4065), 1, + anon_sym_EQ, + ACTIONS(4069), 1, anon_sym_COLON_COLON, + STATE(2388), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [56228] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4067), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56242] = 7, - ACTIONS(820), 1, + [56308] = 7, + ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3916), 1, + ACTIONS(3949), 1, sym_identifier, - ACTIONS(3922), 1, + ACTIONS(3955), 1, anon_sym_ref, - ACTIONS(3924), 1, + ACTIONS(3957), 1, sym_mutable_specifier, - ACTIONS(4069), 1, + ACTIONS(4071), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2299), 2, + STATE(2322), 2, sym_field_pattern, sym_remaining_field_pattern, - [56266] = 8, - ACTIONS(4007), 1, - anon_sym_LPAREN, - ACTIONS(4011), 1, - anon_sym_LBRACE, - ACTIONS(4013), 1, - anon_sym_LBRACK, - ACTIONS(4071), 1, - anon_sym_RBRACE, - STATE(1623), 1, - aux_sym_macro_definition_repeat1, - STATE(2286), 1, - sym_macro_rule, - STATE(2437), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56292] = 3, - ACTIONS(4073), 1, + [56332] = 7, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3949), 1, sym_identifier, + ACTIONS(3955), 1, + anon_sym_ref, + ACTIONS(3957), 1, + sym_mutable_specifier, + ACTIONS(4073), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3820), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56308] = 8, - ACTIONS(4007), 1, + STATE(2322), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56356] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, ACTIONS(4075), 1, anon_sym_RBRACE, - STATE(1626), 1, + STATE(1625), 1, aux_sym_macro_definition_repeat1, - STATE(2244), 1, + STATE(2280), 1, sym_macro_rule, STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56334] = 8, - ACTIONS(4007), 1, + [56382] = 8, + ACTIONS(3802), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, - anon_sym_LBRACK, ACTIONS(4077), 1, - anon_sym_RPAREN, - STATE(1621), 1, - aux_sym_macro_definition_repeat1, - STATE(2293), 1, - sym_macro_rule, - STATE(2437), 1, - sym_token_tree_pattern, + anon_sym_SEMI, + STATE(486), 1, + sym_field_declaration_list, + STATE(1898), 1, + sym_ordered_field_declaration_list, + STATE(2268), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56360] = 8, - ACTIONS(4007), 1, + [56408] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, ACTIONS(4079), 1, - anon_sym_RBRACE, - STATE(1618), 1, - aux_sym_macro_definition_repeat1, - STATE(2294), 1, - sym_macro_rule, - STATE(2437), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56386] = 8, - ACTIONS(4007), 1, - anon_sym_LPAREN, - ACTIONS(4011), 1, - anon_sym_LBRACE, - ACTIONS(4013), 1, - anon_sym_LBRACK, - ACTIONS(4081), 1, anon_sym_RPAREN, - STATE(1617), 1, + STATE(1618), 1, aux_sym_macro_definition_repeat1, - STATE(2305), 1, + STATE(2266), 1, sym_macro_rule, STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56412] = 7, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(3922), 1, - anon_sym_ref, - ACTIONS(3924), 1, - sym_mutable_specifier, - ACTIONS(4083), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2299), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56436] = 7, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(3922), 1, - anon_sym_ref, - ACTIONS(3924), 1, - sym_mutable_specifier, - ACTIONS(4085), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2299), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56460] = 8, - ACTIONS(3860), 1, + [56434] = 8, + ACTIONS(3802), 1, anon_sym_LPAREN, - ACTIONS(3862), 1, + ACTIONS(3804), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4087), 1, + ACTIONS(4081), 1, anon_sym_SEMI, - STATE(936), 1, + STATE(1031), 1, sym_field_declaration_list, STATE(2122), 1, sym_ordered_field_declaration_list, - STATE(2196), 1, + STATE(2201), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56486] = 6, - ACTIONS(4017), 1, - anon_sym_COLON_COLON, - ACTIONS(4089), 1, + [56460] = 8, + ACTIONS(4043), 1, anon_sym_LPAREN, - ACTIONS(4093), 1, + ACTIONS(4045), 1, + anon_sym_LBRACE, + ACTIONS(4047), 1, + anon_sym_LBRACK, + ACTIONS(4063), 1, + anon_sym_RBRACK, + ACTIONS(4065), 1, anon_sym_EQ, - STATE(2308), 1, - sym_meta_arguments, + ACTIONS(4083), 1, + anon_sym_COLON_COLON, + STATE(2388), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4091), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56507] = 4, - ACTIONS(4095), 1, + [56486] = 4, + ACTIONS(4085), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3644), 2, + ACTIONS(3750), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2768), 3, + ACTIONS(2752), 3, anon_sym_SEMI, anon_sym_PLUS, anon_sym_DASH_GT, - [56524] = 4, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - ACTIONS(3840), 1, - anon_sym_for, + [56503] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4088), 1, + anon_sym_SEMI, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4092), 1, + anon_sym_DASH_GT, + STATE(383), 1, + sym_block, + STATE(2034), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56541] = 7, - ACTIONS(3864), 1, + [56526] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4098), 1, - anon_sym_SEMI, - ACTIONS(4100), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4102), 1, + ACTIONS(4094), 1, + anon_sym_SEMI, + ACTIONS(4096), 1, anon_sym_PLUS, - STATE(463), 1, - sym_block, - STATE(2019), 1, + STATE(1027), 1, + sym_declaration_list, + STATE(2157), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56564] = 7, - ACTIONS(3862), 1, + [56549] = 7, + ACTIONS(3804), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3866), 1, + ACTIONS(3808), 1, anon_sym_LT, - STATE(906), 1, + STATE(834), 1, sym_field_declaration_list, - STATE(1799), 1, + STATE(1826), 1, sym_type_parameters, - STATE(2163), 1, + STATE(2258), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56587] = 7, + [56572] = 7, + ACTIONS(3806), 1, + anon_sym_where, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4102), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4104), 1, + ACTIONS(4098), 1, anon_sym_SEMI, - STATE(369), 1, + STATE(1050), 1, sym_declaration_list, - STATE(1963), 1, + STATE(2128), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56610] = 7, + [56595] = 7, + ACTIONS(3925), 1, + anon_sym_COLON, + ACTIONS(3927), 1, + anon_sym_LT, + ACTIONS(4100), 1, + anon_sym_SEMI, + ACTIONS(4102), 1, + anon_sym_EQ, + STATE(1827), 1, + sym_type_parameters, + STATE(2472), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56618] = 7, + ACTIONS(3806), 1, + anon_sym_where, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4106), 1, - anon_sym_SEMI, - STATE(383), 1, + ACTIONS(3925), 1, + anon_sym_COLON, + STATE(1045), 1, sym_declaration_list, - STATE(2006), 1, + STATE(1802), 1, + sym_trait_bounds, + STATE(2191), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56633] = 7, - ACTIONS(3864), 1, + [56641] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3866), 1, - anon_sym_LT, - ACTIONS(4108), 1, + ACTIONS(4104), 1, + anon_sym_SEMI, + ACTIONS(4106), 1, anon_sym_LBRACE, - STATE(914), 1, - sym_enum_variant_list, - STATE(1800), 1, - sym_type_parameters, - STATE(2161), 1, + ACTIONS(4108), 1, + anon_sym_DASH_GT, + STATE(1042), 1, + sym_block, + STATE(2124), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56656] = 7, + [56664] = 5, + ACTIONS(4112), 1, + anon_sym_COLON, + ACTIONS(4114), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4110), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56683] = 7, + ACTIONS(3806), 1, + anon_sym_where, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(3926), 1, - anon_sym_COLON, - STATE(291), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4116), 1, + anon_sym_SEMI, + STATE(820), 1, sym_declaration_list, - STATE(1841), 1, - sym_trait_bounds, - STATE(2234), 1, + STATE(2037), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56679] = 7, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [56706] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4102), 1, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4110), 1, + ACTIONS(4118), 1, anon_sym_SEMI, - STATE(921), 1, + STATE(400), 1, sym_declaration_list, - STATE(2131), 1, + STATE(2111), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56702] = 7, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(3926), 1, + [56729] = 7, + ACTIONS(3925), 1, anon_sym_COLON, - STATE(930), 1, - sym_declaration_list, - STATE(1804), 1, + ACTIONS(3927), 1, + anon_sym_LT, + ACTIONS(4120), 1, + anon_sym_SEMI, + ACTIONS(4122), 1, + anon_sym_EQ, + STATE(1844), 1, + sym_type_parameters, + STATE(2382), 1, sym_trait_bounds, - STATE(2189), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56752] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3808), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(386), 1, + sym_field_declaration_list, + STATE(1851), 1, + sym_type_parameters, + STATE(2259), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56775] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3808), 1, + anon_sym_LT, + ACTIONS(4124), 1, + anon_sym_LBRACE, + STATE(811), 1, + sym_enum_variant_list, + STATE(1838), 1, + sym_type_parameters, + STATE(2285), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56725] = 4, - ACTIONS(3550), 1, + [56798] = 4, + ACTIONS(3546), 1, anon_sym_COLON_COLON, - ACTIONS(3842), 1, + ACTIONS(3868), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, + ACTIONS(2648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56742] = 4, + [56815] = 4, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, + ACTIONS(3894), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2704), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3720), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4112), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56759] = 7, - ACTIONS(3816), 1, + ACTIONS(2648), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3864), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4102), 1, + [56832] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4115), 1, + ACTIONS(4126), 1, anon_sym_SEMI, - STATE(974), 1, - sym_declaration_list, - STATE(2107), 1, + STATE(341), 1, + sym_block, + STATE(2040), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56782] = 7, - ACTIONS(3864), 1, + [56855] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4117), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(4128), 1, anon_sym_SEMI, - ACTIONS(4119), 1, + STATE(1014), 1, + sym_block, + STATE(2108), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56878] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, - anon_sym_DASH_GT, - STATE(801), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4130), 1, + anon_sym_SEMI, + STATE(387), 1, sym_block, - STATE(2093), 1, + STATE(1998), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56805] = 7, + [56901] = 7, + ACTIONS(3806), 1, + anon_sym_where, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4102), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4123), 1, + ACTIONS(4132), 1, anon_sym_SEMI, - STATE(304), 1, + STATE(1001), 1, sym_declaration_list, - STATE(1996), 1, + STATE(2096), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56828] = 4, - ACTIONS(3550), 1, + [56924] = 4, + ACTIONS(3546), 1, anon_sym_COLON_COLON, - ACTIONS(3880), 1, + ACTIONS(3846), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, + ACTIONS(2648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56845] = 4, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - ACTIONS(3852), 1, - anon_sym_for, + [56941] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4134), 1, + anon_sym_SEMI, + STATE(999), 1, + sym_declaration_list, + STATE(2090), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, + [56964] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4106), 1, anon_sym_LBRACE, + ACTIONS(4136), 1, + anon_sym_SEMI, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + STATE(998), 1, + sym_block, + STATE(2149), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56987] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3670), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2718), 4, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_where, - [56862] = 4, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - ACTIONS(3904), 1, - anon_sym_for, + anon_sym_COMMA, + anon_sym_DASH_GT, + [57002] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3750), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2752), 4, + anon_sym_RPAREN, anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [57017] = 7, + ACTIONS(3806), 1, anon_sym_where, - [56879] = 7, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4100), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4102), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4125), 1, + ACTIONS(4140), 1, anon_sym_SEMI, - STATE(432), 1, - sym_block, - STATE(1987), 1, + STATE(981), 1, + sym_declaration_list, + STATE(2084), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56902] = 4, - ACTIONS(4127), 1, - anon_sym_COLON_COLON, + [57040] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2622), 3, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(2752), 2, anon_sym_PLUS, - [56919] = 7, - ACTIONS(3862), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + anon_sym_DASH_GT, + ACTIONS(3750), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4085), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57057] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3866), 1, - anon_sym_LT, - STATE(1042), 1, - sym_field_declaration_list, - STATE(1819), 1, - sym_type_parameters, - STATE(2260), 1, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4142), 1, + anon_sym_SEMI, + STATE(977), 1, + sym_declaration_list, + STATE(2074), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56942] = 6, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(3922), 1, - anon_sym_ref, - ACTIONS(3924), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2299), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56963] = 7, - ACTIONS(3864), 1, + [57080] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4119), 1, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4129), 1, + ACTIONS(4144), 1, anon_sym_SEMI, - ACTIONS(4131), 1, + ACTIONS(4146), 1, anon_sym_DASH_GT, - STATE(883), 1, + STATE(970), 1, sym_block, - STATE(2147), 1, + STATE(2073), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56986] = 7, - ACTIONS(3926), 1, + [57103] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3925), 1, anon_sym_COLON, - ACTIONS(3928), 1, - anon_sym_LT, - ACTIONS(4133), 1, - anon_sym_SEMI, - ACTIONS(4135), 1, - anon_sym_EQ, - STATE(1823), 1, - sym_type_parameters, - STATE(2548), 1, + STATE(955), 1, + sym_declaration_list, + STATE(1820), 1, sym_trait_bounds, + STATE(2240), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57009] = 7, - ACTIONS(3864), 1, + [57126] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4100), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4137), 1, + ACTIONS(4148), 1, anon_sym_SEMI, - STATE(380), 1, + ACTIONS(4150), 1, + anon_sym_DASH_GT, + STATE(332), 1, sym_block, - STATE(1916), 1, + STATE(2022), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57032] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3720), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2704), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [57047] = 7, - ACTIONS(3864), 1, + [57149] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4100), 1, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4139), 1, + ACTIONS(4152), 1, anon_sym_SEMI, - STATE(416), 1, + ACTIONS(4154), 1, + anon_sym_DASH_GT, + STATE(953), 1, sym_block, - STATE(2012), 1, + STATE(2068), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57070] = 7, - ACTIONS(3864), 1, + [57172] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3866), 1, + ACTIONS(3808), 1, anon_sym_LT, - ACTIONS(4141), 1, + ACTIONS(4156), 1, anon_sym_LBRACE, STATE(276), 1, sym_enum_variant_list, - STATE(1791), 1, + STATE(1877), 1, sym_type_parameters, - STATE(2290), 1, + STATE(2316), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57093] = 7, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [57195] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4102), 1, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4143), 1, + ACTIONS(4158), 1, anon_sym_SEMI, - STATE(1023), 1, + STATE(465), 1, sym_declaration_list, - STATE(2038), 1, + STATE(1941), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57116] = 7, - ACTIONS(3325), 1, + [57218] = 7, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3455), 1, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(4145), 1, + ACTIONS(4160), 1, sym_identifier, - ACTIONS(4147), 1, + ACTIONS(4162), 1, anon_sym_STAR, - STATE(1953), 1, + STATE(1968), 1, sym_use_list, - STATE(2528), 1, + STATE(2525), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57139] = 4, - ACTIONS(4149), 1, - anon_sym_COLON_COLON, + [57241] = 7, + ACTIONS(3558), 1, + anon_sym_EQ, + ACTIONS(3560), 1, + anon_sym_COMMA, + ACTIONS(3562), 1, + anon_sym_GT, + ACTIONS(3925), 1, + anon_sym_COLON, + STATE(1942), 1, + aux_sym_type_parameters_repeat1, + STATE(1946), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2622), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [57156] = 7, - ACTIONS(3864), 1, + [57264] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4100), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4151), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4164), 1, anon_sym_SEMI, - ACTIONS(4153), 1, - anon_sym_DASH_GT, - STATE(335), 1, - sym_block, - STATE(1933), 1, + STATE(267), 1, + sym_declaration_list, + STATE(2036), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57179] = 7, - ACTIONS(3325), 1, + [57287] = 7, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3455), 1, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(4145), 1, + ACTIONS(4160), 1, sym_identifier, - ACTIONS(4147), 1, + ACTIONS(4162), 1, anon_sym_STAR, - STATE(1953), 1, + STATE(1968), 1, sym_use_list, - STATE(2538), 1, + STATE(2537), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57202] = 7, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(3866), 1, - anon_sym_LT, - ACTIONS(4108), 1, - anon_sym_LBRACE, - STATE(970), 1, - sym_enum_variant_list, - STATE(1836), 1, - sym_type_parameters, - STATE(2284), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57225] = 5, - ACTIONS(4149), 1, - anon_sym_COLON_COLON, - ACTIONS(4157), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4155), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57244] = 5, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(4163), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4159), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57263] = 7, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [57310] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4102), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4165), 1, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(4166), 1, anon_sym_SEMI, - STATE(349), 1, - sym_declaration_list, - STATE(2146), 1, + STATE(946), 1, + sym_block, + STATE(2060), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57286] = 7, + [57333] = 7, + ACTIONS(3806), 1, + anon_sym_where, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4102), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4167), 1, + ACTIONS(4168), 1, anon_sym_SEMI, - STATE(315), 1, + STATE(924), 1, sym_declaration_list, - STATE(1915), 1, + STATE(2056), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57309] = 7, + [57356] = 7, + ACTIONS(3806), 1, + anon_sym_where, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4102), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4169), 1, + ACTIONS(4170), 1, anon_sym_SEMI, - STATE(299), 1, + STATE(921), 1, sym_declaration_list, - STATE(1914), 1, + STATE(2055), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57332] = 7, - ACTIONS(3864), 1, + [57379] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4100), 1, - anon_sym_LBRACE, - ACTIONS(4102), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4171), 1, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(4172), 1, anon_sym_SEMI, - STATE(371), 1, + STATE(911), 1, sym_block, - STATE(2099), 1, + STATE(2050), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57355] = 7, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [57402] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4173), 1, - anon_sym_SEMI, - STATE(866), 1, - sym_declaration_list, - STATE(2158), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57378] = 7, - ACTIONS(3816), 1, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4175), 1, + ACTIONS(4174), 1, anon_sym_SEMI, - STATE(849), 1, - sym_declaration_list, - STATE(2150), 1, + ACTIONS(4176), 1, + anon_sym_DASH_GT, + STATE(900), 1, + sym_block, + STATE(2045), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57401] = 4, - ACTIONS(3550), 1, + [57425] = 4, + ACTIONS(3546), 1, anon_sym_COLON_COLON, - ACTIONS(3856), 1, + ACTIONS(3890), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, + ACTIONS(2648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57418] = 7, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [57442] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4102), 1, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4177), 1, + ACTIONS(4178), 1, anon_sym_SEMI, - STATE(832), 1, - sym_declaration_list, - STATE(2124), 1, + STATE(313), 1, + sym_block, + STATE(1900), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57441] = 7, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [57465] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3926), 1, - anon_sym_COLON, - STATE(874), 1, - sym_declaration_list, - STATE(1805), 1, - sym_trait_bounds, - STATE(2192), 1, + ACTIONS(3808), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(357), 1, + sym_field_declaration_list, + STATE(1809), 1, + sym_type_parameters, + STATE(2160), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57464] = 7, - ACTIONS(3864), 1, + [57488] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4119), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4179), 1, + ACTIONS(4180), 1, anon_sym_SEMI, - ACTIONS(4181), 1, + ACTIONS(4182), 1, anon_sym_DASH_GT, - STATE(915), 1, + STATE(474), 1, sym_block, - STATE(2119), 1, + STATE(1953), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57487] = 6, - ACTIONS(3616), 1, + [57511] = 4, + ACTIONS(3546), 1, anon_sym_COLON_COLON, - ACTIONS(4089), 1, - anon_sym_LPAREN, - ACTIONS(4185), 1, - anon_sym_EQ, - STATE(2317), 1, - sym_meta_arguments, + ACTIONS(3876), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4183), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57508] = 7, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4187), 1, + ACTIONS(2648), 4, anon_sym_SEMI, - STATE(388), 1, - sym_declaration_list, - STATE(2064), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57531] = 7, - ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4102), 1, + [57528] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4189), 1, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(4184), 1, anon_sym_SEMI, - STATE(408), 1, - sym_declaration_list, - STATE(2060), 1, + STATE(883), 1, + sym_block, + STATE(2042), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57554] = 6, - ACTIONS(4005), 1, - anon_sym_COLON_COLON, - ACTIONS(4089), 1, - anon_sym_LPAREN, - ACTIONS(4093), 1, - anon_sym_EQ, - STATE(2308), 1, - sym_meta_arguments, + [57551] = 7, + ACTIONS(3925), 1, + anon_sym_COLON, + ACTIONS(4186), 1, + anon_sym_COMMA, + ACTIONS(4188), 1, + anon_sym_GT, + STATE(1903), 1, + sym_trait_bounds, + STATE(1924), 1, + aux_sym_type_parameters_repeat1, + STATE(2065), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4091), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57575] = 6, - ACTIONS(4015), 1, - anon_sym_COLON_COLON, - ACTIONS(4089), 1, - anon_sym_LPAREN, - ACTIONS(4093), 1, - anon_sym_EQ, - STATE(2308), 1, - sym_meta_arguments, + [57574] = 4, + ACTIONS(4190), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4091), 2, - anon_sym_RPAREN, + ACTIONS(3670), 2, anon_sym_COMMA, - [57596] = 4, - ACTIONS(3550), 1, + anon_sym_PIPE, + ACTIONS(2718), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [57591] = 4, + ACTIONS(4114), 1, anon_sym_COLON_COLON, - ACTIONS(3830), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2648), 3, + anon_sym_RPAREN, anon_sym_PLUS, + anon_sym_COMMA, + [57608] = 7, + ACTIONS(3806), 1, anon_sym_where, - [57613] = 7, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4102), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4191), 1, - anon_sym_SEMI, - STATE(286), 1, - sym_declaration_list, - STATE(2152), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57636] = 7, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4100), 1, - anon_sym_LBRACE, ACTIONS(4193), 1, anon_sym_SEMI, - ACTIONS(4195), 1, - anon_sym_DASH_GT, - STATE(268), 1, - sym_block, - STATE(1904), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57659] = 7, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4197), 1, - anon_sym_SEMI, - STATE(418), 1, + STATE(1009), 1, sym_declaration_list, - STATE(2056), 1, + STATE(2151), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57682] = 7, - ACTIONS(3864), 1, + [57631] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4119), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4199), 1, - anon_sym_SEMI, - STATE(1028), 1, - sym_block, - STATE(2101), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57705] = 7, - ACTIONS(3926), 1, - anon_sym_COLON, - ACTIONS(3928), 1, - anon_sym_LT, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(4203), 1, - anon_sym_EQ, - STATE(1829), 1, - sym_type_parameters, - STATE(2471), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57728] = 7, - ACTIONS(2465), 1, - anon_sym_PLUS, - ACTIONS(3926), 1, - anon_sym_COLON, - ACTIONS(4205), 1, - anon_sym_COMMA, - ACTIONS(4207), 1, - anon_sym_GT, - STATE(2133), 1, - aux_sym_type_parameters_repeat1, - STATE(2138), 1, - sym_trait_bounds, + ACTIONS(4195), 1, + anon_sym_SEMI, + ACTIONS(4197), 1, + anon_sym_DASH_GT, + STATE(406), 1, + sym_block, + STATE(2115), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57751] = 6, - ACTIONS(3195), 1, - anon_sym_COLON_COLON, - ACTIONS(4205), 1, - anon_sym_COMMA, - ACTIONS(4207), 1, - anon_sym_GT, - STATE(2133), 1, - aux_sym_type_parameters_repeat1, + [57654] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(4199), 1, + anon_sym_SEMI, + STATE(872), 1, + sym_block, + STATE(2035), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 2, - anon_sym_PLUS, - anon_sym_as, - [57772] = 7, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [57677] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4102), 1, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4209), 1, + ACTIONS(4201), 1, anon_sym_SEMI, - STATE(1053), 1, + STATE(272), 1, sym_declaration_list, - STATE(2098), 1, + STATE(1905), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57795] = 7, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [57700] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4102), 1, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4211), 1, + ACTIONS(4203), 1, anon_sym_SEMI, - STATE(1049), 1, + STATE(352), 1, sym_declaration_list, - STATE(2091), 1, + STATE(2100), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57818] = 7, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [57723] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3926), 1, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(3925), 1, anon_sym_COLON, - STATE(313), 1, + STATE(408), 1, sym_declaration_list, - STATE(1892), 1, + STATE(1823), 1, sym_trait_bounds, - STATE(2295), 1, + STATE(2195), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57841] = 7, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [57746] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4102), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4213), 1, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(4205), 1, anon_sym_SEMI, - STATE(958), 1, - sym_declaration_list, - STATE(2085), 1, + STATE(866), 1, + sym_block, + STATE(2030), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57864] = 7, - ACTIONS(3864), 1, + [57769] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4100), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4207), 1, anon_sym_SEMI, - ACTIONS(4217), 1, - anon_sym_DASH_GT, - STATE(356), 1, - sym_block, - STATE(1898), 1, + STATE(300), 1, + sym_declaration_list, + STATE(1950), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57887] = 7, - ACTIONS(3816), 1, + [57792] = 4, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, + ACTIONS(3810), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2648), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3864), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4102), 1, + [57809] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4219), 1, + ACTIONS(4209), 1, anon_sym_SEMI, - STATE(929), 1, - sym_declaration_list, - STATE(2080), 1, + STATE(298), 1, + sym_block, + STATE(1908), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57910] = 7, - ACTIONS(3864), 1, + [57832] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4119), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4221), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4211), 1, anon_sym_SEMI, - ACTIONS(4223), 1, - anon_sym_DASH_GT, - STATE(875), 1, - sym_block, - STATE(2079), 1, + STATE(349), 1, + sym_declaration_list, + STATE(2082), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57933] = 7, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [57855] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3926), 1, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(3925), 1, anon_sym_COLON, - STATE(829), 1, + STATE(463), 1, sym_declaration_list, - STATE(1815), 1, + STATE(1849), 1, sym_trait_bounds, - STATE(2241), 1, + STATE(2230), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57956] = 7, - ACTIONS(3864), 1, + [57878] = 6, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3949), 1, + sym_identifier, + ACTIONS(3955), 1, + anon_sym_ref, + ACTIONS(3957), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2322), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [57899] = 4, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, + ACTIONS(3858), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2648), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4119), 1, + [57916] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4225), 1, + ACTIONS(4213), 1, anon_sym_SEMI, - ACTIONS(4227), 1, + ACTIONS(4215), 1, anon_sym_DASH_GT, - STATE(1032), 1, + STATE(852), 1, sym_block, - STATE(2073), 1, + STATE(2092), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57979] = 7, - ACTIONS(3864), 1, + [57939] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3866), 1, - anon_sym_LT, - ACTIONS(4141), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(325), 1, - sym_enum_variant_list, - STATE(1885), 1, - sym_type_parameters, - STATE(2160), 1, + ACTIONS(3925), 1, + anon_sym_COLON, + STATE(285), 1, + sym_declaration_list, + STATE(1879), 1, + sym_trait_bounds, + STATE(2305), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58002] = 7, - ACTIONS(3864), 1, + [57962] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4119), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4229), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4217), 1, anon_sym_SEMI, - STATE(1004), 1, - sym_block, - STATE(2069), 1, + STATE(453), 1, + sym_declaration_list, + STATE(2094), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58025] = 4, - ACTIONS(4112), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3720), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2704), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [58042] = 7, - ACTIONS(3864), 1, + [57985] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3866), 1, - anon_sym_LT, - ACTIONS(3888), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(332), 1, - sym_field_declaration_list, - STATE(1880), 1, - sym_type_parameters, - STATE(2336), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4219), 1, + anon_sym_SEMI, + STATE(857), 1, + sym_declaration_list, + STATE(2106), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58065] = 7, - ACTIONS(3544), 1, - anon_sym_EQ, - ACTIONS(3926), 1, + [58008] = 7, + ACTIONS(2465), 1, + anon_sym_PLUS, + ACTIONS(3925), 1, anon_sym_COLON, - ACTIONS(4231), 1, + ACTIONS(4221), 1, anon_sym_COMMA, - ACTIONS(4233), 1, + ACTIONS(4223), 1, anon_sym_GT, - STATE(2102), 1, - aux_sym_type_parameters_repeat1, - STATE(2126), 1, + STATE(1903), 1, sym_trait_bounds, + STATE(1924), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58088] = 7, - ACTIONS(3864), 1, + [58031] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4100), 1, - anon_sym_LBRACE, - ACTIONS(4235), 1, - anon_sym_SEMI, - ACTIONS(4237), 1, - anon_sym_DASH_GT, - STATE(483), 1, - sym_block, - STATE(2137), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58111] = 7, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4239), 1, - anon_sym_SEMI, - STATE(266), 1, + ACTIONS(3925), 1, + anon_sym_COLON, + STATE(909), 1, sym_declaration_list, - STATE(2106), 1, + STATE(1803), 1, + sym_trait_bounds, + STATE(2197), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58134] = 7, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [58054] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4241), 1, - anon_sym_SEMI, - STATE(805), 1, - sym_declaration_list, - STATE(2058), 1, + ACTIONS(3808), 1, + anon_sym_LT, + ACTIONS(4156), 1, + anon_sym_LBRACE, + STATE(320), 1, + sym_enum_variant_list, + STATE(1817), 1, + sym_type_parameters, + STATE(2227), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58157] = 7, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [58077] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4102), 1, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4243), 1, + ACTIONS(4225), 1, anon_sym_SEMI, - STATE(812), 1, + STATE(350), 1, sym_declaration_list, - STATE(2057), 1, + STATE(2093), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58180] = 7, + [58100] = 7, + ACTIONS(3806), 1, + anon_sym_where, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4102), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4245), 1, + ACTIONS(4227), 1, anon_sym_SEMI, - STATE(377), 1, + STATE(929), 1, sym_declaration_list, - STATE(2063), 1, + STATE(2130), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58203] = 7, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4119), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, + [58123] = 4, + ACTIONS(4229), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2648), 3, anon_sym_SEMI, - STATE(833), 1, - sym_block, - STATE(2053), 1, - sym_where_clause, + anon_sym_RBRACK, + anon_sym_PLUS, + [58140] = 6, + ACTIONS(3205), 1, + anon_sym_COLON_COLON, + ACTIONS(4221), 1, + anon_sym_COMMA, + ACTIONS(4223), 1, + anon_sym_GT, + STATE(1924), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58226] = 7, - ACTIONS(3864), 1, + ACTIONS(2648), 2, + anon_sym_PLUS, + anon_sym_as, + [58161] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4119), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4249), 1, + ACTIONS(4231), 1, anon_sym_SEMI, - ACTIONS(4251), 1, + ACTIONS(4233), 1, anon_sym_DASH_GT, - STATE(845), 1, + STATE(423), 1, sym_block, - STATE(2046), 1, + STATE(2146), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58249] = 7, - ACTIONS(3864), 1, + [58184] = 5, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4235), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58203] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4119), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4253), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4241), 1, anon_sym_SEMI, - STATE(900), 1, - sym_block, - STATE(2042), 1, + STATE(439), 1, + sym_declaration_list, + STATE(2104), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58272] = 4, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - ACTIONS(3896), 1, - anon_sym_for, + [58226] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3808), 1, + anon_sym_LT, + ACTIONS(4124), 1, + anon_sym_LBRACE, + STATE(938), 1, + sym_enum_variant_list, + STATE(1798), 1, + sym_type_parameters, + STATE(2182), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58289] = 7, - ACTIONS(3864), 1, + [58249] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4119), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4255), 1, + ACTIONS(4243), 1, anon_sym_SEMI, - STATE(946), 1, + ACTIONS(4245), 1, + anon_sym_DASH_GT, + STATE(377), 1, sym_block, - STATE(2034), 1, + STATE(1981), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58312] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3644), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2768), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [58327] = 7, - ACTIONS(3926), 1, + [58272] = 7, + ACTIONS(3558), 1, + anon_sym_EQ, + ACTIONS(3925), 1, anon_sym_COLON, - ACTIONS(4257), 1, + ACTIONS(4247), 1, anon_sym_COMMA, - ACTIONS(4259), 1, + ACTIONS(4249), 1, anon_sym_GT, - STATE(2037), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2133), 1, - aux_sym_type_parameters_repeat1, - STATE(2138), 1, + STATE(1946), 1, sym_trait_bounds, + STATE(2101), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58350] = 7, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4119), 1, - anon_sym_LBRACE, - ACTIONS(4261), 1, - anon_sym_SEMI, - STATE(956), 1, - sym_block, - STATE(2027), 1, - sym_where_clause, + [58295] = 4, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, + ACTIONS(3880), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58373] = 7, - ACTIONS(3864), 1, + ACTIONS(2648), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4100), 1, + [58312] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4102), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4263), 1, + ACTIONS(4251), 1, anon_sym_SEMI, - STATE(424), 1, - sym_block, - STATE(1966), 1, + STATE(434), 1, + sym_declaration_list, + STATE(2133), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58396] = 7, - ACTIONS(3864), 1, + [58335] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4100), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4265), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4253), 1, anon_sym_SEMI, - ACTIONS(4267), 1, - anon_sym_DASH_GT, - STATE(362), 1, + STATE(477), 1, sym_block, - STATE(1990), 1, + STATE(1970), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58419] = 7, - ACTIONS(3864), 1, + [58358] = 6, + ACTIONS(4067), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, + anon_sym_LPAREN, + ACTIONS(4259), 1, + anon_sym_EQ, + STATE(2169), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4257), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58379] = 7, + ACTIONS(3804), 1, + anon_sym_LBRACE, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3866), 1, + ACTIONS(3808), 1, anon_sym_LT, - ACTIONS(3888), 1, - anon_sym_LBRACE, - STATE(386), 1, + STATE(969), 1, sym_field_declaration_list, - STATE(1875), 1, + STATE(1797), 1, sym_type_parameters, - STATE(2271), 1, + STATE(2178), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58442] = 4, + [58402] = 5, + ACTIONS(4112), 1, + anon_sym_COLON, + ACTIONS(4261), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2768), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3644), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4095), 2, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4110), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58459] = 7, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4100), 1, - anon_sym_LBRACE, - ACTIONS(4269), 1, - anon_sym_SEMI, - ACTIONS(4271), 1, - anon_sym_DASH_GT, - STATE(357), 1, - sym_block, - STATE(1995), 1, - sym_where_clause, + [58421] = 4, + ACTIONS(4261), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58482] = 7, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(3926), 1, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2648), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [58438] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2718), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3670), 2, anon_sym_COLON, - STATE(488), 1, - sym_declaration_list, - STATE(1802), 1, - sym_trait_bounds, - STATE(2216), 1, - sym_where_clause, + anon_sym_PIPE, + ACTIONS(4190), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58455] = 6, + ACTIONS(4069), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, + anon_sym_LPAREN, + ACTIONS(4259), 1, + anon_sym_EQ, + STATE(2169), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58505] = 7, - ACTIONS(3544), 1, + ACTIONS(4257), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58476] = 6, + ACTIONS(4083), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, + anon_sym_LPAREN, + ACTIONS(4259), 1, anon_sym_EQ, - ACTIONS(3546), 1, + STATE(2169), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4257), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3548), 1, - anon_sym_GT, - ACTIONS(3926), 1, - anon_sym_COLON, - STATE(2126), 1, - sym_trait_bounds, - STATE(2129), 1, - aux_sym_type_parameters_repeat1, + [58497] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4263), 1, + anon_sym_SEMI, + STATE(288), 1, + sym_block, + STATE(1913), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58528] = 4, - ACTIONS(4273), 1, + [58520] = 6, + ACTIONS(3608), 1, anon_sym_COLON_COLON, + ACTIONS(4255), 1, + anon_sym_LPAREN, + ACTIONS(4267), 1, + anon_sym_EQ, + STATE(2163), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2622), 3, + ACTIONS(4265), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [58545] = 5, - ACTIONS(4157), 1, - anon_sym_COLON, - ACTIONS(4273), 1, - anon_sym_COLON_COLON, + [58541] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4269), 1, + anon_sym_SEMI, + STATE(396), 1, + sym_declaration_list, + STATE(2098), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4155), 2, - anon_sym_RPAREN, - anon_sym_COMMA, [58564] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4275), 5, + ACTIONS(4271), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58576] = 4, - ACTIONS(4279), 1, - anon_sym_as, - ACTIONS(4281), 1, - anon_sym_COLON_COLON, + [58576] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4277), 3, + ACTIONS(4273), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [58592] = 5, - ACTIONS(3652), 1, - anon_sym_COLON, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3760), 1, + [58588] = 4, + ACTIONS(4261), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 2, + ACTIONS(3455), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58610] = 2, + ACTIONS(4275), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58604] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 5, + ACTIONS(3052), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58622] = 2, + [58616] = 4, + ACTIONS(4261), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3047), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58634] = 5, - ACTIONS(4283), 1, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4235), 2, anon_sym_RPAREN, - ACTIONS(4285), 1, anon_sym_COMMA, - STATE(1978), 1, - aux_sym_parameters_repeat1, + [58632] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58652] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4287), 5, + ACTIONS(4277), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58664] = 6, - ACTIONS(3926), 1, - anon_sym_COLON, - ACTIONS(4205), 1, - anon_sym_COMMA, - ACTIONS(4207), 1, - anon_sym_GT, - STATE(2133), 1, - aux_sym_type_parameters_repeat1, - STATE(2138), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58684] = 4, - ACTIONS(4279), 1, - anon_sym_as, - ACTIONS(4289), 1, - anon_sym_COLON_COLON, + [58644] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4277), 3, + ACTIONS(4279), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [58700] = 4, - ACTIONS(4279), 1, - anon_sym_as, - ACTIONS(4291), 1, - anon_sym_COLON_COLON, + [58656] = 3, + ACTIONS(4281), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4277), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(2682), 4, + anon_sym_PLUS, anon_sym_COMMA, - [58716] = 6, - ACTIONS(3453), 1, + anon_sym_GT, anon_sym_COLON_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3542), 1, - anon_sym_COLON, - STATE(1382), 1, - sym_type_arguments, - STATE(2016), 1, - sym_trait_bounds, + [58670] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58736] = 2, + ACTIONS(4283), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [58682] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4293), 5, + ACTIONS(4285), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58748] = 4, - ACTIONS(4297), 1, + [58694] = 4, + ACTIONS(4289), 1, anon_sym_as, - ACTIONS(4299), 1, + ACTIONS(4291), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4295), 3, + ACTIONS(4287), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [58764] = 4, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(4301), 1, - anon_sym_if, + [58710] = 5, + ACTIONS(3632), 1, + anon_sym_COLON, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(232), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [58780] = 6, - ACTIONS(4303), 1, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58728] = 5, + ACTIONS(4293), 1, anon_sym_RPAREN, - ACTIONS(4305), 1, - anon_sym_COLON, - ACTIONS(4307), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4309), 1, - anon_sym_PIPE, - STATE(2007), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1938), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58800] = 4, - ACTIONS(4273), 1, - anon_sym_COLON_COLON, + ACTIONS(3445), 2, + anon_sym_COLON, + anon_sym_PIPE, + [58746] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4311), 2, - anon_sym_RPAREN, + ACTIONS(4299), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [58816] = 4, - ACTIONS(4313), 1, + [58758] = 4, + ACTIONS(4301), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2998), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3762), 2, + ACTIONS(3682), 2, anon_sym_COMMA, anon_sym_PIPE, - [58832] = 2, + [58774] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3967), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(4304), 5, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - [58844] = 5, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(4316), 1, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(2103), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3457), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58862] = 5, - ACTIONS(4318), 1, + [58786] = 5, + ACTIONS(794), 1, anon_sym_RPAREN, - ACTIONS(4321), 1, + ACTIONS(4306), 1, anon_sym_COMMA, - STATE(1978), 1, + STATE(1958), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, + ACTIONS(3445), 2, anon_sym_COLON, anon_sym_PIPE, - [58880] = 6, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3453), 1, - anon_sym_COLON_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - STATE(1382), 1, - sym_type_arguments, - STATE(1402), 1, - sym_parameters, + [58804] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58900] = 3, + ACTIONS(2928), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58816] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3762), 2, + ACTIONS(2992), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2996), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [58914] = 4, - ACTIONS(4273), 1, + anon_sym_where, + anon_sym_EQ, + [58828] = 4, + ACTIONS(4114), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, + ACTIONS(3455), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4159), 2, + ACTIONS(4235), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58930] = 5, - ACTIONS(3652), 1, + [58844] = 5, + ACTIONS(3558), 1, + anon_sym_EQ, + ACTIONS(3925), 1, anon_sym_COLON, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3656), 1, - anon_sym_COLON_COLON, + STATE(1946), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58948] = 5, - ACTIONS(798), 1, - anon_sym_RPAREN, - ACTIONS(4324), 1, + ACTIONS(4308), 2, anon_sym_COMMA, - STATE(2036), 1, - aux_sym_parameters_repeat1, + anon_sym_GT, + [58862] = 6, + ACTIONS(2576), 1, + anon_sym_LPAREN, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3465), 1, + anon_sym_COLON_COLON, + STATE(860), 1, + sym_parameters, + STATE(1382), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58882] = 4, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(4310), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, + STATE(234), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [58898] = 6, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3465), 1, + anon_sym_COLON_COLON, + ACTIONS(3556), 1, anon_sym_COLON, - anon_sym_PIPE, - [58966] = 2, + STATE(1382), 1, + sym_type_arguments, + STATE(1911), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3043), 5, + [58918] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3024), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58978] = 2, + [58930] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3039), 5, + ACTIONS(4312), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [58990] = 2, + anon_sym_COMMA, + [58942] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4326), 5, + ACTIONS(4314), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59002] = 4, - ACTIONS(4149), 1, + [58954] = 4, + ACTIONS(4289), 1, + anon_sym_as, + ACTIONS(4316), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4159), 2, - anon_sym_RPAREN, + ACTIONS(4287), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [59018] = 2, + [58970] = 4, + ACTIONS(4289), 1, + anon_sym_as, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2860), 5, + ACTIONS(4287), 3, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + [58986] = 6, + ACTIONS(3925), 1, anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [59030] = 2, + ACTIONS(4320), 1, + anon_sym_COMMA, + ACTIONS(4322), 1, + anon_sym_GT, + STATE(1903), 1, + sym_trait_bounds, + STATE(2103), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2948), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [59042] = 4, - ACTIONS(4149), 1, - anon_sym_COLON_COLON, + [59006] = 5, + ACTIONS(4324), 1, + anon_sym_RPAREN, + ACTIONS(4326), 1, + anon_sym_COMMA, + STATE(2144), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4311), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59058] = 4, - ACTIONS(284), 1, + ACTIONS(3445), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59024] = 4, + ACTIONS(15), 1, anon_sym_LBRACE, ACTIONS(4328), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 3, + STATE(101), 3, sym_if_expression, sym_if_let_expression, sym_block, - [59074] = 5, - ACTIONS(4330), 1, - anon_sym_RPAREN, - ACTIONS(4332), 1, - anon_sym_COMMA, - STATE(2136), 1, - aux_sym_parameters_repeat1, + [59040] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, + ACTIONS(3032), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - anon_sym_PIPE, - [59092] = 6, - ACTIONS(3926), 1, + anon_sym_where, + anon_sym_EQ, + [59052] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3036), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(4334), 1, + anon_sym_where, + anon_sym_EQ, + [59064] = 6, + ACTIONS(3925), 1, + anon_sym_COLON, + ACTIONS(4221), 1, anon_sym_COMMA, - ACTIONS(4336), 1, + ACTIONS(4223), 1, anon_sym_GT, - STATE(2104), 1, - aux_sym_type_parameters_repeat1, - STATE(2138), 1, + STATE(1903), 1, sym_trait_bounds, + STATE(1924), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59112] = 2, + [59084] = 5, + ACTIONS(3632), 1, + anon_sym_COLON, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3730), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4338), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [59124] = 2, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59102] = 4, + ACTIONS(4332), 1, + anon_sym_as, + ACTIONS(4334), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4340), 5, + ACTIONS(4330), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [59136] = 2, + [59118] = 5, + ACTIONS(4336), 1, + anon_sym_RPAREN, + ACTIONS(4338), 1, + anon_sym_COMMA, + STATE(1938), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4342), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [59148] = 2, + ACTIONS(3445), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59136] = 6, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3465), 1, + anon_sym_COLON_COLON, + STATE(1382), 1, + sym_type_arguments, + STATE(1394), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4344), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [59160] = 2, + [59156] = 4, + ACTIONS(4114), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4346), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4275), 2, + anon_sym_RPAREN, anon_sym_COMMA, [59172] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(4348), 1, - anon_sym_if, + ACTIONS(2998), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(76), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [59188] = 4, - ACTIONS(2996), 1, - anon_sym_PLUS, + ACTIONS(3682), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4301), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59188] = 6, + ACTIONS(4340), 1, + anon_sym_RPAREN, + ACTIONS(4342), 1, + anon_sym_COLON, + ACTIONS(4344), 1, + anon_sym_COMMA, + ACTIONS(4346), 1, + anon_sym_PIPE, + STATE(2001), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3762), 2, + ACTIONS(3682), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4313), 2, + ACTIONS(2998), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [59222] = 5, + ACTIONS(792), 1, anon_sym_RPAREN, + ACTIONS(4348), 1, anon_sym_COMMA, - [59204] = 2, + STATE(2113), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3445), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59240] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -122560,17 +122506,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59216] = 2, + [59252] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4352), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4352), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [59228] = 2, + STATE(1102), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [59268] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -122580,49 +122528,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59240] = 3, - ACTIONS(4356), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2724), 4, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - [59254] = 5, - ACTIONS(3544), 1, - anon_sym_EQ, - ACTIONS(3926), 1, - anon_sym_COLON, - STATE(2126), 1, - sym_trait_bounds, + [59280] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4358), 2, - anon_sym_COMMA, - anon_sym_GT, - [59272] = 6, - ACTIONS(2580), 1, + ACTIONS(3917), 5, anon_sym_LPAREN, - ACTIONS(3453), 1, - anon_sym_COLON_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - STATE(965), 1, - sym_parameters, - STATE(1382), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, [59292] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4360), 5, + ACTIONS(4356), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, @@ -122632,1605 +122552,1594 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4362), 5, + ACTIONS(4358), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, [59316] = 5, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4141), 1, + ACTIONS(4043), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, anon_sym_LBRACE, - STATE(398), 1, - sym_enum_variant_list, - STATE(2246), 1, - sym_where_clause, + ACTIONS(4047), 1, + anon_sym_LBRACK, + STATE(1154), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [59333] = 4, - ACTIONS(4366), 1, - anon_sym_COMMA, - STATE(1792), 1, - aux_sym_where_clause_repeat1, + ACTIONS(4360), 1, + anon_sym_DQUOTE, + STATE(1801), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4364), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [59348] = 4, - ACTIONS(3572), 1, - anon_sym_COLON_COLON, - ACTIONS(3947), 1, - anon_sym_BANG, + ACTIONS(4362), 2, + sym__string_content, + sym_escape_sequence, + [59348] = 5, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3925), 1, + anon_sym_COLON, + STATE(1381), 1, + sym_type_arguments, + STATE(1912), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59363] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, + [59365] = 5, + ACTIONS(4255), 1, + anon_sym_LPAREN, + ACTIONS(4364), 1, + anon_sym_RBRACK, + ACTIONS(4366), 1, + anon_sym_EQ, + STATE(2399), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4369), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59376] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, + [59382] = 4, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, + ACTIONS(4368), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4371), 3, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59397] = 5, + ACTIONS(792), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59389] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1016), 1, - sym_line_comment, - ACTIONS(4373), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4375), 3, + ACTIONS(4096), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59404] = 5, - ACTIONS(4205), 1, + ACTIONS(4348), 1, anon_sym_COMMA, - ACTIONS(4207), 1, - anon_sym_GT, - ACTIONS(4377), 1, - anon_sym_EQ, - STATE(2133), 1, - aux_sym_type_parameters_repeat1, + STATE(2113), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59421] = 5, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4316), 1, - anon_sym_COMMA, - STATE(2103), 1, - aux_sym_parameters_repeat1, + [59414] = 3, + ACTIONS(4370), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59438] = 5, - ACTIONS(3862), 1, + ACTIONS(3638), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [59427] = 5, + ACTIONS(3804), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, + ACTIONS(3806), 1, anon_sym_where, - STATE(980), 1, + STATE(1029), 1, sym_field_declaration_list, - STATE(2204), 1, + STATE(2203), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59455] = 5, - ACTIONS(3864), 1, + [59444] = 5, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4108), 1, + ACTIONS(4124), 1, anon_sym_LBRACE, - STATE(941), 1, + STATE(1040), 1, sym_enum_variant_list, - STATE(2199), 1, + STATE(2198), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59472] = 5, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [59461] = 5, + ACTIONS(3806), 1, anon_sym_where, - STATE(862), 1, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(1046), 1, sym_declaration_list, - STATE(2191), 1, + STATE(2190), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59489] = 5, + [59478] = 5, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4372), 1, + anon_sym_RPAREN, + ACTIONS(4374), 1, + anon_sym_COMMA, + STATE(2072), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59495] = 4, + ACTIONS(4376), 1, + anon_sym_DQUOTE, + STATE(1801), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4378), 2, + sym__string_content, + sym_escape_sequence, + [59510] = 5, + ACTIONS(3806), 1, + anon_sym_where, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - STATE(293), 1, + STATE(974), 1, sym_declaration_list, - STATE(2319), 1, + STATE(2234), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59506] = 5, + [59527] = 5, + ACTIONS(3806), 1, + anon_sym_where, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - STATE(311), 1, + STATE(1056), 1, sym_declaration_list, - STATE(2296), 1, + STATE(2185), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59523] = 5, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - STATE(814), 1, - sym_declaration_list, - STATE(2186), 1, - sym_where_clause, + [59544] = 5, + ACTIONS(3638), 1, + anon_sym_PIPE, + ACTIONS(4381), 1, + anon_sym_SEMI, + ACTIONS(4383), 1, + anon_sym_COLON, + ACTIONS(4385), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59540] = 5, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [59561] = 5, + ACTIONS(3806), 1, anon_sym_where, - STATE(913), 1, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(956), 1, sym_declaration_list, - STATE(2235), 1, + STATE(2239), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59557] = 5, - ACTIONS(3816), 1, + [59578] = 5, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1381), 1, + sym_type_arguments, + STATE(1401), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59595] = 5, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - STATE(830), 1, - sym_declaration_list, - STATE(2240), 1, - sym_where_clause, + ACTIONS(4160), 1, + sym_identifier, + ACTIONS(4162), 1, + anon_sym_STAR, + STATE(1968), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59574] = 4, - ACTIONS(3654), 1, + [59612] = 4, + ACTIONS(3634), 1, anon_sym_BANG, - ACTIONS(3656), 1, + ACTIONS(3636), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 2, + ACTIONS(3570), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59589] = 5, - ACTIONS(4102), 1, + [59627] = 5, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(489), 1, + sym_field_declaration_list, + STATE(2279), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59644] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1012), 1, + sym_line_comment, + ACTIONS(4387), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4389), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59659] = 5, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4379), 1, + ACTIONS(4336), 1, anon_sym_RPAREN, - ACTIONS(4381), 1, + ACTIONS(4338), 1, anon_sym_COMMA, - STATE(2097), 1, - aux_sym_tuple_type_repeat1, + STATE(1938), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59606] = 5, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, - anon_sym_LT2, - STATE(1378), 1, - sym_type_arguments, - STATE(1401), 1, - sym_parameters, + [59676] = 4, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(4391), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59623] = 5, - ACTIONS(3708), 1, - anon_sym_PIPE, - ACTIONS(4383), 1, - anon_sym_SEMI, - ACTIONS(4385), 1, - anon_sym_COLON, - ACTIONS(4387), 1, - anon_sym_EQ, + STATE(1153), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [59691] = 5, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3808), 1, + anon_sym_LT, + STATE(1690), 1, + sym_parameters, + STATE(2253), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59640] = 5, + [59708] = 5, ACTIONS(2465), 1, anon_sym_PLUS, - ACTIONS(4389), 1, + ACTIONS(4393), 1, anon_sym_COMMA, - ACTIONS(4391), 1, + ACTIONS(4395), 1, anon_sym_GT, - STATE(2151), 1, + STATE(2152), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59657] = 5, - ACTIONS(4102), 1, + [59725] = 5, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4389), 1, + ACTIONS(4393), 1, anon_sym_COMMA, - ACTIONS(4391), 1, + ACTIONS(4395), 1, anon_sym_GT, - STATE(2151), 1, + STATE(2152), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59674] = 5, - ACTIONS(4102), 1, + [59742] = 5, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4330), 1, + ACTIONS(4324), 1, anon_sym_RPAREN, - ACTIONS(4332), 1, + ACTIONS(4326), 1, anon_sym_COMMA, - STATE(2136), 1, + STATE(2144), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59691] = 5, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4393), 1, - anon_sym_RPAREN, - ACTIONS(4395), 1, - anon_sym_COMMA, - STATE(1940), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59708] = 5, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [59759] = 5, + ACTIONS(3806), 1, anon_sym_where, - STATE(842), 1, - sym_declaration_list, - STATE(2262), 1, + ACTIONS(4156), 1, + anon_sym_LBRACE, + STATE(476), 1, + sym_enum_variant_list, + STATE(2241), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59725] = 3, + [59776] = 4, + ACTIONS(4399), 1, + anon_sym_COMMA, + STATE(1883), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_COLON, - anon_sym_PIPE, ACTIONS(4397), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [59791] = 5, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4401), 1, anon_sym_RPAREN, + ACTIONS(4403), 1, anon_sym_COMMA, - [59738] = 5, + STATE(2148), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59808] = 5, + ACTIONS(3806), 1, + anon_sym_where, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - STATE(487), 1, + STATE(905), 1, sym_declaration_list, - STATE(2228), 1, + STATE(2261), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59755] = 4, - ACTIONS(3926), 1, + [59825] = 4, + ACTIONS(3925), 1, anon_sym_COLON, - STATE(2138), 1, + STATE(1903), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4399), 2, + ACTIONS(4405), 2, anon_sym_COMMA, anon_sym_GT, - [59770] = 5, - ACTIONS(3862), 1, + [59840] = 5, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, + ACTIONS(4407), 1, + sym_identifier, + ACTIONS(4409), 1, + anon_sym_STAR, + STATE(1963), 1, + sym_use_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59857] = 5, + ACTIONS(3806), 1, anon_sym_where, - STATE(923), 1, - sym_field_declaration_list, - STATE(2183), 1, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(336), 1, + sym_declaration_list, + STATE(2222), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59787] = 5, - ACTIONS(2465), 1, - anon_sym_PLUS, - ACTIONS(4401), 1, - anon_sym_COMMA, - ACTIONS(4403), 1, - anon_sym_GT, - STATE(2015), 1, - aux_sym_type_arguments_repeat1, + [59874] = 5, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(4411), 1, + anon_sym_SEMI, + ACTIONS(4413), 1, + anon_sym_COLON, + ACTIONS(4415), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59804] = 5, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4401), 1, - anon_sym_COMMA, - ACTIONS(4403), 1, - anon_sym_GT, - STATE(2015), 1, - aux_sym_type_arguments_repeat1, + [59891] = 5, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3808), 1, + anon_sym_LT, + STATE(1697), 1, + sym_parameters, + STATE(2288), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59821] = 5, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4405), 1, - anon_sym_RPAREN, - ACTIONS(4407), 1, - anon_sym_COMMA, - STATE(2084), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [59908] = 5, + ACTIONS(3804), 1, + anon_sym_LBRACE, + ACTIONS(3806), 1, + anon_sym_where, + STATE(923), 1, + sym_field_declaration_list, + STATE(2189), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59838] = 5, - ACTIONS(3926), 1, + [59925] = 5, + ACTIONS(3925), 1, anon_sym_COLON, - ACTIONS(4409), 1, + ACTIONS(4417), 1, anon_sym_SEMI, - ACTIONS(4411), 1, + ACTIONS(4419), 1, anon_sym_EQ, - STATE(2558), 1, + STATE(2553), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59855] = 5, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [59942] = 5, + ACTIONS(3806), 1, anon_sym_where, - STATE(931), 1, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(904), 1, sym_declaration_list, - STATE(2193), 1, + STATE(2177), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59872] = 5, - ACTIONS(3708), 1, + [59959] = 5, + ACTIONS(3638), 1, anon_sym_PIPE, - ACTIONS(4413), 1, + ACTIONS(4421), 1, anon_sym_SEMI, - ACTIONS(4415), 1, + ACTIONS(4423), 1, anon_sym_COLON, - ACTIONS(4417), 1, + ACTIONS(4425), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59889] = 4, - ACTIONS(3926), 1, - anon_sym_COLON, - STATE(2138), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4419), 2, - anon_sym_COMMA, - anon_sym_GT, - [59904] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1016), 1, - sym_line_comment, - ACTIONS(4422), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4424), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59919] = 5, - ACTIONS(2580), 1, + [59976] = 5, + ACTIONS(2576), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3457), 1, anon_sym_LT2, - STATE(964), 1, + STATE(871), 1, sym_parameters, - STATE(1378), 1, + STATE(1381), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59936] = 5, - ACTIONS(3926), 1, + [59993] = 4, + ACTIONS(4237), 1, anon_sym_COLON, - ACTIONS(4426), 1, - anon_sym_SEMI, - ACTIONS(4428), 1, - anon_sym_EQ, - STATE(2501), 1, - sym_trait_bounds, + ACTIONS(4239), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59953] = 5, - ACTIONS(4334), 1, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60008] = 3, + ACTIONS(4427), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4429), 3, + sym_self, + sym_super, + sym_crate, + [60021] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3445), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4431), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4336), 1, + [60034] = 5, + ACTIONS(4320), 1, + anon_sym_COMMA, + ACTIONS(4322), 1, anon_sym_GT, - ACTIONS(4377), 1, + ACTIONS(4433), 1, anon_sym_EQ, - STATE(2104), 1, + STATE(2103), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59970] = 5, - ACTIONS(4102), 1, + [60051] = 5, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4430), 1, + ACTIONS(4435), 1, anon_sym_RPAREN, - ACTIONS(4432), 1, + ACTIONS(4437), 1, anon_sym_COMMA, - STATE(2100), 1, + STATE(2099), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59987] = 5, - ACTIONS(4309), 1, - anon_sym_PIPE, - ACTIONS(4434), 1, - anon_sym_RBRACK, - ACTIONS(4436), 1, - anon_sym_COMMA, - STATE(2002), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60004] = 4, - ACTIONS(4438), 1, + [60068] = 4, + ACTIONS(4439), 1, anon_sym_DQUOTE, - STATE(1840), 1, + STATE(1839), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4440), 2, + ACTIONS(4441), 2, sym__string_content, sym_escape_sequence, - [60019] = 5, - ACTIONS(4442), 1, + [60083] = 5, + ACTIONS(4443), 1, anon_sym_LPAREN, - ACTIONS(4444), 1, + ACTIONS(4445), 1, anon_sym_LBRACE, - ACTIONS(4446), 1, + ACTIONS(4447), 1, anon_sym_LBRACK, - STATE(1424), 1, + STATE(1426), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60036] = 5, - ACTIONS(4303), 1, - anon_sym_RPAREN, - ACTIONS(4307), 1, - anon_sym_COMMA, - ACTIONS(4309), 1, - anon_sym_PIPE, - STATE(2007), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60053] = 5, - ACTIONS(3864), 1, + [60100] = 5, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4108), 1, + ACTIONS(4124), 1, anon_sym_LBRACE, - STATE(1019), 1, + STATE(849), 1, sym_enum_variant_list, - STATE(2233), 1, + STATE(2231), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60070] = 4, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3760), 1, - anon_sym_COLON_COLON, + [60117] = 4, + ACTIONS(4449), 1, + anon_sym_DQUOTE, + STATE(1801), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60085] = 5, - ACTIONS(4309), 1, - anon_sym_PIPE, - ACTIONS(4448), 1, - anon_sym_RPAREN, - ACTIONS(4450), 1, - anon_sym_COMMA, - STATE(1997), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4362), 2, + sym__string_content, + sym_escape_sequence, + [60132] = 5, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_LBRACE, + ACTIONS(4447), 1, + anon_sym_LBRACK, + STATE(1415), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60102] = 4, - ACTIONS(4452), 1, - anon_sym_DQUOTE, - STATE(1863), 1, - aux_sym_string_literal_repeat1, + [60149] = 4, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, + ACTIONS(3967), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4454), 2, - sym__string_content, - sym_escape_sequence, - [60117] = 4, - ACTIONS(4456), 1, - anon_sym_DQUOTE, - STATE(1889), 1, - aux_sym_string_literal_repeat1, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60164] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4458), 2, - sym__string_content, - sym_escape_sequence, - [60132] = 5, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - STATE(452), 1, - sym_declaration_list, - STATE(2224), 1, - sym_where_clause, + ACTIONS(4451), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60177] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60149] = 5, - ACTIONS(4442), 1, - anon_sym_LPAREN, - ACTIONS(4444), 1, - anon_sym_LBRACE, - ACTIONS(4446), 1, - anon_sym_LBRACK, - STATE(1427), 1, - sym_delim_token_tree, + ACTIONS(4453), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60190] = 5, + ACTIONS(3925), 1, + anon_sym_COLON, + ACTIONS(4455), 1, + anon_sym_SEMI, + ACTIONS(4457), 1, + anon_sym_EQ, + STATE(2409), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60166] = 5, - ACTIONS(3995), 1, + [60207] = 5, + ACTIONS(4043), 1, anon_sym_LPAREN, - ACTIONS(3997), 1, + ACTIONS(4045), 1, anon_sym_LBRACE, - ACTIONS(3999), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - STATE(1063), 1, + STATE(1062), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60183] = 4, - ACTIONS(4460), 1, + [60224] = 4, + ACTIONS(4459), 1, anon_sym_DQUOTE, - STATE(1889), 1, + STATE(1801), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4458), 2, + ACTIONS(4362), 2, sym__string_content, sym_escape_sequence, - [60198] = 5, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(4462), 1, - sym_identifier, - ACTIONS(4464), 1, - anon_sym_STAR, - STATE(1957), 1, - sym_use_list, + [60239] = 4, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3730), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60215] = 4, - ACTIONS(4468), 1, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60254] = 5, + ACTIONS(2465), 1, + anon_sym_PLUS, + ACTIONS(4461), 1, anon_sym_COMMA, - STATE(1846), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4466), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [60230] = 3, - ACTIONS(4309), 1, - anon_sym_PIPE, + ACTIONS(4463), 1, + anon_sym_GT, + STATE(2026), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4466), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [60243] = 5, - ACTIONS(4309), 1, - anon_sym_PIPE, - ACTIONS(4471), 1, - anon_sym_SEMI, - ACTIONS(4473), 1, - anon_sym_COLON, - ACTIONS(4475), 1, - anon_sym_EQ, + [60271] = 5, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(430), 1, + sym_declaration_list, + STATE(2183), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60260] = 5, - ACTIONS(798), 1, - anon_sym_RPAREN, - ACTIONS(4102), 1, + [60288] = 5, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4324), 1, + ACTIONS(4461), 1, anon_sym_COMMA, - STATE(2036), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60277] = 5, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(4145), 1, - sym_identifier, - ACTIONS(4147), 1, - anon_sym_STAR, - STATE(1953), 1, - sym_use_list, + ACTIONS(4463), 1, + anon_sym_GT, + STATE(2026), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60294] = 5, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, + [60305] = 5, + ACTIONS(3806), 1, anon_sym_where, - STATE(489), 1, - sym_declaration_list, - STATE(2217), 1, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(296), 1, + sym_field_declaration_list, + STATE(2313), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60311] = 4, - ACTIONS(4477), 1, - anon_sym_DQUOTE, - STATE(1856), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4479), 2, - sym__string_content, - sym_escape_sequence, - [60326] = 5, - ACTIONS(4481), 1, - anon_sym_LPAREN, - ACTIONS(4483), 1, - anon_sym_LBRACE, - ACTIONS(4485), 1, - anon_sym_LBRACK, - STATE(1045), 1, - sym_delim_token_tree, + [60322] = 5, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(4465), 1, + anon_sym_SEMI, + ACTIONS(4467), 1, + anon_sym_COLON, + ACTIONS(4469), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60343] = 5, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4283), 1, - anon_sym_RPAREN, - ACTIONS(4285), 1, + [60339] = 4, + ACTIONS(4473), 1, anon_sym_COMMA, - STATE(1978), 1, - aux_sym_parameters_repeat1, + STATE(1853), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60360] = 5, - ACTIONS(3995), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, - anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(1099), 1, - sym_delim_token_tree, + ACTIONS(4471), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [60354] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60377] = 4, - ACTIONS(4487), 1, + ACTIONS(4471), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [60367] = 4, + ACTIONS(4476), 1, anon_sym_DQUOTE, - STATE(1889), 1, + STATE(1859), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4458), 2, + ACTIONS(4478), 2, sym__string_content, sym_escape_sequence, - [60392] = 5, - ACTIONS(4481), 1, + [60382] = 5, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4483), 1, + ACTIONS(4482), 1, anon_sym_LBRACE, - ACTIONS(4485), 1, + ACTIONS(4484), 1, anon_sym_LBRACK, - STATE(1044), 1, - sym_delim_token_tree, + STATE(1935), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60409] = 4, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3794), 1, - anon_sym_COLON_COLON, + [60399] = 5, + ACTIONS(4221), 1, + anon_sym_COMMA, + ACTIONS(4223), 1, + anon_sym_GT, + ACTIONS(4433), 1, + anon_sym_EQ, + STATE(1924), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60424] = 4, - ACTIONS(4489), 1, - anon_sym_COMMA, - STATE(1792), 1, - aux_sym_where_clause_repeat1, + [60416] = 5, + ACTIONS(4486), 1, + anon_sym_LPAREN, + ACTIONS(4488), 1, + anon_sym_LBRACE, + ACTIONS(4490), 1, + anon_sym_LBRACK, + STATE(841), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2904), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60439] = 4, - ACTIONS(4491), 1, + [60433] = 4, + ACTIONS(4492), 1, anon_sym_DQUOTE, - STATE(1844), 1, + STATE(1801), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4493), 2, + ACTIONS(4362), 2, sym__string_content, sym_escape_sequence, - [60454] = 5, - ACTIONS(4495), 1, + [60448] = 5, + ACTIONS(4486), 1, anon_sym_LPAREN, - ACTIONS(4497), 1, + ACTIONS(4488), 1, anon_sym_LBRACE, - ACTIONS(4499), 1, + ACTIONS(4490), 1, anon_sym_LBRACK, - STATE(143), 1, + STATE(840), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60471] = 5, - ACTIONS(4089), 1, + [60465] = 5, + ACTIONS(3461), 1, anon_sym_LPAREN, - ACTIONS(4501), 1, - anon_sym_RBRACK, - ACTIONS(4503), 1, - anon_sym_EQ, - STATE(2467), 1, - sym_meta_arguments, + ACTIONS(3808), 1, + anon_sym_LT, + STATE(1645), 1, + sym_parameters, + STATE(2310), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60488] = 4, - ACTIONS(4505), 1, - anon_sym_DQUOTE, - STATE(1889), 1, - aux_sym_string_literal_repeat1, + [60482] = 5, + ACTIONS(4494), 1, + anon_sym_LPAREN, + ACTIONS(4496), 1, + anon_sym_LBRACE, + ACTIONS(4498), 1, + anon_sym_LBRACK, + STATE(157), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4458), 2, - sym__string_content, - sym_escape_sequence, - [60503] = 5, - ACTIONS(4305), 1, - anon_sym_COLON, - ACTIONS(4507), 1, - anon_sym_COMMA, - ACTIONS(4509), 1, - anon_sym_PIPE, - STATE(1944), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, + [60499] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1012), 1, sym_line_comment, - [60520] = 4, - ACTIONS(3572), 1, - anon_sym_COLON_COLON, - ACTIONS(4511), 1, - anon_sym_COLON, + ACTIONS(4500), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4502), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60514] = 5, + ACTIONS(794), 1, + anon_sym_RPAREN, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4306), 1, + anon_sym_COMMA, + STATE(1958), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60535] = 4, - ACTIONS(4157), 1, - anon_sym_COLON, - ACTIONS(4163), 1, - anon_sym_COLON_COLON, + [60531] = 5, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4504), 1, + anon_sym_RPAREN, + ACTIONS(4506), 1, + anon_sym_COMMA, + STATE(2064), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60550] = 5, - ACTIONS(4495), 1, - anon_sym_LPAREN, - ACTIONS(4497), 1, - anon_sym_LBRACE, - ACTIONS(4499), 1, - anon_sym_LBRACK, - STATE(92), 1, - sym_delim_token_tree, + [60548] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60567] = 5, - ACTIONS(4513), 1, - anon_sym_LPAREN, - ACTIONS(4515), 1, - anon_sym_LBRACE, - ACTIONS(4517), 1, - anon_sym_LBRACK, - STATE(2111), 1, - sym_token_tree, + ACTIONS(4508), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60561] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60584] = 5, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3926), 1, - anon_sym_COLON, - STATE(1378), 1, - sym_type_arguments, - STATE(1971), 1, - sym_trait_bounds, + ACTIONS(4510), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60574] = 4, + ACTIONS(4512), 1, + anon_sym_DQUOTE, + STATE(1846), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60601] = 4, - ACTIONS(3572), 1, - anon_sym_COLON_COLON, - ACTIONS(3652), 1, - anon_sym_COLON, + ACTIONS(4514), 2, + sym__string_content, + sym_escape_sequence, + [60589] = 5, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(459), 1, + sym_declaration_list, + STATE(2229), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60616] = 5, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3866), 1, - anon_sym_LT, - STATE(1733), 1, - sym_parameters, - STATE(2288), 1, - sym_type_parameters, + [60606] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60633] = 4, - ACTIONS(4521), 1, + ACTIONS(3445), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4516), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1859), 1, + [60619] = 4, + ACTIONS(4520), 1, + anon_sym_COMMA, + STATE(1871), 1, aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4519), 2, + ACTIONS(4518), 2, anon_sym_SEMI, anon_sym_LBRACE, - [60648] = 4, - ACTIONS(4161), 1, - anon_sym_COLON, - ACTIONS(4163), 1, - anon_sym_COLON_COLON, + [60634] = 5, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3808), 1, + anon_sym_LT, + STATE(1710), 1, + sym_parameters, + STATE(2309), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60663] = 3, + [60651] = 3, ACTIONS(4523), 1, - anon_sym_COLON, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3708), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [60676] = 5, - ACTIONS(3864), 1, + ACTIONS(4525), 3, + sym_self, + sym_super, + sym_crate, + [60664] = 5, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3888), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(301), 1, - sym_field_declaration_list, - STATE(2237), 1, + STATE(284), 1, + sym_declaration_list, + STATE(2304), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60693] = 4, - ACTIONS(3), 1, + [60681] = 4, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3762), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1016), 1, sym_line_comment, - ACTIONS(4525), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4527), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60708] = 5, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3866), 1, - anon_sym_LT, - STATE(1709), 1, - sym_parameters, - STATE(2190), 1, - sym_type_parameters, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60696] = 4, + ACTIONS(4527), 1, + anon_sym_DQUOTE, + STATE(1791), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60725] = 3, + ACTIONS(4529), 2, + sym__string_content, + sym_escape_sequence, + [60711] = 5, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4156), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_enum_variant_list, + STATE(2162), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_COLON, + [60728] = 5, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(4529), 2, + ACTIONS(4531), 1, anon_sym_RPAREN, + ACTIONS(4533), 1, anon_sym_COMMA, - [60738] = 4, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(4531), 1, - sym_identifier, + STATE(2007), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1147), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [60753] = 5, - ACTIONS(3864), 1, + [60745] = 5, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3888), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(475), 1, - sym_field_declaration_list, - STATE(2177), 1, + STATE(447), 1, + sym_declaration_list, + STATE(2212), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60770] = 5, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3866), 1, - anon_sym_LT, - STATE(1719), 1, - sym_parameters, - STATE(2320), 1, - sym_type_parameters, - ACTIONS(3), 2, + [60762] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1012), 1, sym_line_comment, - [60787] = 5, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3866), 1, - anon_sym_LT, - STATE(1713), 1, - sym_parameters, - STATE(2259), 1, - sym_type_parameters, + ACTIONS(4535), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4537), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60777] = 4, + ACTIONS(3925), 1, + anon_sym_COLON, + STATE(1903), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60804] = 5, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4533), 1, - anon_sym_RPAREN, - ACTIONS(4535), 1, + ACTIONS(4539), 2, anon_sym_COMMA, - STATE(2040), 1, - aux_sym_ordered_field_declaration_list_repeat1, + anon_sym_GT, + [60792] = 5, + ACTIONS(4494), 1, + anon_sym_LPAREN, + ACTIONS(4496), 1, + anon_sym_LBRACE, + ACTIONS(4498), 1, + anon_sym_LBRACK, + STATE(146), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60821] = 5, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3866), 1, - anon_sym_LT, - STATE(1659), 1, - sym_parameters, - STATE(2316), 1, - sym_type_parameters, + [60809] = 4, + ACTIONS(4542), 1, + anon_sym_COMMA, + STATE(1871), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60838] = 5, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4141), 1, + ACTIONS(2856), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(481), 1, - sym_enum_variant_list, - STATE(2172), 1, - sym_where_clause, + [60824] = 5, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(4544), 1, + anon_sym_RBRACK, + ACTIONS(4546), 1, + anon_sym_COMMA, + STATE(1999), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60855] = 3, - ACTIONS(4537), 1, - anon_sym_in, + [60841] = 4, + ACTIONS(4112), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4539), 3, - sym_self, - sym_super, - sym_crate, - [60868] = 3, - ACTIONS(4541), 1, - anon_sym_in, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60856] = 5, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(410), 1, + sym_declaration_list, + STATE(2187), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4543), 3, - sym_self, - sym_super, - sym_crate, - [60881] = 5, - ACTIONS(4309), 1, - anon_sym_PIPE, - ACTIONS(4545), 1, - anon_sym_SEMI, - ACTIONS(4547), 1, + [60873] = 4, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, + ACTIONS(3632), 1, anon_sym_COLON, - ACTIONS(4549), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60898] = 4, - ACTIONS(4551), 1, - anon_sym_DQUOTE, - STATE(1889), 1, - aux_sym_string_literal_repeat1, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60888] = 5, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4548), 1, + anon_sym_RPAREN, + ACTIONS(4550), 1, + anon_sym_COMMA, + STATE(2137), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4553), 2, - sym__string_content, - sym_escape_sequence, - [60913] = 5, - ACTIONS(3449), 1, + [60905] = 5, + ACTIONS(3461), 1, anon_sym_LPAREN, - ACTIONS(3866), 1, + ACTIONS(3808), 1, anon_sym_LT, - STATE(1691), 1, + STATE(1675), 1, sym_parameters, - STATE(2279), 1, + STATE(2159), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60930] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, + [60922] = 5, + ACTIONS(4342), 1, + anon_sym_COLON, + ACTIONS(4552), 1, + anon_sym_COMMA, + ACTIONS(4554), 1, + anon_sym_PIPE, + STATE(2143), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4556), 3, + [60939] = 5, + ACTIONS(4340), 1, anon_sym_RPAREN, + ACTIONS(4344), 1, anon_sym_COMMA, + ACTIONS(4346), 1, anon_sym_PIPE, - [60943] = 5, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(3864), 1, - anon_sym_where, - STATE(344), 1, - sym_declaration_list, - STATE(2289), 1, - sym_where_clause, + STATE(2001), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60960] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, + [60956] = 5, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3808), 1, + anon_sym_LT, + STATE(1651), 1, + sym_parameters, + STATE(2276), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4558), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, [60973] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1016), 1, + ACTIONS(1012), 1, sym_line_comment, - ACTIONS(4560), 1, + ACTIONS(4556), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4562), 3, + ACTIONS(4558), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [60988] = 3, - ACTIONS(4305), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4564), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [61000] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4566), 3, + [60988] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61010] = 4, - ACTIONS(4564), 1, - anon_sym_PIPE, - ACTIONS(4568), 1, - anon_sym_COMMA, - STATE(1897), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61024] = 4, - ACTIONS(4100), 1, - anon_sym_LBRACE, - ACTIONS(4571), 1, + ACTIONS(4560), 1, anon_sym_SEMI, - STATE(278), 1, - sym_block, + ACTIONS(4562), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61038] = 4, + [61002] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4102), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - STATE(1101), 1, + STATE(1076), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61052] = 4, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(4573), 1, - anon_sym_GT, - STATE(2322), 1, - sym_lifetime, + [61016] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61066] = 4, - ACTIONS(3854), 1, - anon_sym_RBRACE, - ACTIONS(4575), 1, + ACTIONS(4564), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(2066), 1, - aux_sym_field_initializer_list_repeat1, + [61026] = 4, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4566), 1, + anon_sym_SEMI, + STATE(2448), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61080] = 2, + [61040] = 4, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4568), 1, + anon_sym_SEMI, + STATE(2561), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4577), 3, + [61054] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61090] = 2, + ACTIONS(4570), 1, + anon_sym_SEMI, + ACTIONS(4572), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2429), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [61100] = 4, - ACTIONS(4100), 1, + [61068] = 4, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4579), 1, + ACTIONS(4574), 1, anon_sym_SEMI, - STATE(379), 1, + STATE(290), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61114] = 4, - ACTIONS(3173), 1, - anon_sym_RPAREN, - ACTIONS(4581), 1, + [61082] = 4, + ACTIONS(4576), 1, + anon_sym_RBRACE, + ACTIONS(4578), 1, anon_sym_COMMA, - STATE(2094), 1, - aux_sym_meta_arguments_repeat1, + STATE(2145), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61128] = 4, - ACTIONS(556), 1, - anon_sym_RBRACK, - ACTIONS(4583), 1, + [61096] = 4, + ACTIONS(2584), 1, + anon_sym_LT2, + ACTIONS(4580), 1, + sym_identifier, + STATE(843), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61110] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4582), 3, + anon_sym_EQ, anon_sym_COMMA, - STATE(2075), 1, - aux_sym_array_expression_repeat1, + anon_sym_GT, + [61120] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4584), 1, + sym_identifier, + STATE(2525), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61142] = 4, - ACTIONS(3824), 1, + [61134] = 4, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4585), 1, + ACTIONS(4586), 1, anon_sym_SEMI, - STATE(364), 1, + STATE(398), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61156] = 4, - ACTIONS(284), 1, + [61148] = 4, + ACTIONS(2604), 1, anon_sym_LBRACE, - ACTIONS(4102), 1, - anon_sym_PLUS, - STATE(1070), 1, - sym_block, + ACTIONS(4588), 1, + anon_sym_COLON_COLON, + STATE(1115), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61170] = 3, - ACTIONS(4589), 1, - anon_sym_COLON, + [61162] = 4, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4590), 1, + anon_sym_SEMI, + STATE(2581), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4587), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61182] = 2, + [61176] = 4, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4592), 1, + anon_sym_SEMI, + STATE(286), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4591), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61192] = 4, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4593), 1, - anon_sym_SEMI, - ACTIONS(4595), 1, - anon_sym_EQ, + [61190] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4584), 1, + sym_identifier, + STATE(2537), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61204] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61206] = 2, + ACTIONS(4594), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61214] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4597), 3, + ACTIONS(4596), 3, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_COMMA, - [61216] = 4, - ACTIONS(4599), 1, - anon_sym_for, - ACTIONS(4601), 1, - anon_sym_loop, - ACTIONS(4603), 1, - anon_sym_while, + [61224] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61230] = 4, - ACTIONS(3824), 1, + ACTIONS(4598), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [61234] = 4, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(4600), 1, anon_sym_SEMI, - STATE(403), 1, - sym_declaration_list, + STATE(281), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61244] = 4, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(4607), 1, - anon_sym_SEMI, - STATE(422), 1, - sym_declaration_list, + [61248] = 4, + ACTIONS(4552), 1, + anon_sym_COMMA, + ACTIONS(4602), 1, + anon_sym_PIPE, + STATE(2143), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61258] = 4, - ACTIONS(4100), 1, - anon_sym_LBRACE, - ACTIONS(4609), 1, - anon_sym_SEMI, - STATE(307), 1, - sym_block, + [61262] = 4, + ACTIONS(3864), 1, + anon_sym_RBRACE, + ACTIONS(4604), 1, + anon_sym_COMMA, + STATE(1944), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61272] = 4, - ACTIONS(3870), 1, + [61276] = 4, + ACTIONS(3275), 1, + anon_sym_RPAREN, + ACTIONS(4606), 1, + anon_sym_COMMA, + STATE(1916), 1, + aux_sym_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61290] = 4, + ACTIONS(3864), 1, anon_sym_RBRACE, - ACTIONS(4611), 1, + ACTIONS(4604), 1, anon_sym_COMMA, - STATE(1920), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1939), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61286] = 4, - ACTIONS(3866), 1, - anon_sym_LT, - ACTIONS(4613), 1, - anon_sym_EQ, - STATE(2380), 1, - sym_type_parameters, + [61304] = 4, + ACTIONS(388), 1, + anon_sym_RPAREN, + ACTIONS(4609), 1, + anon_sym_COMMA, + STATE(1916), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61300] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3766), 1, - anon_sym_LBRACE, - STATE(1378), 1, - sym_type_arguments, + [61318] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4611), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61328] = 3, + ACTIONS(4615), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61314] = 4, - ACTIONS(4615), 1, + ACTIONS(4613), 2, anon_sym_RBRACE, + anon_sym_COMMA, + [61340] = 4, ACTIONS(4617), 1, + anon_sym_RBRACE, + ACTIONS(4619), 1, anon_sym_COMMA, - STATE(1920), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1917), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61328] = 2, + [61354] = 4, + ACTIONS(4621), 1, + sym_identifier, + ACTIONS(4623), 1, + anon_sym_ref, + ACTIONS(4625), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4620), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61338] = 4, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(4622), 1, - anon_sym_SEMI, - STATE(328), 1, - sym_declaration_list, + [61368] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4627), 1, + anon_sym_as, + ACTIONS(4629), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61352] = 4, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4624), 1, - anon_sym_SEMI, - STATE(2563), 1, - sym_where_clause, + [61382] = 4, + ACTIONS(3888), 1, + anon_sym_GT, + ACTIONS(4631), 1, + anon_sym_COMMA, + STATE(2087), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61366] = 3, - ACTIONS(4273), 1, - anon_sym_COLON_COLON, + [61396] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61378] = 3, - ACTIONS(4626), 1, - sym_identifier, + ACTIONS(4633), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61408] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4628), 2, - anon_sym_default, - anon_sym_union, - [61390] = 3, - ACTIONS(4102), 1, + ACTIONS(4635), 3, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61418] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4630), 2, + ACTIONS(4637), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61402] = 4, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(4632), 1, - sym_identifier, - STATE(1993), 1, - sym_use_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61416] = 4, - ACTIONS(3616), 1, - anon_sym_COLON_COLON, - ACTIONS(3938), 1, - anon_sym_BANG, - ACTIONS(4634), 1, - sym_identifier, + [61430] = 4, + ACTIONS(4639), 1, + anon_sym_for, + ACTIONS(4641), 1, + anon_sym_loop, + ACTIONS(4643), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61430] = 4, - ACTIONS(2642), 1, - anon_sym_LBRACE, - ACTIONS(4636), 1, - anon_sym_COLON_COLON, - STATE(1133), 1, - sym_field_initializer_list, + [61444] = 4, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(4645), 1, + anon_sym_EQ_GT, + ACTIONS(4647), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61444] = 3, - ACTIONS(4163), 1, + [61458] = 3, + ACTIONS(4261), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, + ACTIONS(3455), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [61456] = 4, - ACTIONS(4638), 1, - anon_sym_RPAREN, - ACTIONS(4640), 1, - anon_sym_COMMA, - STATE(1931), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, [61470] = 4, - ACTIONS(4643), 1, - anon_sym_RBRACE, - ACTIONS(4645), 1, - anon_sym_COMMA, - STATE(1961), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4649), 1, + anon_sym_move, + STATE(1114), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [61484] = 4, - ACTIONS(4100), 1, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4647), 1, - anon_sym_SEMI, - STATE(431), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + STATE(1138), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61498] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4145), 1, - sym_identifier, - STATE(2538), 1, - sym_type_arguments, + [61498] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61512] = 4, - ACTIONS(4649), 1, - anon_sym_RBRACE, - ACTIONS(4651), 1, + ACTIONS(4651), 2, anon_sym_COMMA, - STATE(1901), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61526] = 3, + anon_sym_GT, + [61510] = 3, ACTIONS(4655), 1, anon_sym_COLON, ACTIONS(3), 2, @@ -124239,357 +124148,313 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4653), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61538] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, + [61522] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4657), 2, + ACTIONS(4657), 3, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - [61550] = 4, - ACTIONS(3542), 1, - anon_sym_COLON, - ACTIONS(3552), 1, - anon_sym_COLON_COLON, - STATE(1971), 1, - sym_trait_bounds, + anon_sym_RBRACE, + [61532] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61564] = 4, - ACTIONS(384), 1, - anon_sym_RPAREN, - ACTIONS(3231), 1, + ACTIONS(4659), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2121), 1, - aux_sym_arguments_repeat1, + [61544] = 3, + ACTIONS(4114), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61578] = 4, - ACTIONS(4659), 1, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61556] = 4, + ACTIONS(794), 1, anon_sym_RPAREN, - ACTIONS(4661), 1, + ACTIONS(4306), 1, anon_sym_COMMA, - STATE(1931), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1952), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61592] = 4, - ACTIONS(4102), 1, - anon_sym_PLUS, + [61570] = 4, + ACTIONS(4661), 1, + anon_sym_RBRACE, ACTIONS(4663), 1, - anon_sym_as, - ACTIONS(4665), 1, - anon_sym_GT, + anon_sym_COMMA, + STATE(1939), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61606] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4667), 1, - sym_identifier, - STATE(2538), 1, - sym_type_arguments, + [61584] = 4, + ACTIONS(4666), 1, + anon_sym_RBRACE, + ACTIONS(4668), 1, + anon_sym_COMMA, + STATE(2016), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61620] = 3, - ACTIONS(3572), 1, - anon_sym_COLON_COLON, + [61598] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4670), 1, + anon_sym_SEMI, + STATE(376), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61632] = 4, - ACTIONS(4507), 1, + [61612] = 4, + ACTIONS(3850), 1, + anon_sym_GT, + ACTIONS(4672), 1, anon_sym_COMMA, - ACTIONS(4669), 1, - anon_sym_PIPE, - STATE(1897), 1, - aux_sym_closure_parameters_repeat1, + STATE(2087), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61646] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4667), 1, + [61626] = 4, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(4674), 1, sym_identifier, - STATE(2528), 1, - sym_type_arguments, + STATE(2080), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61660] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4145), 1, - sym_identifier, - STATE(2528), 1, - sym_type_arguments, + [61640] = 4, + ACTIONS(3844), 1, + anon_sym_RBRACE, + ACTIONS(4676), 1, + anon_sym_COMMA, + STATE(1939), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61674] = 2, + [61654] = 4, + ACTIONS(2604), 1, + anon_sym_LBRACE, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + STATE(1115), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4671), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61684] = 4, - ACTIONS(3542), 1, - anon_sym_COLON, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - STATE(1971), 1, - sym_trait_bounds, + [61668] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61698] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, + ACTIONS(4680), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [61678] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4529), 2, - anon_sym_RPAREN, + ACTIONS(4518), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - [61710] = 3, - ACTIONS(3195), 1, - anon_sym_COLON_COLON, + [61688] = 4, + ACTIONS(4682), 1, + anon_sym_for, + ACTIONS(4684), 1, + anon_sym_loop, + ACTIONS(4686), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4673), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61722] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4675), 1, - anon_sym_move, - STATE(1061), 1, - sym_block, + [61702] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4688), 1, + anon_sym_SEMI, + ACTIONS(4690), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61736] = 4, - ACTIONS(4507), 1, - anon_sym_COMMA, - ACTIONS(4677), 1, - anon_sym_PIPE, - STATE(1944), 1, - aux_sym_closure_parameters_repeat1, + [61716] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4692), 1, + anon_sym_SEMI, + STATE(455), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61750] = 2, + [61730] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4679), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4516), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61742] = 4, + ACTIONS(4516), 1, + anon_sym_RPAREN, + ACTIONS(4694), 1, anon_sym_COMMA, - [61760] = 2, + STATE(1952), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4681), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61770] = 4, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4683), 1, + [61756] = 4, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4697), 1, anon_sym_SEMI, - ACTIONS(4685), 1, - anon_sym_EQ, + STATE(421), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61784] = 2, + [61770] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4687), 3, + ACTIONS(4699), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [61794] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4689), 3, - anon_sym_SEMI, + [61780] = 4, + ACTIONS(3387), 1, anon_sym_RBRACE, + ACTIONS(4701), 1, anon_sym_COMMA, - [61804] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4691), 1, - sym_identifier, - STATE(2538), 1, - sym_type_arguments, + STATE(1989), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61818] = 3, - ACTIONS(4695), 1, - anon_sym_EQ, + [61794] = 3, + ACTIONS(3205), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4693), 2, - anon_sym_RBRACE, + ACTIONS(4275), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [61830] = 4, - ACTIONS(3455), 1, + [61806] = 4, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(4691), 1, + ACTIONS(4703), 1, sym_identifier, - STATE(2528), 1, + STATE(2525), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61844] = 4, - ACTIONS(3828), 1, - anon_sym_RBRACE, - ACTIONS(4697), 1, + [61820] = 4, + ACTIONS(786), 1, + anon_sym_RPAREN, + ACTIONS(4705), 1, anon_sym_COMMA, - STATE(2081), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1952), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61858] = 4, - ACTIONS(2588), 1, - anon_sym_LT2, - ACTIONS(4699), 1, - sym_identifier, - STATE(1048), 1, - sym_type_arguments, + [61834] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61872] = 4, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(4701), 1, + ACTIONS(4707), 3, anon_sym_SEMI, - STATE(462), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61886] = 4, - ACTIONS(4703), 1, - sym_identifier, - ACTIONS(4705), 1, - anon_sym_ref, - ACTIONS(4707), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61900] = 4, - ACTIONS(3455), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + [61844] = 4, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(4709), 1, + ACTIONS(4703), 1, sym_identifier, - STATE(2538), 1, + STATE(2537), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61914] = 4, - ACTIONS(4100), 1, - anon_sym_LBRACE, - ACTIONS(4711), 1, - anon_sym_SEMI, - STATE(331), 1, - sym_block, + [61858] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61928] = 4, - ACTIONS(3828), 1, + ACTIONS(4709), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4697), 1, anon_sym_COMMA, - STATE(2074), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61942] = 4, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(4713), 1, - anon_sym_move, - STATE(234), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61956] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4709), 1, - sym_identifier, - STATE(2528), 1, - sym_type_arguments, + [61868] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61970] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, + ACTIONS(4711), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61878] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4715), 2, + ACTIONS(4713), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [61982] = 2, + [61888] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4717), 3, + ACTIONS(4715), 3, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, - [61992] = 4, + [61898] = 4, + ACTIONS(4717), 1, + anon_sym_RBRACE, ACTIONS(4719), 1, anon_sym_COMMA, - ACTIONS(4722), 1, - anon_sym_GT, - STATE(1972), 1, - aux_sym_for_lifetimes_repeat1, + STATE(1965), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62006] = 2, + [61912] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4724), 3, + ACTIONS(4722), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62016] = 2, + [61922] = 4, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(4724), 1, + anon_sym_move, + STATE(250), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61936] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -124597,3312 +124462,3367 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62026] = 4, - ACTIONS(3377), 1, - anon_sym_RBRACE, + [61946] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, ACTIONS(4728), 1, - anon_sym_COMMA, - STATE(2141), 1, - aux_sym_use_list_repeat1, + sym_identifier, + STATE(2525), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62040] = 2, + [61960] = 4, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4730), 1, + anon_sym_SEMI, + STATE(384), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4730), 3, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_EQ, - [62050] = 4, - ACTIONS(4283), 1, - anon_sym_RPAREN, - ACTIONS(4285), 1, - anon_sym_COMMA, - STATE(1978), 1, - aux_sym_parameters_repeat1, + [61974] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4728), 1, + sym_identifier, + STATE(2537), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62064] = 4, - ACTIONS(798), 1, + [61988] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2367), 3, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(4324), 1, + anon_sym_RBRACE, + [61998] = 4, + ACTIONS(794), 1, + anon_sym_RPAREN, + ACTIONS(4306), 1, anon_sym_COMMA, - STATE(2044), 1, + STATE(1958), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62078] = 4, - ACTIONS(2465), 1, - anon_sym_PLUS, + [62012] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, ACTIONS(4732), 1, - sym_mutable_specifier, - ACTIONS(4734), 1, - sym_self, + sym_identifier, + STATE(2525), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62092] = 2, + [62026] = 3, + ACTIONS(4736), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4736), 3, - anon_sym_SEMI, + ACTIONS(4734), 2, anon_sym_RBRACE, anon_sym_COMMA, - [62102] = 4, - ACTIONS(798), 1, - anon_sym_RPAREN, - ACTIONS(4324), 1, - anon_sym_COMMA, - STATE(2036), 1, - aux_sym_parameters_repeat1, + [62038] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4732), 1, + sym_identifier, + STATE(2537), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62116] = 4, - ACTIONS(4738), 1, - sym_identifier, - ACTIONS(4740), 1, - anon_sym_await, - ACTIONS(4742), 1, - sym_integer_literal, + [62052] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62130] = 4, - ACTIONS(2588), 1, - anon_sym_LT2, - ACTIONS(4699), 1, - sym_identifier, - STATE(1000), 1, - sym_type_arguments, + ACTIONS(4738), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62064] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62144] = 4, - ACTIONS(4744), 1, - anon_sym_for, - ACTIONS(4746), 1, - anon_sym_loop, - ACTIONS(4748), 1, - anon_sym_while, + ACTIONS(4740), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [62074] = 4, + ACTIONS(552), 1, + anon_sym_RBRACK, + ACTIONS(3213), 1, + anon_sym_COMMA, + STATE(1982), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62158] = 4, - ACTIONS(4750), 1, + [62088] = 4, + ACTIONS(4221), 1, anon_sym_COMMA, - ACTIONS(4753), 1, + ACTIONS(4223), 1, anon_sym_GT, - STATE(1985), 1, - aux_sym_type_arguments_repeat1, + STATE(1924), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62172] = 4, - ACTIONS(2642), 1, + [62102] = 4, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4755), 1, - anon_sym_COLON_COLON, - STATE(1133), 1, - sym_field_initializer_list, + ACTIONS(4742), 1, + anon_sym_SEMI, + STATE(479), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62186] = 4, - ACTIONS(4100), 1, - anon_sym_LBRACE, - ACTIONS(4757), 1, - anon_sym_SEMI, - STATE(395), 1, - sym_block, + [62116] = 4, + ACTIONS(3281), 1, + anon_sym_RBRACK, + ACTIONS(4744), 1, + anon_sym_COMMA, + STATE(1982), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62200] = 3, - ACTIONS(2465), 1, - anon_sym_PLUS, + [62130] = 3, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4753), 2, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62142] = 4, + ACTIONS(4747), 1, + anon_sym_RPAREN, + ACTIONS(4749), 1, anon_sym_COMMA, - anon_sym_GT, - [62212] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, + STATE(2025), 1, + aux_sym_meta_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62156] = 4, + ACTIONS(4751), 1, + anon_sym_RBRACE, + ACTIONS(4753), 1, + anon_sym_COMMA, + STATE(1985), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4753), 2, + [62170] = 4, + ACTIONS(4756), 1, anon_sym_COMMA, + ACTIONS(4758), 1, anon_sym_GT, - [62224] = 4, - ACTIONS(4100), 1, - anon_sym_LBRACE, - ACTIONS(4759), 1, - anon_sym_SEMI, - STATE(360), 1, - sym_block, + STATE(2065), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62238] = 3, - ACTIONS(4102), 1, + [62184] = 3, + ACTIONS(4096), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4761), 2, + ACTIONS(4760), 2, anon_sym_COMMA, anon_sym_GT, - [62250] = 4, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(4763), 1, - anon_sym_SEMI, - STATE(1034), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62264] = 2, + [62196] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4765), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4762), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [62274] = 4, - ACTIONS(4767), 1, + [62206] = 4, + ACTIONS(4764), 1, anon_sym_RBRACE, - ACTIONS(4769), 1, + ACTIONS(4766), 1, anon_sym_COMMA, - STATE(1994), 1, - aux_sym_struct_pattern_repeat1, + STATE(1989), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62288] = 4, - ACTIONS(4100), 1, - anon_sym_LBRACE, - ACTIONS(4772), 1, - anon_sym_SEMI, - STATE(419), 1, - sym_block, + [62220] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4769), 1, + sym_identifier, + STATE(2525), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62302] = 4, + [62234] = 4, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4774), 1, + ACTIONS(4771), 1, anon_sym_SEMI, - STATE(491), 1, + STATE(825), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62316] = 4, - ACTIONS(2453), 1, - anon_sym_RPAREN, - ACTIONS(4776), 1, - anon_sym_COMMA, - STATE(1846), 1, - aux_sym_tuple_pattern_repeat1, + [62248] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62330] = 3, - ACTIONS(4309), 1, - anon_sym_PIPE, + ACTIONS(4773), 2, + anon_sym_COMMA, + anon_sym_GT, + [62260] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4769), 1, + sym_identifier, + STATE(2537), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4778), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62342] = 3, - ACTIONS(4149), 1, - anon_sym_COLON_COLON, + [62274] = 3, + ACTIONS(2465), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62354] = 4, - ACTIONS(3455), 1, + ACTIONS(4773), 2, + anon_sym_COMMA, + anon_sym_GT, + [62286] = 4, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(4780), 1, + ACTIONS(4160), 1, sym_identifier, - STATE(2538), 1, + STATE(2525), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62368] = 4, + [62300] = 4, + ACTIONS(4773), 1, + anon_sym_GT, + ACTIONS(4775), 1, + anon_sym_COMMA, + STATE(1996), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62314] = 4, + ACTIONS(4778), 1, + sym_identifier, + ACTIONS(4780), 1, + anon_sym_ref, ACTIONS(4782), 1, - anon_sym_RBRACE, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62328] = 4, + ACTIONS(4090), 1, + anon_sym_LBRACE, ACTIONS(4784), 1, - anon_sym_COMMA, - STATE(1975), 1, - aux_sym_use_list_repeat1, + anon_sym_SEMI, + STATE(323), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62382] = 4, - ACTIONS(2445), 1, + [62342] = 4, + ACTIONS(2451), 1, anon_sym_RBRACK, ACTIONS(4786), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1853), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62396] = 4, - ACTIONS(4788), 1, - anon_sym_for, + [62356] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4788), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [62366] = 4, + ACTIONS(2455), 1, + anon_sym_RPAREN, ACTIONS(4790), 1, - anon_sym_loop, - ACTIONS(4792), 1, - anon_sym_while, + anon_sym_COMMA, + STATE(1853), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62410] = 4, - ACTIONS(2588), 1, - anon_sym_LT2, - ACTIONS(4794), 1, - sym_identifier, - STATE(1219), 1, - sym_type_arguments, + [62380] = 3, + ACTIONS(4229), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62424] = 4, - ACTIONS(3455), 1, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62392] = 4, + ACTIONS(2584), 1, anon_sym_LT2, - ACTIONS(4780), 1, + ACTIONS(4792), 1, sym_identifier, - STATE(2528), 1, + STATE(1214), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62438] = 4, - ACTIONS(3824), 1, - anon_sym_LBRACE, + [62406] = 3, ACTIONS(4796), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_declaration_list, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62452] = 4, - ACTIONS(2459), 1, - anon_sym_RPAREN, - ACTIONS(4798), 1, + ACTIONS(4794), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1846), 1, - aux_sym_tuple_pattern_repeat1, + [62418] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62466] = 3, - ACTIONS(4309), 1, - anon_sym_PIPE, + ACTIONS(4431), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62430] = 4, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(4798), 1, + anon_sym_GT, + STATE(2303), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4800), 2, - anon_sym_RBRACE, + [62444] = 4, + ACTIONS(2457), 1, + anon_sym_RPAREN, + ACTIONS(4800), 1, anon_sym_COMMA, - [62478] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, + STATE(1853), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4802), 2, - anon_sym_COMMA, - anon_sym_GT, - [62490] = 4, - ACTIONS(2588), 1, + [62458] = 3, + ACTIONS(4239), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62470] = 4, + ACTIONS(2584), 1, anon_sym_LT2, - ACTIONS(4794), 1, + ACTIONS(4792), 1, sym_identifier, STATE(1217), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62504] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4804), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [62484] = 4, + ACTIONS(4802), 1, anon_sym_COMMA, - [62514] = 4, - ACTIONS(4100), 1, - anon_sym_LBRACE, - ACTIONS(4806), 1, - anon_sym_SEMI, - STATE(442), 1, - sym_block, + ACTIONS(4805), 1, + anon_sym_GT, + STATE(2010), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62528] = 3, - ACTIONS(4810), 1, - anon_sym_COLON, + [62498] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4808), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62540] = 4, - ACTIONS(4085), 1, - anon_sym_RBRACE, - ACTIONS(4812), 1, + ACTIONS(4807), 2, anon_sym_COMMA, - STATE(1994), 1, - aux_sym_struct_pattern_repeat1, + anon_sym_GT, + [62510] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4809), 1, + sym_identifier, + STATE(2525), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62554] = 4, - ACTIONS(930), 1, - anon_sym_GT, - ACTIONS(4814), 1, + [62524] = 4, + ACTIONS(4461), 1, anon_sym_COMMA, - STATE(1985), 1, + ACTIONS(4463), 1, + anon_sym_GT, + STATE(2026), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62568] = 2, + [62538] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4809), 1, + sym_identifier, + STATE(2537), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4816), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + [62552] = 4, + ACTIONS(528), 1, + anon_sym_RBRACK, + ACTIONS(4811), 1, anon_sym_COMMA, - [62578] = 4, - ACTIONS(4047), 1, + STATE(1982), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62566] = 4, + ACTIONS(4001), 1, anon_sym_RBRACE, - ACTIONS(4818), 1, + ACTIONS(4813), 1, anon_sym_COMMA, - STATE(1994), 1, + STATE(1985), 1, aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62592] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, + [62580] = 4, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, + ACTIONS(3959), 1, + anon_sym_BANG, + ACTIONS(4815), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4820), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62604] = 4, - ACTIONS(4100), 1, - anon_sym_LBRACE, - ACTIONS(4822), 1, + [62594] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4817), 1, anon_sym_SEMI, - STATE(409), 1, - sym_block, + ACTIONS(4819), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62618] = 3, - ACTIONS(4127), 1, - anon_sym_COLON_COLON, + [62608] = 3, + ACTIONS(4821), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3467), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62630] = 4, - ACTIONS(4820), 1, - anon_sym_RPAREN, - ACTIONS(4824), 1, - anon_sym_COMMA, - STATE(2021), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4823), 2, + anon_sym_default, + anon_sym_union, + [62620] = 3, + ACTIONS(4342), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62644] = 4, - ACTIONS(2329), 1, - anon_sym_SQUOTE, + ACTIONS(4825), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [62632] = 4, + ACTIONS(4825), 1, + anon_sym_PIPE, ACTIONS(4827), 1, - anon_sym_GT, - STATE(2322), 1, - sym_lifetime, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62658] = 4, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4829), 1, + [62646] = 4, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4830), 1, anon_sym_SEMI, - STATE(2510), 1, - sym_where_clause, + STATE(302), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62672] = 4, - ACTIONS(3455), 1, + [62660] = 4, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(4831), 1, + ACTIONS(4832), 1, sym_identifier, - STATE(2528), 1, + STATE(2537), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62686] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, + [62674] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3776), 1, + anon_sym_LBRACE, + STATE(1381), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4833), 2, + [62688] = 4, + ACTIONS(3177), 1, anon_sym_RPAREN, + ACTIONS(4834), 1, anon_sym_COMMA, - [62698] = 3, - ACTIONS(4835), 1, - sym_identifier, + STATE(2069), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4837), 2, - anon_sym_default, - anon_sym_union, - [62710] = 4, - ACTIONS(4119), 1, - anon_sym_LBRACE, - ACTIONS(4839), 1, - anon_sym_SEMI, - STATE(975), 1, - sym_block, + [62702] = 4, + ACTIONS(934), 1, + anon_sym_GT, + ACTIONS(4836), 1, + anon_sym_COMMA, + STATE(1996), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62724] = 4, - ACTIONS(3455), 1, + [62716] = 4, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(4831), 1, + ACTIONS(4832), 1, sym_identifier, - STATE(2538), 1, + STATE(2525), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62738] = 2, + [62730] = 3, + ACTIONS(4840), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4841), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4838), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [62748] = 4, - ACTIONS(4102), 1, + [62742] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4843), 1, + ACTIONS(4842), 1, anon_sym_SEMI, - ACTIONS(4845), 1, + ACTIONS(4844), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62762] = 4, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(4847), 1, + [62756] = 4, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(4846), 1, anon_sym_SEMI, - STATE(2529), 1, - sym_where_clause, + STATE(861), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62776] = 4, - ACTIONS(4334), 1, + [62770] = 4, + ACTIONS(4320), 1, anon_sym_COMMA, - ACTIONS(4336), 1, + ACTIONS(4322), 1, anon_sym_GT, - STATE(2104), 1, + STATE(2103), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62790] = 3, - ACTIONS(4851), 1, - anon_sym_COLON, + [62784] = 3, + ACTIONS(4848), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4849), 2, + ACTIONS(4850), 2, + anon_sym_default, + anon_sym_union, + [62796] = 4, + ACTIONS(3995), 1, anon_sym_RBRACE, + ACTIONS(4852), 1, anon_sym_COMMA, - [62802] = 4, - ACTIONS(4119), 1, - anon_sym_LBRACE, - ACTIONS(4853), 1, - anon_sym_SEMI, - STATE(962), 1, - sym_block, + STATE(1985), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62816] = 4, - ACTIONS(4855), 1, - anon_sym_RBRACE, - ACTIONS(4857), 1, - anon_sym_COMMA, - STATE(2014), 1, - aux_sym_struct_pattern_repeat1, + [62810] = 4, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4854), 1, + anon_sym_SEMI, + STATE(381), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62830] = 4, - ACTIONS(796), 1, - anon_sym_RPAREN, - ACTIONS(4859), 1, - anon_sym_COMMA, - STATE(2044), 1, - aux_sym_parameters_repeat1, + [62824] = 4, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(4856), 1, + anon_sym_SEMI, + STATE(864), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62844] = 4, - ACTIONS(4827), 1, - anon_sym_GT, - ACTIONS(4861), 1, - anon_sym_COMMA, - STATE(1972), 1, - aux_sym_for_lifetimes_repeat1, + [62838] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4858), 1, + anon_sym_SEMI, + STATE(374), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62858] = 4, - ACTIONS(3816), 1, + [62852] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4863), 1, + ACTIONS(4860), 1, anon_sym_SEMI, - STATE(967), 1, + STATE(859), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62872] = 3, - ACTIONS(4102), 1, + [62866] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, + ACTIONS(4862), 1, + anon_sym_SEMI, + ACTIONS(4864), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4865), 2, - anon_sym_COMMA, - anon_sym_GT, - [62884] = 4, - ACTIONS(4867), 1, - anon_sym_RPAREN, - ACTIONS(4869), 1, - anon_sym_COMMA, - STATE(1931), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [62880] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62898] = 4, - ACTIONS(4871), 1, - anon_sym_RBRACE, - ACTIONS(4873), 1, + ACTIONS(4866), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2088), 1, - aux_sym_field_declaration_list_repeat1, + [62892] = 4, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4868), 1, + anon_sym_SEMI, + STATE(308), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62912] = 4, - ACTIONS(4119), 1, + [62906] = 4, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4875), 1, + ACTIONS(4870), 1, anon_sym_SEMI, - STATE(951), 1, - sym_block, + STATE(364), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62926] = 3, - ACTIONS(3195), 1, - anon_sym_COLON_COLON, + [62920] = 4, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(4872), 1, + anon_sym_SEMI, + STATE(868), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4311), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62938] = 4, - ACTIONS(4397), 1, - anon_sym_RPAREN, - ACTIONS(4877), 1, + [62934] = 4, + ACTIONS(3892), 1, + anon_sym_RBRACE, + ACTIONS(4874), 1, anon_sym_COMMA, - STATE(2044), 1, - aux_sym_parameters_repeat1, + STATE(1965), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62952] = 4, - ACTIONS(3864), 1, + [62948] = 4, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4880), 1, + ACTIONS(4876), 1, anon_sym_SEMI, - STATE(2549), 1, + STATE(2544), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62966] = 4, - ACTIONS(4119), 1, + [62962] = 4, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4882), 1, + ACTIONS(4878), 1, anon_sym_SEMI, - STATE(940), 1, + STATE(875), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62980] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4884), 1, - sym_identifier, - STATE(2538), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62994] = 4, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4886), 1, - anon_sym_SEMI, - ACTIONS(4888), 1, + [62976] = 4, + ACTIONS(3808), 1, + anon_sym_LT, + ACTIONS(4880), 1, anon_sym_EQ, + STATE(2568), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63008] = 3, - ACTIONS(4102), 1, + [62990] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4890), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63020] = 3, - ACTIONS(4377), 1, + ACTIONS(4882), 1, + anon_sym_SEMI, + ACTIONS(4884), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4399), 2, + [63004] = 4, + ACTIONS(4866), 1, + anon_sym_RPAREN, + ACTIONS(4886), 1, anon_sym_COMMA, - anon_sym_GT, - [63032] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, + STATE(2048), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4397), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63044] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, + [63018] = 3, + ACTIONS(4891), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4892), 2, - anon_sym_RPAREN, + ACTIONS(4889), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [63056] = 4, - ACTIONS(4119), 1, + [63030] = 4, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4894), 1, + ACTIONS(4893), 1, anon_sym_SEMI, - STATE(905), 1, + STATE(880), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63070] = 4, - ACTIONS(4401), 1, - anon_sym_COMMA, - ACTIONS(4403), 1, - anon_sym_GT, - STATE(2015), 1, - aux_sym_type_arguments_repeat1, + [63044] = 4, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + ACTIONS(3556), 1, + anon_sym_COLON, + STATE(1912), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63084] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4884), 1, - sym_identifier, - STATE(2528), 1, - sym_type_arguments, + [63058] = 4, + ACTIONS(4895), 1, + anon_sym_for, + ACTIONS(4897), 1, + anon_sym_loop, + ACTIONS(4899), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63098] = 4, - ACTIONS(3824), 1, + [63072] = 4, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(4901), 1, + anon_sym_GT, + STATE(2303), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63086] = 4, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4896), 1, + ACTIONS(4903), 1, anon_sym_SEMI, - STATE(440), 1, + STATE(327), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63112] = 4, - ACTIONS(3816), 1, + [63100] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4898), 1, + ACTIONS(4905), 1, anon_sym_SEMI, - STATE(892), 1, + STATE(885), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63126] = 4, - ACTIONS(3816), 1, + [63114] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4900), 1, + ACTIONS(4907), 1, anon_sym_SEMI, STATE(887), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63140] = 4, - ACTIONS(4399), 1, - anon_sym_GT, - ACTIONS(4902), 1, - anon_sym_COMMA, - STATE(2059), 1, - aux_sym_type_parameters_repeat1, + [63128] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63154] = 4, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(4905), 1, + ACTIONS(4909), 3, anon_sym_SEMI, - STATE(493), 1, - sym_declaration_list, + anon_sym_RBRACE, + anon_sym_COMMA, + [63138] = 4, + ACTIONS(2584), 1, + anon_sym_LT2, + ACTIONS(4580), 1, + sym_identifier, + STATE(1023), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63168] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, + [63152] = 4, + ACTIONS(386), 1, + anon_sym_RPAREN, + ACTIONS(3229), 1, + anon_sym_COMMA, + STATE(1916), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4907), 2, - anon_sym_COMMA, - anon_sym_GT, - [63180] = 4, - ACTIONS(3816), 1, + [63166] = 4, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4909), 1, + ACTIONS(4911), 1, anon_sym_SEMI, - STATE(911), 1, - sym_declaration_list, + STATE(892), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63194] = 4, + [63180] = 4, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4911), 1, + ACTIONS(4913), 1, anon_sym_SEMI, - STATE(390), 1, + STATE(944), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63208] = 4, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(4913), 1, + [63194] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, anon_sym_SEMI, - STATE(354), 1, - sym_declaration_list, + ACTIONS(4917), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63222] = 2, + [63208] = 4, + ACTIONS(4919), 1, + sym_identifier, + ACTIONS(4921), 1, + anon_sym_await, + ACTIONS(4923), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4915), 3, + [63222] = 4, + ACTIONS(2536), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [63232] = 4, - ACTIONS(4917), 1, - anon_sym_RBRACE, - ACTIONS(4919), 1, + ACTIONS(4925), 1, anon_sym_COMMA, - STATE(2066), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2048), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63246] = 2, + [63236] = 4, + ACTIONS(4901), 1, + anon_sym_GT, + ACTIONS(4927), 1, + anon_sym_COMMA, + STATE(2010), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4364), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + [63250] = 4, + ACTIONS(4929), 1, + anon_sym_RBRACE, + ACTIONS(4931), 1, anon_sym_COMMA, - [63256] = 4, - ACTIONS(4102), 1, + STATE(1955), 1, + aux_sym_use_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63264] = 3, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4922), 1, - anon_sym_SEMI, - ACTIONS(4924), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63270] = 4, - ACTIONS(4119), 1, + ACTIONS(4933), 2, + anon_sym_COMMA, + anon_sym_GT, + [63276] = 4, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4935), 1, anon_sym_SEMI, - STATE(876), 1, + STATE(898), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63284] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4928), 1, - sym_identifier, - STATE(2528), 1, - sym_type_arguments, + [63290] = 4, + ACTIONS(4937), 1, + anon_sym_RPAREN, + ACTIONS(4939), 1, + anon_sym_COMMA, + STATE(2069), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63298] = 4, - ACTIONS(386), 1, - anon_sym_RPAREN, - ACTIONS(4930), 1, - anon_sym_COMMA, - STATE(2121), 1, - aux_sym_arguments_repeat1, + [63304] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63312] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4928), 1, - sym_identifier, - STATE(2538), 1, - sym_type_arguments, + ACTIONS(4942), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [63314] = 3, + ACTIONS(4433), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(4405), 2, + anon_sym_COMMA, + anon_sym_GT, [63326] = 4, - ACTIONS(4119), 1, - anon_sym_LBRACE, - ACTIONS(4932), 1, - anon_sym_SEMI, - STATE(859), 1, - sym_block, + ACTIONS(4944), 1, + anon_sym_RPAREN, + ACTIONS(4946), 1, + anon_sym_COMMA, + STATE(2079), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63340] = 4, - ACTIONS(3906), 1, - anon_sym_RBRACE, - ACTIONS(4934), 1, - anon_sym_COMMA, - STATE(2081), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(4948), 1, + anon_sym_SEMI, + STATE(915), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63354] = 4, - ACTIONS(3291), 1, - anon_sym_RBRACK, - ACTIONS(4936), 1, - anon_sym_COMMA, - STATE(2075), 1, - aux_sym_array_expression_repeat1, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(4950), 1, + anon_sym_SEMI, + STATE(919), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63368] = 3, - ACTIONS(4941), 1, - anon_sym_EQ, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4939), 2, - anon_sym_RBRACE, + ACTIONS(4952), 2, + anon_sym_RPAREN, anon_sym_COMMA, [63380] = 4, - ACTIONS(4102), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4943), 1, + ACTIONS(4954), 1, anon_sym_SEMI, - ACTIONS(4945), 1, + ACTIONS(4956), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63394] = 4, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(4947), 1, - anon_sym_SEMI, - ACTIONS(4949), 1, - anon_sym_EQ, + [63394] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63408] = 4, - ACTIONS(4119), 1, - anon_sym_LBRACE, - ACTIONS(4951), 1, + ACTIONS(2403), 3, anon_sym_SEMI, - STATE(820), 1, - sym_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + [63404] = 4, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63422] = 4, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(4953), 1, - anon_sym_SEMI, - STATE(817), 1, - sym_declaration_list, + [63418] = 4, + ACTIONS(4960), 1, + anon_sym_RPAREN, + ACTIONS(4962), 1, + anon_sym_COMMA, + STATE(2079), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63436] = 4, - ACTIONS(4955), 1, - anon_sym_RBRACE, - ACTIONS(4957), 1, - anon_sym_COMMA, - STATE(2081), 1, - aux_sym_enum_variant_list_repeat2, + [63432] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63450] = 4, - ACTIONS(4960), 1, + ACTIONS(4965), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4962), 1, anon_sym_COMMA, - STATE(2155), 1, + [63442] = 4, + ACTIONS(4967), 1, + anon_sym_RBRACE, + ACTIONS(4969), 1, + anon_sym_COMMA, + STATE(2154), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63464] = 4, - ACTIONS(4964), 1, - anon_sym_RBRACE, - ACTIONS(4966), 1, - anon_sym_COMMA, - STATE(2017), 1, - aux_sym_struct_pattern_repeat1, + [63456] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4971), 1, + anon_sym_SEMI, + STATE(269), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63478] = 4, - ACTIONS(4968), 1, - anon_sym_RPAREN, - ACTIONS(4970), 1, - anon_sym_COMMA, - STATE(1931), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [63470] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63492] = 4, - ACTIONS(3816), 1, + ACTIONS(4973), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63482] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4972), 1, + ACTIONS(4975), 1, anon_sym_SEMI, - STATE(895), 1, + STATE(926), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63506] = 4, - ACTIONS(3902), 1, + [63496] = 4, + ACTIONS(3848), 1, anon_sym_RBRACE, - ACTIONS(4974), 1, + ACTIONS(4977), 1, anon_sym_COMMA, - STATE(1920), 1, + STATE(2091), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63520] = 4, - ACTIONS(4102), 1, + [63510] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4976), 1, + ACTIONS(4979), 1, anon_sym_SEMI, - ACTIONS(4978), 1, + ACTIONS(4981), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63534] = 4, - ACTIONS(3882), 1, - anon_sym_RBRACE, - ACTIONS(4980), 1, + [63524] = 4, + ACTIONS(4405), 1, + anon_sym_GT, + ACTIONS(4983), 1, anon_sym_COMMA, - STATE(1920), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2087), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63548] = 4, - ACTIONS(4330), 1, + [63538] = 4, + ACTIONS(4324), 1, anon_sym_RPAREN, - ACTIONS(4332), 1, + ACTIONS(4326), 1, anon_sym_COMMA, - STATE(2136), 1, + STATE(2144), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63562] = 3, - ACTIONS(4309), 1, - anon_sym_PIPE, + [63552] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4982), 2, - anon_sym_RBRACE, + ACTIONS(4986), 2, anon_sym_COMMA, - [63574] = 4, - ACTIONS(3816), 1, + anon_sym_GT, + [63564] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4984), 1, + ACTIONS(4988), 1, anon_sym_SEMI, - STATE(995), 1, + STATE(935), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63588] = 4, - ACTIONS(3882), 1, + [63578] = 4, + ACTIONS(4990), 1, anon_sym_RBRACE, - ACTIONS(4980), 1, + ACTIONS(4992), 1, anon_sym_COMMA, - STATE(1917), 1, + STATE(2091), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63602] = 4, - ACTIONS(4119), 1, + [63592] = 4, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4986), 1, + ACTIONS(4995), 1, anon_sym_SEMI, - STATE(880), 1, + STATE(1006), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63616] = 4, - ACTIONS(4988), 1, - anon_sym_RPAREN, - ACTIONS(4990), 1, - anon_sym_COMMA, - STATE(2094), 1, - aux_sym_meta_arguments_repeat1, + [63606] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4997), 1, + anon_sym_SEMI, + STATE(315), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63630] = 4, - ACTIONS(3866), 1, - anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_EQ, - STATE(2551), 1, - sym_type_parameters, + [63620] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4999), 1, + anon_sym_SEMI, + STATE(436), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63644] = 4, - ACTIONS(4389), 1, + [63634] = 4, + ACTIONS(4393), 1, anon_sym_COMMA, - ACTIONS(4391), 1, + ACTIONS(4395), 1, anon_sym_GT, - STATE(2151), 1, + STATE(2152), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63658] = 4, - ACTIONS(2536), 1, - anon_sym_RPAREN, - ACTIONS(4995), 1, - anon_sym_COMMA, - STATE(2021), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63672] = 4, - ACTIONS(3816), 1, + [63648] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4997), 1, + ACTIONS(5001), 1, anon_sym_SEMI, - STATE(1010), 1, + STATE(939), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63686] = 4, - ACTIONS(4100), 1, + [63662] = 4, + ACTIONS(3886), 1, + anon_sym_RBRACE, + ACTIONS(5003), 1, + anon_sym_COMMA, + STATE(2091), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63676] = 4, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4999), 1, + ACTIONS(5005), 1, anon_sym_SEMI, - STATE(454), 1, - sym_block, + STATE(469), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63700] = 4, - ACTIONS(2534), 1, + [63690] = 4, + ACTIONS(2540), 1, anon_sym_RPAREN, - ACTIONS(5001), 1, + ACTIONS(5007), 1, anon_sym_COMMA, - STATE(2021), 1, + STATE(2048), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63714] = 4, - ACTIONS(4119), 1, + [63704] = 4, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(5003), 1, + ACTIONS(5009), 1, anon_sym_SEMI, - STATE(1038), 1, - sym_block, + STATE(317), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63728] = 4, - ACTIONS(3892), 1, + [63718] = 4, + ACTIONS(3834), 1, anon_sym_GT, - ACTIONS(5005), 1, + ACTIONS(5011), 1, anon_sym_COMMA, - STATE(2059), 1, + STATE(2087), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63742] = 4, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(5007), 1, + [63732] = 4, + ACTIONS(5013), 1, + anon_sym_RBRACE, + ACTIONS(5015), 1, anon_sym_COMMA, - STATE(2044), 1, - aux_sym_parameters_repeat1, + STATE(2043), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63756] = 4, - ACTIONS(3868), 1, + [63746] = 4, + ACTIONS(3874), 1, anon_sym_GT, - ACTIONS(5009), 1, + ACTIONS(5017), 1, anon_sym_COMMA, - STATE(2059), 1, + STATE(2087), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63770] = 4, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(5011), 1, + [63760] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(5019), 1, anon_sym_SEMI, - ACTIONS(5013), 1, - anon_sym_EQ, + STATE(354), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63784] = 4, - ACTIONS(3824), 1, - anon_sym_LBRACE, - ACTIONS(5015), 1, - anon_sym_SEMI, - STATE(305), 1, - sym_declaration_list, + [63774] = 3, + ACTIONS(5023), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63798] = 4, - ACTIONS(3816), 1, + ACTIONS(5021), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63786] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(5017), 1, + ACTIONS(5025), 1, anon_sym_SEMI, - STATE(857), 1, + STATE(1012), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63812] = 4, - ACTIONS(4102), 1, + [63800] = 4, + ACTIONS(2465), 1, anon_sym_PLUS, - ACTIONS(5019), 1, - anon_sym_SEMI, - ACTIONS(5021), 1, - anon_sym_RBRACK, + ACTIONS(5027), 1, + sym_mutable_specifier, + ACTIONS(5029), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63826] = 4, - ACTIONS(3898), 1, - anon_sym_RBRACE, - ACTIONS(5023), 1, - anon_sym_COMMA, - STATE(2081), 1, - aux_sym_enum_variant_list_repeat2, + [63814] = 4, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(5031), 1, + anon_sym_SEMI, + STATE(943), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63840] = 4, - ACTIONS(4102), 1, + [63828] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(5025), 1, + ACTIONS(5033), 1, anon_sym_SEMI, - ACTIONS(5027), 1, + ACTIONS(5035), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63854] = 2, + [63842] = 4, + ACTIONS(4336), 1, + anon_sym_RPAREN, + ACTIONS(4338), 1, + anon_sym_COMMA, + STATE(1938), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5029), 3, + [63856] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(5037), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [63864] = 4, - ACTIONS(5031), 1, - anon_sym_COMMA, - ACTIONS(5033), 1, - anon_sym_GT, - STATE(2037), 1, - aux_sym_for_lifetimes_repeat1, + STATE(461), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63878] = 4, - ACTIONS(540), 1, - anon_sym_RBRACK, - ACTIONS(3221), 1, - anon_sym_COMMA, - STATE(2075), 1, - aux_sym_array_expression_repeat1, + [63870] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(5039), 1, + anon_sym_SEMI, + ACTIONS(5041), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63892] = 3, - ACTIONS(5037), 1, - anon_sym_COLON, + [63884] = 4, + ACTIONS(798), 1, + anon_sym_RPAREN, + ACTIONS(5043), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5035), 2, + [63898] = 4, + ACTIONS(3856), 1, anon_sym_RBRACE, + ACTIONS(5045), 1, anon_sym_COMMA, - [63904] = 4, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5041), 1, - anon_sym_ref, - ACTIONS(5043), 1, - sym_mutable_specifier, + STATE(1939), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63918] = 4, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(5045), 1, + [63912] = 4, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(5047), 1, anon_sym_SEMI, - STATE(2498), 1, - sym_where_clause, + STATE(330), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63932] = 4, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(5047), 1, - anon_sym_SEMI, - ACTIONS(5049), 1, - anon_sym_EQ, + [63926] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4160), 1, + sym_identifier, + STATE(2537), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63946] = 4, - ACTIONS(4102), 1, + [63940] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(5051), 1, + ACTIONS(5049), 1, anon_sym_SEMI, - ACTIONS(5053), 1, + ACTIONS(5051), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63960] = 4, - ACTIONS(4119), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_SEMI, - STATE(872), 1, - sym_block, + [63954] = 3, + ACTIONS(3205), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63974] = 4, - ACTIONS(5057), 1, + ACTIONS(5053), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63966] = 4, + ACTIONS(5055), 1, anon_sym_RBRACE, - ACTIONS(5059), 1, + ACTIONS(5057), 1, anon_sym_COMMA, - STATE(2128), 1, + STATE(2135), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63988] = 4, - ACTIONS(3305), 1, - anon_sym_RPAREN, - ACTIONS(5061), 1, - anon_sym_COMMA, - STATE(2121), 1, - aux_sym_arguments_repeat1, + [63980] = 4, + ACTIONS(3808), 1, + anon_sym_LT, + ACTIONS(5059), 1, + anon_sym_EQ, + STATE(2550), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64002] = 4, - ACTIONS(3864), 1, + [63994] = 4, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(5064), 1, + ACTIONS(5061), 1, anon_sym_SEMI, STATE(2557), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64016] = 4, - ACTIONS(4309), 1, - anon_sym_PIPE, - ACTIONS(5066), 1, - anon_sym_EQ_GT, - ACTIONS(5068), 1, - anon_sym_if, + [64008] = 4, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(5063), 1, + anon_sym_SEMI, + STATE(2499), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64030] = 4, - ACTIONS(3816), 1, - anon_sym_LBRACE, - ACTIONS(5070), 1, + [64022] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(5065), 1, anon_sym_SEMI, - STATE(954), 1, - sym_declaration_list, + ACTIONS(5067), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64044] = 4, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(5072), 1, + [64036] = 4, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(5069), 1, anon_sym_SEMI, - ACTIONS(5074), 1, - anon_sym_EQ, + STATE(966), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64058] = 2, + [64050] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5076), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [64068] = 4, - ACTIONS(3878), 1, + ACTIONS(5071), 2, anon_sym_RBRACE, - ACTIONS(5078), 1, anon_sym_COMMA, - STATE(2086), 1, - aux_sym_field_declaration_list_repeat1, + [64062] = 4, + ACTIONS(5073), 1, + sym_identifier, + ACTIONS(5075), 1, + anon_sym_ref, + ACTIONS(5077), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64082] = 4, - ACTIONS(3878), 1, - anon_sym_RBRACE, - ACTIONS(5078), 1, - anon_sym_COMMA, - STATE(1920), 1, - aux_sym_field_declaration_list_repeat1, + [64076] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64096] = 4, - ACTIONS(3872), 1, - anon_sym_GT, - ACTIONS(5080), 1, - anon_sym_COMMA, - STATE(2059), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5079), 3, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_EQ, + [64086] = 4, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(5081), 1, + anon_sym_SEMI, + STATE(979), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64110] = 4, - ACTIONS(5082), 1, + [64100] = 4, + ACTIONS(5083), 1, sym_identifier, - ACTIONS(5084), 1, + ACTIONS(5085), 1, anon_sym_ref, - ACTIONS(5086), 1, + ACTIONS(5087), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64124] = 4, - ACTIONS(3816), 1, + [64114] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(5088), 1, + ACTIONS(5089), 1, anon_sym_SEMI, - STATE(851), 1, + STATE(1048), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64138] = 4, - ACTIONS(4102), 1, + [64128] = 4, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, + ACTIONS(3556), 1, + anon_sym_COLON, + STATE(1912), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64142] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(5090), 1, + ACTIONS(5091), 1, anon_sym_SEMI, - ACTIONS(5092), 1, + ACTIONS(5093), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64152] = 4, - ACTIONS(3846), 1, - anon_sym_GT, - ACTIONS(5094), 1, - anon_sym_COMMA, - STATE(2059), 1, - aux_sym_type_parameters_repeat1, + [64156] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(5095), 1, + anon_sym_SEMI, + STATE(346), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64166] = 2, + [64170] = 4, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(5097), 1, + anon_sym_COMMA, + STATE(2085), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5096), 3, - anon_sym_SEMI, + [64184] = 4, + ACTIONS(3872), 1, anon_sym_RBRACE, + ACTIONS(5097), 1, anon_sym_COMMA, - [64176] = 4, - ACTIONS(4102), 1, + STATE(2091), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64198] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(5098), 1, + ACTIONS(5099), 1, anon_sym_SEMI, - ACTIONS(5100), 1, + ACTIONS(5101), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64190] = 4, - ACTIONS(790), 1, + [64212] = 4, + ACTIONS(5103), 1, anon_sym_RPAREN, - ACTIONS(4316), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - STATE(2044), 1, - aux_sym_parameters_repeat1, + STATE(2079), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64204] = 4, - ACTIONS(4100), 1, - anon_sym_LBRACE, - ACTIONS(5102), 1, + [64226] = 4, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(5107), 1, anon_sym_SEMI, - STATE(282), 1, - sym_block, + STATE(2545), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64218] = 2, + [64240] = 4, + ACTIONS(5109), 1, + anon_sym_RBRACE, + ACTIONS(5111), 1, + anon_sym_COMMA, + STATE(2033), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5104), 3, - anon_sym_EQ, + [64254] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5113), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [64228] = 4, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(5106), 1, + [64264] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(5115), 1, anon_sym_SEMI, - STATE(2546), 1, - sym_where_clause, + ACTIONS(5117), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64242] = 4, - ACTIONS(4102), 1, + [64278] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(5108), 1, + ACTIONS(5119), 1, anon_sym_SEMI, - ACTIONS(5110), 1, + ACTIONS(5121), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64256] = 4, - ACTIONS(5112), 1, - anon_sym_RBRACE, - ACTIONS(5114), 1, + [64292] = 4, + ACTIONS(4552), 1, anon_sym_COMMA, - STATE(2141), 1, - aux_sym_use_list_repeat1, + ACTIONS(5123), 1, + anon_sym_PIPE, + STATE(2021), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64270] = 4, - ACTIONS(790), 1, + [64306] = 4, + ACTIONS(792), 1, anon_sym_RPAREN, - ACTIONS(4316), 1, + ACTIONS(4348), 1, anon_sym_COMMA, - STATE(2103), 1, + STATE(1952), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64284] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2433), 3, - anon_sym_SEMI, - anon_sym_RPAREN, + [64320] = 4, + ACTIONS(3904), 1, anon_sym_RBRACE, - [64294] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5117), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64304] = 4, - ACTIONS(5119), 1, - sym_identifier, - ACTIONS(5121), 1, - anon_sym_ref, - ACTIONS(5123), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64318] = 4, - ACTIONS(3824), 1, - anon_sym_LBRACE, ACTIONS(5125), 1, - anon_sym_SEMI, - STATE(284), 1, - sym_declaration_list, + anon_sym_COMMA, + STATE(2091), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64332] = 4, - ACTIONS(4119), 1, + [64334] = 4, + ACTIONS(4090), 1, anon_sym_LBRACE, ACTIONS(5127), 1, anon_sym_SEMI, - STATE(1014), 1, + STATE(343), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64346] = 4, - ACTIONS(5129), 1, + [64348] = 4, + ACTIONS(792), 1, anon_sym_RPAREN, - ACTIONS(5131), 1, + ACTIONS(4348), 1, anon_sym_COMMA, - STATE(1905), 1, - aux_sym_meta_arguments_repeat1, + STATE(2113), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64360] = 4, - ACTIONS(3864), 1, - anon_sym_where, - ACTIONS(5133), 1, - anon_sym_SEMI, - STATE(2426), 1, - sym_where_clause, + [64362] = 4, + ACTIONS(5129), 1, + anon_sym_RPAREN, + ACTIONS(5131), 1, + anon_sym_COMMA, + STATE(2079), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64374] = 4, - ACTIONS(3816), 1, + [64376] = 4, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(5135), 1, + ACTIONS(5133), 1, anon_sym_SEMI, - STATE(1031), 1, - sym_declaration_list, + STATE(1016), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64388] = 4, - ACTIONS(928), 1, - anon_sym_GT, - ACTIONS(5137), 1, + [64390] = 4, + ACTIONS(3904), 1, + anon_sym_RBRACE, + ACTIONS(5125), 1, anon_sym_COMMA, - STATE(1985), 1, - aux_sym_type_arguments_repeat1, + STATE(2097), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64402] = 4, + [64404] = 4, ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5135), 1, anon_sym_SEMI, - STATE(384), 1, + STATE(1004), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64416] = 4, - ACTIONS(4205), 1, - anon_sym_COMMA, - ACTIONS(4207), 1, + [64418] = 4, + ACTIONS(926), 1, anon_sym_GT, - STATE(2133), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5137), 1, + anon_sym_COMMA, + STATE(1996), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64430] = 4, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(5141), 1, - anon_sym_SEMI, - ACTIONS(5143), 1, - anon_sym_EQ, + [64432] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64444] = 4, - ACTIONS(3838), 1, + ACTIONS(5139), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [64442] = 4, + ACTIONS(3902), 1, anon_sym_RBRACE, - ACTIONS(5145), 1, + ACTIONS(5141), 1, anon_sym_COMMA, - STATE(2081), 1, + STATE(1939), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64458] = 4, - ACTIONS(3838), 1, + [64456] = 4, + ACTIONS(3902), 1, anon_sym_RBRACE, - ACTIONS(5145), 1, + ACTIONS(5141), 1, anon_sym_COMMA, - STATE(2109), 1, + STATE(2114), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64472] = 2, + [64470] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5147), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(5143), 2, + anon_sym_RPAREN, + anon_sym_COMMA, [64482] = 4, - ACTIONS(3816), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, + ACTIONS(5145), 1, anon_sym_SEMI, - STATE(1052), 1, + STATE(992), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64496] = 3, - ACTIONS(4102), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(5151), 1, + ACTIONS(5147), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64507] = 3, - ACTIONS(4141), 1, - anon_sym_LBRACE, - STATE(482), 1, - sym_enum_variant_list, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1686), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64518] = 3, - ACTIONS(4108), 1, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(919), 1, - sym_enum_variant_list, + STATE(488), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64529] = 3, - ACTIONS(3862), 1, - anon_sym_LBRACE, - STATE(882), 1, - sym_field_declaration_list, + ACTIONS(4342), 1, + anon_sym_COLON, + ACTIONS(4346), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64540] = 3, - ACTIONS(3862), 1, + ACTIONS(4156), 1, anon_sym_LBRACE, - STATE(978), 1, - sym_field_declaration_list, + STATE(369), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64551] = 3, - ACTIONS(5153), 1, - anon_sym_SEMI, - ACTIONS(5155), 1, - anon_sym_as, + [64551] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64562] = 2, + ACTIONS(5149), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64560] = 3, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1396), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5157), 2, - sym_identifier, - sym_metavariable, [64571] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(149), 1, - sym_block, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5153), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64582] = 3, - ACTIONS(5159), 1, + ACTIONS(5155), 1, sym_identifier, - ACTIONS(5161), 1, + ACTIONS(5157), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64593] = 3, - ACTIONS(5163), 1, + ACTIONS(5151), 1, anon_sym_SEMI, - ACTIONS(5165), 1, + ACTIONS(5159), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64604] = 3, - ACTIONS(5119), 1, - sym_identifier, - ACTIONS(5123), 1, - sym_mutable_specifier, + [64604] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64615] = 3, - ACTIONS(5163), 1, - anon_sym_SEMI, - ACTIONS(5167), 1, + ACTIONS(5161), 2, anon_sym_RBRACE, + anon_sym_COMMA, + [64613] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64626] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1390), 1, - sym_parameters, + ACTIONS(5163), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64622] = 3, + ACTIONS(5083), 1, + sym_identifier, + ACTIONS(5087), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64637] = 3, - ACTIONS(4141), 1, + [64633] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(287), 1, - sym_enum_variant_list, + STATE(483), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64648] = 3, - ACTIONS(3616), 1, - anon_sym_COLON_COLON, - ACTIONS(5169), 1, - anon_sym_RPAREN, + [64644] = 3, + ACTIONS(5165), 1, + anon_sym_SEMI, + ACTIONS(5167), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64659] = 3, - ACTIONS(4309), 1, - anon_sym_PIPE, - ACTIONS(5171), 1, - anon_sym_EQ, + [64655] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64670] = 3, - ACTIONS(3888), 1, + ACTIONS(5169), 2, + sym_identifier, + sym_metavariable, + [64664] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(297), 1, - sym_field_declaration_list, + STATE(149), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64681] = 3, - ACTIONS(4102), 1, + [64675] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5171), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64686] = 3, + ACTIONS(4096), 1, anon_sym_PLUS, ACTIONS(5173), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64692] = 3, - ACTIONS(3888), 1, + [64697] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(308), 1, + STATE(1051), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64708] = 3, + ACTIONS(3804), 1, + anon_sym_LBRACE, + STATE(1030), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64703] = 3, - ACTIONS(4309), 1, + [64719] = 3, + ACTIONS(4346), 1, anon_sym_PIPE, ACTIONS(5175), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64714] = 3, - ACTIONS(3824), 1, + [64730] = 3, + ACTIONS(3804), 1, anon_sym_LBRACE, - STATE(309), 1, - sym_declaration_list, + STATE(1036), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64725] = 3, - ACTIONS(4309), 1, + [64741] = 3, + ACTIONS(4346), 1, anon_sym_PIPE, ACTIONS(5177), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64736] = 3, - ACTIONS(4309), 1, - anon_sym_PIPE, - ACTIONS(5179), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64747] = 3, - ACTIONS(3816), 1, + [64752] = 3, + ACTIONS(4124), 1, anon_sym_LBRACE, - STATE(855), 1, - sym_declaration_list, + STATE(1041), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64758] = 3, - ACTIONS(3862), 1, + [64763] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(803), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64769] = 3, - ACTIONS(4309), 1, - anon_sym_PIPE, - ACTIONS(5181), 1, - anon_sym_in, + STATE(345), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64780] = 3, - ACTIONS(4309), 1, + [64774] = 3, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(5183), 1, + ACTIONS(5179), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64791] = 3, - ACTIONS(3816), 1, + [64785] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, STATE(984), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64802] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(5185), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64813] = 3, - ACTIONS(4309), 1, + [64796] = 3, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(5187), 1, + ACTIONS(5181), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64824] = 3, - ACTIONS(3816), 1, + [64807] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(815), 1, + STATE(338), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64835] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1677), 1, - sym_parameters, + [64818] = 3, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(1047), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64846] = 3, - ACTIONS(3816), 1, + [64829] = 3, + ACTIONS(3804), 1, anon_sym_LBRACE, - STATE(924), 1, - sym_declaration_list, + STATE(1053), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64857] = 3, - ACTIONS(3816), 1, + [64840] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(917), 1, + STATE(976), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64868] = 3, - ACTIONS(3816), 1, + [64851] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(821), 1, + STATE(975), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64879] = 2, + [64862] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64873] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5185), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5189), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64888] = 3, - ACTIONS(4017), 1, - anon_sym_COLON_COLON, - ACTIONS(5191), 1, - anon_sym_RPAREN, + [64884] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64899] = 3, - ACTIONS(3862), 1, + ACTIONS(5187), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64893] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(822), 1, - sym_field_declaration_list, + STATE(337), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64910] = 3, - ACTIONS(4005), 1, - anon_sym_COLON_COLON, - ACTIONS(5191), 1, - anon_sym_RPAREN, + [64904] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(5189), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64921] = 2, + [64915] = 3, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(800), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5193), 2, - sym_identifier, - sym_metavariable, - [64930] = 3, - ACTIONS(4108), 1, + [64926] = 3, + ACTIONS(4124), 1, anon_sym_LBRACE, - STATE(870), 1, + STATE(964), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64941] = 3, - ACTIONS(4015), 1, - anon_sym_COLON_COLON, - ACTIONS(5191), 1, - anon_sym_RPAREN, + [64937] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64952] = 3, - ACTIONS(4015), 1, - anon_sym_COLON_COLON, + ACTIONS(5191), 2, + sym_identifier, + sym_metavariable, + [64946] = 3, + ACTIONS(5193), 1, + sym_identifier, ACTIONS(5195), 1, - anon_sym_RPAREN, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64963] = 3, - ACTIONS(3862), 1, + [64957] = 3, + ACTIONS(3804), 1, anon_sym_LBRACE, - STATE(854), 1, + STATE(961), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64974] = 3, - ACTIONS(4102), 1, + [64968] = 3, + ACTIONS(4096), 1, anon_sym_PLUS, ACTIONS(5197), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64985] = 3, - ACTIONS(3862), 1, + [64979] = 3, + ACTIONS(3804), 1, anon_sym_LBRACE, - STATE(836), 1, + STATE(959), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64996] = 3, - ACTIONS(3816), 1, + [64990] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(835), 1, + STATE(957), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65007] = 3, - ACTIONS(4005), 1, - anon_sym_COLON_COLON, - ACTIONS(5195), 1, - anon_sym_RPAREN, + [65001] = 3, + ACTIONS(3804), 1, + anon_sym_LBRACE, + STATE(1039), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65018] = 3, - ACTIONS(4017), 1, - anon_sym_COLON_COLON, - ACTIONS(5195), 1, - anon_sym_RPAREN, + [65012] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65029] = 3, - ACTIONS(4309), 1, + ACTIONS(4405), 2, + anon_sym_COMMA, + anon_sym_GT, + [65021] = 3, + ACTIONS(4346), 1, anon_sym_PIPE, ACTIONS(5199), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65040] = 3, - ACTIONS(3616), 1, - anon_sym_COLON_COLON, - ACTIONS(5201), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65051] = 3, - ACTIONS(4309), 1, + [65032] = 3, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(5203), 1, + ACTIONS(5201), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65062] = 2, + [65043] = 3, + ACTIONS(3925), 1, + anon_sym_COLON, + STATE(1912), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4988), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65071] = 3, - ACTIONS(4309), 1, - anon_sym_PIPE, - ACTIONS(5205), 1, - anon_sym_EQ, + [65054] = 3, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1388), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65082] = 2, + [65065] = 3, + ACTIONS(3808), 1, + anon_sym_LT, + STATE(720), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5207), 2, - sym_identifier, - sym_metavariable, - [65091] = 3, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(2112), 1, - sym_lifetime, + [65076] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(443), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65102] = 3, - ACTIONS(4309), 1, - anon_sym_PIPE, - ACTIONS(5209), 1, - anon_sym_in, + [65087] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65113] = 3, - ACTIONS(3824), 1, - anon_sym_LBRACE, - STATE(294), 1, - sym_declaration_list, + ACTIONS(4937), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65096] = 3, + ACTIONS(4067), 1, + anon_sym_COLON_COLON, + ACTIONS(5203), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65124] = 3, - ACTIONS(3824), 1, - anon_sym_LBRACE, - STATE(295), 1, - sym_declaration_list, + [65107] = 3, + ACTIONS(4069), 1, + anon_sym_COLON_COLON, + ACTIONS(5203), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65135] = 3, - ACTIONS(2580), 1, - anon_sym_LPAREN, - STATE(853), 1, - sym_parameters, + [65118] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5205), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65146] = 3, - ACTIONS(5211), 1, - sym_identifier, - ACTIONS(5213), 1, - sym_mutable_specifier, + [65129] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(5207), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65157] = 3, - ACTIONS(5215), 1, - anon_sym_LBRACK, - ACTIONS(5217), 1, - anon_sym_BANG, + [65140] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65168] = 2, + ACTIONS(5209), 2, + sym_identifier, + sym_metavariable, + [65149] = 3, + ACTIONS(4083), 1, + anon_sym_COLON_COLON, + ACTIONS(5203), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5219), 2, - sym_identifier, - sym_metavariable, - [65177] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(5221), 1, - anon_sym_SEMI, + [65160] = 3, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, + ACTIONS(5211), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65188] = 3, - ACTIONS(3888), 1, - anon_sym_LBRACE, - STATE(438), 1, - sym_field_declaration_list, + [65171] = 3, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1383), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65199] = 3, - ACTIONS(3824), 1, + [65182] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(318), 1, + STATE(304), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65210] = 3, - ACTIONS(5223), 1, - anon_sym_LT, - STATE(676), 1, - sym_type_parameters, + [65193] = 3, + ACTIONS(2576), 1, + anon_sym_LPAREN, + STATE(1013), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65221] = 3, - ACTIONS(4309), 1, + [65204] = 3, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(5225), 1, - anon_sym_EQ, + ACTIONS(5213), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65215] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65232] = 3, - ACTIONS(5227), 1, + ACTIONS(4990), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65224] = 3, + ACTIONS(5215), 1, anon_sym_LBRACK, - ACTIONS(5229), 1, + ACTIONS(5217), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65243] = 3, - ACTIONS(3824), 1, + [65235] = 3, + ACTIONS(4156), 1, anon_sym_LBRACE, - STATE(443), 1, - sym_declaration_list, + STATE(475), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65254] = 2, + [65246] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4955), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65263] = 3, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(2322), 1, - sym_lifetime, + ACTIONS(5219), 2, + sym_identifier, + sym_metavariable, + [65255] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(433), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65274] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(59), 1, - sym_closure_parameters, + [65266] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(432), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65285] = 2, + [65277] = 3, + ACTIONS(4124), 1, + anon_sym_LBRACE, + STATE(995), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4917), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65294] = 3, - ACTIONS(4108), 1, - anon_sym_LBRACE, - STATE(890), 1, - sym_enum_variant_list, + [65288] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65305] = 3, - ACTIONS(3824), 1, - anon_sym_LBRACE, - STATE(447), 1, - sym_declaration_list, + ACTIONS(4764), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65297] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65316] = 3, - ACTIONS(3816), 1, + ACTIONS(4235), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65306] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(818), 1, + STATE(918), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65327] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(5231), 1, + [65317] = 3, + ACTIONS(4007), 1, + anon_sym_RBRACE, + ACTIONS(5151), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65338] = 3, - ACTIONS(3888), 1, - anon_sym_LBRACE, - STATE(466), 1, - sym_field_declaration_list, + [65328] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65349] = 3, - ACTIONS(3824), 1, - anon_sym_LBRACE, - STATE(490), 1, - sym_declaration_list, + ACTIONS(4717), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65337] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65360] = 3, - ACTIONS(4102), 1, + ACTIONS(2423), 2, + anon_sym_COMMA, + anon_sym_GT, + [65346] = 3, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(5233), 1, + ACTIONS(5221), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65371] = 3, - ACTIONS(3816), 1, + [65357] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(840), 1, + STATE(907), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65382] = 3, - ACTIONS(3816), 1, + [65368] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(841), 1, + STATE(906), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65393] = 3, - ACTIONS(4305), 1, - anon_sym_COLON, - ACTIONS(4309), 1, - anon_sym_PIPE, + [65379] = 3, + ACTIONS(4156), 1, + anon_sym_LBRACE, + STATE(417), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65404] = 2, + [65390] = 3, + ACTIONS(5223), 1, + anon_sym_LBRACK, + ACTIONS(5225), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5235), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65413] = 3, - ACTIONS(4053), 1, + [65401] = 3, + ACTIONS(4013), 1, anon_sym_RBRACE, - ACTIONS(5163), 1, + ACTIONS(5151), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65424] = 3, - ACTIONS(2642), 1, - anon_sym_LBRACE, - STATE(1133), 1, - sym_field_initializer_list, + [65412] = 3, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + ACTIONS(3634), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65435] = 3, - ACTIONS(4141), 1, - anon_sym_LBRACE, - STATE(342), 1, - sym_enum_variant_list, + [65423] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(59), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65446] = 3, - ACTIONS(5237), 1, - anon_sym_LPAREN, - ACTIONS(5239), 1, - anon_sym_LBRACE, + [65434] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65457] = 3, - ACTIONS(5241), 1, - anon_sym_LPAREN, - ACTIONS(5243), 1, - anon_sym_LBRACE, + ACTIONS(5227), 2, + anon_sym_const, + sym_mutable_specifier, + [65443] = 3, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, + ACTIONS(5229), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65468] = 3, + [65454] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1062), 1, + STATE(1127), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65479] = 3, - ACTIONS(4067), 1, - anon_sym_COLON, - ACTIONS(4102), 1, - anon_sym_PLUS, + [65465] = 3, + ACTIONS(4083), 1, + anon_sym_COLON_COLON, + ACTIONS(5231), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65490] = 3, - ACTIONS(4055), 1, - anon_sym_RBRACE, - ACTIONS(5163), 1, - anon_sym_SEMI, + [65476] = 3, + ACTIONS(4069), 1, + anon_sym_COLON_COLON, + ACTIONS(5231), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65501] = 3, - ACTIONS(3888), 1, - anon_sym_LBRACE, - STATE(274), 1, - sym_field_declaration_list, + [65487] = 3, + ACTIONS(3614), 1, + anon_sym_COLON_COLON, + ACTIONS(5233), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65512] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1078), 1, - sym_block, + [65498] = 3, + ACTIONS(3594), 1, + anon_sym_COLON_COLON, + ACTIONS(5233), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65523] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1144), 1, - sym_block, + [65509] = 3, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1721), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65534] = 3, - ACTIONS(3824), 1, - anon_sym_LBRACE, - STATE(269), 1, - sym_declaration_list, + [65520] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5235), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65545] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(160), 1, - sym_block, + [65531] = 3, + ACTIONS(5237), 1, + anon_sym_SEMI, + ACTIONS(5239), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65556] = 3, - ACTIONS(5245), 1, + [65542] = 3, + ACTIONS(5241), 1, anon_sym_SEMI, - ACTIONS(5247), 1, + ACTIONS(5243), 1, anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65567] = 2, + [65553] = 3, + ACTIONS(4067), 1, + anon_sym_COLON_COLON, + ACTIONS(5231), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4397), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65576] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1725), 1, - sym_parameters, + [65564] = 3, + ACTIONS(3804), 1, + anon_sym_LBRACE, + STATE(916), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65587] = 3, - ACTIONS(3862), 1, + [65575] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(925), 1, + STATE(295), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65598] = 3, - ACTIONS(582), 1, - anon_sym_LBRACE, - STATE(238), 1, - sym_block, + [65586] = 3, + ACTIONS(4027), 1, + anon_sym_RBRACE, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65609] = 3, - ACTIONS(3816), 1, + [65597] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(934), 1, + STATE(877), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65620] = 3, - ACTIONS(3816), 1, + [65608] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(933), 1, + STATE(903), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65631] = 3, - ACTIONS(3862), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_field_declaration_list, + [65619] = 3, + ACTIONS(2584), 1, + anon_sym_LT2, + STATE(1071), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65642] = 2, + [65630] = 3, + ACTIONS(3804), 1, + anon_sym_LBRACE, + STATE(889), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4399), 2, - anon_sym_COMMA, - anon_sym_GT, - [65651] = 3, - ACTIONS(3926), 1, - anon_sym_COLON, - STATE(1971), 1, - sym_trait_bounds, + [65641] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65662] = 2, + ACTIONS(5245), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65650] = 3, + ACTIONS(4023), 1, + anon_sym_RPAREN, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2371), 2, - anon_sym_COMMA, - anon_sym_GT, - [65671] = 3, - ACTIONS(3866), 1, - anon_sym_LT, - STATE(681), 1, - sym_type_parameters, + [65661] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65682] = 3, - ACTIONS(2580), 1, - anon_sym_LPAREN, - STATE(979), 1, - sym_parameters, + ACTIONS(5247), 2, + sym_identifier, + sym_metavariable, + [65670] = 3, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(414), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65693] = 2, + [65681] = 3, + ACTIONS(2576), 1, + anon_sym_LPAREN, + STATE(855), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4529), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65702] = 3, - ACTIONS(3888), 1, - anon_sym_LBRACE, - STATE(298), 1, - sym_field_declaration_list, + [65692] = 3, + ACTIONS(2788), 1, + anon_sym_COLON, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65713] = 3, - ACTIONS(5163), 1, - anon_sym_SEMI, + [65703] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, ACTIONS(5249), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65724] = 3, - ACTIONS(582), 1, + [65714] = 3, + ACTIONS(602), 1, anon_sym_LBRACE, - STATE(237), 1, + STATE(243), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65735] = 3, - ACTIONS(5163), 1, + [65725] = 3, + ACTIONS(5151), 1, anon_sym_SEMI, ACTIONS(5251), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65746] = 3, - ACTIONS(582), 1, + [65736] = 3, + ACTIONS(602), 1, anon_sym_LBRACE, - STATE(240), 1, + STATE(245), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65757] = 2, + [65747] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5253), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5253), 2, - sym_float_literal, - sym_integer_literal, - [65766] = 2, + [65758] = 3, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1672), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4311), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65775] = 3, - ACTIONS(582), 1, + [65769] = 3, + ACTIONS(602), 1, anon_sym_LBRACE, - STATE(239), 1, + STATE(252), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65786] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1711), 1, - sym_parameters, + [65780] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65797] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1394), 1, - sym_parameters, + [65791] = 3, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(412), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65808] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(5255), 1, - anon_sym_GT, + [65802] = 3, + ACTIONS(4037), 1, + anon_sym_RBRACE, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65819] = 3, - ACTIONS(4309), 1, - anon_sym_PIPE, - ACTIONS(5257), 1, - anon_sym_in, + [65813] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(411), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65830] = 3, - ACTIONS(2958), 1, - anon_sym_COLON, - ACTIONS(4102), 1, - anon_sym_PLUS, + [65824] = 3, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(429), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65841] = 3, - ACTIONS(4108), 1, - anon_sym_LBRACE, - STATE(1020), 1, - sym_enum_variant_list, + [65835] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65852] = 2, + ACTIONS(4825), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [65844] = 3, + ACTIONS(5257), 1, + anon_sym_LT, + STATE(711), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5259), 2, - anon_sym_const, - sym_mutable_specifier, - [65861] = 3, - ACTIONS(4049), 1, - anon_sym_RBRACE, - ACTIONS(5163), 1, - anon_sym_SEMI, + [65855] = 3, + ACTIONS(4124), 1, + anon_sym_LBRACE, + STATE(848), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65872] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1395), 1, - sym_parameters, + [65866] = 3, + ACTIONS(4621), 1, + sym_identifier, + ACTIONS(4625), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65883] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1736), 1, - sym_parameters, + [65877] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65894] = 3, - ACTIONS(3824), 1, - anon_sym_LBRACE, - STATE(448), 1, - sym_declaration_list, + ACTIONS(4431), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65886] = 3, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1674), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65905] = 3, - ACTIONS(4141), 1, + [65897] = 3, + ACTIONS(2604), 1, anon_sym_LBRACE, - STATE(399), 1, - sym_enum_variant_list, + STATE(1115), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65916] = 3, - ACTIONS(3552), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_BANG, + [65908] = 3, + ACTIONS(2904), 1, + anon_sym_COLON, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65927] = 2, + [65919] = 3, + ACTIONS(2908), 1, + anon_sym_COLON, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4564), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [65936] = 3, - ACTIONS(4045), 1, - anon_sym_RPAREN, - ACTIONS(5163), 1, - anon_sym_SEMI, + [65930] = 3, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(277), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65947] = 3, - ACTIONS(4041), 1, - anon_sym_RBRACE, - ACTIONS(5163), 1, - anon_sym_SEMI, + [65941] = 3, + ACTIONS(2912), 1, + anon_sym_COLON, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65958] = 3, - ACTIONS(3824), 1, + [65952] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(345), 1, + STATE(280), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65969] = 3, - ACTIONS(3824), 1, - anon_sym_LBRACE, - STATE(366), 1, - sym_declaration_list, + [65963] = 3, + ACTIONS(4019), 1, + anon_sym_RPAREN, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65980] = 3, - ACTIONS(4009), 1, + [65974] = 3, + ACTIONS(4021), 1, anon_sym_RPAREN, - ACTIONS(5163), 1, + ACTIONS(5151), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65991] = 3, - ACTIONS(582), 1, + [65985] = 3, + ACTIONS(602), 1, anon_sym_LBRACE, - STATE(233), 1, + STATE(240), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66002] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4767), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66011] = 3, - ACTIONS(4102), 1, - anon_sym_PLUS, - ACTIONS(5261), 1, - anon_sym_SEMI, + [65996] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66022] = 3, - ACTIONS(4025), 1, + ACTIONS(5259), 2, + sym_identifier, + sym_metavariable, + [66005] = 3, + ACTIONS(4053), 1, anon_sym_RPAREN, - ACTIONS(5163), 1, + ACTIONS(5151), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66033] = 3, - ACTIONS(2964), 1, - anon_sym_COLON, - ACTIONS(4102), 1, - anon_sym_PLUS, + [66016] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66044] = 2, + ACTIONS(5261), 2, + sym_float_literal, + sym_integer_literal, + [66025] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(5263), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4159), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66053] = 3, - ACTIONS(2980), 1, - anon_sym_COLON, - ACTIONS(4102), 1, + [66036] = 3, + ACTIONS(4096), 1, anon_sym_PLUS, + ACTIONS(5265), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66064] = 3, - ACTIONS(4039), 1, - anon_sym_RPAREN, - ACTIONS(5163), 1, - anon_sym_SEMI, + [66047] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66075] = 3, - ACTIONS(3451), 1, - anon_sym_BANG, - ACTIONS(5263), 1, - anon_sym_COLON_COLON, + ACTIONS(4805), 2, + anon_sym_COMMA, + anon_sym_GT, + [66056] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(431), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66086] = 2, + [66067] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(442), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4753), 2, - anon_sym_COMMA, - anon_sym_GT, - [66095] = 2, + [66078] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(5267), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5265), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66104] = 3, + [66089] = 3, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(78), 1, + STATE(171), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66115] = 3, - ACTIONS(2588), 1, - anon_sym_LT2, - STATE(1138), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66126] = 2, + [66100] = 3, + ACTIONS(5269), 1, + anon_sym_LPAREN, + ACTIONS(5271), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5267), 2, - sym_identifier, - sym_metavariable, - [66135] = 3, - ACTIONS(2942), 1, - anon_sym_COLON, - ACTIONS(4102), 1, - anon_sym_PLUS, + [66111] = 3, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1666), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66146] = 3, - ACTIONS(2580), 1, + [66122] = 3, + ACTIONS(3461), 1, anon_sym_LPAREN, - STATE(988), 1, + STATE(1725), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66157] = 3, - ACTIONS(4703), 1, + [66133] = 3, + ACTIONS(5273), 1, sym_identifier, - ACTIONS(4707), 1, + ACTIONS(5275), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66168] = 2, + [66144] = 3, + ACTIONS(5277), 1, + anon_sym_LPAREN, + ACTIONS(5279), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5269), 2, - anon_sym_const, - sym_mutable_specifier, - [66177] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1668), 1, - sym_parameters, + [66155] = 3, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(450), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66188] = 2, + [66166] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5271), 2, - anon_sym_RPAREN, + ACTIONS(4773), 2, anon_sym_COMMA, - [66197] = 3, - ACTIONS(4309), 1, - anon_sym_PIPE, - ACTIONS(5273), 1, - anon_sym_EQ, + anon_sym_GT, + [66175] = 3, + ACTIONS(3602), 1, + anon_sym_BANG, + ACTIONS(5281), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66208] = 3, - ACTIONS(3824), 1, + [66186] = 3, + ACTIONS(4156), 1, anon_sym_LBRACE, - STATE(402), 1, - sym_declaration_list, + STATE(419), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66219] = 3, - ACTIONS(3449), 1, + [66197] = 3, + ACTIONS(2576), 1, anon_sym_LPAREN, - STATE(1699), 1, + STATE(814), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66230] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1143), 1, - sym_block, + [66208] = 3, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(2303), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66219] = 3, + ACTIONS(2674), 1, + anon_sym_COLON_COLON, + ACTIONS(3967), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66241] = 2, + [66230] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4722), 2, - anon_sym_COMMA, - anon_sym_GT, - [66250] = 3, - ACTIONS(900), 1, - anon_sym_LBRACE, - STATE(1482), 1, - sym_block, + ACTIONS(5283), 2, + anon_sym_const, + sym_mutable_specifier, + [66239] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66261] = 2, + ACTIONS(5285), 2, + anon_sym_const, + sym_mutable_specifier, + [66248] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5275), 2, + ACTIONS(4751), 2, anon_sym_RBRACE, anon_sym_COMMA, - [66270] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(66), 1, - sym_closure_parameters, + [66257] = 3, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1986), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66281] = 2, + [66268] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5287), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5277), 2, - sym_identifier, - sym_metavariable, - [66290] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1075), 1, - sym_block, + [66279] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66301] = 3, - ACTIONS(5163), 1, - anon_sym_SEMI, - ACTIONS(5279), 1, + ACTIONS(4661), 2, anon_sym_RBRACE, + anon_sym_COMMA, + [66288] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5289), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66312] = 3, - ACTIONS(5163), 1, - anon_sym_SEMI, - ACTIONS(5281), 1, - anon_sym_RPAREN, + [66299] = 3, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(5291), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66323] = 3, - ACTIONS(5163), 1, - anon_sym_SEMI, - ACTIONS(5283), 1, - anon_sym_RBRACE, + [66310] = 3, + ACTIONS(5293), 1, + anon_sym_LPAREN, + ACTIONS(5295), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66334] = 3, - ACTIONS(5285), 1, - anon_sym_SEMI, - ACTIONS(5287), 1, - anon_sym_as, + [66321] = 3, + ACTIONS(5297), 1, + anon_sym_LPAREN, + ACTIONS(5299), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66332] = 3, + ACTIONS(4015), 1, + anon_sym_COLON, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66345] = 3, - ACTIONS(5163), 1, + [66343] = 3, + ACTIONS(5301), 1, anon_sym_SEMI, - ACTIONS(5289), 1, - anon_sym_RPAREN, + ACTIONS(5303), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66356] = 2, + [66354] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1155), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5112), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66365] = 3, - ACTIONS(4309), 1, - anon_sym_PIPE, - ACTIONS(5291), 1, - anon_sym_in, + [66365] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66376] = 3, - ACTIONS(5293), 1, + ACTIONS(4516), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66374] = 3, + ACTIONS(5151), 1, anon_sym_SEMI, - ACTIONS(5295), 1, - anon_sym_as, + ACTIONS(5305), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66387] = 3, - ACTIONS(3888), 1, + [66385] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(476), 1, - sym_field_declaration_list, + STATE(457), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66398] = 3, - ACTIONS(5297), 1, - anon_sym_LPAREN, - ACTIONS(5299), 1, + [66396] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, + STATE(1116), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66409] = 3, - ACTIONS(5301), 1, - anon_sym_LPAREN, - ACTIONS(5303), 1, + [66407] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, + STATE(1135), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66420] = 3, - ACTIONS(3888), 1, - anon_sym_LBRACE, - STATE(479), 1, - sym_field_declaration_list, + [66418] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5307), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66431] = 3, - ACTIONS(3598), 1, - anon_sym_COLON_COLON, - ACTIONS(5305), 1, - anon_sym_BANG, + [66429] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66442] = 3, - ACTIONS(3606), 1, - anon_sym_COLON_COLON, - ACTIONS(5305), 1, - anon_sym_BANG, + [66440] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1134), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66453] = 2, + [66451] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(67), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5307), 2, - anon_sym_const, - sym_mutable_specifier, [66462] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4615), 2, - anon_sym_RBRACE, + ACTIONS(4275), 2, + anon_sym_RPAREN, anon_sym_COMMA, [66471] = 3, - ACTIONS(2672), 1, - anon_sym_COLON_COLON, - ACTIONS(3947), 1, - anon_sym_BANG, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5309), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66482] = 3, - ACTIONS(5309), 1, - sym_identifier, - ACTIONS(5311), 1, - sym_mutable_specifier, + ACTIONS(904), 1, + anon_sym_LBRACE, + STATE(1478), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66493] = 3, - ACTIONS(3622), 1, - anon_sym_BANG, - ACTIONS(5313), 1, - anon_sym_COLON_COLON, + ACTIONS(602), 1, + anon_sym_LBRACE, + STATE(244), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66504] = 2, - ACTIONS(5315), 1, + ACTIONS(5311), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66512] = 2, - ACTIONS(3193), 1, - sym_identifier, + ACTIONS(5313), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66520] = 2, - ACTIONS(4709), 1, + ACTIONS(5315), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66528] = 2, - ACTIONS(5317), 1, + ACTIONS(4728), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66536] = 2, - ACTIONS(5279), 1, - anon_sym_SEMI, + ACTIONS(5317), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66544] = 2, ACTIONS(5319), 1, - anon_sym_fn, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66552] = 2, ACTIONS(5321), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66560] = 2, ACTIONS(5323), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -127925,62 +127845,62 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [66592] = 2, - ACTIONS(5283), 1, - anon_sym_SEMI, + ACTIONS(5331), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66600] = 2, - ACTIONS(4667), 1, + ACTIONS(4703), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66608] = 2, - ACTIONS(5331), 1, + ACTIONS(5333), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66616] = 2, - ACTIONS(5333), 1, - anon_sym_LPAREN, + ACTIONS(5305), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66624] = 2, - ACTIONS(4665), 1, - anon_sym_GT, + ACTIONS(5335), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66632] = 2, - ACTIONS(5335), 1, + ACTIONS(5337), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66640] = 2, - ACTIONS(5337), 1, + ACTIONS(4407), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66648] = 2, - ACTIONS(4649), 1, - anon_sym_RBRACE, + ACTIONS(5339), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66656] = 2, - ACTIONS(5339), 1, + ACTIONS(5341), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66664] = 2, - ACTIONS(5341), 1, - anon_sym_LBRACK, + ACTIONS(552), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -128016,151 +127936,151 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, [66712] = 2, ACTIONS(5353), 1, - anon_sym_COLON_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66720] = 2, ACTIONS(5355), 1, - anon_sym_SEMI, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66728] = 2, - ACTIONS(4632), 1, - sym_identifier, + ACTIONS(5357), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66736] = 2, - ACTIONS(3241), 1, + ACTIONS(3227), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66744] = 2, - ACTIONS(3616), 1, - anon_sym_COLON_COLON, + ACTIONS(5359), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66752] = 2, - ACTIONS(3530), 1, + ACTIONS(3536), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66760] = 2, - ACTIONS(5357), 1, - sym_identifier, + ACTIONS(4069), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66768] = 2, - ACTIONS(5359), 1, - anon_sym_EQ, + ACTIONS(5361), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66776] = 2, - ACTIONS(5361), 1, - sym_identifier, + ACTIONS(5363), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66784] = 2, - ACTIONS(5363), 1, + ACTIONS(5365), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66792] = 2, - ACTIONS(5365), 1, - sym_identifier, + ACTIONS(5367), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66800] = 2, - ACTIONS(5367), 1, + ACTIONS(4732), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66808] = 2, - ACTIONS(4699), 1, + ACTIONS(5369), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66816] = 2, - ACTIONS(3195), 1, + ACTIONS(3205), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66824] = 2, - ACTIONS(5369), 1, + ACTIONS(5371), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66832] = 2, - ACTIONS(4643), 1, - anon_sym_RBRACE, + ACTIONS(5373), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66840] = 2, - ACTIONS(5371), 1, - anon_sym_COLON, + ACTIONS(5375), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66848] = 2, - ACTIONS(5373), 1, - sym_identifier, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66856] = 2, - ACTIONS(5375), 1, + ACTIONS(5377), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66864] = 2, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66872] = 2, - ACTIONS(5379), 1, + ACTIONS(5381), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66880] = 2, - ACTIONS(4691), 1, - sym_identifier, + ACTIONS(5309), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66888] = 2, - ACTIONS(5381), 1, - sym_identifier, + ACTIONS(2486), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66896] = 2, ACTIONS(5383), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66904] = 2, ACTIONS(5385), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -128177,97 +128097,97 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [66928] = 2, - ACTIONS(4780), 1, - sym_identifier, + ACTIONS(5391), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66936] = 2, - ACTIONS(5391), 1, + ACTIONS(5393), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66944] = 2, - ACTIONS(5393), 1, + ACTIONS(5395), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66952] = 2, - ACTIONS(5395), 1, + ACTIONS(5397), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66960] = 2, - ACTIONS(5397), 1, + ACTIONS(5399), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66968] = 2, - ACTIONS(5399), 1, + ACTIONS(5401), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66976] = 2, - ACTIONS(5401), 1, - anon_sym_COLON, + ACTIONS(5403), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66984] = 2, - ACTIONS(5403), 1, - anon_sym_SEMI, + ACTIONS(2359), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66992] = 2, ACTIONS(5405), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67000] = 2, ACTIONS(5407), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67008] = 2, ACTIONS(5409), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67016] = 2, ACTIONS(5411), 1, - sym_identifier, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67024] = 2, - ACTIONS(4145), 1, - sym_identifier, + ACTIONS(5413), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67032] = 2, - ACTIONS(5413), 1, - sym_identifier, + ACTIONS(5415), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67040] = 2, - ACTIONS(5415), 1, - sym_identifier, + ACTIONS(4531), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67048] = 2, - ACTIONS(2672), 1, + ACTIONS(2674), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -128279,13 +128199,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [67064] = 2, - ACTIONS(5313), 1, + ACTIONS(5281), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67072] = 2, - ACTIONS(3237), 1, + ACTIONS(3223), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, @@ -128297,169 +128217,169 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [67088] = 2, - ACTIONS(5421), 1, - anon_sym_RPAREN, + ACTIONS(4792), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67096] = 2, - ACTIONS(5423), 1, + ACTIONS(4666), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67104] = 2, - ACTIONS(5425), 1, - sym_self, + ACTIONS(5421), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67112] = 2, - ACTIONS(4041), 1, - anon_sym_SEMI, + ACTIONS(4629), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67120] = 2, - ACTIONS(2489), 1, - anon_sym_PLUS, + ACTIONS(5423), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67128] = 2, - ACTIONS(2465), 1, - anon_sym_PLUS, + ACTIONS(4769), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67136] = 2, - ACTIONS(5427), 1, - anon_sym_SEMI, + ACTIONS(4544), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67144] = 2, - ACTIONS(5429), 1, - anon_sym_fn, + ACTIONS(5425), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67152] = 2, - ACTIONS(5431), 1, - anon_sym_RBRACE, + ACTIONS(4037), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67160] = 2, - ACTIONS(5433), 1, + ACTIONS(5427), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67168] = 2, - ACTIONS(5435), 1, + ACTIONS(5429), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67176] = 2, - ACTIONS(5437), 1, + ACTIONS(5431), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67184] = 2, - ACTIONS(5439), 1, - anon_sym_SEMI, + ACTIONS(5433), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67192] = 2, - ACTIONS(5441), 1, + ACTIONS(5435), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67200] = 2, - ACTIONS(540), 1, - anon_sym_RBRACK, + ACTIONS(4239), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67208] = 2, - ACTIONS(5443), 1, - anon_sym_RBRACK, + ACTIONS(5437), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67216] = 2, - ACTIONS(5445), 1, + ACTIONS(5439), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67224] = 2, - ACTIONS(5447), 1, - anon_sym_EQ_GT, + ACTIONS(4809), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67232] = 2, - ACTIONS(4794), 1, - sym_identifier, + ACTIONS(5441), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67240] = 2, - ACTIONS(5449), 1, - anon_sym_SEMI, + ACTIONS(5443), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67248] = 2, - ACTIONS(4049), 1, - anon_sym_SEMI, + ACTIONS(5445), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67256] = 2, - ACTIONS(3550), 1, + ACTIONS(3546), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67264] = 2, - ACTIONS(5451), 1, - sym_identifier, + ACTIONS(5447), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67272] = 2, - ACTIONS(4448), 1, - anon_sym_RPAREN, + ACTIONS(4584), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67280] = 2, - ACTIONS(4782), 1, - anon_sym_RBRACE, + ACTIONS(5449), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67288] = 2, - ACTIONS(5453), 1, - anon_sym_LT, + ACTIONS(5451), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67296] = 2, - ACTIONS(5455), 1, + ACTIONS(5453), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67304] = 2, - ACTIONS(4884), 1, + ACTIONS(5455), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -128472,49 +128392,49 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, [67320] = 2, ACTIONS(5459), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67328] = 2, ACTIONS(5461), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67336] = 2, - ACTIONS(5129), 1, - anon_sym_RPAREN, + ACTIONS(5463), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67344] = 2, - ACTIONS(5463), 1, - anon_sym_LPAREN, + ACTIONS(5465), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67352] = 2, - ACTIONS(5465), 1, + ACTIONS(4832), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67360] = 2, - ACTIONS(5467), 1, - anon_sym_COLON_COLON, + ACTIONS(4027), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67368] = 2, - ACTIONS(5469), 1, + ACTIONS(5467), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67376] = 2, - ACTIONS(4163), 1, - anon_sym_COLON_COLON, + ACTIONS(5469), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -128531,32 +128451,32 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [67400] = 2, - ACTIONS(5475), 1, - sym_identifier, + ACTIONS(4576), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67408] = 2, - ACTIONS(4831), 1, + ACTIONS(5475), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67416] = 2, - ACTIONS(5477), 1, - anon_sym_RBRACK, + ACTIONS(4580), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67424] = 2, - ACTIONS(4434), 1, - anon_sym_RBRACK, + ACTIONS(5477), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67432] = 2, ACTIONS(5479), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -128567,2639 +128487,2639 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [67448] = 2, - ACTIONS(5483), 1, - sym_identifier, + ACTIONS(368), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67456] = 2, - ACTIONS(5485), 1, - sym_identifier, + ACTIONS(5483), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67464] = 2, - ACTIONS(5487), 1, - anon_sym_RBRACK, + ACTIONS(5485), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67472] = 2, - ACTIONS(5489), 1, - sym_identifier, + ACTIONS(4340), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67480] = 2, - ACTIONS(5491), 1, - anon_sym_RBRACK, + ACTIONS(2395), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67488] = 2, - ACTIONS(5493), 1, - sym_identifier, + ACTIONS(3473), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67496] = 2, - ACTIONS(5495), 1, - anon_sym_SEMI, + ACTIONS(5487), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67504] = 2, - ACTIONS(5497), 1, - anon_sym_RPAREN, + ACTIONS(5489), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67512] = 2, - ACTIONS(5499), 1, - sym_identifier, + ACTIONS(5491), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67520] = 2, - ACTIONS(5501), 1, + ACTIONS(5493), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67528] = 2, - ACTIONS(5503), 1, + ACTIONS(5495), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67536] = 2, - ACTIONS(5505), 1, - anon_sym_RPAREN, + ACTIONS(5497), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67544] = 2, - ACTIONS(5507), 1, - anon_sym_RBRACK, + ACTIONS(5499), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67552] = 2, - ACTIONS(5509), 1, - anon_sym_RBRACK, + ACTIONS(5501), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67560] = 2, - ACTIONS(5511), 1, - sym_identifier, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67568] = 2, - ACTIONS(374), 1, - anon_sym_RBRACK, + ACTIONS(2834), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67576] = 2, - ACTIONS(5513), 1, - anon_sym_LBRACK, + ACTIONS(5503), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67584] = 2, - ACTIONS(5515), 1, - anon_sym_SEMI, + ACTIONS(4929), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67592] = 2, - ACTIONS(4055), 1, + ACTIONS(4013), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67600] = 2, - ACTIONS(4462), 1, + ACTIONS(5505), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67608] = 2, - ACTIONS(4928), 1, + ACTIONS(5507), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67616] = 2, - ACTIONS(5517), 1, + ACTIONS(5509), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67624] = 2, - ACTIONS(5519), 1, - sym_identifier, + ACTIONS(5511), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67632] = 2, - ACTIONS(5521), 1, - anon_sym_COLON, + ACTIONS(5513), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67640] = 2, - ACTIONS(4283), 1, - anon_sym_RPAREN, + ACTIONS(5515), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67648] = 2, - ACTIONS(5523), 1, - anon_sym_EQ_GT, + ACTIONS(5517), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67656] = 2, - ACTIONS(4053), 1, - anon_sym_SEMI, + ACTIONS(5519), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67664] = 2, - ACTIONS(4005), 1, + ACTIONS(5291), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67672] = 2, - ACTIONS(5525), 1, - anon_sym_SEMI, + ACTIONS(5521), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67680] = 2, - ACTIONS(5527), 1, - anon_sym_RBRACE, + ACTIONS(5523), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67688] = 2, - ACTIONS(2674), 1, + ACTIONS(2676), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67696] = 2, - ACTIONS(5529), 1, + ACTIONS(5525), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67704] = 2, - ACTIONS(3501), 1, - anon_sym_fn, + ACTIONS(5527), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67712] = 2, - ACTIONS(5531), 1, + ACTIONS(4007), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67720] = 2, - ACTIONS(5533), 1, - ts_builtin_sym_end, + ACTIONS(5529), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67728] = 2, - ACTIONS(2962), 1, - anon_sym_COLON_COLON, + ACTIONS(5531), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67736] = 2, - ACTIONS(5535), 1, - anon_sym_SEMI, + ACTIONS(5533), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67744] = 2, - ACTIONS(5537), 1, - anon_sym_COLON, + ACTIONS(5535), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67752] = 2, - ACTIONS(5539), 1, + ACTIONS(4160), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67760] = 2, - ACTIONS(4960), 1, - anon_sym_RBRACE, + ACTIONS(5537), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67768] = 2, - ACTIONS(5541), 1, + ACTIONS(5539), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67776] = 2, - ACTIONS(5543), 1, - anon_sym_RPAREN, + ACTIONS(5541), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67784] = 2, - ACTIONS(4330), 1, - anon_sym_RPAREN, + ACTIONS(5543), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67792] = 2, - ACTIONS(5545), 1, - anon_sym_SEMI, + ACTIONS(4747), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67800] = 2, - ACTIONS(5547), 1, - anon_sym_COLON, + ACTIONS(4967), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67808] = 2, - ACTIONS(5549), 1, - anon_sym_SEMI, + ACTIONS(2465), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67816] = 2, - ACTIONS(4273), 1, + ACTIONS(4114), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67824] = 2, - ACTIONS(5551), 1, + ACTIONS(5545), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67832] = 2, - ACTIONS(4303), 1, - anon_sym_RPAREN, + ACTIONS(5547), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67840] = 2, - ACTIONS(4149), 1, + ACTIONS(4261), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67848] = 2, - ACTIONS(5553), 1, + ACTIONS(5549), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67856] = 2, - ACTIONS(5555), 1, + ACTIONS(5551), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67864] = 2, - ACTIONS(4127), 1, + ACTIONS(4229), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67872] = 2, - ACTIONS(5557), 1, + ACTIONS(5553), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67880] = 2, - ACTIONS(4855), 1, - anon_sym_RBRACE, + ACTIONS(4324), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67888] = 2, - ACTIONS(5163), 1, - anon_sym_SEMI, + ACTIONS(5555), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67896] = 2, - ACTIONS(5559), 1, - anon_sym_SEMI, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67904] = 2, - ACTIONS(5561), 1, - anon_sym_fn, + ACTIONS(4617), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67912] = 2, - ACTIONS(5563), 1, + ACTIONS(5557), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67920] = 2, - ACTIONS(5565), 1, + ACTIONS(5559), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67928] = 2, - ACTIONS(5567), 1, + ACTIONS(5561), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67936] = 2, - ACTIONS(5569), 1, - anon_sym_RPAREN, + ACTIONS(2782), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67944] = 2, - ACTIONS(5571), 1, - sym_identifier, + ACTIONS(5013), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67952] = 2, - ACTIONS(2786), 1, - anon_sym_COLON_COLON, + ACTIONS(3203), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67960] = 2, - ACTIONS(5573), 1, - anon_sym_SEMI, + ACTIONS(5563), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67968] = 2, - ACTIONS(5575), 1, + ACTIONS(5565), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67976] = 2, - ACTIONS(5577), 1, + ACTIONS(5567), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67984] = 2, - ACTIONS(5579), 1, - anon_sym_RBRACE, + ACTIONS(5569), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67992] = 2, - ACTIONS(5581), 1, + ACTIONS(5571), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68000] = 2, - ACTIONS(5583), 1, - anon_sym_COLON, + ACTIONS(5573), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68008] = 2, - ACTIONS(5585), 1, - anon_sym_SEMI, + ACTIONS(5575), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68016] = 2, - ACTIONS(4871), 1, + ACTIONS(5055), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68024] = 2, - ACTIONS(5587), 1, - anon_sym_RPAREN, + ACTIONS(5577), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68032] = 2, - ACTIONS(2746), 1, + ACTIONS(2714), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68040] = 2, - ACTIONS(5589), 1, + ACTIONS(5579), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68048] = 2, - ACTIONS(5591), 1, + ACTIONS(5581), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68056] = 2, - ACTIONS(2375), 1, - anon_sym_EQ_GT, + ACTIONS(5583), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68064] = 2, - ACTIONS(5593), 1, - anon_sym_COLON, + ACTIONS(5585), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68072] = 2, - ACTIONS(3552), 1, - anon_sym_COLON_COLON, + ACTIONS(5587), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68080] = 2, - ACTIONS(5595), 1, + ACTIONS(5589), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68088] = 2, - ACTIONS(2437), 1, - anon_sym_EQ_GT, + ACTIONS(5591), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68096] = 2, - ACTIONS(5597), 1, + ACTIONS(5593), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68104] = 2, - ACTIONS(5599), 1, + ACTIONS(5595), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68112] = 2, - ACTIONS(5601), 1, + ACTIONS(5597), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68120] = 2, - ACTIONS(5603), 1, - anon_sym_SEMI, + ACTIONS(4336), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68128] = 2, - ACTIONS(5605), 1, - anon_sym_SEMI, + ACTIONS(5599), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68136] = 2, - ACTIONS(5607), 1, + ACTIONS(5601), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68144] = 2, - ACTIONS(5263), 1, - anon_sym_COLON_COLON, + ACTIONS(5603), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68152] = 2, - ACTIONS(5609), 1, + ACTIONS(5605), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68160] = 2, - ACTIONS(5611), 1, - sym_identifier, + ACTIONS(5607), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68168] = 2, - ACTIONS(5613), 1, + ACTIONS(5609), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68176] = 2, - ACTIONS(5615), 1, + ACTIONS(5611), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68184] = 2, - ACTIONS(5617), 1, - anon_sym_SEMI, + ACTIONS(5613), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68192] = 2, - ACTIONS(5619), 1, + ACTIONS(5615), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68200] = 2, - ACTIONS(5621), 1, - anon_sym_RBRACK, + ACTIONS(4674), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68208] = 2, - ACTIONS(5623), 1, - anon_sym_RBRACE, + ACTIONS(5617), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68216] = 2, - ACTIONS(5057), 1, - anon_sym_RBRACE, + ACTIONS(5619), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68224] = 2, - ACTIONS(5625), 1, - sym_identifier, + ACTIONS(5621), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68232] = 2, - ACTIONS(5627), 1, - anon_sym_SEMI, + ACTIONS(5623), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68240] = 2, - ACTIONS(3477), 1, + ACTIONS(3497), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68248] = 2, - ACTIONS(5629), 1, - sym_identifier, + ACTIONS(5109), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68256] = 2, - ACTIONS(5631), 1, - anon_sym_COLON, + ACTIONS(5625), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68264] = 2, - ACTIONS(5633), 1, + ACTIONS(5627), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68272] = 2, - ACTIONS(5635), 1, - anon_sym_COLON, + ACTIONS(5629), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68280] = 2, - ACTIONS(5637), 1, - anon_sym_EQ_GT, + ACTIONS(5631), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68288] = 2, - ACTIONS(5639), 1, - anon_sym_RBRACE, + ACTIONS(5633), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68296] = 2, - ACTIONS(5641), 1, + ACTIONS(5635), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68304] = 2, - ACTIONS(5643), 1, + ACTIONS(5637), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68312] = 2, - ACTIONS(5645), 1, + ACTIONS(5639), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68320] = 2, - ACTIONS(5167), 1, + ACTIONS(5159), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68328] = 2, - ACTIONS(5647), 1, - sym_identifier, + ACTIONS(5153), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68336] = 2, - ACTIONS(5649), 1, + ACTIONS(5641), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68344] = 2, - ACTIONS(5165), 1, - anon_sym_SEMI, + ACTIONS(5643), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68352] = 2, - ACTIONS(5651), 1, - anon_sym_SEMI, + ACTIONS(5645), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68360] = 2, - ACTIONS(5653), 1, - sym_identifier, + ACTIONS(5647), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68368] = 2, - ACTIONS(4964), 1, - anon_sym_RBRACE, + ACTIONS(5649), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68376] = 2, - ACTIONS(5655), 1, - anon_sym_EQ_GT, + ACTIONS(5651), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [68384] = 2, - ACTIONS(5657), 1, - sym_identifier, + ACTIONS(5653), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(660)] = 0, - [SMALL_STATE(661)] = 129, - [SMALL_STATE(662)] = 258, - [SMALL_STATE(663)] = 387, - [SMALL_STATE(664)] = 516, - [SMALL_STATE(665)] = 645, - [SMALL_STATE(666)] = 774, - [SMALL_STATE(667)] = 903, - [SMALL_STATE(668)] = 1032, - [SMALL_STATE(669)] = 1161, - [SMALL_STATE(670)] = 1290, - [SMALL_STATE(671)] = 1419, - [SMALL_STATE(672)] = 1548, - [SMALL_STATE(673)] = 1677, - [SMALL_STATE(674)] = 1806, - [SMALL_STATE(675)] = 1935, - [SMALL_STATE(676)] = 2064, - [SMALL_STATE(677)] = 2193, - [SMALL_STATE(678)] = 2322, - [SMALL_STATE(679)] = 2451, - [SMALL_STATE(680)] = 2580, - [SMALL_STATE(681)] = 2709, - [SMALL_STATE(682)] = 2838, - [SMALL_STATE(683)] = 2967, - [SMALL_STATE(684)] = 3096, - [SMALL_STATE(685)] = 3225, - [SMALL_STATE(686)] = 3354, - [SMALL_STATE(687)] = 3483, - [SMALL_STATE(688)] = 3612, - [SMALL_STATE(689)] = 3741, - [SMALL_STATE(690)] = 3870, - [SMALL_STATE(691)] = 3999, - [SMALL_STATE(692)] = 4128, - [SMALL_STATE(693)] = 4257, - [SMALL_STATE(694)] = 4386, - [SMALL_STATE(695)] = 4515, - [SMALL_STATE(696)] = 4644, - [SMALL_STATE(697)] = 4773, - [SMALL_STATE(698)] = 4902, - [SMALL_STATE(699)] = 5031, - [SMALL_STATE(700)] = 5160, - [SMALL_STATE(701)] = 5289, - [SMALL_STATE(702)] = 5418, - [SMALL_STATE(703)] = 5547, - [SMALL_STATE(704)] = 5676, - [SMALL_STATE(705)] = 5805, - [SMALL_STATE(706)] = 5934, - [SMALL_STATE(707)] = 6063, - [SMALL_STATE(708)] = 6192, - [SMALL_STATE(709)] = 6321, - [SMALL_STATE(710)] = 6450, - [SMALL_STATE(711)] = 6579, - [SMALL_STATE(712)] = 6708, - [SMALL_STATE(713)] = 6837, - [SMALL_STATE(714)] = 6966, - [SMALL_STATE(715)] = 7095, - [SMALL_STATE(716)] = 7226, - [SMALL_STATE(717)] = 7297, - [SMALL_STATE(718)] = 7426, - [SMALL_STATE(719)] = 7555, - [SMALL_STATE(720)] = 7684, - [SMALL_STATE(721)] = 7813, - [SMALL_STATE(722)] = 7942, - [SMALL_STATE(723)] = 8071, - [SMALL_STATE(724)] = 8200, - [SMALL_STATE(725)] = 8329, - [SMALL_STATE(726)] = 8458, - [SMALL_STATE(727)] = 8587, - [SMALL_STATE(728)] = 8716, - [SMALL_STATE(729)] = 8845, - [SMALL_STATE(730)] = 8974, - [SMALL_STATE(731)] = 9103, - [SMALL_STATE(732)] = 9232, - [SMALL_STATE(733)] = 9361, - [SMALL_STATE(734)] = 9490, - [SMALL_STATE(735)] = 9619, - [SMALL_STATE(736)] = 9748, - [SMALL_STATE(737)] = 9877, - [SMALL_STATE(738)] = 10006, - [SMALL_STATE(739)] = 10135, - [SMALL_STATE(740)] = 10264, - [SMALL_STATE(741)] = 10393, - [SMALL_STATE(742)] = 10522, - [SMALL_STATE(743)] = 10651, - [SMALL_STATE(744)] = 10780, - [SMALL_STATE(745)] = 10909, - [SMALL_STATE(746)] = 11038, - [SMALL_STATE(747)] = 11167, - [SMALL_STATE(748)] = 11296, - [SMALL_STATE(749)] = 11425, - [SMALL_STATE(750)] = 11554, - [SMALL_STATE(751)] = 11683, - [SMALL_STATE(752)] = 11812, - [SMALL_STATE(753)] = 11941, - [SMALL_STATE(754)] = 12070, - [SMALL_STATE(755)] = 12199, - [SMALL_STATE(756)] = 12328, - [SMALL_STATE(757)] = 12457, - [SMALL_STATE(758)] = 12586, - [SMALL_STATE(759)] = 12715, - [SMALL_STATE(760)] = 12844, - [SMALL_STATE(761)] = 12973, - [SMALL_STATE(762)] = 13102, - [SMALL_STATE(763)] = 13231, - [SMALL_STATE(764)] = 13360, - [SMALL_STATE(765)] = 13489, - [SMALL_STATE(766)] = 13618, - [SMALL_STATE(767)] = 13747, - [SMALL_STATE(768)] = 13876, - [SMALL_STATE(769)] = 14005, - [SMALL_STATE(770)] = 14134, - [SMALL_STATE(771)] = 14200, - [SMALL_STATE(772)] = 14266, - [SMALL_STATE(773)] = 14332, - [SMALL_STATE(774)] = 14398, - [SMALL_STATE(775)] = 14460, - [SMALL_STATE(776)] = 14530, - [SMALL_STATE(777)] = 14597, - [SMALL_STATE(778)] = 14664, - [SMALL_STATE(779)] = 14720, - [SMALL_STATE(780)] = 14780, - [SMALL_STATE(781)] = 14840, - [SMALL_STATE(782)] = 14900, - [SMALL_STATE(783)] = 14964, - [SMALL_STATE(784)] = 15028, - [SMALL_STATE(785)] = 15088, - [SMALL_STATE(786)] = 15152, - [SMALL_STATE(787)] = 15208, - [SMALL_STATE(788)] = 15264, - [SMALL_STATE(789)] = 15320, - [SMALL_STATE(790)] = 15384, - [SMALL_STATE(791)] = 15440, - [SMALL_STATE(792)] = 15502, - [SMALL_STATE(793)] = 15561, - [SMALL_STATE(794)] = 15618, - [SMALL_STATE(795)] = 15677, - [SMALL_STATE(796)] = 15736, - [SMALL_STATE(797)] = 15793, - [SMALL_STATE(798)] = 15850, - [SMALL_STATE(799)] = 15905, - [SMALL_STATE(800)] = 15962, - [SMALL_STATE(801)] = 16016, - [SMALL_STATE(802)] = 16070, - [SMALL_STATE(803)] = 16124, - [SMALL_STATE(804)] = 16178, - [SMALL_STATE(805)] = 16232, - [SMALL_STATE(806)] = 16286, - [SMALL_STATE(807)] = 16340, - [SMALL_STATE(808)] = 16396, - [SMALL_STATE(809)] = 16450, - [SMALL_STATE(810)] = 16506, - [SMALL_STATE(811)] = 16560, - [SMALL_STATE(812)] = 16614, - [SMALL_STATE(813)] = 16668, - [SMALL_STATE(814)] = 16722, - [SMALL_STATE(815)] = 16776, - [SMALL_STATE(816)] = 16830, - [SMALL_STATE(817)] = 16884, - [SMALL_STATE(818)] = 16938, - [SMALL_STATE(819)] = 16992, - [SMALL_STATE(820)] = 17046, - [SMALL_STATE(821)] = 17100, - [SMALL_STATE(822)] = 17154, - [SMALL_STATE(823)] = 17208, - [SMALL_STATE(824)] = 17262, - [SMALL_STATE(825)] = 17316, - [SMALL_STATE(826)] = 17370, - [SMALL_STATE(827)] = 17424, - [SMALL_STATE(828)] = 17480, - [SMALL_STATE(829)] = 17534, - [SMALL_STATE(830)] = 17588, - [SMALL_STATE(831)] = 17642, - [SMALL_STATE(832)] = 17696, - [SMALL_STATE(833)] = 17750, - [SMALL_STATE(834)] = 17804, - [SMALL_STATE(835)] = 17860, - [SMALL_STATE(836)] = 17914, - [SMALL_STATE(837)] = 17968, - [SMALL_STATE(838)] = 18022, - [SMALL_STATE(839)] = 18076, - [SMALL_STATE(840)] = 18130, - [SMALL_STATE(841)] = 18184, - [SMALL_STATE(842)] = 18238, - [SMALL_STATE(843)] = 18292, - [SMALL_STATE(844)] = 18346, - [SMALL_STATE(845)] = 18400, - [SMALL_STATE(846)] = 18454, - [SMALL_STATE(847)] = 18508, - [SMALL_STATE(848)] = 18562, - [SMALL_STATE(849)] = 18616, - [SMALL_STATE(850)] = 18670, - [SMALL_STATE(851)] = 18724, - [SMALL_STATE(852)] = 18778, - [SMALL_STATE(853)] = 18832, - [SMALL_STATE(854)] = 18888, - [SMALL_STATE(855)] = 18942, - [SMALL_STATE(856)] = 18996, - [SMALL_STATE(857)] = 19050, - [SMALL_STATE(858)] = 19104, - [SMALL_STATE(859)] = 19158, - [SMALL_STATE(860)] = 19212, - [SMALL_STATE(861)] = 19266, - [SMALL_STATE(862)] = 19320, - [SMALL_STATE(863)] = 19374, - [SMALL_STATE(864)] = 19428, - [SMALL_STATE(865)] = 19482, - [SMALL_STATE(866)] = 19536, - [SMALL_STATE(867)] = 19590, - [SMALL_STATE(868)] = 19644, - [SMALL_STATE(869)] = 19698, - [SMALL_STATE(870)] = 19752, - [SMALL_STATE(871)] = 19806, - [SMALL_STATE(872)] = 19860, - [SMALL_STATE(873)] = 19914, - [SMALL_STATE(874)] = 19968, - [SMALL_STATE(875)] = 20022, - [SMALL_STATE(876)] = 20076, - [SMALL_STATE(877)] = 20130, - [SMALL_STATE(878)] = 20184, - [SMALL_STATE(879)] = 20238, - [SMALL_STATE(880)] = 20292, - [SMALL_STATE(881)] = 20346, - [SMALL_STATE(882)] = 20400, - [SMALL_STATE(883)] = 20454, - [SMALL_STATE(884)] = 20508, - [SMALL_STATE(885)] = 20562, - [SMALL_STATE(886)] = 20616, - [SMALL_STATE(887)] = 20674, - [SMALL_STATE(888)] = 20728, - [SMALL_STATE(889)] = 20782, - [SMALL_STATE(890)] = 20836, - [SMALL_STATE(891)] = 20890, - [SMALL_STATE(892)] = 20944, - [SMALL_STATE(893)] = 20998, - [SMALL_STATE(894)] = 21052, - [SMALL_STATE(895)] = 21106, - [SMALL_STATE(896)] = 21160, - [SMALL_STATE(897)] = 21214, - [SMALL_STATE(898)] = 21268, - [SMALL_STATE(899)] = 21322, - [SMALL_STATE(900)] = 21376, - [SMALL_STATE(901)] = 21430, - [SMALL_STATE(902)] = 21484, - [SMALL_STATE(903)] = 21538, - [SMALL_STATE(904)] = 21592, - [SMALL_STATE(905)] = 21650, - [SMALL_STATE(906)] = 21704, - [SMALL_STATE(907)] = 21758, - [SMALL_STATE(908)] = 21812, - [SMALL_STATE(909)] = 21866, - [SMALL_STATE(910)] = 21920, - [SMALL_STATE(911)] = 21974, - [SMALL_STATE(912)] = 22028, - [SMALL_STATE(913)] = 22082, - [SMALL_STATE(914)] = 22136, - [SMALL_STATE(915)] = 22190, - [SMALL_STATE(916)] = 22244, - [SMALL_STATE(917)] = 22298, - [SMALL_STATE(918)] = 22352, - [SMALL_STATE(919)] = 22406, - [SMALL_STATE(920)] = 22460, - [SMALL_STATE(921)] = 22514, - [SMALL_STATE(922)] = 22568, - [SMALL_STATE(923)] = 22622, - [SMALL_STATE(924)] = 22676, - [SMALL_STATE(925)] = 22730, - [SMALL_STATE(926)] = 22784, - [SMALL_STATE(927)] = 22838, - [SMALL_STATE(928)] = 22892, - [SMALL_STATE(929)] = 22946, - [SMALL_STATE(930)] = 23000, - [SMALL_STATE(931)] = 23054, - [SMALL_STATE(932)] = 23108, - [SMALL_STATE(933)] = 23162, - [SMALL_STATE(934)] = 23216, - [SMALL_STATE(935)] = 23270, - [SMALL_STATE(936)] = 23324, - [SMALL_STATE(937)] = 23378, - [SMALL_STATE(938)] = 23432, - [SMALL_STATE(939)] = 23486, - [SMALL_STATE(940)] = 23540, - [SMALL_STATE(941)] = 23594, - [SMALL_STATE(942)] = 23648, - [SMALL_STATE(943)] = 23702, - [SMALL_STATE(944)] = 23756, - [SMALL_STATE(945)] = 23810, - [SMALL_STATE(946)] = 23864, - [SMALL_STATE(947)] = 23918, - [SMALL_STATE(948)] = 23976, - [SMALL_STATE(949)] = 24030, - [SMALL_STATE(950)] = 24084, - [SMALL_STATE(951)] = 24138, - [SMALL_STATE(952)] = 24192, - [SMALL_STATE(953)] = 24246, - [SMALL_STATE(954)] = 24300, - [SMALL_STATE(955)] = 24354, - [SMALL_STATE(956)] = 24408, - [SMALL_STATE(957)] = 24462, - [SMALL_STATE(958)] = 24516, - [SMALL_STATE(959)] = 24570, - [SMALL_STATE(960)] = 24624, - [SMALL_STATE(961)] = 24678, - [SMALL_STATE(962)] = 24732, - [SMALL_STATE(963)] = 24786, - [SMALL_STATE(964)] = 24840, - [SMALL_STATE(965)] = 24896, - [SMALL_STATE(966)] = 24952, - [SMALL_STATE(967)] = 25006, - [SMALL_STATE(968)] = 25060, - [SMALL_STATE(969)] = 25114, - [SMALL_STATE(970)] = 25168, - [SMALL_STATE(971)] = 25222, - [SMALL_STATE(972)] = 25276, - [SMALL_STATE(973)] = 25330, - [SMALL_STATE(974)] = 25384, - [SMALL_STATE(975)] = 25438, - [SMALL_STATE(976)] = 25492, - [SMALL_STATE(977)] = 25546, - [SMALL_STATE(978)] = 25600, - [SMALL_STATE(979)] = 25654, - [SMALL_STATE(980)] = 25710, - [SMALL_STATE(981)] = 25764, - [SMALL_STATE(982)] = 25818, - [SMALL_STATE(983)] = 25872, - [SMALL_STATE(984)] = 25926, - [SMALL_STATE(985)] = 25980, - [SMALL_STATE(986)] = 26034, - [SMALL_STATE(987)] = 26088, - [SMALL_STATE(988)] = 26142, - [SMALL_STATE(989)] = 26198, - [SMALL_STATE(990)] = 26252, - [SMALL_STATE(991)] = 26306, - [SMALL_STATE(992)] = 26360, - [SMALL_STATE(993)] = 26414, - [SMALL_STATE(994)] = 26470, - [SMALL_STATE(995)] = 26524, - [SMALL_STATE(996)] = 26578, - [SMALL_STATE(997)] = 26632, - [SMALL_STATE(998)] = 26686, - [SMALL_STATE(999)] = 26740, - [SMALL_STATE(1000)] = 26794, - [SMALL_STATE(1001)] = 26850, - [SMALL_STATE(1002)] = 26906, - [SMALL_STATE(1003)] = 26960, - [SMALL_STATE(1004)] = 27014, - [SMALL_STATE(1005)] = 27068, - [SMALL_STATE(1006)] = 27122, - [SMALL_STATE(1007)] = 27176, - [SMALL_STATE(1008)] = 27230, - [SMALL_STATE(1009)] = 27284, - [SMALL_STATE(1010)] = 27340, - [SMALL_STATE(1011)] = 27394, - [SMALL_STATE(1012)] = 27448, - [SMALL_STATE(1013)] = 27502, - [SMALL_STATE(1014)] = 27556, - [SMALL_STATE(1015)] = 27610, - [SMALL_STATE(1016)] = 27664, - [SMALL_STATE(1017)] = 27718, - [SMALL_STATE(1018)] = 27772, - [SMALL_STATE(1019)] = 27826, - [SMALL_STATE(1020)] = 27880, - [SMALL_STATE(1021)] = 27934, - [SMALL_STATE(1022)] = 27988, - [SMALL_STATE(1023)] = 28042, - [SMALL_STATE(1024)] = 28096, - [SMALL_STATE(1025)] = 28150, - [SMALL_STATE(1026)] = 28204, - [SMALL_STATE(1027)] = 28258, - [SMALL_STATE(1028)] = 28314, - [SMALL_STATE(1029)] = 28368, - [SMALL_STATE(1030)] = 28422, - [SMALL_STATE(1031)] = 28476, - [SMALL_STATE(1032)] = 28530, - [SMALL_STATE(1033)] = 28584, - [SMALL_STATE(1034)] = 28638, - [SMALL_STATE(1035)] = 28692, - [SMALL_STATE(1036)] = 28746, - [SMALL_STATE(1037)] = 28800, - [SMALL_STATE(1038)] = 28854, - [SMALL_STATE(1039)] = 28908, - [SMALL_STATE(1040)] = 28962, - [SMALL_STATE(1041)] = 29016, - [SMALL_STATE(1042)] = 29070, - [SMALL_STATE(1043)] = 29124, - [SMALL_STATE(1044)] = 29178, - [SMALL_STATE(1045)] = 29232, - [SMALL_STATE(1046)] = 29286, - [SMALL_STATE(1047)] = 29340, - [SMALL_STATE(1048)] = 29394, - [SMALL_STATE(1049)] = 29450, - [SMALL_STATE(1050)] = 29504, - [SMALL_STATE(1051)] = 29558, - [SMALL_STATE(1052)] = 29612, - [SMALL_STATE(1053)] = 29666, - [SMALL_STATE(1054)] = 29720, - [SMALL_STATE(1055)] = 29774, - [SMALL_STATE(1056)] = 29828, - [SMALL_STATE(1057)] = 29882, - [SMALL_STATE(1058)] = 29936, - [SMALL_STATE(1059)] = 29989, - [SMALL_STATE(1060)] = 30042, - [SMALL_STATE(1061)] = 30095, - [SMALL_STATE(1062)] = 30148, - [SMALL_STATE(1063)] = 30201, - [SMALL_STATE(1064)] = 30254, - [SMALL_STATE(1065)] = 30307, - [SMALL_STATE(1066)] = 30360, - [SMALL_STATE(1067)] = 30413, - [SMALL_STATE(1068)] = 30466, - [SMALL_STATE(1069)] = 30519, - [SMALL_STATE(1070)] = 30572, - [SMALL_STATE(1071)] = 30625, - [SMALL_STATE(1072)] = 30678, - [SMALL_STATE(1073)] = 30731, - [SMALL_STATE(1074)] = 30784, - [SMALL_STATE(1075)] = 30837, - [SMALL_STATE(1076)] = 30890, - [SMALL_STATE(1077)] = 30943, - [SMALL_STATE(1078)] = 30996, - [SMALL_STATE(1079)] = 31049, - [SMALL_STATE(1080)] = 31102, - [SMALL_STATE(1081)] = 31155, - [SMALL_STATE(1082)] = 31208, - [SMALL_STATE(1083)] = 31261, - [SMALL_STATE(1084)] = 31314, - [SMALL_STATE(1085)] = 31367, - [SMALL_STATE(1086)] = 31422, - [SMALL_STATE(1087)] = 31475, - [SMALL_STATE(1088)] = 31528, - [SMALL_STATE(1089)] = 31583, - [SMALL_STATE(1090)] = 31636, - [SMALL_STATE(1091)] = 31689, - [SMALL_STATE(1092)] = 31742, - [SMALL_STATE(1093)] = 31795, - [SMALL_STATE(1094)] = 31848, - [SMALL_STATE(1095)] = 31901, - [SMALL_STATE(1096)] = 31954, - [SMALL_STATE(1097)] = 32007, - [SMALL_STATE(1098)] = 32060, - [SMALL_STATE(1099)] = 32113, - [SMALL_STATE(1100)] = 32166, - [SMALL_STATE(1101)] = 32219, - [SMALL_STATE(1102)] = 32272, - [SMALL_STATE(1103)] = 32325, - [SMALL_STATE(1104)] = 32414, - [SMALL_STATE(1105)] = 32503, - [SMALL_STATE(1106)] = 32556, - [SMALL_STATE(1107)] = 32609, - [SMALL_STATE(1108)] = 32662, - [SMALL_STATE(1109)] = 32715, - [SMALL_STATE(1110)] = 32768, - [SMALL_STATE(1111)] = 32821, - [SMALL_STATE(1112)] = 32874, - [SMALL_STATE(1113)] = 32927, - [SMALL_STATE(1114)] = 32980, - [SMALL_STATE(1115)] = 33033, - [SMALL_STATE(1116)] = 33086, - [SMALL_STATE(1117)] = 33139, - [SMALL_STATE(1118)] = 33192, - [SMALL_STATE(1119)] = 33245, - [SMALL_STATE(1120)] = 33300, - [SMALL_STATE(1121)] = 33353, - [SMALL_STATE(1122)] = 33406, - [SMALL_STATE(1123)] = 33459, - [SMALL_STATE(1124)] = 33512, - [SMALL_STATE(1125)] = 33565, - [SMALL_STATE(1126)] = 33618, - [SMALL_STATE(1127)] = 33671, - [SMALL_STATE(1128)] = 33724, - [SMALL_STATE(1129)] = 33777, - [SMALL_STATE(1130)] = 33830, - [SMALL_STATE(1131)] = 33883, - [SMALL_STATE(1132)] = 33936, - [SMALL_STATE(1133)] = 33989, - [SMALL_STATE(1134)] = 34042, - [SMALL_STATE(1135)] = 34095, - [SMALL_STATE(1136)] = 34148, - [SMALL_STATE(1137)] = 34201, - [SMALL_STATE(1138)] = 34254, - [SMALL_STATE(1139)] = 34307, - [SMALL_STATE(1140)] = 34360, - [SMALL_STATE(1141)] = 34413, - [SMALL_STATE(1142)] = 34466, - [SMALL_STATE(1143)] = 34519, - [SMALL_STATE(1144)] = 34572, - [SMALL_STATE(1145)] = 34625, - [SMALL_STATE(1146)] = 34678, - [SMALL_STATE(1147)] = 34731, - [SMALL_STATE(1148)] = 34788, - [SMALL_STATE(1149)] = 34841, - [SMALL_STATE(1150)] = 34896, - [SMALL_STATE(1151)] = 34949, - [SMALL_STATE(1152)] = 35002, - [SMALL_STATE(1153)] = 35055, - [SMALL_STATE(1154)] = 35108, - [SMALL_STATE(1155)] = 35161, - [SMALL_STATE(1156)] = 35214, - [SMALL_STATE(1157)] = 35267, - [SMALL_STATE(1158)] = 35320, - [SMALL_STATE(1159)] = 35396, - [SMALL_STATE(1160)] = 35476, - [SMALL_STATE(1161)] = 35536, - [SMALL_STATE(1162)] = 35622, - [SMALL_STATE(1163)] = 35682, - [SMALL_STATE(1164)] = 35762, - [SMALL_STATE(1165)] = 35832, - [SMALL_STATE(1166)] = 35912, - [SMALL_STATE(1167)] = 35964, - [SMALL_STATE(1168)] = 36032, - [SMALL_STATE(1169)] = 36092, - [SMALL_STATE(1170)] = 36178, - [SMALL_STATE(1171)] = 36256, - [SMALL_STATE(1172)] = 36308, - [SMALL_STATE(1173)] = 36370, - [SMALL_STATE(1174)] = 36430, - [SMALL_STATE(1175)] = 36510, - [SMALL_STATE(1176)] = 36570, - [SMALL_STATE(1177)] = 36636, - [SMALL_STATE(1178)] = 36716, - [SMALL_STATE(1179)] = 36788, - [SMALL_STATE(1180)] = 36852, - [SMALL_STATE(1181)] = 36932, - [SMALL_STATE(1182)] = 37017, - [SMALL_STATE(1183)] = 37068, - [SMALL_STATE(1184)] = 37125, - [SMALL_STATE(1185)] = 37176, - [SMALL_STATE(1186)] = 37263, - [SMALL_STATE(1187)] = 37350, - [SMALL_STATE(1188)] = 37429, - [SMALL_STATE(1189)] = 37514, - [SMALL_STATE(1190)] = 37601, - [SMALL_STATE(1191)] = 37688, - [SMALL_STATE(1192)] = 37744, - [SMALL_STATE(1193)] = 37820, - [SMALL_STATE(1194)] = 37896, - [SMALL_STATE(1195)] = 37950, - [SMALL_STATE(1196)] = 38026, - [SMALL_STATE(1197)] = 38102, - [SMALL_STATE(1198)] = 38153, - [SMALL_STATE(1199)] = 38204, - [SMALL_STATE(1200)] = 38253, - [SMALL_STATE(1201)] = 38326, - [SMALL_STATE(1202)] = 38375, - [SMALL_STATE(1203)] = 38424, - [SMALL_STATE(1204)] = 38477, - [SMALL_STATE(1205)] = 38566, - [SMALL_STATE(1206)] = 38619, - [SMALL_STATE(1207)] = 38668, - [SMALL_STATE(1208)] = 38717, - [SMALL_STATE(1209)] = 38806, - [SMALL_STATE(1210)] = 38855, - [SMALL_STATE(1211)] = 38904, - [SMALL_STATE(1212)] = 38953, - [SMALL_STATE(1213)] = 39002, - [SMALL_STATE(1214)] = 39080, - [SMALL_STATE(1215)] = 39130, - [SMALL_STATE(1216)] = 39216, - [SMALL_STATE(1217)] = 39294, - [SMALL_STATE(1218)] = 39344, - [SMALL_STATE(1219)] = 39430, - [SMALL_STATE(1220)] = 39480, - [SMALL_STATE(1221)] = 39530, - [SMALL_STATE(1222)] = 39605, - [SMALL_STATE(1223)] = 39688, - [SMALL_STATE(1224)] = 39769, - [SMALL_STATE(1225)] = 39852, - [SMALL_STATE(1226)] = 39933, - [SMALL_STATE(1227)] = 40016, - [SMALL_STATE(1228)] = 40099, - [SMALL_STATE(1229)] = 40182, - [SMALL_STATE(1230)] = 40265, - [SMALL_STATE(1231)] = 40348, - [SMALL_STATE(1232)] = 40429, - [SMALL_STATE(1233)] = 40510, - [SMALL_STATE(1234)] = 40593, - [SMALL_STATE(1235)] = 40676, - [SMALL_STATE(1236)] = 40757, - [SMALL_STATE(1237)] = 40840, - [SMALL_STATE(1238)] = 40923, - [SMALL_STATE(1239)] = 41006, - [SMALL_STATE(1240)] = 41081, - [SMALL_STATE(1241)] = 41162, - [SMALL_STATE(1242)] = 41245, - [SMALL_STATE(1243)] = 41328, - [SMALL_STATE(1244)] = 41387, - [SMALL_STATE(1245)] = 41470, - [SMALL_STATE(1246)] = 41553, - [SMALL_STATE(1247)] = 41616, - [SMALL_STATE(1248)] = 41681, - [SMALL_STATE(1249)] = 41762, - [SMALL_STATE(1250)] = 41845, - [SMALL_STATE(1251)] = 41928, - [SMALL_STATE(1252)] = 42011, - [SMALL_STATE(1253)] = 42094, - [SMALL_STATE(1254)] = 42177, - [SMALL_STATE(1255)] = 42250, - [SMALL_STATE(1256)] = 42321, - [SMALL_STATE(1257)] = 42382, - [SMALL_STATE(1258)] = 42457, - [SMALL_STATE(1259)] = 42514, - [SMALL_STATE(1260)] = 42595, - [SMALL_STATE(1261)] = 42676, - [SMALL_STATE(1262)] = 42759, - [SMALL_STATE(1263)] = 42842, - [SMALL_STATE(1264)] = 42925, - [SMALL_STATE(1265)] = 43008, - [SMALL_STATE(1266)] = 43091, - [SMALL_STATE(1267)] = 43174, - [SMALL_STATE(1268)] = 43255, - [SMALL_STATE(1269)] = 43338, - [SMALL_STATE(1270)] = 43421, - [SMALL_STATE(1271)] = 43504, - [SMALL_STATE(1272)] = 43587, - [SMALL_STATE(1273)] = 43670, - [SMALL_STATE(1274)] = 43745, - [SMALL_STATE(1275)] = 43828, - [SMALL_STATE(1276)] = 43911, - [SMALL_STATE(1277)] = 43994, - [SMALL_STATE(1278)] = 44061, - [SMALL_STATE(1279)] = 44144, - [SMALL_STATE(1280)] = 44225, - [SMALL_STATE(1281)] = 44280, - [SMALL_STATE(1282)] = 44363, - [SMALL_STATE(1283)] = 44434, - [SMALL_STATE(1284)] = 44517, - [SMALL_STATE(1285)] = 44572, - [SMALL_STATE(1286)] = 44627, - [SMALL_STATE(1287)] = 44710, - [SMALL_STATE(1288)] = 44793, - [SMALL_STATE(1289)] = 44876, - [SMALL_STATE(1290)] = 44951, - [SMALL_STATE(1291)] = 45034, - [SMALL_STATE(1292)] = 45089, - [SMALL_STATE(1293)] = 45170, - [SMALL_STATE(1294)] = 45253, - [SMALL_STATE(1295)] = 45336, - [SMALL_STATE(1296)] = 45419, - [SMALL_STATE(1297)] = 45494, - [SMALL_STATE(1298)] = 45575, - [SMALL_STATE(1299)] = 45656, - [SMALL_STATE(1300)] = 45724, - [SMALL_STATE(1301)] = 45804, - [SMALL_STATE(1302)] = 45884, - [SMALL_STATE(1303)] = 45964, - [SMALL_STATE(1304)] = 46044, - [SMALL_STATE(1305)] = 46124, - [SMALL_STATE(1306)] = 46204, - [SMALL_STATE(1307)] = 46284, - [SMALL_STATE(1308)] = 46364, - [SMALL_STATE(1309)] = 46444, - [SMALL_STATE(1310)] = 46524, - [SMALL_STATE(1311)] = 46604, - [SMALL_STATE(1312)] = 46672, - [SMALL_STATE(1313)] = 46752, - [SMALL_STATE(1314)] = 46832, - [SMALL_STATE(1315)] = 46912, - [SMALL_STATE(1316)] = 46992, - [SMALL_STATE(1317)] = 47072, - [SMALL_STATE(1318)] = 47152, - [SMALL_STATE(1319)] = 47232, - [SMALL_STATE(1320)] = 47312, - [SMALL_STATE(1321)] = 47392, - [SMALL_STATE(1322)] = 47472, - [SMALL_STATE(1323)] = 47552, - [SMALL_STATE(1324)] = 47632, - [SMALL_STATE(1325)] = 47712, - [SMALL_STATE(1326)] = 47792, - [SMALL_STATE(1327)] = 47872, - [SMALL_STATE(1328)] = 47952, - [SMALL_STATE(1329)] = 48032, - [SMALL_STATE(1330)] = 48112, - [SMALL_STATE(1331)] = 48192, - [SMALL_STATE(1332)] = 48272, - [SMALL_STATE(1333)] = 48352, - [SMALL_STATE(1334)] = 48432, - [SMALL_STATE(1335)] = 48512, - [SMALL_STATE(1336)] = 48577, - [SMALL_STATE(1337)] = 48642, - [SMALL_STATE(1338)] = 48707, - [SMALL_STATE(1339)] = 48772, - [SMALL_STATE(1340)] = 48837, - [SMALL_STATE(1341)] = 48877, - [SMALL_STATE(1342)] = 48917, - [SMALL_STATE(1343)] = 48957, - [SMALL_STATE(1344)] = 49009, - [SMALL_STATE(1345)] = 49061, - [SMALL_STATE(1346)] = 49091, - [SMALL_STATE(1347)] = 49121, - [SMALL_STATE(1348)] = 49161, - [SMALL_STATE(1349)] = 49203, - [SMALL_STATE(1350)] = 49232, - [SMALL_STATE(1351)] = 49261, - [SMALL_STATE(1352)] = 49290, - [SMALL_STATE(1353)] = 49319, - [SMALL_STATE(1354)] = 49348, - [SMALL_STATE(1355)] = 49385, - [SMALL_STATE(1356)] = 49414, - [SMALL_STATE(1357)] = 49443, - [SMALL_STATE(1358)] = 49480, - [SMALL_STATE(1359)] = 49509, - [SMALL_STATE(1360)] = 49541, - [SMALL_STATE(1361)] = 49567, - [SMALL_STATE(1362)] = 49599, - [SMALL_STATE(1363)] = 49625, - [SMALL_STATE(1364)] = 49679, - [SMALL_STATE(1365)] = 49705, - [SMALL_STATE(1366)] = 49759, - [SMALL_STATE(1367)] = 49791, - [SMALL_STATE(1368)] = 49816, - [SMALL_STATE(1369)] = 49839, - [SMALL_STATE(1370)] = 49863, - [SMALL_STATE(1371)] = 49887, - [SMALL_STATE(1372)] = 49931, - [SMALL_STATE(1373)] = 49953, - [SMALL_STATE(1374)] = 49975, - [SMALL_STATE(1375)] = 49997, - [SMALL_STATE(1376)] = 50019, - [SMALL_STATE(1377)] = 50043, - [SMALL_STATE(1378)] = 50067, - [SMALL_STATE(1379)] = 50091, - [SMALL_STATE(1380)] = 50137, - [SMALL_STATE(1381)] = 50161, - [SMALL_STATE(1382)] = 50205, - [SMALL_STATE(1383)] = 50229, - [SMALL_STATE(1384)] = 50259, - [SMALL_STATE(1385)] = 50304, - [SMALL_STATE(1386)] = 50327, - [SMALL_STATE(1387)] = 50348, - [SMALL_STATE(1388)] = 50373, - [SMALL_STATE(1389)] = 50394, - [SMALL_STATE(1390)] = 50419, - [SMALL_STATE(1391)] = 50442, - [SMALL_STATE(1392)] = 50467, - [SMALL_STATE(1393)] = 50490, - [SMALL_STATE(1394)] = 50515, - [SMALL_STATE(1395)] = 50538, - [SMALL_STATE(1396)] = 50561, - [SMALL_STATE(1397)] = 50586, - [SMALL_STATE(1398)] = 50611, - [SMALL_STATE(1399)] = 50632, - [SMALL_STATE(1400)] = 50655, - [SMALL_STATE(1401)] = 50682, - [SMALL_STATE(1402)] = 50705, - [SMALL_STATE(1403)] = 50728, - [SMALL_STATE(1404)] = 50749, - [SMALL_STATE(1405)] = 50770, - [SMALL_STATE(1406)] = 50790, - [SMALL_STATE(1407)] = 50810, - [SMALL_STATE(1408)] = 50830, - [SMALL_STATE(1409)] = 50850, - [SMALL_STATE(1410)] = 50870, - [SMALL_STATE(1411)] = 50890, - [SMALL_STATE(1412)] = 50910, - [SMALL_STATE(1413)] = 50930, - [SMALL_STATE(1414)] = 50950, - [SMALL_STATE(1415)] = 50970, - [SMALL_STATE(1416)] = 50990, - [SMALL_STATE(1417)] = 51010, - [SMALL_STATE(1418)] = 51030, - [SMALL_STATE(1419)] = 51050, - [SMALL_STATE(1420)] = 51070, - [SMALL_STATE(1421)] = 51090, - [SMALL_STATE(1422)] = 51110, - [SMALL_STATE(1423)] = 51130, - [SMALL_STATE(1424)] = 51150, - [SMALL_STATE(1425)] = 51170, - [SMALL_STATE(1426)] = 51190, - [SMALL_STATE(1427)] = 51210, - [SMALL_STATE(1428)] = 51230, - [SMALL_STATE(1429)] = 51252, - [SMALL_STATE(1430)] = 51272, - [SMALL_STATE(1431)] = 51294, - [SMALL_STATE(1432)] = 51314, - [SMALL_STATE(1433)] = 51334, - [SMALL_STATE(1434)] = 51358, - [SMALL_STATE(1435)] = 51378, - [SMALL_STATE(1436)] = 51400, - [SMALL_STATE(1437)] = 51425, - [SMALL_STATE(1438)] = 51450, - [SMALL_STATE(1439)] = 51473, - [SMALL_STATE(1440)] = 51496, - [SMALL_STATE(1441)] = 51521, - [SMALL_STATE(1442)] = 51546, - [SMALL_STATE(1443)] = 51569, - [SMALL_STATE(1444)] = 51592, - [SMALL_STATE(1445)] = 51615, - [SMALL_STATE(1446)] = 51638, - [SMALL_STATE(1447)] = 51661, - [SMALL_STATE(1448)] = 51684, - [SMALL_STATE(1449)] = 51709, - [SMALL_STATE(1450)] = 51732, - [SMALL_STATE(1451)] = 51755, - [SMALL_STATE(1452)] = 51778, - [SMALL_STATE(1453)] = 51803, - [SMALL_STATE(1454)] = 51824, - [SMALL_STATE(1455)] = 51849, - [SMALL_STATE(1456)] = 51870, - [SMALL_STATE(1457)] = 51891, - [SMALL_STATE(1458)] = 51926, - [SMALL_STATE(1459)] = 51949, - [SMALL_STATE(1460)] = 51974, - [SMALL_STATE(1461)] = 51994, - [SMALL_STATE(1462)] = 52014, - [SMALL_STATE(1463)] = 52046, - [SMALL_STATE(1464)] = 52078, - [SMALL_STATE(1465)] = 52098, - [SMALL_STATE(1466)] = 52130, - [SMALL_STATE(1467)] = 52162, - [SMALL_STATE(1468)] = 52182, - [SMALL_STATE(1469)] = 52202, - [SMALL_STATE(1470)] = 52222, - [SMALL_STATE(1471)] = 52248, + [SMALL_STATE(659)] = 0, + [SMALL_STATE(660)] = 129, + [SMALL_STATE(661)] = 258, + [SMALL_STATE(662)] = 387, + [SMALL_STATE(663)] = 516, + [SMALL_STATE(664)] = 645, + [SMALL_STATE(665)] = 774, + [SMALL_STATE(666)] = 903, + [SMALL_STATE(667)] = 1032, + [SMALL_STATE(668)] = 1161, + [SMALL_STATE(669)] = 1290, + [SMALL_STATE(670)] = 1419, + [SMALL_STATE(671)] = 1548, + [SMALL_STATE(672)] = 1677, + [SMALL_STATE(673)] = 1806, + [SMALL_STATE(674)] = 1935, + [SMALL_STATE(675)] = 2064, + [SMALL_STATE(676)] = 2193, + [SMALL_STATE(677)] = 2322, + [SMALL_STATE(678)] = 2451, + [SMALL_STATE(679)] = 2580, + [SMALL_STATE(680)] = 2709, + [SMALL_STATE(681)] = 2838, + [SMALL_STATE(682)] = 2967, + [SMALL_STATE(683)] = 3096, + [SMALL_STATE(684)] = 3225, + [SMALL_STATE(685)] = 3354, + [SMALL_STATE(686)] = 3483, + [SMALL_STATE(687)] = 3612, + [SMALL_STATE(688)] = 3741, + [SMALL_STATE(689)] = 3870, + [SMALL_STATE(690)] = 3999, + [SMALL_STATE(691)] = 4128, + [SMALL_STATE(692)] = 4257, + [SMALL_STATE(693)] = 4386, + [SMALL_STATE(694)] = 4515, + [SMALL_STATE(695)] = 4644, + [SMALL_STATE(696)] = 4773, + [SMALL_STATE(697)] = 4902, + [SMALL_STATE(698)] = 5031, + [SMALL_STATE(699)] = 5160, + [SMALL_STATE(700)] = 5289, + [SMALL_STATE(701)] = 5418, + [SMALL_STATE(702)] = 5547, + [SMALL_STATE(703)] = 5676, + [SMALL_STATE(704)] = 5805, + [SMALL_STATE(705)] = 5934, + [SMALL_STATE(706)] = 6063, + [SMALL_STATE(707)] = 6192, + [SMALL_STATE(708)] = 6321, + [SMALL_STATE(709)] = 6450, + [SMALL_STATE(710)] = 6579, + [SMALL_STATE(711)] = 6708, + [SMALL_STATE(712)] = 6837, + [SMALL_STATE(713)] = 6966, + [SMALL_STATE(714)] = 7095, + [SMALL_STATE(715)] = 7224, + [SMALL_STATE(716)] = 7353, + [SMALL_STATE(717)] = 7482, + [SMALL_STATE(718)] = 7611, + [SMALL_STATE(719)] = 7740, + [SMALL_STATE(720)] = 7869, + [SMALL_STATE(721)] = 7998, + [SMALL_STATE(722)] = 8127, + [SMALL_STATE(723)] = 8256, + [SMALL_STATE(724)] = 8385, + [SMALL_STATE(725)] = 8514, + [SMALL_STATE(726)] = 8643, + [SMALL_STATE(727)] = 8772, + [SMALL_STATE(728)] = 8901, + [SMALL_STATE(729)] = 9030, + [SMALL_STATE(730)] = 9159, + [SMALL_STATE(731)] = 9288, + [SMALL_STATE(732)] = 9417, + [SMALL_STATE(733)] = 9546, + [SMALL_STATE(734)] = 9675, + [SMALL_STATE(735)] = 9804, + [SMALL_STATE(736)] = 9933, + [SMALL_STATE(737)] = 10062, + [SMALL_STATE(738)] = 10191, + [SMALL_STATE(739)] = 10320, + [SMALL_STATE(740)] = 10449, + [SMALL_STATE(741)] = 10578, + [SMALL_STATE(742)] = 10707, + [SMALL_STATE(743)] = 10836, + [SMALL_STATE(744)] = 10965, + [SMALL_STATE(745)] = 11094, + [SMALL_STATE(746)] = 11223, + [SMALL_STATE(747)] = 11352, + [SMALL_STATE(748)] = 11481, + [SMALL_STATE(749)] = 11610, + [SMALL_STATE(750)] = 11739, + [SMALL_STATE(751)] = 11868, + [SMALL_STATE(752)] = 11997, + [SMALL_STATE(753)] = 12068, + [SMALL_STATE(754)] = 12197, + [SMALL_STATE(755)] = 12328, + [SMALL_STATE(756)] = 12457, + [SMALL_STATE(757)] = 12586, + [SMALL_STATE(758)] = 12715, + [SMALL_STATE(759)] = 12844, + [SMALL_STATE(760)] = 12973, + [SMALL_STATE(761)] = 13102, + [SMALL_STATE(762)] = 13231, + [SMALL_STATE(763)] = 13360, + [SMALL_STATE(764)] = 13489, + [SMALL_STATE(765)] = 13618, + [SMALL_STATE(766)] = 13747, + [SMALL_STATE(767)] = 13876, + [SMALL_STATE(768)] = 14005, + [SMALL_STATE(769)] = 14134, + [SMALL_STATE(770)] = 14200, + [SMALL_STATE(771)] = 14266, + [SMALL_STATE(772)] = 14332, + [SMALL_STATE(773)] = 14398, + [SMALL_STATE(774)] = 14460, + [SMALL_STATE(775)] = 14530, + [SMALL_STATE(776)] = 14597, + [SMALL_STATE(777)] = 14664, + [SMALL_STATE(778)] = 14720, + [SMALL_STATE(779)] = 14782, + [SMALL_STATE(780)] = 14838, + [SMALL_STATE(781)] = 14894, + [SMALL_STATE(782)] = 14950, + [SMALL_STATE(783)] = 15014, + [SMALL_STATE(784)] = 15070, + [SMALL_STATE(785)] = 15134, + [SMALL_STATE(786)] = 15194, + [SMALL_STATE(787)] = 15254, + [SMALL_STATE(788)] = 15314, + [SMALL_STATE(789)] = 15374, + [SMALL_STATE(790)] = 15438, + [SMALL_STATE(791)] = 15502, + [SMALL_STATE(792)] = 15557, + [SMALL_STATE(793)] = 15616, + [SMALL_STATE(794)] = 15673, + [SMALL_STATE(795)] = 15732, + [SMALL_STATE(796)] = 15791, + [SMALL_STATE(797)] = 15848, + [SMALL_STATE(798)] = 15905, + [SMALL_STATE(799)] = 15962, + [SMALL_STATE(800)] = 16016, + [SMALL_STATE(801)] = 16070, + [SMALL_STATE(802)] = 16124, + [SMALL_STATE(803)] = 16182, + [SMALL_STATE(804)] = 16236, + [SMALL_STATE(805)] = 16292, + [SMALL_STATE(806)] = 16348, + [SMALL_STATE(807)] = 16404, + [SMALL_STATE(808)] = 16458, + [SMALL_STATE(809)] = 16512, + [SMALL_STATE(810)] = 16568, + [SMALL_STATE(811)] = 16622, + [SMALL_STATE(812)] = 16676, + [SMALL_STATE(813)] = 16730, + [SMALL_STATE(814)] = 16784, + [SMALL_STATE(815)] = 16840, + [SMALL_STATE(816)] = 16896, + [SMALL_STATE(817)] = 16954, + [SMALL_STATE(818)] = 17010, + [SMALL_STATE(819)] = 17066, + [SMALL_STATE(820)] = 17120, + [SMALL_STATE(821)] = 17174, + [SMALL_STATE(822)] = 17232, + [SMALL_STATE(823)] = 17288, + [SMALL_STATE(824)] = 17342, + [SMALL_STATE(825)] = 17396, + [SMALL_STATE(826)] = 17450, + [SMALL_STATE(827)] = 17504, + [SMALL_STATE(828)] = 17558, + [SMALL_STATE(829)] = 17612, + [SMALL_STATE(830)] = 17666, + [SMALL_STATE(831)] = 17720, + [SMALL_STATE(832)] = 17774, + [SMALL_STATE(833)] = 17828, + [SMALL_STATE(834)] = 17882, + [SMALL_STATE(835)] = 17936, + [SMALL_STATE(836)] = 17990, + [SMALL_STATE(837)] = 18044, + [SMALL_STATE(838)] = 18098, + [SMALL_STATE(839)] = 18152, + [SMALL_STATE(840)] = 18206, + [SMALL_STATE(841)] = 18260, + [SMALL_STATE(842)] = 18314, + [SMALL_STATE(843)] = 18368, + [SMALL_STATE(844)] = 18424, + [SMALL_STATE(845)] = 18478, + [SMALL_STATE(846)] = 18532, + [SMALL_STATE(847)] = 18586, + [SMALL_STATE(848)] = 18640, + [SMALL_STATE(849)] = 18694, + [SMALL_STATE(850)] = 18748, + [SMALL_STATE(851)] = 18802, + [SMALL_STATE(852)] = 18856, + [SMALL_STATE(853)] = 18910, + [SMALL_STATE(854)] = 18964, + [SMALL_STATE(855)] = 19018, + [SMALL_STATE(856)] = 19074, + [SMALL_STATE(857)] = 19128, + [SMALL_STATE(858)] = 19182, + [SMALL_STATE(859)] = 19236, + [SMALL_STATE(860)] = 19290, + [SMALL_STATE(861)] = 19346, + [SMALL_STATE(862)] = 19400, + [SMALL_STATE(863)] = 19454, + [SMALL_STATE(864)] = 19508, + [SMALL_STATE(865)] = 19562, + [SMALL_STATE(866)] = 19616, + [SMALL_STATE(867)] = 19670, + [SMALL_STATE(868)] = 19724, + [SMALL_STATE(869)] = 19778, + [SMALL_STATE(870)] = 19832, + [SMALL_STATE(871)] = 19886, + [SMALL_STATE(872)] = 19942, + [SMALL_STATE(873)] = 19996, + [SMALL_STATE(874)] = 20050, + [SMALL_STATE(875)] = 20104, + [SMALL_STATE(876)] = 20158, + [SMALL_STATE(877)] = 20212, + [SMALL_STATE(878)] = 20266, + [SMALL_STATE(879)] = 20320, + [SMALL_STATE(880)] = 20374, + [SMALL_STATE(881)] = 20428, + [SMALL_STATE(882)] = 20482, + [SMALL_STATE(883)] = 20536, + [SMALL_STATE(884)] = 20590, + [SMALL_STATE(885)] = 20644, + [SMALL_STATE(886)] = 20698, + [SMALL_STATE(887)] = 20752, + [SMALL_STATE(888)] = 20806, + [SMALL_STATE(889)] = 20860, + [SMALL_STATE(890)] = 20914, + [SMALL_STATE(891)] = 20968, + [SMALL_STATE(892)] = 21022, + [SMALL_STATE(893)] = 21076, + [SMALL_STATE(894)] = 21130, + [SMALL_STATE(895)] = 21184, + [SMALL_STATE(896)] = 21238, + [SMALL_STATE(897)] = 21292, + [SMALL_STATE(898)] = 21346, + [SMALL_STATE(899)] = 21400, + [SMALL_STATE(900)] = 21454, + [SMALL_STATE(901)] = 21508, + [SMALL_STATE(902)] = 21562, + [SMALL_STATE(903)] = 21616, + [SMALL_STATE(904)] = 21670, + [SMALL_STATE(905)] = 21724, + [SMALL_STATE(906)] = 21778, + [SMALL_STATE(907)] = 21832, + [SMALL_STATE(908)] = 21886, + [SMALL_STATE(909)] = 21940, + [SMALL_STATE(910)] = 21994, + [SMALL_STATE(911)] = 22048, + [SMALL_STATE(912)] = 22102, + [SMALL_STATE(913)] = 22156, + [SMALL_STATE(914)] = 22210, + [SMALL_STATE(915)] = 22264, + [SMALL_STATE(916)] = 22318, + [SMALL_STATE(917)] = 22372, + [SMALL_STATE(918)] = 22426, + [SMALL_STATE(919)] = 22480, + [SMALL_STATE(920)] = 22534, + [SMALL_STATE(921)] = 22588, + [SMALL_STATE(922)] = 22642, + [SMALL_STATE(923)] = 22696, + [SMALL_STATE(924)] = 22750, + [SMALL_STATE(925)] = 22804, + [SMALL_STATE(926)] = 22858, + [SMALL_STATE(927)] = 22912, + [SMALL_STATE(928)] = 22966, + [SMALL_STATE(929)] = 23020, + [SMALL_STATE(930)] = 23074, + [SMALL_STATE(931)] = 23128, + [SMALL_STATE(932)] = 23182, + [SMALL_STATE(933)] = 23236, + [SMALL_STATE(934)] = 23290, + [SMALL_STATE(935)] = 23344, + [SMALL_STATE(936)] = 23398, + [SMALL_STATE(937)] = 23452, + [SMALL_STATE(938)] = 23506, + [SMALL_STATE(939)] = 23560, + [SMALL_STATE(940)] = 23614, + [SMALL_STATE(941)] = 23668, + [SMALL_STATE(942)] = 23722, + [SMALL_STATE(943)] = 23776, + [SMALL_STATE(944)] = 23830, + [SMALL_STATE(945)] = 23884, + [SMALL_STATE(946)] = 23938, + [SMALL_STATE(947)] = 23992, + [SMALL_STATE(948)] = 24046, + [SMALL_STATE(949)] = 24100, + [SMALL_STATE(950)] = 24154, + [SMALL_STATE(951)] = 24208, + [SMALL_STATE(952)] = 24262, + [SMALL_STATE(953)] = 24316, + [SMALL_STATE(954)] = 24370, + [SMALL_STATE(955)] = 24424, + [SMALL_STATE(956)] = 24478, + [SMALL_STATE(957)] = 24532, + [SMALL_STATE(958)] = 24586, + [SMALL_STATE(959)] = 24640, + [SMALL_STATE(960)] = 24694, + [SMALL_STATE(961)] = 24748, + [SMALL_STATE(962)] = 24802, + [SMALL_STATE(963)] = 24856, + [SMALL_STATE(964)] = 24910, + [SMALL_STATE(965)] = 24964, + [SMALL_STATE(966)] = 25018, + [SMALL_STATE(967)] = 25072, + [SMALL_STATE(968)] = 25126, + [SMALL_STATE(969)] = 25180, + [SMALL_STATE(970)] = 25234, + [SMALL_STATE(971)] = 25288, + [SMALL_STATE(972)] = 25342, + [SMALL_STATE(973)] = 25396, + [SMALL_STATE(974)] = 25450, + [SMALL_STATE(975)] = 25504, + [SMALL_STATE(976)] = 25558, + [SMALL_STATE(977)] = 25612, + [SMALL_STATE(978)] = 25666, + [SMALL_STATE(979)] = 25720, + [SMALL_STATE(980)] = 25774, + [SMALL_STATE(981)] = 25828, + [SMALL_STATE(982)] = 25882, + [SMALL_STATE(983)] = 25936, + [SMALL_STATE(984)] = 25990, + [SMALL_STATE(985)] = 26044, + [SMALL_STATE(986)] = 26098, + [SMALL_STATE(987)] = 26152, + [SMALL_STATE(988)] = 26206, + [SMALL_STATE(989)] = 26260, + [SMALL_STATE(990)] = 26314, + [SMALL_STATE(991)] = 26368, + [SMALL_STATE(992)] = 26422, + [SMALL_STATE(993)] = 26476, + [SMALL_STATE(994)] = 26530, + [SMALL_STATE(995)] = 26584, + [SMALL_STATE(996)] = 26638, + [SMALL_STATE(997)] = 26692, + [SMALL_STATE(998)] = 26746, + [SMALL_STATE(999)] = 26800, + [SMALL_STATE(1000)] = 26854, + [SMALL_STATE(1001)] = 26908, + [SMALL_STATE(1002)] = 26962, + [SMALL_STATE(1003)] = 27016, + [SMALL_STATE(1004)] = 27070, + [SMALL_STATE(1005)] = 27124, + [SMALL_STATE(1006)] = 27178, + [SMALL_STATE(1007)] = 27232, + [SMALL_STATE(1008)] = 27286, + [SMALL_STATE(1009)] = 27340, + [SMALL_STATE(1010)] = 27394, + [SMALL_STATE(1011)] = 27448, + [SMALL_STATE(1012)] = 27502, + [SMALL_STATE(1013)] = 27556, + [SMALL_STATE(1014)] = 27612, + [SMALL_STATE(1015)] = 27666, + [SMALL_STATE(1016)] = 27720, + [SMALL_STATE(1017)] = 27774, + [SMALL_STATE(1018)] = 27828, + [SMALL_STATE(1019)] = 27882, + [SMALL_STATE(1020)] = 27936, + [SMALL_STATE(1021)] = 27990, + [SMALL_STATE(1022)] = 28044, + [SMALL_STATE(1023)] = 28098, + [SMALL_STATE(1024)] = 28154, + [SMALL_STATE(1025)] = 28208, + [SMALL_STATE(1026)] = 28262, + [SMALL_STATE(1027)] = 28316, + [SMALL_STATE(1028)] = 28370, + [SMALL_STATE(1029)] = 28424, + [SMALL_STATE(1030)] = 28478, + [SMALL_STATE(1031)] = 28532, + [SMALL_STATE(1032)] = 28586, + [SMALL_STATE(1033)] = 28640, + [SMALL_STATE(1034)] = 28694, + [SMALL_STATE(1035)] = 28748, + [SMALL_STATE(1036)] = 28802, + [SMALL_STATE(1037)] = 28856, + [SMALL_STATE(1038)] = 28910, + [SMALL_STATE(1039)] = 28964, + [SMALL_STATE(1040)] = 29018, + [SMALL_STATE(1041)] = 29072, + [SMALL_STATE(1042)] = 29126, + [SMALL_STATE(1043)] = 29180, + [SMALL_STATE(1044)] = 29234, + [SMALL_STATE(1045)] = 29288, + [SMALL_STATE(1046)] = 29342, + [SMALL_STATE(1047)] = 29396, + [SMALL_STATE(1048)] = 29450, + [SMALL_STATE(1049)] = 29504, + [SMALL_STATE(1050)] = 29558, + [SMALL_STATE(1051)] = 29612, + [SMALL_STATE(1052)] = 29666, + [SMALL_STATE(1053)] = 29720, + [SMALL_STATE(1054)] = 29774, + [SMALL_STATE(1055)] = 29828, + [SMALL_STATE(1056)] = 29882, + [SMALL_STATE(1057)] = 29936, + [SMALL_STATE(1058)] = 29989, + [SMALL_STATE(1059)] = 30042, + [SMALL_STATE(1060)] = 30095, + [SMALL_STATE(1061)] = 30148, + [SMALL_STATE(1062)] = 30203, + [SMALL_STATE(1063)] = 30256, + [SMALL_STATE(1064)] = 30309, + [SMALL_STATE(1065)] = 30362, + [SMALL_STATE(1066)] = 30415, + [SMALL_STATE(1067)] = 30470, + [SMALL_STATE(1068)] = 30523, + [SMALL_STATE(1069)] = 30576, + [SMALL_STATE(1070)] = 30629, + [SMALL_STATE(1071)] = 30682, + [SMALL_STATE(1072)] = 30735, + [SMALL_STATE(1073)] = 30788, + [SMALL_STATE(1074)] = 30841, + [SMALL_STATE(1075)] = 30894, + [SMALL_STATE(1076)] = 30947, + [SMALL_STATE(1077)] = 31000, + [SMALL_STATE(1078)] = 31053, + [SMALL_STATE(1079)] = 31108, + [SMALL_STATE(1080)] = 31161, + [SMALL_STATE(1081)] = 31214, + [SMALL_STATE(1082)] = 31269, + [SMALL_STATE(1083)] = 31322, + [SMALL_STATE(1084)] = 31375, + [SMALL_STATE(1085)] = 31428, + [SMALL_STATE(1086)] = 31517, + [SMALL_STATE(1087)] = 31570, + [SMALL_STATE(1088)] = 31623, + [SMALL_STATE(1089)] = 31676, + [SMALL_STATE(1090)] = 31729, + [SMALL_STATE(1091)] = 31782, + [SMALL_STATE(1092)] = 31835, + [SMALL_STATE(1093)] = 31888, + [SMALL_STATE(1094)] = 31941, + [SMALL_STATE(1095)] = 31994, + [SMALL_STATE(1096)] = 32047, + [SMALL_STATE(1097)] = 32100, + [SMALL_STATE(1098)] = 32153, + [SMALL_STATE(1099)] = 32206, + [SMALL_STATE(1100)] = 32259, + [SMALL_STATE(1101)] = 32312, + [SMALL_STATE(1102)] = 32365, + [SMALL_STATE(1103)] = 32418, + [SMALL_STATE(1104)] = 32507, + [SMALL_STATE(1105)] = 32560, + [SMALL_STATE(1106)] = 32613, + [SMALL_STATE(1107)] = 32666, + [SMALL_STATE(1108)] = 32719, + [SMALL_STATE(1109)] = 32772, + [SMALL_STATE(1110)] = 32825, + [SMALL_STATE(1111)] = 32878, + [SMALL_STATE(1112)] = 32931, + [SMALL_STATE(1113)] = 32984, + [SMALL_STATE(1114)] = 33037, + [SMALL_STATE(1115)] = 33090, + [SMALL_STATE(1116)] = 33143, + [SMALL_STATE(1117)] = 33196, + [SMALL_STATE(1118)] = 33249, + [SMALL_STATE(1119)] = 33302, + [SMALL_STATE(1120)] = 33355, + [SMALL_STATE(1121)] = 33408, + [SMALL_STATE(1122)] = 33461, + [SMALL_STATE(1123)] = 33514, + [SMALL_STATE(1124)] = 33567, + [SMALL_STATE(1125)] = 33620, + [SMALL_STATE(1126)] = 33673, + [SMALL_STATE(1127)] = 33726, + [SMALL_STATE(1128)] = 33779, + [SMALL_STATE(1129)] = 33832, + [SMALL_STATE(1130)] = 33885, + [SMALL_STATE(1131)] = 33938, + [SMALL_STATE(1132)] = 33991, + [SMALL_STATE(1133)] = 34044, + [SMALL_STATE(1134)] = 34097, + [SMALL_STATE(1135)] = 34150, + [SMALL_STATE(1136)] = 34203, + [SMALL_STATE(1137)] = 34256, + [SMALL_STATE(1138)] = 34309, + [SMALL_STATE(1139)] = 34362, + [SMALL_STATE(1140)] = 34415, + [SMALL_STATE(1141)] = 34468, + [SMALL_STATE(1142)] = 34521, + [SMALL_STATE(1143)] = 34574, + [SMALL_STATE(1144)] = 34627, + [SMALL_STATE(1145)] = 34680, + [SMALL_STATE(1146)] = 34733, + [SMALL_STATE(1147)] = 34786, + [SMALL_STATE(1148)] = 34839, + [SMALL_STATE(1149)] = 34892, + [SMALL_STATE(1150)] = 34945, + [SMALL_STATE(1151)] = 34998, + [SMALL_STATE(1152)] = 35051, + [SMALL_STATE(1153)] = 35104, + [SMALL_STATE(1154)] = 35161, + [SMALL_STATE(1155)] = 35214, + [SMALL_STATE(1156)] = 35267, + [SMALL_STATE(1157)] = 35320, + [SMALL_STATE(1158)] = 35400, + [SMALL_STATE(1159)] = 35470, + [SMALL_STATE(1160)] = 35550, + [SMALL_STATE(1161)] = 35602, + [SMALL_STATE(1162)] = 35662, + [SMALL_STATE(1163)] = 35722, + [SMALL_STATE(1164)] = 35774, + [SMALL_STATE(1165)] = 35854, + [SMALL_STATE(1166)] = 35918, + [SMALL_STATE(1167)] = 35978, + [SMALL_STATE(1168)] = 36040, + [SMALL_STATE(1169)] = 36120, + [SMALL_STATE(1170)] = 36180, + [SMALL_STATE(1171)] = 36260, + [SMALL_STATE(1172)] = 36332, + [SMALL_STATE(1173)] = 36418, + [SMALL_STATE(1174)] = 36484, + [SMALL_STATE(1175)] = 36564, + [SMALL_STATE(1176)] = 36642, + [SMALL_STATE(1177)] = 36702, + [SMALL_STATE(1178)] = 36778, + [SMALL_STATE(1179)] = 36864, + [SMALL_STATE(1180)] = 36932, + [SMALL_STATE(1181)] = 36989, + [SMALL_STATE(1182)] = 37040, + [SMALL_STATE(1183)] = 37125, + [SMALL_STATE(1184)] = 37212, + [SMALL_STATE(1185)] = 37299, + [SMALL_STATE(1186)] = 37386, + [SMALL_STATE(1187)] = 37471, + [SMALL_STATE(1188)] = 37550, + [SMALL_STATE(1189)] = 37637, + [SMALL_STATE(1190)] = 37688, + [SMALL_STATE(1191)] = 37764, + [SMALL_STATE(1192)] = 37820, + [SMALL_STATE(1193)] = 37896, + [SMALL_STATE(1194)] = 37972, + [SMALL_STATE(1195)] = 38026, + [SMALL_STATE(1196)] = 38102, + [SMALL_STATE(1197)] = 38155, + [SMALL_STATE(1198)] = 38204, + [SMALL_STATE(1199)] = 38293, + [SMALL_STATE(1200)] = 38366, + [SMALL_STATE(1201)] = 38417, + [SMALL_STATE(1202)] = 38466, + [SMALL_STATE(1203)] = 38515, + [SMALL_STATE(1204)] = 38564, + [SMALL_STATE(1205)] = 38653, + [SMALL_STATE(1206)] = 38702, + [SMALL_STATE(1207)] = 38751, + [SMALL_STATE(1208)] = 38804, + [SMALL_STATE(1209)] = 38853, + [SMALL_STATE(1210)] = 38904, + [SMALL_STATE(1211)] = 38953, + [SMALL_STATE(1212)] = 39002, + [SMALL_STATE(1213)] = 39088, + [SMALL_STATE(1214)] = 39138, + [SMALL_STATE(1215)] = 39188, + [SMALL_STATE(1216)] = 39274, + [SMALL_STATE(1217)] = 39352, + [SMALL_STATE(1218)] = 39402, + [SMALL_STATE(1219)] = 39480, + [SMALL_STATE(1220)] = 39530, + [SMALL_STATE(1221)] = 39595, + [SMALL_STATE(1222)] = 39678, + [SMALL_STATE(1223)] = 39741, + [SMALL_STATE(1224)] = 39822, + [SMALL_STATE(1225)] = 39895, + [SMALL_STATE(1226)] = 39966, + [SMALL_STATE(1227)] = 40027, + [SMALL_STATE(1228)] = 40094, + [SMALL_STATE(1229)] = 40169, + [SMALL_STATE(1230)] = 40252, + [SMALL_STATE(1231)] = 40335, + [SMALL_STATE(1232)] = 40392, + [SMALL_STATE(1233)] = 40473, + [SMALL_STATE(1234)] = 40556, + [SMALL_STATE(1235)] = 40639, + [SMALL_STATE(1236)] = 40720, + [SMALL_STATE(1237)] = 40803, + [SMALL_STATE(1238)] = 40884, + [SMALL_STATE(1239)] = 40967, + [SMALL_STATE(1240)] = 41048, + [SMALL_STATE(1241)] = 41131, + [SMALL_STATE(1242)] = 41214, + [SMALL_STATE(1243)] = 41289, + [SMALL_STATE(1244)] = 41372, + [SMALL_STATE(1245)] = 41453, + [SMALL_STATE(1246)] = 41536, + [SMALL_STATE(1247)] = 41619, + [SMALL_STATE(1248)] = 41700, + [SMALL_STATE(1249)] = 41771, + [SMALL_STATE(1250)] = 41852, + [SMALL_STATE(1251)] = 41935, + [SMALL_STATE(1252)] = 42018, + [SMALL_STATE(1253)] = 42073, + [SMALL_STATE(1254)] = 42156, + [SMALL_STATE(1255)] = 42239, + [SMALL_STATE(1256)] = 42322, + [SMALL_STATE(1257)] = 42397, + [SMALL_STATE(1258)] = 42480, + [SMALL_STATE(1259)] = 42563, + [SMALL_STATE(1260)] = 42618, + [SMALL_STATE(1261)] = 42701, + [SMALL_STATE(1262)] = 42782, + [SMALL_STATE(1263)] = 42865, + [SMALL_STATE(1264)] = 42948, + [SMALL_STATE(1265)] = 43031, + [SMALL_STATE(1266)] = 43114, + [SMALL_STATE(1267)] = 43197, + [SMALL_STATE(1268)] = 43272, + [SMALL_STATE(1269)] = 43355, + [SMALL_STATE(1270)] = 43438, + [SMALL_STATE(1271)] = 43493, + [SMALL_STATE(1272)] = 43576, + [SMALL_STATE(1273)] = 43631, + [SMALL_STATE(1274)] = 43714, + [SMALL_STATE(1275)] = 43797, + [SMALL_STATE(1276)] = 43880, + [SMALL_STATE(1277)] = 43963, + [SMALL_STATE(1278)] = 44046, + [SMALL_STATE(1279)] = 44127, + [SMALL_STATE(1280)] = 44210, + [SMALL_STATE(1281)] = 44285, + [SMALL_STATE(1282)] = 44368, + [SMALL_STATE(1283)] = 44451, + [SMALL_STATE(1284)] = 44534, + [SMALL_STATE(1285)] = 44617, + [SMALL_STATE(1286)] = 44698, + [SMALL_STATE(1287)] = 44773, + [SMALL_STATE(1288)] = 44856, + [SMALL_STATE(1289)] = 44939, + [SMALL_STATE(1290)] = 45022, + [SMALL_STATE(1291)] = 45105, + [SMALL_STATE(1292)] = 45188, + [SMALL_STATE(1293)] = 45269, + [SMALL_STATE(1294)] = 45328, + [SMALL_STATE(1295)] = 45409, + [SMALL_STATE(1296)] = 45492, + [SMALL_STATE(1297)] = 45575, + [SMALL_STATE(1298)] = 45656, + [SMALL_STATE(1299)] = 45736, + [SMALL_STATE(1300)] = 45816, + [SMALL_STATE(1301)] = 45896, + [SMALL_STATE(1302)] = 45976, + [SMALL_STATE(1303)] = 46056, + [SMALL_STATE(1304)] = 46136, + [SMALL_STATE(1305)] = 46216, + [SMALL_STATE(1306)] = 46296, + [SMALL_STATE(1307)] = 46376, + [SMALL_STATE(1308)] = 46456, + [SMALL_STATE(1309)] = 46536, + [SMALL_STATE(1310)] = 46616, + [SMALL_STATE(1311)] = 46696, + [SMALL_STATE(1312)] = 46776, + [SMALL_STATE(1313)] = 46856, + [SMALL_STATE(1314)] = 46936, + [SMALL_STATE(1315)] = 47016, + [SMALL_STATE(1316)] = 47096, + [SMALL_STATE(1317)] = 47176, + [SMALL_STATE(1318)] = 47244, + [SMALL_STATE(1319)] = 47324, + [SMALL_STATE(1320)] = 47404, + [SMALL_STATE(1321)] = 47484, + [SMALL_STATE(1322)] = 47564, + [SMALL_STATE(1323)] = 47644, + [SMALL_STATE(1324)] = 47724, + [SMALL_STATE(1325)] = 47804, + [SMALL_STATE(1326)] = 47872, + [SMALL_STATE(1327)] = 47952, + [SMALL_STATE(1328)] = 48032, + [SMALL_STATE(1329)] = 48112, + [SMALL_STATE(1330)] = 48192, + [SMALL_STATE(1331)] = 48272, + [SMALL_STATE(1332)] = 48352, + [SMALL_STATE(1333)] = 48432, + [SMALL_STATE(1334)] = 48512, + [SMALL_STATE(1335)] = 48577, + [SMALL_STATE(1336)] = 48642, + [SMALL_STATE(1337)] = 48707, + [SMALL_STATE(1338)] = 48772, + [SMALL_STATE(1339)] = 48837, + [SMALL_STATE(1340)] = 48877, + [SMALL_STATE(1341)] = 48917, + [SMALL_STATE(1342)] = 48957, + [SMALL_STATE(1343)] = 49009, + [SMALL_STATE(1344)] = 49061, + [SMALL_STATE(1345)] = 49091, + [SMALL_STATE(1346)] = 49121, + [SMALL_STATE(1347)] = 49163, + [SMALL_STATE(1348)] = 49203, + [SMALL_STATE(1349)] = 49232, + [SMALL_STATE(1350)] = 49261, + [SMALL_STATE(1351)] = 49290, + [SMALL_STATE(1352)] = 49319, + [SMALL_STATE(1353)] = 49348, + [SMALL_STATE(1354)] = 49385, + [SMALL_STATE(1355)] = 49414, + [SMALL_STATE(1356)] = 49443, + [SMALL_STATE(1357)] = 49472, + [SMALL_STATE(1358)] = 49509, + [SMALL_STATE(1359)] = 49563, + [SMALL_STATE(1360)] = 49589, + [SMALL_STATE(1361)] = 49621, + [SMALL_STATE(1362)] = 49647, + [SMALL_STATE(1363)] = 49673, + [SMALL_STATE(1364)] = 49705, + [SMALL_STATE(1365)] = 49759, + [SMALL_STATE(1366)] = 49791, + [SMALL_STATE(1367)] = 49814, + [SMALL_STATE(1368)] = 49839, + [SMALL_STATE(1369)] = 49863, + [SMALL_STATE(1370)] = 49887, + [SMALL_STATE(1371)] = 49931, + [SMALL_STATE(1372)] = 49953, + [SMALL_STATE(1373)] = 49975, + [SMALL_STATE(1374)] = 50021, + [SMALL_STATE(1375)] = 50051, + [SMALL_STATE(1376)] = 50073, + [SMALL_STATE(1377)] = 50095, + [SMALL_STATE(1378)] = 50139, + [SMALL_STATE(1379)] = 50163, + [SMALL_STATE(1380)] = 50187, + [SMALL_STATE(1381)] = 50211, + [SMALL_STATE(1382)] = 50235, + [SMALL_STATE(1383)] = 50259, + [SMALL_STATE(1384)] = 50282, + [SMALL_STATE(1385)] = 50307, + [SMALL_STATE(1386)] = 50328, + [SMALL_STATE(1387)] = 50351, + [SMALL_STATE(1388)] = 50376, + [SMALL_STATE(1389)] = 50399, + [SMALL_STATE(1390)] = 50420, + [SMALL_STATE(1391)] = 50445, + [SMALL_STATE(1392)] = 50470, + [SMALL_STATE(1393)] = 50493, + [SMALL_STATE(1394)] = 50518, + [SMALL_STATE(1395)] = 50541, + [SMALL_STATE(1396)] = 50562, + [SMALL_STATE(1397)] = 50585, + [SMALL_STATE(1398)] = 50630, + [SMALL_STATE(1399)] = 50651, + [SMALL_STATE(1400)] = 50678, + [SMALL_STATE(1401)] = 50699, + [SMALL_STATE(1402)] = 50722, + [SMALL_STATE(1403)] = 50745, + [SMALL_STATE(1404)] = 50770, + [SMALL_STATE(1405)] = 50790, + [SMALL_STATE(1406)] = 50810, + [SMALL_STATE(1407)] = 50830, + [SMALL_STATE(1408)] = 50850, + [SMALL_STATE(1409)] = 50870, + [SMALL_STATE(1410)] = 50890, + [SMALL_STATE(1411)] = 50912, + [SMALL_STATE(1412)] = 50932, + [SMALL_STATE(1413)] = 50952, + [SMALL_STATE(1414)] = 50972, + [SMALL_STATE(1415)] = 50992, + [SMALL_STATE(1416)] = 51012, + [SMALL_STATE(1417)] = 51032, + [SMALL_STATE(1418)] = 51056, + [SMALL_STATE(1419)] = 51076, + [SMALL_STATE(1420)] = 51096, + [SMALL_STATE(1421)] = 51116, + [SMALL_STATE(1422)] = 51136, + [SMALL_STATE(1423)] = 51156, + [SMALL_STATE(1424)] = 51178, + [SMALL_STATE(1425)] = 51198, + [SMALL_STATE(1426)] = 51218, + [SMALL_STATE(1427)] = 51238, + [SMALL_STATE(1428)] = 51260, + [SMALL_STATE(1429)] = 51280, + [SMALL_STATE(1430)] = 51300, + [SMALL_STATE(1431)] = 51320, + [SMALL_STATE(1432)] = 51340, + [SMALL_STATE(1433)] = 51360, + [SMALL_STATE(1434)] = 51380, + [SMALL_STATE(1435)] = 51400, + [SMALL_STATE(1436)] = 51423, + [SMALL_STATE(1437)] = 51448, + [SMALL_STATE(1438)] = 51471, + [SMALL_STATE(1439)] = 51496, + [SMALL_STATE(1440)] = 51521, + [SMALL_STATE(1441)] = 51546, + [SMALL_STATE(1442)] = 51581, + [SMALL_STATE(1443)] = 51602, + [SMALL_STATE(1444)] = 51627, + [SMALL_STATE(1445)] = 51650, + [SMALL_STATE(1446)] = 51673, + [SMALL_STATE(1447)] = 51698, + [SMALL_STATE(1448)] = 51723, + [SMALL_STATE(1449)] = 51748, + [SMALL_STATE(1450)] = 51771, + [SMALL_STATE(1451)] = 51794, + [SMALL_STATE(1452)] = 51817, + [SMALL_STATE(1453)] = 51840, + [SMALL_STATE(1454)] = 51863, + [SMALL_STATE(1455)] = 51884, + [SMALL_STATE(1456)] = 51907, + [SMALL_STATE(1457)] = 51928, + [SMALL_STATE(1458)] = 51951, + [SMALL_STATE(1459)] = 51974, + [SMALL_STATE(1460)] = 51994, + [SMALL_STATE(1461)] = 52014, + [SMALL_STATE(1462)] = 52038, + [SMALL_STATE(1463)] = 52064, + [SMALL_STATE(1464)] = 52084, + [SMALL_STATE(1465)] = 52104, + [SMALL_STATE(1466)] = 52136, + [SMALL_STATE(1467)] = 52156, + [SMALL_STATE(1468)] = 52176, + [SMALL_STATE(1469)] = 52196, + [SMALL_STATE(1470)] = 52216, + [SMALL_STATE(1471)] = 52236, [SMALL_STATE(1472)] = 52268, [SMALL_STATE(1473)] = 52288, [SMALL_STATE(1474)] = 52308, - [SMALL_STATE(1475)] = 52340, - [SMALL_STATE(1476)] = 52360, - [SMALL_STATE(1477)] = 52380, - [SMALL_STATE(1478)] = 52412, - [SMALL_STATE(1479)] = 52432, - [SMALL_STATE(1480)] = 52456, - [SMALL_STATE(1481)] = 52480, - [SMALL_STATE(1482)] = 52504, - [SMALL_STATE(1483)] = 52524, - [SMALL_STATE(1484)] = 52544, - [SMALL_STATE(1485)] = 52564, + [SMALL_STATE(1475)] = 52328, + [SMALL_STATE(1476)] = 52348, + [SMALL_STATE(1477)] = 52368, + [SMALL_STATE(1478)] = 52388, + [SMALL_STATE(1479)] = 52408, + [SMALL_STATE(1480)] = 52428, + [SMALL_STATE(1481)] = 52460, + [SMALL_STATE(1482)] = 52480, + [SMALL_STATE(1483)] = 52512, + [SMALL_STATE(1484)] = 52536, + [SMALL_STATE(1485)] = 52556, [SMALL_STATE(1486)] = 52588, [SMALL_STATE(1487)] = 52620, - [SMALL_STATE(1488)] = 52640, - [SMALL_STATE(1489)] = 52672, - [SMALL_STATE(1490)] = 52692, - [SMALL_STATE(1491)] = 52712, - [SMALL_STATE(1492)] = 52732, - [SMALL_STATE(1493)] = 52752, - [SMALL_STATE(1494)] = 52772, - [SMALL_STATE(1495)] = 52792, - [SMALL_STATE(1496)] = 52812, - [SMALL_STATE(1497)] = 52832, - [SMALL_STATE(1498)] = 52852, - [SMALL_STATE(1499)] = 52872, - [SMALL_STATE(1500)] = 52892, - [SMALL_STATE(1501)] = 52912, - [SMALL_STATE(1502)] = 52932, - [SMALL_STATE(1503)] = 52952, - [SMALL_STATE(1504)] = 52978, - [SMALL_STATE(1505)] = 52998, - [SMALL_STATE(1506)] = 53025, - [SMALL_STATE(1507)] = 53058, - [SMALL_STATE(1508)] = 53091, - [SMALL_STATE(1509)] = 53120, - [SMALL_STATE(1510)] = 53145, - [SMALL_STATE(1511)] = 53176, - [SMALL_STATE(1512)] = 53199, - [SMALL_STATE(1513)] = 53222, - [SMALL_STATE(1514)] = 53245, - [SMALL_STATE(1515)] = 53278, - [SMALL_STATE(1516)] = 53311, - [SMALL_STATE(1517)] = 53337, - [SMALL_STATE(1518)] = 53367, - [SMALL_STATE(1519)] = 53389, - [SMALL_STATE(1520)] = 53411, - [SMALL_STATE(1521)] = 53433, - [SMALL_STATE(1522)] = 53455, - [SMALL_STATE(1523)] = 53485, - [SMALL_STATE(1524)] = 53511, - [SMALL_STATE(1525)] = 53541, - [SMALL_STATE(1526)] = 53571, - [SMALL_STATE(1527)] = 53601, - [SMALL_STATE(1528)] = 53631, - [SMALL_STATE(1529)] = 53657, - [SMALL_STATE(1530)] = 53683, - [SMALL_STATE(1531)] = 53705, - [SMALL_STATE(1532)] = 53735, - [SMALL_STATE(1533)] = 53761, - [SMALL_STATE(1534)] = 53791, - [SMALL_STATE(1535)] = 53817, - [SMALL_STATE(1536)] = 53843, - [SMALL_STATE(1537)] = 53869, - [SMALL_STATE(1538)] = 53901, - [SMALL_STATE(1539)] = 53931, - [SMALL_STATE(1540)] = 53961, - [SMALL_STATE(1541)] = 53991, - [SMALL_STATE(1542)] = 54023, - [SMALL_STATE(1543)] = 54053, - [SMALL_STATE(1544)] = 54083, - [SMALL_STATE(1545)] = 54109, - [SMALL_STATE(1546)] = 54139, - [SMALL_STATE(1547)] = 54161, - [SMALL_STATE(1548)] = 54193, - [SMALL_STATE(1549)] = 54223, - [SMALL_STATE(1550)] = 54253, - [SMALL_STATE(1551)] = 54283, - [SMALL_STATE(1552)] = 54309, - [SMALL_STATE(1553)] = 54339, - [SMALL_STATE(1554)] = 54369, - [SMALL_STATE(1555)] = 54399, - [SMALL_STATE(1556)] = 54425, - [SMALL_STATE(1557)] = 54455, - [SMALL_STATE(1558)] = 54487, - [SMALL_STATE(1559)] = 54502, - [SMALL_STATE(1560)] = 54529, - [SMALL_STATE(1561)] = 54556, - [SMALL_STATE(1562)] = 54585, - [SMALL_STATE(1563)] = 54604, - [SMALL_STATE(1564)] = 54631, - [SMALL_STATE(1565)] = 54658, - [SMALL_STATE(1566)] = 54681, - [SMALL_STATE(1567)] = 54700, - [SMALL_STATE(1568)] = 54723, - [SMALL_STATE(1569)] = 54752, - [SMALL_STATE(1570)] = 54771, - [SMALL_STATE(1571)] = 54800, - [SMALL_STATE(1572)] = 54829, - [SMALL_STATE(1573)] = 54852, - [SMALL_STATE(1574)] = 54871, - [SMALL_STATE(1575)] = 54898, - [SMALL_STATE(1576)] = 54925, - [SMALL_STATE(1577)] = 54944, - [SMALL_STATE(1578)] = 54967, - [SMALL_STATE(1579)] = 54986, - [SMALL_STATE(1580)] = 55009, - [SMALL_STATE(1581)] = 55036, - [SMALL_STATE(1582)] = 55063, - [SMALL_STATE(1583)] = 55082, - [SMALL_STATE(1584)] = 55101, - [SMALL_STATE(1585)] = 55128, - [SMALL_STATE(1586)] = 55147, - [SMALL_STATE(1587)] = 55174, - [SMALL_STATE(1588)] = 55201, - [SMALL_STATE(1589)] = 55228, - [SMALL_STATE(1590)] = 55255, - [SMALL_STATE(1591)] = 55284, - [SMALL_STATE(1592)] = 55305, - [SMALL_STATE(1593)] = 55324, - [SMALL_STATE(1594)] = 55349, - [SMALL_STATE(1595)] = 55370, - [SMALL_STATE(1596)] = 55397, - [SMALL_STATE(1597)] = 55426, - [SMALL_STATE(1598)] = 55453, - [SMALL_STATE(1599)] = 55472, - [SMALL_STATE(1600)] = 55486, - [SMALL_STATE(1601)] = 55512, - [SMALL_STATE(1602)] = 55534, - [SMALL_STATE(1603)] = 55560, - [SMALL_STATE(1604)] = 55586, - [SMALL_STATE(1605)] = 55612, - [SMALL_STATE(1606)] = 55638, - [SMALL_STATE(1607)] = 55654, - [SMALL_STATE(1608)] = 55680, - [SMALL_STATE(1609)] = 55706, - [SMALL_STATE(1610)] = 55722, - [SMALL_STATE(1611)] = 55738, - [SMALL_STATE(1612)] = 55764, - [SMALL_STATE(1613)] = 55790, - [SMALL_STATE(1614)] = 55806, - [SMALL_STATE(1615)] = 55822, - [SMALL_STATE(1616)] = 55848, - [SMALL_STATE(1617)] = 55862, - [SMALL_STATE(1618)] = 55888, - [SMALL_STATE(1619)] = 55914, - [SMALL_STATE(1620)] = 55928, - [SMALL_STATE(1621)] = 55944, - [SMALL_STATE(1622)] = 55970, - [SMALL_STATE(1623)] = 55994, - [SMALL_STATE(1624)] = 56020, - [SMALL_STATE(1625)] = 56036, + [SMALL_STATE(1488)] = 52644, + [SMALL_STATE(1489)] = 52664, + [SMALL_STATE(1490)] = 52684, + [SMALL_STATE(1491)] = 52704, + [SMALL_STATE(1492)] = 52728, + [SMALL_STATE(1493)] = 52748, + [SMALL_STATE(1494)] = 52780, + [SMALL_STATE(1495)] = 52806, + [SMALL_STATE(1496)] = 52826, + [SMALL_STATE(1497)] = 52846, + [SMALL_STATE(1498)] = 52866, + [SMALL_STATE(1499)] = 52898, + [SMALL_STATE(1500)] = 52918, + [SMALL_STATE(1501)] = 52938, + [SMALL_STATE(1502)] = 52958, + [SMALL_STATE(1503)] = 52978, + [SMALL_STATE(1504)] = 52998, + [SMALL_STATE(1505)] = 53021, + [SMALL_STATE(1506)] = 53044, + [SMALL_STATE(1507)] = 53077, + [SMALL_STATE(1508)] = 53110, + [SMALL_STATE(1509)] = 53137, + [SMALL_STATE(1510)] = 53170, + [SMALL_STATE(1511)] = 53199, + [SMALL_STATE(1512)] = 53222, + [SMALL_STATE(1513)] = 53247, + [SMALL_STATE(1514)] = 53278, + [SMALL_STATE(1515)] = 53311, + [SMALL_STATE(1516)] = 53343, + [SMALL_STATE(1517)] = 53369, + [SMALL_STATE(1518)] = 53391, + [SMALL_STATE(1519)] = 53413, + [SMALL_STATE(1520)] = 53443, + [SMALL_STATE(1521)] = 53465, + [SMALL_STATE(1522)] = 53495, + [SMALL_STATE(1523)] = 53525, + [SMALL_STATE(1524)] = 53555, + [SMALL_STATE(1525)] = 53587, + [SMALL_STATE(1526)] = 53617, + [SMALL_STATE(1527)] = 53647, + [SMALL_STATE(1528)] = 53673, + [SMALL_STATE(1529)] = 53703, + [SMALL_STATE(1530)] = 53733, + [SMALL_STATE(1531)] = 53763, + [SMALL_STATE(1532)] = 53793, + [SMALL_STATE(1533)] = 53823, + [SMALL_STATE(1534)] = 53849, + [SMALL_STATE(1535)] = 53875, + [SMALL_STATE(1536)] = 53905, + [SMALL_STATE(1537)] = 53935, + [SMALL_STATE(1538)] = 53957, + [SMALL_STATE(1539)] = 53983, + [SMALL_STATE(1540)] = 54005, + [SMALL_STATE(1541)] = 54035, + [SMALL_STATE(1542)] = 54065, + [SMALL_STATE(1543)] = 54091, + [SMALL_STATE(1544)] = 54113, + [SMALL_STATE(1545)] = 54139, + [SMALL_STATE(1546)] = 54169, + [SMALL_STATE(1547)] = 54199, + [SMALL_STATE(1548)] = 54229, + [SMALL_STATE(1549)] = 54259, + [SMALL_STATE(1550)] = 54285, + [SMALL_STATE(1551)] = 54311, + [SMALL_STATE(1552)] = 54337, + [SMALL_STATE(1553)] = 54369, + [SMALL_STATE(1554)] = 54401, + [SMALL_STATE(1555)] = 54427, + [SMALL_STATE(1556)] = 54457, + [SMALL_STATE(1557)] = 54487, + [SMALL_STATE(1558)] = 54514, + [SMALL_STATE(1559)] = 54537, + [SMALL_STATE(1560)] = 54556, + [SMALL_STATE(1561)] = 54583, + [SMALL_STATE(1562)] = 54610, + [SMALL_STATE(1563)] = 54629, + [SMALL_STATE(1564)] = 54658, + [SMALL_STATE(1565)] = 54677, + [SMALL_STATE(1566)] = 54706, + [SMALL_STATE(1567)] = 54733, + [SMALL_STATE(1568)] = 54756, + [SMALL_STATE(1569)] = 54783, + [SMALL_STATE(1570)] = 54810, + [SMALL_STATE(1571)] = 54839, + [SMALL_STATE(1572)] = 54868, + [SMALL_STATE(1573)] = 54897, + [SMALL_STATE(1574)] = 54918, + [SMALL_STATE(1575)] = 54933, + [SMALL_STATE(1576)] = 54960, + [SMALL_STATE(1577)] = 54983, + [SMALL_STATE(1578)] = 55010, + [SMALL_STATE(1579)] = 55037, + [SMALL_STATE(1580)] = 55056, + [SMALL_STATE(1581)] = 55083, + [SMALL_STATE(1582)] = 55110, + [SMALL_STATE(1583)] = 55129, + [SMALL_STATE(1584)] = 55158, + [SMALL_STATE(1585)] = 55185, + [SMALL_STATE(1586)] = 55204, + [SMALL_STATE(1587)] = 55227, + [SMALL_STATE(1588)] = 55254, + [SMALL_STATE(1589)] = 55281, + [SMALL_STATE(1590)] = 55300, + [SMALL_STATE(1591)] = 55327, + [SMALL_STATE(1592)] = 55346, + [SMALL_STATE(1593)] = 55369, + [SMALL_STATE(1594)] = 55390, + [SMALL_STATE(1595)] = 55415, + [SMALL_STATE(1596)] = 55434, + [SMALL_STATE(1597)] = 55453, + [SMALL_STATE(1598)] = 55472, + [SMALL_STATE(1599)] = 55486, + [SMALL_STATE(1600)] = 55500, + [SMALL_STATE(1601)] = 55514, + [SMALL_STATE(1602)] = 55530, + [SMALL_STATE(1603)] = 55554, + [SMALL_STATE(1604)] = 55568, + [SMALL_STATE(1605)] = 55584, + [SMALL_STATE(1606)] = 55600, + [SMALL_STATE(1607)] = 55624, + [SMALL_STATE(1608)] = 55646, + [SMALL_STATE(1609)] = 55670, + [SMALL_STATE(1610)] = 55696, + [SMALL_STATE(1611)] = 55712, + [SMALL_STATE(1612)] = 55728, + [SMALL_STATE(1613)] = 55754, + [SMALL_STATE(1614)] = 55768, + [SMALL_STATE(1615)] = 55794, + [SMALL_STATE(1616)] = 55820, + [SMALL_STATE(1617)] = 55846, + [SMALL_STATE(1618)] = 55862, + [SMALL_STATE(1619)] = 55888, + [SMALL_STATE(1620)] = 55904, + [SMALL_STATE(1621)] = 55930, + [SMALL_STATE(1622)] = 55956, + [SMALL_STATE(1623)] = 55982, + [SMALL_STATE(1624)] = 56008, + [SMALL_STATE(1625)] = 56024, [SMALL_STATE(1626)] = 56050, [SMALL_STATE(1627)] = 56076, [SMALL_STATE(1628)] = 56102, - [SMALL_STATE(1629)] = 56116, + [SMALL_STATE(1629)] = 56128, [SMALL_STATE(1630)] = 56142, - [SMALL_STATE(1631)] = 56168, + [SMALL_STATE(1631)] = 56156, [SMALL_STATE(1632)] = 56182, - [SMALL_STATE(1633)] = 56204, - [SMALL_STATE(1634)] = 56228, - [SMALL_STATE(1635)] = 56242, - [SMALL_STATE(1636)] = 56266, - [SMALL_STATE(1637)] = 56292, - [SMALL_STATE(1638)] = 56308, - [SMALL_STATE(1639)] = 56334, - [SMALL_STATE(1640)] = 56360, - [SMALL_STATE(1641)] = 56386, - [SMALL_STATE(1642)] = 56412, - [SMALL_STATE(1643)] = 56436, - [SMALL_STATE(1644)] = 56460, - [SMALL_STATE(1645)] = 56486, - [SMALL_STATE(1646)] = 56507, - [SMALL_STATE(1647)] = 56524, - [SMALL_STATE(1648)] = 56541, - [SMALL_STATE(1649)] = 56564, - [SMALL_STATE(1650)] = 56587, - [SMALL_STATE(1651)] = 56610, - [SMALL_STATE(1652)] = 56633, - [SMALL_STATE(1653)] = 56656, - [SMALL_STATE(1654)] = 56679, - [SMALL_STATE(1655)] = 56702, - [SMALL_STATE(1656)] = 56725, - [SMALL_STATE(1657)] = 56742, - [SMALL_STATE(1658)] = 56759, - [SMALL_STATE(1659)] = 56782, - [SMALL_STATE(1660)] = 56805, - [SMALL_STATE(1661)] = 56828, - [SMALL_STATE(1662)] = 56845, - [SMALL_STATE(1663)] = 56862, - [SMALL_STATE(1664)] = 56879, - [SMALL_STATE(1665)] = 56902, - [SMALL_STATE(1666)] = 56919, - [SMALL_STATE(1667)] = 56942, - [SMALL_STATE(1668)] = 56963, - [SMALL_STATE(1669)] = 56986, - [SMALL_STATE(1670)] = 57009, - [SMALL_STATE(1671)] = 57032, - [SMALL_STATE(1672)] = 57047, - [SMALL_STATE(1673)] = 57070, - [SMALL_STATE(1674)] = 57093, - [SMALL_STATE(1675)] = 57116, - [SMALL_STATE(1676)] = 57139, - [SMALL_STATE(1677)] = 57156, - [SMALL_STATE(1678)] = 57179, - [SMALL_STATE(1679)] = 57202, - [SMALL_STATE(1680)] = 57225, - [SMALL_STATE(1681)] = 57244, - [SMALL_STATE(1682)] = 57263, - [SMALL_STATE(1683)] = 57286, - [SMALL_STATE(1684)] = 57309, - [SMALL_STATE(1685)] = 57332, - [SMALL_STATE(1686)] = 57355, - [SMALL_STATE(1687)] = 57378, - [SMALL_STATE(1688)] = 57401, - [SMALL_STATE(1689)] = 57418, - [SMALL_STATE(1690)] = 57441, - [SMALL_STATE(1691)] = 57464, - [SMALL_STATE(1692)] = 57487, - [SMALL_STATE(1693)] = 57508, - [SMALL_STATE(1694)] = 57531, - [SMALL_STATE(1695)] = 57554, - [SMALL_STATE(1696)] = 57575, - [SMALL_STATE(1697)] = 57596, - [SMALL_STATE(1698)] = 57613, - [SMALL_STATE(1699)] = 57636, - [SMALL_STATE(1700)] = 57659, - [SMALL_STATE(1701)] = 57682, - [SMALL_STATE(1702)] = 57705, - [SMALL_STATE(1703)] = 57728, - [SMALL_STATE(1704)] = 57751, - [SMALL_STATE(1705)] = 57772, - [SMALL_STATE(1706)] = 57795, - [SMALL_STATE(1707)] = 57818, - [SMALL_STATE(1708)] = 57841, - [SMALL_STATE(1709)] = 57864, - [SMALL_STATE(1710)] = 57887, - [SMALL_STATE(1711)] = 57910, - [SMALL_STATE(1712)] = 57933, - [SMALL_STATE(1713)] = 57956, - [SMALL_STATE(1714)] = 57979, - [SMALL_STATE(1715)] = 58002, - [SMALL_STATE(1716)] = 58025, - [SMALL_STATE(1717)] = 58042, - [SMALL_STATE(1718)] = 58065, - [SMALL_STATE(1719)] = 58088, - [SMALL_STATE(1720)] = 58111, - [SMALL_STATE(1721)] = 58134, - [SMALL_STATE(1722)] = 58157, - [SMALL_STATE(1723)] = 58180, - [SMALL_STATE(1724)] = 58203, - [SMALL_STATE(1725)] = 58226, - [SMALL_STATE(1726)] = 58249, - [SMALL_STATE(1727)] = 58272, - [SMALL_STATE(1728)] = 58289, - [SMALL_STATE(1729)] = 58312, - [SMALL_STATE(1730)] = 58327, - [SMALL_STATE(1731)] = 58350, - [SMALL_STATE(1732)] = 58373, - [SMALL_STATE(1733)] = 58396, - [SMALL_STATE(1734)] = 58419, - [SMALL_STATE(1735)] = 58442, - [SMALL_STATE(1736)] = 58459, - [SMALL_STATE(1737)] = 58482, - [SMALL_STATE(1738)] = 58505, - [SMALL_STATE(1739)] = 58528, - [SMALL_STATE(1740)] = 58545, - [SMALL_STATE(1741)] = 58564, - [SMALL_STATE(1742)] = 58576, - [SMALL_STATE(1743)] = 58592, - [SMALL_STATE(1744)] = 58610, - [SMALL_STATE(1745)] = 58622, - [SMALL_STATE(1746)] = 58634, - [SMALL_STATE(1747)] = 58652, - [SMALL_STATE(1748)] = 58664, - [SMALL_STATE(1749)] = 58684, - [SMALL_STATE(1750)] = 58700, - [SMALL_STATE(1751)] = 58716, - [SMALL_STATE(1752)] = 58736, - [SMALL_STATE(1753)] = 58748, - [SMALL_STATE(1754)] = 58764, - [SMALL_STATE(1755)] = 58780, - [SMALL_STATE(1756)] = 58800, - [SMALL_STATE(1757)] = 58816, - [SMALL_STATE(1758)] = 58832, - [SMALL_STATE(1759)] = 58844, - [SMALL_STATE(1760)] = 58862, - [SMALL_STATE(1761)] = 58880, - [SMALL_STATE(1762)] = 58900, - [SMALL_STATE(1763)] = 58914, - [SMALL_STATE(1764)] = 58930, - [SMALL_STATE(1765)] = 58948, - [SMALL_STATE(1766)] = 58966, - [SMALL_STATE(1767)] = 58978, - [SMALL_STATE(1768)] = 58990, - [SMALL_STATE(1769)] = 59002, - [SMALL_STATE(1770)] = 59018, - [SMALL_STATE(1771)] = 59030, - [SMALL_STATE(1772)] = 59042, - [SMALL_STATE(1773)] = 59058, - [SMALL_STATE(1774)] = 59074, - [SMALL_STATE(1775)] = 59092, - [SMALL_STATE(1776)] = 59112, - [SMALL_STATE(1777)] = 59124, + [SMALL_STATE(1633)] = 56208, + [SMALL_STATE(1634)] = 56230, + [SMALL_STATE(1635)] = 56256, + [SMALL_STATE(1636)] = 56282, + [SMALL_STATE(1637)] = 56308, + [SMALL_STATE(1638)] = 56332, + [SMALL_STATE(1639)] = 56356, + [SMALL_STATE(1640)] = 56382, + [SMALL_STATE(1641)] = 56408, + [SMALL_STATE(1642)] = 56434, + [SMALL_STATE(1643)] = 56460, + [SMALL_STATE(1644)] = 56486, + [SMALL_STATE(1645)] = 56503, + [SMALL_STATE(1646)] = 56526, + [SMALL_STATE(1647)] = 56549, + [SMALL_STATE(1648)] = 56572, + [SMALL_STATE(1649)] = 56595, + [SMALL_STATE(1650)] = 56618, + [SMALL_STATE(1651)] = 56641, + [SMALL_STATE(1652)] = 56664, + [SMALL_STATE(1653)] = 56683, + [SMALL_STATE(1654)] = 56706, + [SMALL_STATE(1655)] = 56729, + [SMALL_STATE(1656)] = 56752, + [SMALL_STATE(1657)] = 56775, + [SMALL_STATE(1658)] = 56798, + [SMALL_STATE(1659)] = 56815, + [SMALL_STATE(1660)] = 56832, + [SMALL_STATE(1661)] = 56855, + [SMALL_STATE(1662)] = 56878, + [SMALL_STATE(1663)] = 56901, + [SMALL_STATE(1664)] = 56924, + [SMALL_STATE(1665)] = 56941, + [SMALL_STATE(1666)] = 56964, + [SMALL_STATE(1667)] = 56987, + [SMALL_STATE(1668)] = 57002, + [SMALL_STATE(1669)] = 57017, + [SMALL_STATE(1670)] = 57040, + [SMALL_STATE(1671)] = 57057, + [SMALL_STATE(1672)] = 57080, + [SMALL_STATE(1673)] = 57103, + [SMALL_STATE(1674)] = 57126, + [SMALL_STATE(1675)] = 57149, + [SMALL_STATE(1676)] = 57172, + [SMALL_STATE(1677)] = 57195, + [SMALL_STATE(1678)] = 57218, + [SMALL_STATE(1679)] = 57241, + [SMALL_STATE(1680)] = 57264, + [SMALL_STATE(1681)] = 57287, + [SMALL_STATE(1682)] = 57310, + [SMALL_STATE(1683)] = 57333, + [SMALL_STATE(1684)] = 57356, + [SMALL_STATE(1685)] = 57379, + [SMALL_STATE(1686)] = 57402, + [SMALL_STATE(1687)] = 57425, + [SMALL_STATE(1688)] = 57442, + [SMALL_STATE(1689)] = 57465, + [SMALL_STATE(1690)] = 57488, + [SMALL_STATE(1691)] = 57511, + [SMALL_STATE(1692)] = 57528, + [SMALL_STATE(1693)] = 57551, + [SMALL_STATE(1694)] = 57574, + [SMALL_STATE(1695)] = 57591, + [SMALL_STATE(1696)] = 57608, + [SMALL_STATE(1697)] = 57631, + [SMALL_STATE(1698)] = 57654, + [SMALL_STATE(1699)] = 57677, + [SMALL_STATE(1700)] = 57700, + [SMALL_STATE(1701)] = 57723, + [SMALL_STATE(1702)] = 57746, + [SMALL_STATE(1703)] = 57769, + [SMALL_STATE(1704)] = 57792, + [SMALL_STATE(1705)] = 57809, + [SMALL_STATE(1706)] = 57832, + [SMALL_STATE(1707)] = 57855, + [SMALL_STATE(1708)] = 57878, + [SMALL_STATE(1709)] = 57899, + [SMALL_STATE(1710)] = 57916, + [SMALL_STATE(1711)] = 57939, + [SMALL_STATE(1712)] = 57962, + [SMALL_STATE(1713)] = 57985, + [SMALL_STATE(1714)] = 58008, + [SMALL_STATE(1715)] = 58031, + [SMALL_STATE(1716)] = 58054, + [SMALL_STATE(1717)] = 58077, + [SMALL_STATE(1718)] = 58100, + [SMALL_STATE(1719)] = 58123, + [SMALL_STATE(1720)] = 58140, + [SMALL_STATE(1721)] = 58161, + [SMALL_STATE(1722)] = 58184, + [SMALL_STATE(1723)] = 58203, + [SMALL_STATE(1724)] = 58226, + [SMALL_STATE(1725)] = 58249, + [SMALL_STATE(1726)] = 58272, + [SMALL_STATE(1727)] = 58295, + [SMALL_STATE(1728)] = 58312, + [SMALL_STATE(1729)] = 58335, + [SMALL_STATE(1730)] = 58358, + [SMALL_STATE(1731)] = 58379, + [SMALL_STATE(1732)] = 58402, + [SMALL_STATE(1733)] = 58421, + [SMALL_STATE(1734)] = 58438, + [SMALL_STATE(1735)] = 58455, + [SMALL_STATE(1736)] = 58476, + [SMALL_STATE(1737)] = 58497, + [SMALL_STATE(1738)] = 58520, + [SMALL_STATE(1739)] = 58541, + [SMALL_STATE(1740)] = 58564, + [SMALL_STATE(1741)] = 58576, + [SMALL_STATE(1742)] = 58588, + [SMALL_STATE(1743)] = 58604, + [SMALL_STATE(1744)] = 58616, + [SMALL_STATE(1745)] = 58632, + [SMALL_STATE(1746)] = 58644, + [SMALL_STATE(1747)] = 58656, + [SMALL_STATE(1748)] = 58670, + [SMALL_STATE(1749)] = 58682, + [SMALL_STATE(1750)] = 58694, + [SMALL_STATE(1751)] = 58710, + [SMALL_STATE(1752)] = 58728, + [SMALL_STATE(1753)] = 58746, + [SMALL_STATE(1754)] = 58758, + [SMALL_STATE(1755)] = 58774, + [SMALL_STATE(1756)] = 58786, + [SMALL_STATE(1757)] = 58804, + [SMALL_STATE(1758)] = 58816, + [SMALL_STATE(1759)] = 58828, + [SMALL_STATE(1760)] = 58844, + [SMALL_STATE(1761)] = 58862, + [SMALL_STATE(1762)] = 58882, + [SMALL_STATE(1763)] = 58898, + [SMALL_STATE(1764)] = 58918, + [SMALL_STATE(1765)] = 58930, + [SMALL_STATE(1766)] = 58942, + [SMALL_STATE(1767)] = 58954, + [SMALL_STATE(1768)] = 58970, + [SMALL_STATE(1769)] = 58986, + [SMALL_STATE(1770)] = 59006, + [SMALL_STATE(1771)] = 59024, + [SMALL_STATE(1772)] = 59040, + [SMALL_STATE(1773)] = 59052, + [SMALL_STATE(1774)] = 59064, + [SMALL_STATE(1775)] = 59084, + [SMALL_STATE(1776)] = 59102, + [SMALL_STATE(1777)] = 59118, [SMALL_STATE(1778)] = 59136, - [SMALL_STATE(1779)] = 59148, - [SMALL_STATE(1780)] = 59160, - [SMALL_STATE(1781)] = 59172, - [SMALL_STATE(1782)] = 59188, - [SMALL_STATE(1783)] = 59204, - [SMALL_STATE(1784)] = 59216, - [SMALL_STATE(1785)] = 59228, - [SMALL_STATE(1786)] = 59240, - [SMALL_STATE(1787)] = 59254, - [SMALL_STATE(1788)] = 59272, - [SMALL_STATE(1789)] = 59292, - [SMALL_STATE(1790)] = 59304, - [SMALL_STATE(1791)] = 59316, - [SMALL_STATE(1792)] = 59333, - [SMALL_STATE(1793)] = 59348, - [SMALL_STATE(1794)] = 59363, - [SMALL_STATE(1795)] = 59376, - [SMALL_STATE(1796)] = 59389, - [SMALL_STATE(1797)] = 59404, - [SMALL_STATE(1798)] = 59421, - [SMALL_STATE(1799)] = 59438, - [SMALL_STATE(1800)] = 59455, - [SMALL_STATE(1801)] = 59472, - [SMALL_STATE(1802)] = 59489, - [SMALL_STATE(1803)] = 59506, - [SMALL_STATE(1804)] = 59523, - [SMALL_STATE(1805)] = 59540, - [SMALL_STATE(1806)] = 59557, - [SMALL_STATE(1807)] = 59574, - [SMALL_STATE(1808)] = 59589, - [SMALL_STATE(1809)] = 59606, - [SMALL_STATE(1810)] = 59623, - [SMALL_STATE(1811)] = 59640, - [SMALL_STATE(1812)] = 59657, - [SMALL_STATE(1813)] = 59674, - [SMALL_STATE(1814)] = 59691, - [SMALL_STATE(1815)] = 59708, - [SMALL_STATE(1816)] = 59725, - [SMALL_STATE(1817)] = 59738, - [SMALL_STATE(1818)] = 59755, - [SMALL_STATE(1819)] = 59770, - [SMALL_STATE(1820)] = 59787, - [SMALL_STATE(1821)] = 59804, - [SMALL_STATE(1822)] = 59821, - [SMALL_STATE(1823)] = 59838, - [SMALL_STATE(1824)] = 59855, - [SMALL_STATE(1825)] = 59872, - [SMALL_STATE(1826)] = 59889, - [SMALL_STATE(1827)] = 59904, - [SMALL_STATE(1828)] = 59919, - [SMALL_STATE(1829)] = 59936, - [SMALL_STATE(1830)] = 59953, - [SMALL_STATE(1831)] = 59970, - [SMALL_STATE(1832)] = 59987, - [SMALL_STATE(1833)] = 60004, - [SMALL_STATE(1834)] = 60019, - [SMALL_STATE(1835)] = 60036, - [SMALL_STATE(1836)] = 60053, - [SMALL_STATE(1837)] = 60070, - [SMALL_STATE(1838)] = 60085, - [SMALL_STATE(1839)] = 60102, - [SMALL_STATE(1840)] = 60117, - [SMALL_STATE(1841)] = 60132, - [SMALL_STATE(1842)] = 60149, - [SMALL_STATE(1843)] = 60166, - [SMALL_STATE(1844)] = 60183, - [SMALL_STATE(1845)] = 60198, - [SMALL_STATE(1846)] = 60215, - [SMALL_STATE(1847)] = 60230, - [SMALL_STATE(1848)] = 60243, - [SMALL_STATE(1849)] = 60260, - [SMALL_STATE(1850)] = 60277, - [SMALL_STATE(1851)] = 60294, - [SMALL_STATE(1852)] = 60311, - [SMALL_STATE(1853)] = 60326, - [SMALL_STATE(1854)] = 60343, - [SMALL_STATE(1855)] = 60360, - [SMALL_STATE(1856)] = 60377, - [SMALL_STATE(1857)] = 60392, - [SMALL_STATE(1858)] = 60409, - [SMALL_STATE(1859)] = 60424, - [SMALL_STATE(1860)] = 60439, - [SMALL_STATE(1861)] = 60454, - [SMALL_STATE(1862)] = 60471, - [SMALL_STATE(1863)] = 60488, - [SMALL_STATE(1864)] = 60503, - [SMALL_STATE(1865)] = 60520, - [SMALL_STATE(1866)] = 60535, - [SMALL_STATE(1867)] = 60550, - [SMALL_STATE(1868)] = 60567, - [SMALL_STATE(1869)] = 60584, - [SMALL_STATE(1870)] = 60601, - [SMALL_STATE(1871)] = 60616, - [SMALL_STATE(1872)] = 60633, - [SMALL_STATE(1873)] = 60648, - [SMALL_STATE(1874)] = 60663, - [SMALL_STATE(1875)] = 60676, - [SMALL_STATE(1876)] = 60693, - [SMALL_STATE(1877)] = 60708, - [SMALL_STATE(1878)] = 60725, - [SMALL_STATE(1879)] = 60738, - [SMALL_STATE(1880)] = 60753, - [SMALL_STATE(1881)] = 60770, - [SMALL_STATE(1882)] = 60787, - [SMALL_STATE(1883)] = 60804, - [SMALL_STATE(1884)] = 60821, - [SMALL_STATE(1885)] = 60838, - [SMALL_STATE(1886)] = 60855, - [SMALL_STATE(1887)] = 60868, - [SMALL_STATE(1888)] = 60881, - [SMALL_STATE(1889)] = 60898, - [SMALL_STATE(1890)] = 60913, - [SMALL_STATE(1891)] = 60930, - [SMALL_STATE(1892)] = 60943, - [SMALL_STATE(1893)] = 60960, - [SMALL_STATE(1894)] = 60973, - [SMALL_STATE(1895)] = 60988, - [SMALL_STATE(1896)] = 61000, - [SMALL_STATE(1897)] = 61010, - [SMALL_STATE(1898)] = 61024, - [SMALL_STATE(1899)] = 61038, - [SMALL_STATE(1900)] = 61052, - [SMALL_STATE(1901)] = 61066, - [SMALL_STATE(1902)] = 61080, - [SMALL_STATE(1903)] = 61090, - [SMALL_STATE(1904)] = 61100, - [SMALL_STATE(1905)] = 61114, - [SMALL_STATE(1906)] = 61128, - [SMALL_STATE(1907)] = 61142, - [SMALL_STATE(1908)] = 61156, - [SMALL_STATE(1909)] = 61170, - [SMALL_STATE(1910)] = 61182, - [SMALL_STATE(1911)] = 61192, - [SMALL_STATE(1912)] = 61206, - [SMALL_STATE(1913)] = 61216, - [SMALL_STATE(1914)] = 61230, - [SMALL_STATE(1915)] = 61244, - [SMALL_STATE(1916)] = 61258, - [SMALL_STATE(1917)] = 61272, - [SMALL_STATE(1918)] = 61286, - [SMALL_STATE(1919)] = 61300, - [SMALL_STATE(1920)] = 61314, - [SMALL_STATE(1921)] = 61328, - [SMALL_STATE(1922)] = 61338, - [SMALL_STATE(1923)] = 61352, - [SMALL_STATE(1924)] = 61366, - [SMALL_STATE(1925)] = 61378, - [SMALL_STATE(1926)] = 61390, - [SMALL_STATE(1927)] = 61402, - [SMALL_STATE(1928)] = 61416, - [SMALL_STATE(1929)] = 61430, - [SMALL_STATE(1930)] = 61444, - [SMALL_STATE(1931)] = 61456, - [SMALL_STATE(1932)] = 61470, - [SMALL_STATE(1933)] = 61484, - [SMALL_STATE(1934)] = 61498, - [SMALL_STATE(1935)] = 61512, - [SMALL_STATE(1936)] = 61526, - [SMALL_STATE(1937)] = 61538, - [SMALL_STATE(1938)] = 61550, - [SMALL_STATE(1939)] = 61564, - [SMALL_STATE(1940)] = 61578, - [SMALL_STATE(1941)] = 61592, - [SMALL_STATE(1942)] = 61606, - [SMALL_STATE(1943)] = 61620, - [SMALL_STATE(1944)] = 61632, - [SMALL_STATE(1945)] = 61646, - [SMALL_STATE(1946)] = 61660, - [SMALL_STATE(1947)] = 61674, - [SMALL_STATE(1948)] = 61684, - [SMALL_STATE(1949)] = 61698, - [SMALL_STATE(1950)] = 61710, - [SMALL_STATE(1951)] = 61722, - [SMALL_STATE(1952)] = 61736, - [SMALL_STATE(1953)] = 61750, - [SMALL_STATE(1954)] = 61760, - [SMALL_STATE(1955)] = 61770, - [SMALL_STATE(1956)] = 61784, - [SMALL_STATE(1957)] = 61794, - [SMALL_STATE(1958)] = 61804, - [SMALL_STATE(1959)] = 61818, - [SMALL_STATE(1960)] = 61830, - [SMALL_STATE(1961)] = 61844, - [SMALL_STATE(1962)] = 61858, - [SMALL_STATE(1963)] = 61872, - [SMALL_STATE(1964)] = 61886, - [SMALL_STATE(1965)] = 61900, - [SMALL_STATE(1966)] = 61914, - [SMALL_STATE(1967)] = 61928, - [SMALL_STATE(1968)] = 61942, - [SMALL_STATE(1969)] = 61956, - [SMALL_STATE(1970)] = 61970, - [SMALL_STATE(1971)] = 61982, - [SMALL_STATE(1972)] = 61992, - [SMALL_STATE(1973)] = 62006, - [SMALL_STATE(1974)] = 62016, + [SMALL_STATE(1779)] = 59156, + [SMALL_STATE(1780)] = 59172, + [SMALL_STATE(1781)] = 59188, + [SMALL_STATE(1782)] = 59208, + [SMALL_STATE(1783)] = 59222, + [SMALL_STATE(1784)] = 59240, + [SMALL_STATE(1785)] = 59252, + [SMALL_STATE(1786)] = 59268, + [SMALL_STATE(1787)] = 59280, + [SMALL_STATE(1788)] = 59292, + [SMALL_STATE(1789)] = 59304, + [SMALL_STATE(1790)] = 59316, + [SMALL_STATE(1791)] = 59333, + [SMALL_STATE(1792)] = 59348, + [SMALL_STATE(1793)] = 59365, + [SMALL_STATE(1794)] = 59382, + [SMALL_STATE(1795)] = 59397, + [SMALL_STATE(1796)] = 59414, + [SMALL_STATE(1797)] = 59427, + [SMALL_STATE(1798)] = 59444, + [SMALL_STATE(1799)] = 59461, + [SMALL_STATE(1800)] = 59478, + [SMALL_STATE(1801)] = 59495, + [SMALL_STATE(1802)] = 59510, + [SMALL_STATE(1803)] = 59527, + [SMALL_STATE(1804)] = 59544, + [SMALL_STATE(1805)] = 59561, + [SMALL_STATE(1806)] = 59578, + [SMALL_STATE(1807)] = 59595, + [SMALL_STATE(1808)] = 59612, + [SMALL_STATE(1809)] = 59627, + [SMALL_STATE(1810)] = 59644, + [SMALL_STATE(1811)] = 59659, + [SMALL_STATE(1812)] = 59676, + [SMALL_STATE(1813)] = 59691, + [SMALL_STATE(1814)] = 59708, + [SMALL_STATE(1815)] = 59725, + [SMALL_STATE(1816)] = 59742, + [SMALL_STATE(1817)] = 59759, + [SMALL_STATE(1818)] = 59776, + [SMALL_STATE(1819)] = 59791, + [SMALL_STATE(1820)] = 59808, + [SMALL_STATE(1821)] = 59825, + [SMALL_STATE(1822)] = 59840, + [SMALL_STATE(1823)] = 59857, + [SMALL_STATE(1824)] = 59874, + [SMALL_STATE(1825)] = 59891, + [SMALL_STATE(1826)] = 59908, + [SMALL_STATE(1827)] = 59925, + [SMALL_STATE(1828)] = 59942, + [SMALL_STATE(1829)] = 59959, + [SMALL_STATE(1830)] = 59976, + [SMALL_STATE(1831)] = 59993, + [SMALL_STATE(1832)] = 60008, + [SMALL_STATE(1833)] = 60021, + [SMALL_STATE(1834)] = 60034, + [SMALL_STATE(1835)] = 60051, + [SMALL_STATE(1836)] = 60068, + [SMALL_STATE(1837)] = 60083, + [SMALL_STATE(1838)] = 60100, + [SMALL_STATE(1839)] = 60117, + [SMALL_STATE(1840)] = 60132, + [SMALL_STATE(1841)] = 60149, + [SMALL_STATE(1842)] = 60164, + [SMALL_STATE(1843)] = 60177, + [SMALL_STATE(1844)] = 60190, + [SMALL_STATE(1845)] = 60207, + [SMALL_STATE(1846)] = 60224, + [SMALL_STATE(1847)] = 60239, + [SMALL_STATE(1848)] = 60254, + [SMALL_STATE(1849)] = 60271, + [SMALL_STATE(1850)] = 60288, + [SMALL_STATE(1851)] = 60305, + [SMALL_STATE(1852)] = 60322, + [SMALL_STATE(1853)] = 60339, + [SMALL_STATE(1854)] = 60354, + [SMALL_STATE(1855)] = 60367, + [SMALL_STATE(1856)] = 60382, + [SMALL_STATE(1857)] = 60399, + [SMALL_STATE(1858)] = 60416, + [SMALL_STATE(1859)] = 60433, + [SMALL_STATE(1860)] = 60448, + [SMALL_STATE(1861)] = 60465, + [SMALL_STATE(1862)] = 60482, + [SMALL_STATE(1863)] = 60499, + [SMALL_STATE(1864)] = 60514, + [SMALL_STATE(1865)] = 60531, + [SMALL_STATE(1866)] = 60548, + [SMALL_STATE(1867)] = 60561, + [SMALL_STATE(1868)] = 60574, + [SMALL_STATE(1869)] = 60589, + [SMALL_STATE(1870)] = 60606, + [SMALL_STATE(1871)] = 60619, + [SMALL_STATE(1872)] = 60634, + [SMALL_STATE(1873)] = 60651, + [SMALL_STATE(1874)] = 60664, + [SMALL_STATE(1875)] = 60681, + [SMALL_STATE(1876)] = 60696, + [SMALL_STATE(1877)] = 60711, + [SMALL_STATE(1878)] = 60728, + [SMALL_STATE(1879)] = 60745, + [SMALL_STATE(1880)] = 60762, + [SMALL_STATE(1881)] = 60777, + [SMALL_STATE(1882)] = 60792, + [SMALL_STATE(1883)] = 60809, + [SMALL_STATE(1884)] = 60824, + [SMALL_STATE(1885)] = 60841, + [SMALL_STATE(1886)] = 60856, + [SMALL_STATE(1887)] = 60873, + [SMALL_STATE(1888)] = 60888, + [SMALL_STATE(1889)] = 60905, + [SMALL_STATE(1890)] = 60922, + [SMALL_STATE(1891)] = 60939, + [SMALL_STATE(1892)] = 60956, + [SMALL_STATE(1893)] = 60973, + [SMALL_STATE(1894)] = 60988, + [SMALL_STATE(1895)] = 61002, + [SMALL_STATE(1896)] = 61016, + [SMALL_STATE(1897)] = 61026, + [SMALL_STATE(1898)] = 61040, + [SMALL_STATE(1899)] = 61054, + [SMALL_STATE(1900)] = 61068, + [SMALL_STATE(1901)] = 61082, + [SMALL_STATE(1902)] = 61096, + [SMALL_STATE(1903)] = 61110, + [SMALL_STATE(1904)] = 61120, + [SMALL_STATE(1905)] = 61134, + [SMALL_STATE(1906)] = 61148, + [SMALL_STATE(1907)] = 61162, + [SMALL_STATE(1908)] = 61176, + [SMALL_STATE(1909)] = 61190, + [SMALL_STATE(1910)] = 61204, + [SMALL_STATE(1911)] = 61214, + [SMALL_STATE(1912)] = 61224, + [SMALL_STATE(1913)] = 61234, + [SMALL_STATE(1914)] = 61248, + [SMALL_STATE(1915)] = 61262, + [SMALL_STATE(1916)] = 61276, + [SMALL_STATE(1917)] = 61290, + [SMALL_STATE(1918)] = 61304, + [SMALL_STATE(1919)] = 61318, + [SMALL_STATE(1920)] = 61328, + [SMALL_STATE(1921)] = 61340, + [SMALL_STATE(1922)] = 61354, + [SMALL_STATE(1923)] = 61368, + [SMALL_STATE(1924)] = 61382, + [SMALL_STATE(1925)] = 61396, + [SMALL_STATE(1926)] = 61408, + [SMALL_STATE(1927)] = 61418, + [SMALL_STATE(1928)] = 61430, + [SMALL_STATE(1929)] = 61444, + [SMALL_STATE(1930)] = 61458, + [SMALL_STATE(1931)] = 61470, + [SMALL_STATE(1932)] = 61484, + [SMALL_STATE(1933)] = 61498, + [SMALL_STATE(1934)] = 61510, + [SMALL_STATE(1935)] = 61522, + [SMALL_STATE(1936)] = 61532, + [SMALL_STATE(1937)] = 61544, + [SMALL_STATE(1938)] = 61556, + [SMALL_STATE(1939)] = 61570, + [SMALL_STATE(1940)] = 61584, + [SMALL_STATE(1941)] = 61598, + [SMALL_STATE(1942)] = 61612, + [SMALL_STATE(1943)] = 61626, + [SMALL_STATE(1944)] = 61640, + [SMALL_STATE(1945)] = 61654, + [SMALL_STATE(1946)] = 61668, + [SMALL_STATE(1947)] = 61678, + [SMALL_STATE(1948)] = 61688, + [SMALL_STATE(1949)] = 61702, + [SMALL_STATE(1950)] = 61716, + [SMALL_STATE(1951)] = 61730, + [SMALL_STATE(1952)] = 61742, + [SMALL_STATE(1953)] = 61756, + [SMALL_STATE(1954)] = 61770, + [SMALL_STATE(1955)] = 61780, + [SMALL_STATE(1956)] = 61794, + [SMALL_STATE(1957)] = 61806, + [SMALL_STATE(1958)] = 61820, + [SMALL_STATE(1959)] = 61834, + [SMALL_STATE(1960)] = 61844, + [SMALL_STATE(1961)] = 61858, + [SMALL_STATE(1962)] = 61868, + [SMALL_STATE(1963)] = 61878, + [SMALL_STATE(1964)] = 61888, + [SMALL_STATE(1965)] = 61898, + [SMALL_STATE(1966)] = 61912, + [SMALL_STATE(1967)] = 61922, + [SMALL_STATE(1968)] = 61936, + [SMALL_STATE(1969)] = 61946, + [SMALL_STATE(1970)] = 61960, + [SMALL_STATE(1971)] = 61974, + [SMALL_STATE(1972)] = 61988, + [SMALL_STATE(1973)] = 61998, + [SMALL_STATE(1974)] = 62012, [SMALL_STATE(1975)] = 62026, - [SMALL_STATE(1976)] = 62040, - [SMALL_STATE(1977)] = 62050, + [SMALL_STATE(1976)] = 62038, + [SMALL_STATE(1977)] = 62052, [SMALL_STATE(1978)] = 62064, - [SMALL_STATE(1979)] = 62078, - [SMALL_STATE(1980)] = 62092, + [SMALL_STATE(1979)] = 62074, + [SMALL_STATE(1980)] = 62088, [SMALL_STATE(1981)] = 62102, [SMALL_STATE(1982)] = 62116, [SMALL_STATE(1983)] = 62130, - [SMALL_STATE(1984)] = 62144, - [SMALL_STATE(1985)] = 62158, - [SMALL_STATE(1986)] = 62172, - [SMALL_STATE(1987)] = 62186, - [SMALL_STATE(1988)] = 62200, - [SMALL_STATE(1989)] = 62212, - [SMALL_STATE(1990)] = 62224, - [SMALL_STATE(1991)] = 62238, - [SMALL_STATE(1992)] = 62250, - [SMALL_STATE(1993)] = 62264, + [SMALL_STATE(1984)] = 62142, + [SMALL_STATE(1985)] = 62156, + [SMALL_STATE(1986)] = 62170, + [SMALL_STATE(1987)] = 62184, + [SMALL_STATE(1988)] = 62196, + [SMALL_STATE(1989)] = 62206, + [SMALL_STATE(1990)] = 62220, + [SMALL_STATE(1991)] = 62234, + [SMALL_STATE(1992)] = 62248, + [SMALL_STATE(1993)] = 62260, [SMALL_STATE(1994)] = 62274, - [SMALL_STATE(1995)] = 62288, - [SMALL_STATE(1996)] = 62302, - [SMALL_STATE(1997)] = 62316, - [SMALL_STATE(1998)] = 62330, + [SMALL_STATE(1995)] = 62286, + [SMALL_STATE(1996)] = 62300, + [SMALL_STATE(1997)] = 62314, + [SMALL_STATE(1998)] = 62328, [SMALL_STATE(1999)] = 62342, - [SMALL_STATE(2000)] = 62354, - [SMALL_STATE(2001)] = 62368, - [SMALL_STATE(2002)] = 62382, - [SMALL_STATE(2003)] = 62396, - [SMALL_STATE(2004)] = 62410, - [SMALL_STATE(2005)] = 62424, - [SMALL_STATE(2006)] = 62438, - [SMALL_STATE(2007)] = 62452, - [SMALL_STATE(2008)] = 62466, - [SMALL_STATE(2009)] = 62478, - [SMALL_STATE(2010)] = 62490, - [SMALL_STATE(2011)] = 62504, - [SMALL_STATE(2012)] = 62514, - [SMALL_STATE(2013)] = 62528, - [SMALL_STATE(2014)] = 62540, - [SMALL_STATE(2015)] = 62554, - [SMALL_STATE(2016)] = 62568, - [SMALL_STATE(2017)] = 62578, - [SMALL_STATE(2018)] = 62592, - [SMALL_STATE(2019)] = 62604, - [SMALL_STATE(2020)] = 62618, - [SMALL_STATE(2021)] = 62630, - [SMALL_STATE(2022)] = 62644, - [SMALL_STATE(2023)] = 62658, - [SMALL_STATE(2024)] = 62672, - [SMALL_STATE(2025)] = 62686, - [SMALL_STATE(2026)] = 62698, - [SMALL_STATE(2027)] = 62710, - [SMALL_STATE(2028)] = 62724, - [SMALL_STATE(2029)] = 62738, - [SMALL_STATE(2030)] = 62748, - [SMALL_STATE(2031)] = 62762, - [SMALL_STATE(2032)] = 62776, - [SMALL_STATE(2033)] = 62790, - [SMALL_STATE(2034)] = 62802, - [SMALL_STATE(2035)] = 62816, - [SMALL_STATE(2036)] = 62830, - [SMALL_STATE(2037)] = 62844, - [SMALL_STATE(2038)] = 62858, - [SMALL_STATE(2039)] = 62872, - [SMALL_STATE(2040)] = 62884, - [SMALL_STATE(2041)] = 62898, - [SMALL_STATE(2042)] = 62912, - [SMALL_STATE(2043)] = 62926, - [SMALL_STATE(2044)] = 62938, - [SMALL_STATE(2045)] = 62952, - [SMALL_STATE(2046)] = 62966, - [SMALL_STATE(2047)] = 62980, - [SMALL_STATE(2048)] = 62994, - [SMALL_STATE(2049)] = 63008, - [SMALL_STATE(2050)] = 63020, - [SMALL_STATE(2051)] = 63032, - [SMALL_STATE(2052)] = 63044, - [SMALL_STATE(2053)] = 63056, - [SMALL_STATE(2054)] = 63070, - [SMALL_STATE(2055)] = 63084, - [SMALL_STATE(2056)] = 63098, - [SMALL_STATE(2057)] = 63112, - [SMALL_STATE(2058)] = 63126, - [SMALL_STATE(2059)] = 63140, - [SMALL_STATE(2060)] = 63154, - [SMALL_STATE(2061)] = 63168, - [SMALL_STATE(2062)] = 63180, - [SMALL_STATE(2063)] = 63194, - [SMALL_STATE(2064)] = 63208, - [SMALL_STATE(2065)] = 63222, - [SMALL_STATE(2066)] = 63232, - [SMALL_STATE(2067)] = 63246, - [SMALL_STATE(2068)] = 63256, - [SMALL_STATE(2069)] = 63270, - [SMALL_STATE(2070)] = 63284, - [SMALL_STATE(2071)] = 63298, - [SMALL_STATE(2072)] = 63312, - [SMALL_STATE(2073)] = 63326, - [SMALL_STATE(2074)] = 63340, - [SMALL_STATE(2075)] = 63354, - [SMALL_STATE(2076)] = 63368, - [SMALL_STATE(2077)] = 63380, - [SMALL_STATE(2078)] = 63394, - [SMALL_STATE(2079)] = 63408, - [SMALL_STATE(2080)] = 63422, - [SMALL_STATE(2081)] = 63436, - [SMALL_STATE(2082)] = 63450, - [SMALL_STATE(2083)] = 63464, - [SMALL_STATE(2084)] = 63478, - [SMALL_STATE(2085)] = 63492, - [SMALL_STATE(2086)] = 63506, - [SMALL_STATE(2087)] = 63520, - [SMALL_STATE(2088)] = 63534, - [SMALL_STATE(2089)] = 63548, - [SMALL_STATE(2090)] = 63562, - [SMALL_STATE(2091)] = 63574, - [SMALL_STATE(2092)] = 63588, - [SMALL_STATE(2093)] = 63602, - [SMALL_STATE(2094)] = 63616, - [SMALL_STATE(2095)] = 63630, - [SMALL_STATE(2096)] = 63644, - [SMALL_STATE(2097)] = 63658, - [SMALL_STATE(2098)] = 63672, - [SMALL_STATE(2099)] = 63686, - [SMALL_STATE(2100)] = 63700, - [SMALL_STATE(2101)] = 63714, - [SMALL_STATE(2102)] = 63728, - [SMALL_STATE(2103)] = 63742, - [SMALL_STATE(2104)] = 63756, - [SMALL_STATE(2105)] = 63770, - [SMALL_STATE(2106)] = 63784, - [SMALL_STATE(2107)] = 63798, - [SMALL_STATE(2108)] = 63812, - [SMALL_STATE(2109)] = 63826, - [SMALL_STATE(2110)] = 63840, - [SMALL_STATE(2111)] = 63854, - [SMALL_STATE(2112)] = 63864, - [SMALL_STATE(2113)] = 63878, - [SMALL_STATE(2114)] = 63892, - [SMALL_STATE(2115)] = 63904, - [SMALL_STATE(2116)] = 63918, - [SMALL_STATE(2117)] = 63932, - [SMALL_STATE(2118)] = 63946, - [SMALL_STATE(2119)] = 63960, - [SMALL_STATE(2120)] = 63974, - [SMALL_STATE(2121)] = 63988, - [SMALL_STATE(2122)] = 64002, - [SMALL_STATE(2123)] = 64016, - [SMALL_STATE(2124)] = 64030, - [SMALL_STATE(2125)] = 64044, - [SMALL_STATE(2126)] = 64058, - [SMALL_STATE(2127)] = 64068, - [SMALL_STATE(2128)] = 64082, - [SMALL_STATE(2129)] = 64096, - [SMALL_STATE(2130)] = 64110, - [SMALL_STATE(2131)] = 64124, - [SMALL_STATE(2132)] = 64138, - [SMALL_STATE(2133)] = 64152, - [SMALL_STATE(2134)] = 64166, - [SMALL_STATE(2135)] = 64176, - [SMALL_STATE(2136)] = 64190, - [SMALL_STATE(2137)] = 64204, - [SMALL_STATE(2138)] = 64218, - [SMALL_STATE(2139)] = 64228, - [SMALL_STATE(2140)] = 64242, - [SMALL_STATE(2141)] = 64256, - [SMALL_STATE(2142)] = 64270, - [SMALL_STATE(2143)] = 64284, - [SMALL_STATE(2144)] = 64294, - [SMALL_STATE(2145)] = 64304, - [SMALL_STATE(2146)] = 64318, - [SMALL_STATE(2147)] = 64332, - [SMALL_STATE(2148)] = 64346, - [SMALL_STATE(2149)] = 64360, - [SMALL_STATE(2150)] = 64374, - [SMALL_STATE(2151)] = 64388, - [SMALL_STATE(2152)] = 64402, - [SMALL_STATE(2153)] = 64416, - [SMALL_STATE(2154)] = 64430, - [SMALL_STATE(2155)] = 64444, - [SMALL_STATE(2156)] = 64458, - [SMALL_STATE(2157)] = 64472, - [SMALL_STATE(2158)] = 64482, - [SMALL_STATE(2159)] = 64496, - [SMALL_STATE(2160)] = 64507, - [SMALL_STATE(2161)] = 64518, - [SMALL_STATE(2162)] = 64529, - [SMALL_STATE(2163)] = 64540, - [SMALL_STATE(2164)] = 64551, - [SMALL_STATE(2165)] = 64562, - [SMALL_STATE(2166)] = 64571, - [SMALL_STATE(2167)] = 64582, - [SMALL_STATE(2168)] = 64593, - [SMALL_STATE(2169)] = 64604, - [SMALL_STATE(2170)] = 64615, - [SMALL_STATE(2171)] = 64626, - [SMALL_STATE(2172)] = 64637, - [SMALL_STATE(2173)] = 64648, - [SMALL_STATE(2174)] = 64659, - [SMALL_STATE(2175)] = 64670, - [SMALL_STATE(2176)] = 64681, - [SMALL_STATE(2177)] = 64692, - [SMALL_STATE(2178)] = 64703, - [SMALL_STATE(2179)] = 64714, - [SMALL_STATE(2180)] = 64725, - [SMALL_STATE(2181)] = 64736, - [SMALL_STATE(2182)] = 64747, - [SMALL_STATE(2183)] = 64758, - [SMALL_STATE(2184)] = 64769, - [SMALL_STATE(2185)] = 64780, - [SMALL_STATE(2186)] = 64791, - [SMALL_STATE(2187)] = 64802, - [SMALL_STATE(2188)] = 64813, - [SMALL_STATE(2189)] = 64824, - [SMALL_STATE(2190)] = 64835, - [SMALL_STATE(2191)] = 64846, - [SMALL_STATE(2192)] = 64857, - [SMALL_STATE(2193)] = 64868, - [SMALL_STATE(2194)] = 64879, - [SMALL_STATE(2195)] = 64888, - [SMALL_STATE(2196)] = 64899, - [SMALL_STATE(2197)] = 64910, - [SMALL_STATE(2198)] = 64921, - [SMALL_STATE(2199)] = 64930, - [SMALL_STATE(2200)] = 64941, - [SMALL_STATE(2201)] = 64952, - [SMALL_STATE(2202)] = 64963, - [SMALL_STATE(2203)] = 64974, - [SMALL_STATE(2204)] = 64985, - [SMALL_STATE(2205)] = 64996, - [SMALL_STATE(2206)] = 65007, - [SMALL_STATE(2207)] = 65018, - [SMALL_STATE(2208)] = 65029, - [SMALL_STATE(2209)] = 65040, - [SMALL_STATE(2210)] = 65051, - [SMALL_STATE(2211)] = 65062, - [SMALL_STATE(2212)] = 65071, - [SMALL_STATE(2213)] = 65082, - [SMALL_STATE(2214)] = 65091, - [SMALL_STATE(2215)] = 65102, - [SMALL_STATE(2216)] = 65113, - [SMALL_STATE(2217)] = 65124, - [SMALL_STATE(2218)] = 65135, - [SMALL_STATE(2219)] = 65146, - [SMALL_STATE(2220)] = 65157, - [SMALL_STATE(2221)] = 65168, - [SMALL_STATE(2222)] = 65177, - [SMALL_STATE(2223)] = 65188, - [SMALL_STATE(2224)] = 65199, - [SMALL_STATE(2225)] = 65210, - [SMALL_STATE(2226)] = 65221, - [SMALL_STATE(2227)] = 65232, - [SMALL_STATE(2228)] = 65243, - [SMALL_STATE(2229)] = 65254, - [SMALL_STATE(2230)] = 65263, - [SMALL_STATE(2231)] = 65274, - [SMALL_STATE(2232)] = 65285, - [SMALL_STATE(2233)] = 65294, - [SMALL_STATE(2234)] = 65305, - [SMALL_STATE(2235)] = 65316, - [SMALL_STATE(2236)] = 65327, - [SMALL_STATE(2237)] = 65338, - [SMALL_STATE(2238)] = 65349, - [SMALL_STATE(2239)] = 65360, - [SMALL_STATE(2240)] = 65371, - [SMALL_STATE(2241)] = 65382, - [SMALL_STATE(2242)] = 65393, - [SMALL_STATE(2243)] = 65404, - [SMALL_STATE(2244)] = 65413, - [SMALL_STATE(2245)] = 65424, - [SMALL_STATE(2246)] = 65435, - [SMALL_STATE(2247)] = 65446, - [SMALL_STATE(2248)] = 65457, - [SMALL_STATE(2249)] = 65468, - [SMALL_STATE(2250)] = 65479, - [SMALL_STATE(2251)] = 65490, - [SMALL_STATE(2252)] = 65501, - [SMALL_STATE(2253)] = 65512, - [SMALL_STATE(2254)] = 65523, - [SMALL_STATE(2255)] = 65534, - [SMALL_STATE(2256)] = 65545, - [SMALL_STATE(2257)] = 65556, - [SMALL_STATE(2258)] = 65567, - [SMALL_STATE(2259)] = 65576, - [SMALL_STATE(2260)] = 65587, - [SMALL_STATE(2261)] = 65598, - [SMALL_STATE(2262)] = 65609, - [SMALL_STATE(2263)] = 65620, - [SMALL_STATE(2264)] = 65631, - [SMALL_STATE(2265)] = 65642, - [SMALL_STATE(2266)] = 65651, - [SMALL_STATE(2267)] = 65662, - [SMALL_STATE(2268)] = 65671, - [SMALL_STATE(2269)] = 65682, - [SMALL_STATE(2270)] = 65693, - [SMALL_STATE(2271)] = 65702, - [SMALL_STATE(2272)] = 65713, - [SMALL_STATE(2273)] = 65724, - [SMALL_STATE(2274)] = 65735, - [SMALL_STATE(2275)] = 65746, - [SMALL_STATE(2276)] = 65757, - [SMALL_STATE(2277)] = 65766, - [SMALL_STATE(2278)] = 65775, - [SMALL_STATE(2279)] = 65786, - [SMALL_STATE(2280)] = 65797, - [SMALL_STATE(2281)] = 65808, - [SMALL_STATE(2282)] = 65819, - [SMALL_STATE(2283)] = 65830, - [SMALL_STATE(2284)] = 65841, - [SMALL_STATE(2285)] = 65852, - [SMALL_STATE(2286)] = 65861, - [SMALL_STATE(2287)] = 65872, - [SMALL_STATE(2288)] = 65883, - [SMALL_STATE(2289)] = 65894, - [SMALL_STATE(2290)] = 65905, - [SMALL_STATE(2291)] = 65916, - [SMALL_STATE(2292)] = 65927, - [SMALL_STATE(2293)] = 65936, - [SMALL_STATE(2294)] = 65947, - [SMALL_STATE(2295)] = 65958, - [SMALL_STATE(2296)] = 65969, - [SMALL_STATE(2297)] = 65980, - [SMALL_STATE(2298)] = 65991, - [SMALL_STATE(2299)] = 66002, - [SMALL_STATE(2300)] = 66011, - [SMALL_STATE(2301)] = 66022, - [SMALL_STATE(2302)] = 66033, - [SMALL_STATE(2303)] = 66044, - [SMALL_STATE(2304)] = 66053, - [SMALL_STATE(2305)] = 66064, - [SMALL_STATE(2306)] = 66075, - [SMALL_STATE(2307)] = 66086, - [SMALL_STATE(2308)] = 66095, - [SMALL_STATE(2309)] = 66104, - [SMALL_STATE(2310)] = 66115, - [SMALL_STATE(2311)] = 66126, - [SMALL_STATE(2312)] = 66135, - [SMALL_STATE(2313)] = 66146, - [SMALL_STATE(2314)] = 66157, - [SMALL_STATE(2315)] = 66168, - [SMALL_STATE(2316)] = 66177, - [SMALL_STATE(2317)] = 66188, - [SMALL_STATE(2318)] = 66197, - [SMALL_STATE(2319)] = 66208, - [SMALL_STATE(2320)] = 66219, - [SMALL_STATE(2321)] = 66230, - [SMALL_STATE(2322)] = 66241, - [SMALL_STATE(2323)] = 66250, - [SMALL_STATE(2324)] = 66261, - [SMALL_STATE(2325)] = 66270, - [SMALL_STATE(2326)] = 66281, - [SMALL_STATE(2327)] = 66290, - [SMALL_STATE(2328)] = 66301, - [SMALL_STATE(2329)] = 66312, - [SMALL_STATE(2330)] = 66323, - [SMALL_STATE(2331)] = 66334, - [SMALL_STATE(2332)] = 66345, - [SMALL_STATE(2333)] = 66356, - [SMALL_STATE(2334)] = 66365, - [SMALL_STATE(2335)] = 66376, - [SMALL_STATE(2336)] = 66387, - [SMALL_STATE(2337)] = 66398, - [SMALL_STATE(2338)] = 66409, - [SMALL_STATE(2339)] = 66420, - [SMALL_STATE(2340)] = 66431, - [SMALL_STATE(2341)] = 66442, - [SMALL_STATE(2342)] = 66453, - [SMALL_STATE(2343)] = 66462, - [SMALL_STATE(2344)] = 66471, - [SMALL_STATE(2345)] = 66482, - [SMALL_STATE(2346)] = 66493, - [SMALL_STATE(2347)] = 66504, - [SMALL_STATE(2348)] = 66512, - [SMALL_STATE(2349)] = 66520, - [SMALL_STATE(2350)] = 66528, - [SMALL_STATE(2351)] = 66536, - [SMALL_STATE(2352)] = 66544, - [SMALL_STATE(2353)] = 66552, - [SMALL_STATE(2354)] = 66560, - [SMALL_STATE(2355)] = 66568, - [SMALL_STATE(2356)] = 66576, - [SMALL_STATE(2357)] = 66584, - [SMALL_STATE(2358)] = 66592, - [SMALL_STATE(2359)] = 66600, - [SMALL_STATE(2360)] = 66608, - [SMALL_STATE(2361)] = 66616, - [SMALL_STATE(2362)] = 66624, - [SMALL_STATE(2363)] = 66632, - [SMALL_STATE(2364)] = 66640, - [SMALL_STATE(2365)] = 66648, - [SMALL_STATE(2366)] = 66656, - [SMALL_STATE(2367)] = 66664, - [SMALL_STATE(2368)] = 66672, - [SMALL_STATE(2369)] = 66680, - [SMALL_STATE(2370)] = 66688, - [SMALL_STATE(2371)] = 66696, - [SMALL_STATE(2372)] = 66704, - [SMALL_STATE(2373)] = 66712, - [SMALL_STATE(2374)] = 66720, - [SMALL_STATE(2375)] = 66728, - [SMALL_STATE(2376)] = 66736, - [SMALL_STATE(2377)] = 66744, - [SMALL_STATE(2378)] = 66752, - [SMALL_STATE(2379)] = 66760, - [SMALL_STATE(2380)] = 66768, - [SMALL_STATE(2381)] = 66776, - [SMALL_STATE(2382)] = 66784, - [SMALL_STATE(2383)] = 66792, - [SMALL_STATE(2384)] = 66800, - [SMALL_STATE(2385)] = 66808, - [SMALL_STATE(2386)] = 66816, - [SMALL_STATE(2387)] = 66824, - [SMALL_STATE(2388)] = 66832, - [SMALL_STATE(2389)] = 66840, - [SMALL_STATE(2390)] = 66848, - [SMALL_STATE(2391)] = 66856, - [SMALL_STATE(2392)] = 66864, - [SMALL_STATE(2393)] = 66872, - [SMALL_STATE(2394)] = 66880, - [SMALL_STATE(2395)] = 66888, - [SMALL_STATE(2396)] = 66896, - [SMALL_STATE(2397)] = 66904, - [SMALL_STATE(2398)] = 66912, - [SMALL_STATE(2399)] = 66920, - [SMALL_STATE(2400)] = 66928, - [SMALL_STATE(2401)] = 66936, - [SMALL_STATE(2402)] = 66944, - [SMALL_STATE(2403)] = 66952, - [SMALL_STATE(2404)] = 66960, - [SMALL_STATE(2405)] = 66968, - [SMALL_STATE(2406)] = 66976, - [SMALL_STATE(2407)] = 66984, - [SMALL_STATE(2408)] = 66992, - [SMALL_STATE(2409)] = 67000, - [SMALL_STATE(2410)] = 67008, - [SMALL_STATE(2411)] = 67016, - [SMALL_STATE(2412)] = 67024, - [SMALL_STATE(2413)] = 67032, - [SMALL_STATE(2414)] = 67040, - [SMALL_STATE(2415)] = 67048, - [SMALL_STATE(2416)] = 67056, - [SMALL_STATE(2417)] = 67064, - [SMALL_STATE(2418)] = 67072, - [SMALL_STATE(2419)] = 67080, - [SMALL_STATE(2420)] = 67088, - [SMALL_STATE(2421)] = 67096, - [SMALL_STATE(2422)] = 67104, - [SMALL_STATE(2423)] = 67112, - [SMALL_STATE(2424)] = 67120, - [SMALL_STATE(2425)] = 67128, - [SMALL_STATE(2426)] = 67136, - [SMALL_STATE(2427)] = 67144, - [SMALL_STATE(2428)] = 67152, - [SMALL_STATE(2429)] = 67160, - [SMALL_STATE(2430)] = 67168, - [SMALL_STATE(2431)] = 67176, - [SMALL_STATE(2432)] = 67184, - [SMALL_STATE(2433)] = 67192, - [SMALL_STATE(2434)] = 67200, - [SMALL_STATE(2435)] = 67208, - [SMALL_STATE(2436)] = 67216, - [SMALL_STATE(2437)] = 67224, - [SMALL_STATE(2438)] = 67232, - [SMALL_STATE(2439)] = 67240, - [SMALL_STATE(2440)] = 67248, - [SMALL_STATE(2441)] = 67256, - [SMALL_STATE(2442)] = 67264, - [SMALL_STATE(2443)] = 67272, - [SMALL_STATE(2444)] = 67280, - [SMALL_STATE(2445)] = 67288, - [SMALL_STATE(2446)] = 67296, - [SMALL_STATE(2447)] = 67304, - [SMALL_STATE(2448)] = 67312, - [SMALL_STATE(2449)] = 67320, - [SMALL_STATE(2450)] = 67328, - [SMALL_STATE(2451)] = 67336, - [SMALL_STATE(2452)] = 67344, - [SMALL_STATE(2453)] = 67352, - [SMALL_STATE(2454)] = 67360, - [SMALL_STATE(2455)] = 67368, - [SMALL_STATE(2456)] = 67376, - [SMALL_STATE(2457)] = 67384, - [SMALL_STATE(2458)] = 67392, - [SMALL_STATE(2459)] = 67400, - [SMALL_STATE(2460)] = 67408, - [SMALL_STATE(2461)] = 67416, - [SMALL_STATE(2462)] = 67424, - [SMALL_STATE(2463)] = 67432, - [SMALL_STATE(2464)] = 67440, - [SMALL_STATE(2465)] = 67448, - [SMALL_STATE(2466)] = 67456, - [SMALL_STATE(2467)] = 67464, - [SMALL_STATE(2468)] = 67472, - [SMALL_STATE(2469)] = 67480, - [SMALL_STATE(2470)] = 67488, - [SMALL_STATE(2471)] = 67496, - [SMALL_STATE(2472)] = 67504, - [SMALL_STATE(2473)] = 67512, - [SMALL_STATE(2474)] = 67520, - [SMALL_STATE(2475)] = 67528, - [SMALL_STATE(2476)] = 67536, - [SMALL_STATE(2477)] = 67544, - [SMALL_STATE(2478)] = 67552, - [SMALL_STATE(2479)] = 67560, - [SMALL_STATE(2480)] = 67568, - [SMALL_STATE(2481)] = 67576, - [SMALL_STATE(2482)] = 67584, - [SMALL_STATE(2483)] = 67592, - [SMALL_STATE(2484)] = 67600, - [SMALL_STATE(2485)] = 67608, - [SMALL_STATE(2486)] = 67616, - [SMALL_STATE(2487)] = 67624, - [SMALL_STATE(2488)] = 67632, - [SMALL_STATE(2489)] = 67640, - [SMALL_STATE(2490)] = 67648, - [SMALL_STATE(2491)] = 67656, - [SMALL_STATE(2492)] = 67664, - [SMALL_STATE(2493)] = 67672, - [SMALL_STATE(2494)] = 67680, - [SMALL_STATE(2495)] = 67688, - [SMALL_STATE(2496)] = 67696, - [SMALL_STATE(2497)] = 67704, - [SMALL_STATE(2498)] = 67712, - [SMALL_STATE(2499)] = 67720, - [SMALL_STATE(2500)] = 67728, - [SMALL_STATE(2501)] = 67736, - [SMALL_STATE(2502)] = 67744, - [SMALL_STATE(2503)] = 67752, - [SMALL_STATE(2504)] = 67760, - [SMALL_STATE(2505)] = 67768, - [SMALL_STATE(2506)] = 67776, - [SMALL_STATE(2507)] = 67784, - [SMALL_STATE(2508)] = 67792, - [SMALL_STATE(2509)] = 67800, - [SMALL_STATE(2510)] = 67808, - [SMALL_STATE(2511)] = 67816, - [SMALL_STATE(2512)] = 67824, - [SMALL_STATE(2513)] = 67832, - [SMALL_STATE(2514)] = 67840, - [SMALL_STATE(2515)] = 67848, - [SMALL_STATE(2516)] = 67856, - [SMALL_STATE(2517)] = 67864, - [SMALL_STATE(2518)] = 67872, - [SMALL_STATE(2519)] = 67880, - [SMALL_STATE(2520)] = 67888, - [SMALL_STATE(2521)] = 67896, - [SMALL_STATE(2522)] = 67904, - [SMALL_STATE(2523)] = 67912, - [SMALL_STATE(2524)] = 67920, - [SMALL_STATE(2525)] = 67928, - [SMALL_STATE(2526)] = 67936, - [SMALL_STATE(2527)] = 67944, - [SMALL_STATE(2528)] = 67952, - [SMALL_STATE(2529)] = 67960, - [SMALL_STATE(2530)] = 67968, - [SMALL_STATE(2531)] = 67976, - [SMALL_STATE(2532)] = 67984, - [SMALL_STATE(2533)] = 67992, - [SMALL_STATE(2534)] = 68000, - [SMALL_STATE(2535)] = 68008, - [SMALL_STATE(2536)] = 68016, - [SMALL_STATE(2537)] = 68024, - [SMALL_STATE(2538)] = 68032, - [SMALL_STATE(2539)] = 68040, - [SMALL_STATE(2540)] = 68048, - [SMALL_STATE(2541)] = 68056, - [SMALL_STATE(2542)] = 68064, - [SMALL_STATE(2543)] = 68072, - [SMALL_STATE(2544)] = 68080, - [SMALL_STATE(2545)] = 68088, - [SMALL_STATE(2546)] = 68096, - [SMALL_STATE(2547)] = 68104, - [SMALL_STATE(2548)] = 68112, - [SMALL_STATE(2549)] = 68120, - [SMALL_STATE(2550)] = 68128, - [SMALL_STATE(2551)] = 68136, - [SMALL_STATE(2552)] = 68144, - [SMALL_STATE(2553)] = 68152, - [SMALL_STATE(2554)] = 68160, - [SMALL_STATE(2555)] = 68168, - [SMALL_STATE(2556)] = 68176, - [SMALL_STATE(2557)] = 68184, - [SMALL_STATE(2558)] = 68192, - [SMALL_STATE(2559)] = 68200, - [SMALL_STATE(2560)] = 68208, - [SMALL_STATE(2561)] = 68216, - [SMALL_STATE(2562)] = 68224, - [SMALL_STATE(2563)] = 68232, - [SMALL_STATE(2564)] = 68240, - [SMALL_STATE(2565)] = 68248, - [SMALL_STATE(2566)] = 68256, - [SMALL_STATE(2567)] = 68264, - [SMALL_STATE(2568)] = 68272, - [SMALL_STATE(2569)] = 68280, - [SMALL_STATE(2570)] = 68288, - [SMALL_STATE(2571)] = 68296, - [SMALL_STATE(2572)] = 68304, - [SMALL_STATE(2573)] = 68312, - [SMALL_STATE(2574)] = 68320, - [SMALL_STATE(2575)] = 68328, - [SMALL_STATE(2576)] = 68336, - [SMALL_STATE(2577)] = 68344, - [SMALL_STATE(2578)] = 68352, - [SMALL_STATE(2579)] = 68360, - [SMALL_STATE(2580)] = 68368, - [SMALL_STATE(2581)] = 68376, - [SMALL_STATE(2582)] = 68384, + [SMALL_STATE(2000)] = 62356, + [SMALL_STATE(2001)] = 62366, + [SMALL_STATE(2002)] = 62380, + [SMALL_STATE(2003)] = 62392, + [SMALL_STATE(2004)] = 62406, + [SMALL_STATE(2005)] = 62418, + [SMALL_STATE(2006)] = 62430, + [SMALL_STATE(2007)] = 62444, + [SMALL_STATE(2008)] = 62458, + [SMALL_STATE(2009)] = 62470, + [SMALL_STATE(2010)] = 62484, + [SMALL_STATE(2011)] = 62498, + [SMALL_STATE(2012)] = 62510, + [SMALL_STATE(2013)] = 62524, + [SMALL_STATE(2014)] = 62538, + [SMALL_STATE(2015)] = 62552, + [SMALL_STATE(2016)] = 62566, + [SMALL_STATE(2017)] = 62580, + [SMALL_STATE(2018)] = 62594, + [SMALL_STATE(2019)] = 62608, + [SMALL_STATE(2020)] = 62620, + [SMALL_STATE(2021)] = 62632, + [SMALL_STATE(2022)] = 62646, + [SMALL_STATE(2023)] = 62660, + [SMALL_STATE(2024)] = 62674, + [SMALL_STATE(2025)] = 62688, + [SMALL_STATE(2026)] = 62702, + [SMALL_STATE(2027)] = 62716, + [SMALL_STATE(2028)] = 62730, + [SMALL_STATE(2029)] = 62742, + [SMALL_STATE(2030)] = 62756, + [SMALL_STATE(2031)] = 62770, + [SMALL_STATE(2032)] = 62784, + [SMALL_STATE(2033)] = 62796, + [SMALL_STATE(2034)] = 62810, + [SMALL_STATE(2035)] = 62824, + [SMALL_STATE(2036)] = 62838, + [SMALL_STATE(2037)] = 62852, + [SMALL_STATE(2038)] = 62866, + [SMALL_STATE(2039)] = 62880, + [SMALL_STATE(2040)] = 62892, + [SMALL_STATE(2041)] = 62906, + [SMALL_STATE(2042)] = 62920, + [SMALL_STATE(2043)] = 62934, + [SMALL_STATE(2044)] = 62948, + [SMALL_STATE(2045)] = 62962, + [SMALL_STATE(2046)] = 62976, + [SMALL_STATE(2047)] = 62990, + [SMALL_STATE(2048)] = 63004, + [SMALL_STATE(2049)] = 63018, + [SMALL_STATE(2050)] = 63030, + [SMALL_STATE(2051)] = 63044, + [SMALL_STATE(2052)] = 63058, + [SMALL_STATE(2053)] = 63072, + [SMALL_STATE(2054)] = 63086, + [SMALL_STATE(2055)] = 63100, + [SMALL_STATE(2056)] = 63114, + [SMALL_STATE(2057)] = 63128, + [SMALL_STATE(2058)] = 63138, + [SMALL_STATE(2059)] = 63152, + [SMALL_STATE(2060)] = 63166, + [SMALL_STATE(2061)] = 63180, + [SMALL_STATE(2062)] = 63194, + [SMALL_STATE(2063)] = 63208, + [SMALL_STATE(2064)] = 63222, + [SMALL_STATE(2065)] = 63236, + [SMALL_STATE(2066)] = 63250, + [SMALL_STATE(2067)] = 63264, + [SMALL_STATE(2068)] = 63276, + [SMALL_STATE(2069)] = 63290, + [SMALL_STATE(2070)] = 63304, + [SMALL_STATE(2071)] = 63314, + [SMALL_STATE(2072)] = 63326, + [SMALL_STATE(2073)] = 63340, + [SMALL_STATE(2074)] = 63354, + [SMALL_STATE(2075)] = 63368, + [SMALL_STATE(2076)] = 63380, + [SMALL_STATE(2077)] = 63394, + [SMALL_STATE(2078)] = 63404, + [SMALL_STATE(2079)] = 63418, + [SMALL_STATE(2080)] = 63432, + [SMALL_STATE(2081)] = 63442, + [SMALL_STATE(2082)] = 63456, + [SMALL_STATE(2083)] = 63470, + [SMALL_STATE(2084)] = 63482, + [SMALL_STATE(2085)] = 63496, + [SMALL_STATE(2086)] = 63510, + [SMALL_STATE(2087)] = 63524, + [SMALL_STATE(2088)] = 63538, + [SMALL_STATE(2089)] = 63552, + [SMALL_STATE(2090)] = 63564, + [SMALL_STATE(2091)] = 63578, + [SMALL_STATE(2092)] = 63592, + [SMALL_STATE(2093)] = 63606, + [SMALL_STATE(2094)] = 63620, + [SMALL_STATE(2095)] = 63634, + [SMALL_STATE(2096)] = 63648, + [SMALL_STATE(2097)] = 63662, + [SMALL_STATE(2098)] = 63676, + [SMALL_STATE(2099)] = 63690, + [SMALL_STATE(2100)] = 63704, + [SMALL_STATE(2101)] = 63718, + [SMALL_STATE(2102)] = 63732, + [SMALL_STATE(2103)] = 63746, + [SMALL_STATE(2104)] = 63760, + [SMALL_STATE(2105)] = 63774, + [SMALL_STATE(2106)] = 63786, + [SMALL_STATE(2107)] = 63800, + [SMALL_STATE(2108)] = 63814, + [SMALL_STATE(2109)] = 63828, + [SMALL_STATE(2110)] = 63842, + [SMALL_STATE(2111)] = 63856, + [SMALL_STATE(2112)] = 63870, + [SMALL_STATE(2113)] = 63884, + [SMALL_STATE(2114)] = 63898, + [SMALL_STATE(2115)] = 63912, + [SMALL_STATE(2116)] = 63926, + [SMALL_STATE(2117)] = 63940, + [SMALL_STATE(2118)] = 63954, + [SMALL_STATE(2119)] = 63966, + [SMALL_STATE(2120)] = 63980, + [SMALL_STATE(2121)] = 63994, + [SMALL_STATE(2122)] = 64008, + [SMALL_STATE(2123)] = 64022, + [SMALL_STATE(2124)] = 64036, + [SMALL_STATE(2125)] = 64050, + [SMALL_STATE(2126)] = 64062, + [SMALL_STATE(2127)] = 64076, + [SMALL_STATE(2128)] = 64086, + [SMALL_STATE(2129)] = 64100, + [SMALL_STATE(2130)] = 64114, + [SMALL_STATE(2131)] = 64128, + [SMALL_STATE(2132)] = 64142, + [SMALL_STATE(2133)] = 64156, + [SMALL_STATE(2134)] = 64170, + [SMALL_STATE(2135)] = 64184, + [SMALL_STATE(2136)] = 64198, + [SMALL_STATE(2137)] = 64212, + [SMALL_STATE(2138)] = 64226, + [SMALL_STATE(2139)] = 64240, + [SMALL_STATE(2140)] = 64254, + [SMALL_STATE(2141)] = 64264, + [SMALL_STATE(2142)] = 64278, + [SMALL_STATE(2143)] = 64292, + [SMALL_STATE(2144)] = 64306, + [SMALL_STATE(2145)] = 64320, + [SMALL_STATE(2146)] = 64334, + [SMALL_STATE(2147)] = 64348, + [SMALL_STATE(2148)] = 64362, + [SMALL_STATE(2149)] = 64376, + [SMALL_STATE(2150)] = 64390, + [SMALL_STATE(2151)] = 64404, + [SMALL_STATE(2152)] = 64418, + [SMALL_STATE(2153)] = 64432, + [SMALL_STATE(2154)] = 64442, + [SMALL_STATE(2155)] = 64456, + [SMALL_STATE(2156)] = 64470, + [SMALL_STATE(2157)] = 64482, + [SMALL_STATE(2158)] = 64496, + [SMALL_STATE(2159)] = 64507, + [SMALL_STATE(2160)] = 64518, + [SMALL_STATE(2161)] = 64529, + [SMALL_STATE(2162)] = 64540, + [SMALL_STATE(2163)] = 64551, + [SMALL_STATE(2164)] = 64560, + [SMALL_STATE(2165)] = 64571, + [SMALL_STATE(2166)] = 64582, + [SMALL_STATE(2167)] = 64593, + [SMALL_STATE(2168)] = 64604, + [SMALL_STATE(2169)] = 64613, + [SMALL_STATE(2170)] = 64622, + [SMALL_STATE(2171)] = 64633, + [SMALL_STATE(2172)] = 64644, + [SMALL_STATE(2173)] = 64655, + [SMALL_STATE(2174)] = 64664, + [SMALL_STATE(2175)] = 64675, + [SMALL_STATE(2176)] = 64686, + [SMALL_STATE(2177)] = 64697, + [SMALL_STATE(2178)] = 64708, + [SMALL_STATE(2179)] = 64719, + [SMALL_STATE(2180)] = 64730, + [SMALL_STATE(2181)] = 64741, + [SMALL_STATE(2182)] = 64752, + [SMALL_STATE(2183)] = 64763, + [SMALL_STATE(2184)] = 64774, + [SMALL_STATE(2185)] = 64785, + [SMALL_STATE(2186)] = 64796, + [SMALL_STATE(2187)] = 64807, + [SMALL_STATE(2188)] = 64818, + [SMALL_STATE(2189)] = 64829, + [SMALL_STATE(2190)] = 64840, + [SMALL_STATE(2191)] = 64851, + [SMALL_STATE(2192)] = 64862, + [SMALL_STATE(2193)] = 64873, + [SMALL_STATE(2194)] = 64884, + [SMALL_STATE(2195)] = 64893, + [SMALL_STATE(2196)] = 64904, + [SMALL_STATE(2197)] = 64915, + [SMALL_STATE(2198)] = 64926, + [SMALL_STATE(2199)] = 64937, + [SMALL_STATE(2200)] = 64946, + [SMALL_STATE(2201)] = 64957, + [SMALL_STATE(2202)] = 64968, + [SMALL_STATE(2203)] = 64979, + [SMALL_STATE(2204)] = 64990, + [SMALL_STATE(2205)] = 65001, + [SMALL_STATE(2206)] = 65012, + [SMALL_STATE(2207)] = 65021, + [SMALL_STATE(2208)] = 65032, + [SMALL_STATE(2209)] = 65043, + [SMALL_STATE(2210)] = 65054, + [SMALL_STATE(2211)] = 65065, + [SMALL_STATE(2212)] = 65076, + [SMALL_STATE(2213)] = 65087, + [SMALL_STATE(2214)] = 65096, + [SMALL_STATE(2215)] = 65107, + [SMALL_STATE(2216)] = 65118, + [SMALL_STATE(2217)] = 65129, + [SMALL_STATE(2218)] = 65140, + [SMALL_STATE(2219)] = 65149, + [SMALL_STATE(2220)] = 65160, + [SMALL_STATE(2221)] = 65171, + [SMALL_STATE(2222)] = 65182, + [SMALL_STATE(2223)] = 65193, + [SMALL_STATE(2224)] = 65204, + [SMALL_STATE(2225)] = 65215, + [SMALL_STATE(2226)] = 65224, + [SMALL_STATE(2227)] = 65235, + [SMALL_STATE(2228)] = 65246, + [SMALL_STATE(2229)] = 65255, + [SMALL_STATE(2230)] = 65266, + [SMALL_STATE(2231)] = 65277, + [SMALL_STATE(2232)] = 65288, + [SMALL_STATE(2233)] = 65297, + [SMALL_STATE(2234)] = 65306, + [SMALL_STATE(2235)] = 65317, + [SMALL_STATE(2236)] = 65328, + [SMALL_STATE(2237)] = 65337, + [SMALL_STATE(2238)] = 65346, + [SMALL_STATE(2239)] = 65357, + [SMALL_STATE(2240)] = 65368, + [SMALL_STATE(2241)] = 65379, + [SMALL_STATE(2242)] = 65390, + [SMALL_STATE(2243)] = 65401, + [SMALL_STATE(2244)] = 65412, + [SMALL_STATE(2245)] = 65423, + [SMALL_STATE(2246)] = 65434, + [SMALL_STATE(2247)] = 65443, + [SMALL_STATE(2248)] = 65454, + [SMALL_STATE(2249)] = 65465, + [SMALL_STATE(2250)] = 65476, + [SMALL_STATE(2251)] = 65487, + [SMALL_STATE(2252)] = 65498, + [SMALL_STATE(2253)] = 65509, + [SMALL_STATE(2254)] = 65520, + [SMALL_STATE(2255)] = 65531, + [SMALL_STATE(2256)] = 65542, + [SMALL_STATE(2257)] = 65553, + [SMALL_STATE(2258)] = 65564, + [SMALL_STATE(2259)] = 65575, + [SMALL_STATE(2260)] = 65586, + [SMALL_STATE(2261)] = 65597, + [SMALL_STATE(2262)] = 65608, + [SMALL_STATE(2263)] = 65619, + [SMALL_STATE(2264)] = 65630, + [SMALL_STATE(2265)] = 65641, + [SMALL_STATE(2266)] = 65650, + [SMALL_STATE(2267)] = 65661, + [SMALL_STATE(2268)] = 65670, + [SMALL_STATE(2269)] = 65681, + [SMALL_STATE(2270)] = 65692, + [SMALL_STATE(2271)] = 65703, + [SMALL_STATE(2272)] = 65714, + [SMALL_STATE(2273)] = 65725, + [SMALL_STATE(2274)] = 65736, + [SMALL_STATE(2275)] = 65747, + [SMALL_STATE(2276)] = 65758, + [SMALL_STATE(2277)] = 65769, + [SMALL_STATE(2278)] = 65780, + [SMALL_STATE(2279)] = 65791, + [SMALL_STATE(2280)] = 65802, + [SMALL_STATE(2281)] = 65813, + [SMALL_STATE(2282)] = 65824, + [SMALL_STATE(2283)] = 65835, + [SMALL_STATE(2284)] = 65844, + [SMALL_STATE(2285)] = 65855, + [SMALL_STATE(2286)] = 65866, + [SMALL_STATE(2287)] = 65877, + [SMALL_STATE(2288)] = 65886, + [SMALL_STATE(2289)] = 65897, + [SMALL_STATE(2290)] = 65908, + [SMALL_STATE(2291)] = 65919, + [SMALL_STATE(2292)] = 65930, + [SMALL_STATE(2293)] = 65941, + [SMALL_STATE(2294)] = 65952, + [SMALL_STATE(2295)] = 65963, + [SMALL_STATE(2296)] = 65974, + [SMALL_STATE(2297)] = 65985, + [SMALL_STATE(2298)] = 65996, + [SMALL_STATE(2299)] = 66005, + [SMALL_STATE(2300)] = 66016, + [SMALL_STATE(2301)] = 66025, + [SMALL_STATE(2302)] = 66036, + [SMALL_STATE(2303)] = 66047, + [SMALL_STATE(2304)] = 66056, + [SMALL_STATE(2305)] = 66067, + [SMALL_STATE(2306)] = 66078, + [SMALL_STATE(2307)] = 66089, + [SMALL_STATE(2308)] = 66100, + [SMALL_STATE(2309)] = 66111, + [SMALL_STATE(2310)] = 66122, + [SMALL_STATE(2311)] = 66133, + [SMALL_STATE(2312)] = 66144, + [SMALL_STATE(2313)] = 66155, + [SMALL_STATE(2314)] = 66166, + [SMALL_STATE(2315)] = 66175, + [SMALL_STATE(2316)] = 66186, + [SMALL_STATE(2317)] = 66197, + [SMALL_STATE(2318)] = 66208, + [SMALL_STATE(2319)] = 66219, + [SMALL_STATE(2320)] = 66230, + [SMALL_STATE(2321)] = 66239, + [SMALL_STATE(2322)] = 66248, + [SMALL_STATE(2323)] = 66257, + [SMALL_STATE(2324)] = 66268, + [SMALL_STATE(2325)] = 66279, + [SMALL_STATE(2326)] = 66288, + [SMALL_STATE(2327)] = 66299, + [SMALL_STATE(2328)] = 66310, + [SMALL_STATE(2329)] = 66321, + [SMALL_STATE(2330)] = 66332, + [SMALL_STATE(2331)] = 66343, + [SMALL_STATE(2332)] = 66354, + [SMALL_STATE(2333)] = 66365, + [SMALL_STATE(2334)] = 66374, + [SMALL_STATE(2335)] = 66385, + [SMALL_STATE(2336)] = 66396, + [SMALL_STATE(2337)] = 66407, + [SMALL_STATE(2338)] = 66418, + [SMALL_STATE(2339)] = 66429, + [SMALL_STATE(2340)] = 66440, + [SMALL_STATE(2341)] = 66451, + [SMALL_STATE(2342)] = 66462, + [SMALL_STATE(2343)] = 66471, + [SMALL_STATE(2344)] = 66482, + [SMALL_STATE(2345)] = 66493, + [SMALL_STATE(2346)] = 66504, + [SMALL_STATE(2347)] = 66512, + [SMALL_STATE(2348)] = 66520, + [SMALL_STATE(2349)] = 66528, + [SMALL_STATE(2350)] = 66536, + [SMALL_STATE(2351)] = 66544, + [SMALL_STATE(2352)] = 66552, + [SMALL_STATE(2353)] = 66560, + [SMALL_STATE(2354)] = 66568, + [SMALL_STATE(2355)] = 66576, + [SMALL_STATE(2356)] = 66584, + [SMALL_STATE(2357)] = 66592, + [SMALL_STATE(2358)] = 66600, + [SMALL_STATE(2359)] = 66608, + [SMALL_STATE(2360)] = 66616, + [SMALL_STATE(2361)] = 66624, + [SMALL_STATE(2362)] = 66632, + [SMALL_STATE(2363)] = 66640, + [SMALL_STATE(2364)] = 66648, + [SMALL_STATE(2365)] = 66656, + [SMALL_STATE(2366)] = 66664, + [SMALL_STATE(2367)] = 66672, + [SMALL_STATE(2368)] = 66680, + [SMALL_STATE(2369)] = 66688, + [SMALL_STATE(2370)] = 66696, + [SMALL_STATE(2371)] = 66704, + [SMALL_STATE(2372)] = 66712, + [SMALL_STATE(2373)] = 66720, + [SMALL_STATE(2374)] = 66728, + [SMALL_STATE(2375)] = 66736, + [SMALL_STATE(2376)] = 66744, + [SMALL_STATE(2377)] = 66752, + [SMALL_STATE(2378)] = 66760, + [SMALL_STATE(2379)] = 66768, + [SMALL_STATE(2380)] = 66776, + [SMALL_STATE(2381)] = 66784, + [SMALL_STATE(2382)] = 66792, + [SMALL_STATE(2383)] = 66800, + [SMALL_STATE(2384)] = 66808, + [SMALL_STATE(2385)] = 66816, + [SMALL_STATE(2386)] = 66824, + [SMALL_STATE(2387)] = 66832, + [SMALL_STATE(2388)] = 66840, + [SMALL_STATE(2389)] = 66848, + [SMALL_STATE(2390)] = 66856, + [SMALL_STATE(2391)] = 66864, + [SMALL_STATE(2392)] = 66872, + [SMALL_STATE(2393)] = 66880, + [SMALL_STATE(2394)] = 66888, + [SMALL_STATE(2395)] = 66896, + [SMALL_STATE(2396)] = 66904, + [SMALL_STATE(2397)] = 66912, + [SMALL_STATE(2398)] = 66920, + [SMALL_STATE(2399)] = 66928, + [SMALL_STATE(2400)] = 66936, + [SMALL_STATE(2401)] = 66944, + [SMALL_STATE(2402)] = 66952, + [SMALL_STATE(2403)] = 66960, + [SMALL_STATE(2404)] = 66968, + [SMALL_STATE(2405)] = 66976, + [SMALL_STATE(2406)] = 66984, + [SMALL_STATE(2407)] = 66992, + [SMALL_STATE(2408)] = 67000, + [SMALL_STATE(2409)] = 67008, + [SMALL_STATE(2410)] = 67016, + [SMALL_STATE(2411)] = 67024, + [SMALL_STATE(2412)] = 67032, + [SMALL_STATE(2413)] = 67040, + [SMALL_STATE(2414)] = 67048, + [SMALL_STATE(2415)] = 67056, + [SMALL_STATE(2416)] = 67064, + [SMALL_STATE(2417)] = 67072, + [SMALL_STATE(2418)] = 67080, + [SMALL_STATE(2419)] = 67088, + [SMALL_STATE(2420)] = 67096, + [SMALL_STATE(2421)] = 67104, + [SMALL_STATE(2422)] = 67112, + [SMALL_STATE(2423)] = 67120, + [SMALL_STATE(2424)] = 67128, + [SMALL_STATE(2425)] = 67136, + [SMALL_STATE(2426)] = 67144, + [SMALL_STATE(2427)] = 67152, + [SMALL_STATE(2428)] = 67160, + [SMALL_STATE(2429)] = 67168, + [SMALL_STATE(2430)] = 67176, + [SMALL_STATE(2431)] = 67184, + [SMALL_STATE(2432)] = 67192, + [SMALL_STATE(2433)] = 67200, + [SMALL_STATE(2434)] = 67208, + [SMALL_STATE(2435)] = 67216, + [SMALL_STATE(2436)] = 67224, + [SMALL_STATE(2437)] = 67232, + [SMALL_STATE(2438)] = 67240, + [SMALL_STATE(2439)] = 67248, + [SMALL_STATE(2440)] = 67256, + [SMALL_STATE(2441)] = 67264, + [SMALL_STATE(2442)] = 67272, + [SMALL_STATE(2443)] = 67280, + [SMALL_STATE(2444)] = 67288, + [SMALL_STATE(2445)] = 67296, + [SMALL_STATE(2446)] = 67304, + [SMALL_STATE(2447)] = 67312, + [SMALL_STATE(2448)] = 67320, + [SMALL_STATE(2449)] = 67328, + [SMALL_STATE(2450)] = 67336, + [SMALL_STATE(2451)] = 67344, + [SMALL_STATE(2452)] = 67352, + [SMALL_STATE(2453)] = 67360, + [SMALL_STATE(2454)] = 67368, + [SMALL_STATE(2455)] = 67376, + [SMALL_STATE(2456)] = 67384, + [SMALL_STATE(2457)] = 67392, + [SMALL_STATE(2458)] = 67400, + [SMALL_STATE(2459)] = 67408, + [SMALL_STATE(2460)] = 67416, + [SMALL_STATE(2461)] = 67424, + [SMALL_STATE(2462)] = 67432, + [SMALL_STATE(2463)] = 67440, + [SMALL_STATE(2464)] = 67448, + [SMALL_STATE(2465)] = 67456, + [SMALL_STATE(2466)] = 67464, + [SMALL_STATE(2467)] = 67472, + [SMALL_STATE(2468)] = 67480, + [SMALL_STATE(2469)] = 67488, + [SMALL_STATE(2470)] = 67496, + [SMALL_STATE(2471)] = 67504, + [SMALL_STATE(2472)] = 67512, + [SMALL_STATE(2473)] = 67520, + [SMALL_STATE(2474)] = 67528, + [SMALL_STATE(2475)] = 67536, + [SMALL_STATE(2476)] = 67544, + [SMALL_STATE(2477)] = 67552, + [SMALL_STATE(2478)] = 67560, + [SMALL_STATE(2479)] = 67568, + [SMALL_STATE(2480)] = 67576, + [SMALL_STATE(2481)] = 67584, + [SMALL_STATE(2482)] = 67592, + [SMALL_STATE(2483)] = 67600, + [SMALL_STATE(2484)] = 67608, + [SMALL_STATE(2485)] = 67616, + [SMALL_STATE(2486)] = 67624, + [SMALL_STATE(2487)] = 67632, + [SMALL_STATE(2488)] = 67640, + [SMALL_STATE(2489)] = 67648, + [SMALL_STATE(2490)] = 67656, + [SMALL_STATE(2491)] = 67664, + [SMALL_STATE(2492)] = 67672, + [SMALL_STATE(2493)] = 67680, + [SMALL_STATE(2494)] = 67688, + [SMALL_STATE(2495)] = 67696, + [SMALL_STATE(2496)] = 67704, + [SMALL_STATE(2497)] = 67712, + [SMALL_STATE(2498)] = 67720, + [SMALL_STATE(2499)] = 67728, + [SMALL_STATE(2500)] = 67736, + [SMALL_STATE(2501)] = 67744, + [SMALL_STATE(2502)] = 67752, + [SMALL_STATE(2503)] = 67760, + [SMALL_STATE(2504)] = 67768, + [SMALL_STATE(2505)] = 67776, + [SMALL_STATE(2506)] = 67784, + [SMALL_STATE(2507)] = 67792, + [SMALL_STATE(2508)] = 67800, + [SMALL_STATE(2509)] = 67808, + [SMALL_STATE(2510)] = 67816, + [SMALL_STATE(2511)] = 67824, + [SMALL_STATE(2512)] = 67832, + [SMALL_STATE(2513)] = 67840, + [SMALL_STATE(2514)] = 67848, + [SMALL_STATE(2515)] = 67856, + [SMALL_STATE(2516)] = 67864, + [SMALL_STATE(2517)] = 67872, + [SMALL_STATE(2518)] = 67880, + [SMALL_STATE(2519)] = 67888, + [SMALL_STATE(2520)] = 67896, + [SMALL_STATE(2521)] = 67904, + [SMALL_STATE(2522)] = 67912, + [SMALL_STATE(2523)] = 67920, + [SMALL_STATE(2524)] = 67928, + [SMALL_STATE(2525)] = 67936, + [SMALL_STATE(2526)] = 67944, + [SMALL_STATE(2527)] = 67952, + [SMALL_STATE(2528)] = 67960, + [SMALL_STATE(2529)] = 67968, + [SMALL_STATE(2530)] = 67976, + [SMALL_STATE(2531)] = 67984, + [SMALL_STATE(2532)] = 67992, + [SMALL_STATE(2533)] = 68000, + [SMALL_STATE(2534)] = 68008, + [SMALL_STATE(2535)] = 68016, + [SMALL_STATE(2536)] = 68024, + [SMALL_STATE(2537)] = 68032, + [SMALL_STATE(2538)] = 68040, + [SMALL_STATE(2539)] = 68048, + [SMALL_STATE(2540)] = 68056, + [SMALL_STATE(2541)] = 68064, + [SMALL_STATE(2542)] = 68072, + [SMALL_STATE(2543)] = 68080, + [SMALL_STATE(2544)] = 68088, + [SMALL_STATE(2545)] = 68096, + [SMALL_STATE(2546)] = 68104, + [SMALL_STATE(2547)] = 68112, + [SMALL_STATE(2548)] = 68120, + [SMALL_STATE(2549)] = 68128, + [SMALL_STATE(2550)] = 68136, + [SMALL_STATE(2551)] = 68144, + [SMALL_STATE(2552)] = 68152, + [SMALL_STATE(2553)] = 68160, + [SMALL_STATE(2554)] = 68168, + [SMALL_STATE(2555)] = 68176, + [SMALL_STATE(2556)] = 68184, + [SMALL_STATE(2557)] = 68192, + [SMALL_STATE(2558)] = 68200, + [SMALL_STATE(2559)] = 68208, + [SMALL_STATE(2560)] = 68216, + [SMALL_STATE(2561)] = 68224, + [SMALL_STATE(2562)] = 68232, + [SMALL_STATE(2563)] = 68240, + [SMALL_STATE(2564)] = 68248, + [SMALL_STATE(2565)] = 68256, + [SMALL_STATE(2566)] = 68264, + [SMALL_STATE(2567)] = 68272, + [SMALL_STATE(2568)] = 68280, + [SMALL_STATE(2569)] = 68288, + [SMALL_STATE(2570)] = 68296, + [SMALL_STATE(2571)] = 68304, + [SMALL_STATE(2572)] = 68312, + [SMALL_STATE(2573)] = 68320, + [SMALL_STATE(2574)] = 68328, + [SMALL_STATE(2575)] = 68336, + [SMALL_STATE(2576)] = 68344, + [SMALL_STATE(2577)] = 68352, + [SMALL_STATE(2578)] = 68360, + [SMALL_STATE(2579)] = 68368, + [SMALL_STATE(2580)] = 68376, + [SMALL_STATE(2581)] = 68384, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -131208,2735 +131128,2733 @@ static const TSParseActionEntry ts_parse_actions[] = { [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(1162), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1162), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(436), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1925), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(39), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(107), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1088), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2582), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1530), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1519), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(795), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(791), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2579), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2165), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(624), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(67), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(656), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(621), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2166), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(171), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2575), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1367), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2130), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2565), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2562), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2516), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1183), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1509), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1338), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(64), - [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2227), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1481), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(647), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2505), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(53), - [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(585), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2231), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1130), - [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1839), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1072), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1119), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2500), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1380), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1119), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1162), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(268), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2032), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(37), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5), + [124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(89), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1066), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2579), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1539), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1517), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(795), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(778), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2567), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2173), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(622), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(64), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(654), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(613), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2174), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(173), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2515), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1367), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1997), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2506), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2504), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2503), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1180), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1512), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1337), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(55), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2242), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1491), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(658), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2490), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(61), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(583), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2245), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1096), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1876), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1074), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1078), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2479), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1379), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1078), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(789), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(39), - [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(16), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(107), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1088), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2582), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1951), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2249), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(795), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(904), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(630), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(60), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2327), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(172), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2253), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(56), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(647), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2505), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(53), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(585), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2231), - [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1130), - [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1839), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1072), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1119), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2500), - [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1119), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 143), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 143), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 91), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 91), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 99), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 99), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 172), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 172), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 59), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 59), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 193), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 193), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 219), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 219), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 134), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 134), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 236), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 236), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(782), + [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(37), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(15), + [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(89), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1066), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2579), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1931), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2336), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(795), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(821), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(609), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(66), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2340), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(93), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2337), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(71), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(658), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2490), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(61), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(583), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2245), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1096), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1876), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1074), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1078), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2479), + [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1078), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), + [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 156), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 156), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 113), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 113), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 112), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 112), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(264), - [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(500), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(509), - [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(502), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2361), - [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(574), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1852), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(576), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(569), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2340), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(813), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2026), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(262), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(510), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(509), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(508), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2443), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(586), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1855), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(585), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(568), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2251), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(801), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2019), [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2377), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1594), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1613), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1566), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2363), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2221), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(651), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(645), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2368), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2520), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1593), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1610), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1582), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2362), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2228), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(657), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(615), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2367), [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1367), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2115), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2369), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2347), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2371), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1928), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1578), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2126), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2368), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2369), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2370), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2017), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1591), [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1336), - [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2220), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1485), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(647), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2375), - [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2378), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1377), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2378), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 66), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 66), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 51), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 51), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 72), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 72), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 158), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 158), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 218), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 218), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 129), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 129), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 175), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 175), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 173), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 173), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 177), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 177), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 71), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 71), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 68), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 68), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 170), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 170), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 76), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 76), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 124), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 124), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 51), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 51), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 74), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 74), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 171), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 171), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 72), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 72), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 170), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 170), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 168), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 168), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 178), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 178), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 51), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 51), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 61), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 61), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 75), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 75), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 119), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 119), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 243), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 243), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 170), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 170), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 76), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 76), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 239), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 239), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 181), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 181), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 163), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 163), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 162), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 162), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 182), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 182), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 83), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 83), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 242), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 242), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 51), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 51), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 76), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 76), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 83), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 83), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 87), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 87), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 88), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 88), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 76), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 76), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 241), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 241), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 76), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 76), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 182), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 182), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 89), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 89), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 216), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 216), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 158), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 158), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 93), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 93), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 94), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 94), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 215), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 215), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 214), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 214), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 155), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 155), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 95), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 95), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 153), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 153), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 109), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 109), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 183), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 183), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 97), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 97), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 53), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 53), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 211), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 211), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 124), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 124), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 150), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 150), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 210), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 210), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 209), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 209), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 105), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 105), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 208), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 208), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 110), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 110), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 175), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 175), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 188), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 188), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 104), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 104), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 113), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 113), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 221), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 221), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 239), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 239), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 223), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 223), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 51), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 51), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 207), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 207), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 206), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 206), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 167), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 167), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 93), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 93), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 185), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 185), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 238), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 238), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 228), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 228), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 237), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 237), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 139), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 139), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 138), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 138), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 137), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 137), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 95), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 95), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 164), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 164), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 235), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 235), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 224), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 224), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 234), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 234), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 188), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 188), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 233), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 233), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 51), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 51), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 94), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 94), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 138), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 138), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 190), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 190), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 94), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 94), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 232), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 232), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 231), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 231), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 224), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 224), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 230), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 230), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 117), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 117), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 202), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 202), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 209), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 209), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 147), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 147), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 149), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 149), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 195), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 195), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 118), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 118), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 197), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 197), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 94), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 94), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 198), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 198), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 133), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 133), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 204), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 204), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 132), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 132), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 185), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 185), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 124), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 124), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 122), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 122), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 124), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 124), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 131), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 131), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 122), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 122), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 76), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 76), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 124), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 124), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 122), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 122), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 130), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 130), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 129), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 129), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 73), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 73), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 121), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 121), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 61), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 61), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 227), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 227), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(506), - [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(545), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(547), - [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(546), - [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(506), - [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(608), - [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1833), - [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(595), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(510), - [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(520), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(519), - [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(518), - [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2452), - [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(574), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1852), - [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(576), - [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(510), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1457), - [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(591), - [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(571), - [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1400), - [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2323), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1793), - [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2481), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(638), - [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(647), - [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2468), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1471), - [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(618), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(615), - [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1464), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2276), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1428), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1860), - [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1385), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1930), - [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1930), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2226), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1487), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(658), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2558), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2377), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1378), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2377), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 223), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(496), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(517), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(516), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(526), + [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2500), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(586), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1855), + [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(585), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(496), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(506), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(523), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(524), + [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(525), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(506), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(592), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1836), + [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(605), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1441), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(577), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(574), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1399), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2344), + [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1841), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2364), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(641), + [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(658), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2397), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1496), + [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(642), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(614), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1500), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2300), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1410), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1868), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1392), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2008), + [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2008), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 184), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 184), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, .production_id = 48), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, .production_id = 48), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2481), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 108), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 108), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 70), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 70), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 146), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 146), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 90), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 90), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 144), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 144), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 156), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 156), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 156), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 62), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 62), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 135), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 135), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 152), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 152), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 92), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 92), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 111), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 111), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 127), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 127), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 103), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 103), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 60), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 60), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 61), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 61), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 196), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 196), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 61), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 61), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2524), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 113), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 113), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 113), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 62), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 62), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 62), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 62), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2364), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 112), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 143), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 143), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 195), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 195), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2523), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 220), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 125), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 128), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 174), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 113), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 136), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 156), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 187), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 125), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 31), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 3, .production_id = 31), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 157), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 112), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 31), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 124), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 3, .production_id = 31), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 54), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 54), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 58), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 58), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), - [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), - [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(606), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(496), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), - [3972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), - [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1591), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1598), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1, .production_id = 1), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 49), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 66), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 159), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 61), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1386), - [4321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(199), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 225), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 61), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 199), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 159), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 103), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 225), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 103), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 199), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 62), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1181), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 112), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 126), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(639), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 1), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1889), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), - [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 86), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(598), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1564), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 161), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 160), - [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 160), SHIFT_REPEAT(570), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 80), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 79), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 78), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 93), - [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 64), - [4719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2230), - [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 77), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__built_in_attr_path, 1, .production_id = 1), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(258), - [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 142), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1667), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 141), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 191), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 192), - [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 98), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(697), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 61), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 57), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(200), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 200), - [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 103), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1597), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 102), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1565), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(81), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1589), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 222), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1200), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(40), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 64), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1337), - [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 84), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 82), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 2, .production_id = 82), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [5491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 82), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 81), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5533] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(500), + [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(501), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1573), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1562), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(606), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1, .production_id = 1), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [4190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 224), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1398), + [4296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(197), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), + [4301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 224), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 1), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1801), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(619), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1186), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(41), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 191), + [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), + [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1575), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(200), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), + [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), + [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1558), + [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(164), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1708), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), + [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1334), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(259), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2318), + [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(608), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(751), + [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1199), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), + [4962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(567), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1577), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1581), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__built_in_attr_path, 1, .production_id = 1), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 80), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 81), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 2, .production_id = 81), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5499] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), }; #ifdef __cplusplus